geordi 1.0.3 → 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,15 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: ac4e04e376ff1dbe4d61f1f461ec3babc7336878
4
- data.tar.gz: d116626e960d6917d0966555c9605595eff3901b
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ NDNiMzMyYmM5MGVjODMzNTJkMWZjNDY5OTVmMThiM2Q1ZTdlMWZlOQ==
5
+ data.tar.gz: !binary |-
6
+ Yzk3ZmM1NGUyYWQwNjM3NDU4ZWI1YjUwYjg3NGI1MTg0ZDEyNGRkOA==
5
7
  SHA512:
6
- metadata.gz: 99be3db5c23f4f7a162af265279052da96728c4e855e3bf2bf3a661a57245fda9b0cff74d0314e6d6391175f1064be3ffe7637249b1b3e0f91728243f1ce7b2f
7
- data.tar.gz: 632c0ffe2b237905b1b0c0fe8c1dfbea9eb83678e3905eb26a51538d6219a5b75c1ee399fe20c985570999e5acf9574df59730d7acca45b80ce6b06984390f05
8
+ metadata.gz: !binary |-
9
+ ZTBiZThjMDgzMDRjMjU5MzY2NTQ5MDJiOWY5ZmVhMzA2ZjMzN2Y2OTI4NWIy
10
+ ZTAxZWYxOWE1NmYyMmIzN2I5YzVmMjc3NjQwYjFlZTRjMWM3NTY3Mjg5Zjk2
11
+ NWNjNThhY2EyZDAyYzZlYTI0YmRkNjA1ZTE2OGM5YzRkZWY2Njk=
12
+ data.tar.gz: !binary |-
13
+ YzkxN2Q4YjI3N2YzZDI5NzI5N2QxYTQyYmM5OGU5NDg5MzBkOTkxYmZjMGJk
14
+ ZWMyN2RhMjcwMzU3ZDJmNDBjZGYwZmE1ODJmYjIyYzkzMDRiODY2MWQ5YWQ3
15
+ MmViYzJhZjg2Mjk3MzU2ZjI5N2FkZDA3YTljMDViOTdmMzdmMmQ=
data/README.md CHANGED
@@ -95,6 +95,11 @@ dump into the development database after downloading it.
95
95
  geordi dump staging -l
96
96
 
97
97
 
98
+ ### geordi eurest
99
+
100
+ Open the current Eurest cantina menu.
101
+
102
+
98
103
  ### geordi help [COMMAND]
99
104
 
100
105
  Describe available commands or one specific command.
@@ -0,0 +1,4 @@
1
+ desc 'eurest', 'Open the current Eurest cantina menu'
2
+ def eurest
3
+ Util.system! %{file="Sigma_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
@@ -13,6 +13,6 @@ def with_firefox_for_selenium(*command)
13
13
  FirefoxForSelenium.setup_firefox
14
14
  puts
15
15
 
16
- note_cmd command.join
17
- Util.system! *command
16
+ note_cmd command.join(' ')
17
+ system *command # Util.system! would reset the Firefox PATH
18
18
  end
@@ -26,7 +26,7 @@ module Geordi
26
26
  note 'Command: ' + command if argv.include? '-v'
27
27
 
28
28
  puts
29
- system command
29
+ system command # Util.system! would reset the Firefox PATH
30
30
  end
31
31
 
32
32
  def launch_vnc_viewer
@@ -1,3 +1,3 @@
1
1
  module Geordi
2
- VERSION = '1.0.3'
2
+ VERSION = '1.1.0'
3
3
  end
metadata CHANGED
@@ -1,27 +1,27 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: geordi
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.3
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Henning Koch
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-01-29 00:00:00.000000000 Z
11
+ date: 2015-02-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ">="
17
+ - - ! '>='
18
18
  - !ruby/object:Gem::Version
19
19
  version: 0.18.0
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - ">="
24
+ - - ! '>='
25
25
  - !ruby/object:Gem::Version
26
26
  version: 0.18.0
27
27
  description: Collection of command line tools we use in our daily work with Ruby,
@@ -56,8 +56,8 @@ executables:
56
56
  extensions: []
57
57
  extra_rdoc_files: []
58
58
  files:
59
- - ".gitignore"
60
- - ".ruby-version"
59
+ - .gitignore
60
+ - .ruby-version
61
61
  - Gemfile
62
62
  - LICENSE
63
63
  - README.md
@@ -104,6 +104,7 @@ files:
104
104
  - lib/geordi/commands/deploy.rb
105
105
  - lib/geordi/commands/devserver.rb
106
106
  - lib/geordi/commands/dump.rb
107
+ - lib/geordi/commands/eurest.rb
107
108
  - lib/geordi/commands/migrate.rb
108
109
  - lib/geordi/commands/png_optimize.rb
109
110
  - lib/geordi/commands/rake.rb
@@ -134,7 +135,7 @@ homepage: http://makandra.com
134
135
  licenses:
135
136
  - MIT
136
137
  metadata: {}
137
- post_install_message: "\n ********************************************\n\n geordi
138
+ post_install_message: ! "\n ********************************************\n\n geordi
138
139
  1.0 moves most of the scripts to\n the `geordi` binary. Run `geordi` and\n `geordi
139
140
  help <cmd>` for further information.\n\n Tip: Create an alias for geordi for
140
141
  quick \n access. Add this to your ~/.bashrc:\n\n alias g=\"geordi\"\n\n
@@ -144,17 +145,17 @@ require_paths:
144
145
  - lib
145
146
  required_ruby_version: !ruby/object:Gem::Requirement
146
147
  requirements:
147
- - - ">="
148
+ - - ! '>='
148
149
  - !ruby/object:Gem::Version
149
150
  version: '0'
150
151
  required_rubygems_version: !ruby/object:Gem::Requirement
151
152
  requirements:
152
- - - ">="
153
+ - - ! '>='
153
154
  - !ruby/object:Gem::Version
154
155
  version: '0'
155
156
  requirements: []
156
157
  rubyforge_project: geordi
157
- rubygems_version: 2.4.3
158
+ rubygems_version: 2.2.2
158
159
  signing_key:
159
160
  specification_version: 4
160
161
  summary: Collection of command line tools we use in our daily work with Ruby, Rails