geordi 3.0.3 → 4.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (53) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +0 -1
  3. data/.ruby-version +1 -1
  4. data/CHANGELOG.md +46 -8
  5. data/Gemfile.lock +1 -1
  6. data/README.md +138 -118
  7. data/Rakefile +18 -8
  8. data/exe/dumple +10 -0
  9. data/geordi.gemspec +1 -0
  10. data/lib/geordi/COMMAND_TEMPLATE +3 -1
  11. data/lib/geordi/commands/chromedriver_update.rb +2 -2
  12. data/lib/geordi/commands/commit.rb +1 -6
  13. data/lib/geordi/commands/console.rb +9 -4
  14. data/lib/geordi/commands/create_databases.rb +2 -1
  15. data/lib/geordi/commands/cucumber.rb +15 -10
  16. data/lib/geordi/commands/delete_dumps.rb +0 -1
  17. data/lib/geordi/commands/deploy.rb +11 -11
  18. data/lib/geordi/commands/drop_databases.rb +0 -6
  19. data/lib/geordi/commands/dump.rb +9 -18
  20. data/lib/geordi/commands/firefox.rb +2 -5
  21. data/lib/geordi/commands/migrate.rb +1 -1
  22. data/lib/geordi/commands/rake.rb +3 -1
  23. data/lib/geordi/commands/rspec.rb +5 -9
  24. data/lib/geordi/commands/security_update.rb +65 -9
  25. data/lib/geordi/commands/server.rb +1 -1
  26. data/lib/geordi/commands/setup.rb +2 -11
  27. data/lib/geordi/commands/shell.rb +7 -4
  28. data/lib/geordi/commands/unit.rb +1 -1
  29. data/lib/geordi/commands/update.rb +0 -11
  30. data/lib/geordi/commands/vnc.rb +1 -3
  31. data/lib/geordi/commands/with_rake.rb +1 -1
  32. data/lib/geordi/cucumber.rb +6 -4
  33. data/lib/geordi/gitpt.rb +9 -51
  34. data/lib/geordi/remote.rb +14 -2
  35. data/lib/geordi/settings.rb +155 -0
  36. data/lib/geordi/util.rb +12 -4
  37. data/lib/geordi/version.rb +1 -1
  38. metadata +7 -33
  39. data/exe/cap-all +0 -4
  40. data/exe/console-for +0 -4
  41. data/exe/cuc +0 -4
  42. data/exe/cuc-show +0 -4
  43. data/exe/cuc-vnc-setup +0 -4
  44. data/exe/deploy-to-production +0 -4
  45. data/exe/dump-for +0 -8
  46. data/exe/gitpt +0 -4
  47. data/exe/load-dump +0 -4
  48. data/exe/migrate-all +0 -4
  49. data/exe/rs +0 -4
  50. data/exe/run_tests +0 -4
  51. data/exe/shell-for +0 -4
  52. data/exe/tests +0 -4
  53. data/lib/geordi/commands/eurest.rb +0 -4
@@ -1,3 +1,3 @@
1
1
  module Geordi
2
- VERSION = '3.0.3'.freeze
2
+ VERSION = '4.1.0'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: geordi
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.3
4
+ version: 4.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Henning Koch
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-05-27 00:00:00.000000000 Z
11
+ date: 2020-08-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor
@@ -30,23 +30,9 @@ email:
30
30
  - henning.koch@makandra.de
31
31
  executables:
32
32
  - b
33
- - cap-all
34
- - console-for
35
- - cuc
36
- - cuc-show
37
- - cuc-vnc-setup
38
- - deploy-to-production
39
- - dump-for
40
33
  - dumple
41
34
  - geordi
42
- - gitpt
43
35
  - launchy_browser
44
- - load-dump
45
- - migrate-all
46
- - rs
47
- - run_tests
48
- - shell-for
49
- - tests
50
36
  extensions: []
51
37
  extra_rdoc_files: []
52
38
  files:
@@ -60,23 +46,9 @@ files:
60
46
  - README.md
61
47
  - Rakefile
62
48
  - exe/b
63
- - exe/cap-all
64
- - exe/console-for
65
- - exe/cuc
66
- - exe/cuc-show
67
- - exe/cuc-vnc-setup
68
- - exe/deploy-to-production
69
- - exe/dump-for
70
49
  - exe/dumple
71
50
  - exe/geordi
72
- - exe/gitpt
73
51
  - exe/launchy_browser
74
- - exe/load-dump
75
- - exe/migrate-all
76
- - exe/rs
77
- - exe/run_tests
78
- - exe/shell-for
79
- - exe/tests
80
52
  - geordi.gemspec
81
53
  - lib/geordi.rb
82
54
  - lib/geordi/COMMAND_TEMPLATE
@@ -98,7 +70,6 @@ files:
98
70
  - lib/geordi/commands/deploy.rb
99
71
  - lib/geordi/commands/drop_databases.rb
100
72
  - lib/geordi/commands/dump.rb
101
- - lib/geordi/commands/eurest.rb
102
73
  - lib/geordi/commands/firefox.rb
103
74
  - lib/geordi/commands/migrate.rb
104
75
  - lib/geordi/commands/png_optimize.rb
@@ -123,13 +94,16 @@ files:
123
94
  - lib/geordi/gitpt.rb
124
95
  - lib/geordi/interaction.rb
125
96
  - lib/geordi/remote.rb
97
+ - lib/geordi/settings.rb
126
98
  - lib/geordi/util.rb
127
99
  - lib/geordi/version.rb
128
100
  homepage: http://makandra.com
129
101
  licenses:
130
102
  - MIT
131
103
  metadata: {}
132
- post_install_message: "* Binary `geordi` installed\n"
104
+ post_install_message: |
105
+ * Binary `geordi` installed
106
+ * Geordi 4.0.0 has removed its deprecated executables. If you want to invoke these commands like before, you may create aliases on your machine. For the alias mapping, please refer to https://github.com/makandra/geordi/commit/68fa92acb146ebde3acb92d7b9556bd4eaa2b4ff
133
107
  rdoc_options: []
134
108
  require_paths:
135
109
  - lib
@@ -144,7 +118,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
144
118
  - !ruby/object:Gem::Version
145
119
  version: '0'
146
120
  requirements: []
147
- rubygems_version: 3.1.3
121
+ rubygems_version: 3.1.4
148
122
  signing_key:
149
123
  specification_version: 4
150
124
  summary: Collection of command line tools we use in our daily work with Ruby, Rails
@@ -1,4 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- puts 'DEPRECATED: Use `geordi ca[pistrano]` instead'
4
- exec 'geordi', 'capistrano', *ARGV
@@ -1,4 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- puts 'DEPRECATED: Use `geordi con[sole]` instead'
4
- exec 'geordi', 'console', *ARGV
data/exe/cuc DELETED
@@ -1,4 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- puts 'DEPRECATED: Use `geordi cu[cumber]` instead'
4
- exec 'geordi', 'cucumber', *ARGV
@@ -1,4 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- puts 'DEPRECATED: Use `geordi vn[c]` instead'
4
- exec 'geordi', 'vnc'
@@ -1,4 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- puts 'DEPRECATED: Use `geordi vn[c] --setup` instead'
4
- exec 'geordi', 'vnc', '--setup'
@@ -1,4 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- puts 'DEPRECATED: Use `geordi dep[loy]` instead'
4
- exec 'geordi', 'deploy'
@@ -1,8 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- if (i = ARGV.index '-s')
4
- ARGV[i] = '-l'
5
- end
6
-
7
- puts 'DEPRECATED: Use `geordi du[mp]` instead'
8
- exec 'geordi', 'dump', *ARGV
data/exe/gitpt DELETED
@@ -1,4 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- puts 'DEPRECATED: Use `geordi com[mit]` instead'
4
- exec 'geordi', 'commit'
@@ -1,4 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- puts 'DEPRECATED: Use `geordi du[mp] -l` instead'
4
- exec 'geordi', 'dump', '-l', *ARGV
@@ -1,4 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- puts 'DEPRECATED: Use `geordi m[igrate]` instead'
4
- exec 'geordi', 'migrate'
data/exe/rs DELETED
@@ -1,4 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- puts 'DEPRECATED: Use `geordi rs[pec]` instead'
4
- exec 'geordi', 'rspec', *ARGV
@@ -1,4 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- puts 'DEPRECATED: Use `geordi f[irefox]` instead'
4
- exec 'geordi', 'firefox', *ARGV
@@ -1,4 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- puts 'DEPRECATED: Use `geordi sh[ell]` instead'
4
- exec 'geordi', 'shell', *ARGV
data/exe/tests DELETED
@@ -1,4 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- puts 'DEPRECATED: Use `geordi t[est]` instead'
4
- exec 'geordi', 'test'
@@ -1,4 +0,0 @@
1
- desc 'eurest', 'Open the current Eurest cantina menu', hide: true
2
- def eurest
3
- Util.system! %(file="Speiseplan_KW`date +%V`.pdf" && wget -O/tmp/$file http://www.eurest-extranet.de/eurest/export/sites/default/sigma-technopark/de/downloads/$file && xdg-open /tmp/$file)
4
- end