mortar 0.15.3 → 0.15.4

Sign up to get free protection for your applications and to get access to all the features.
@@ -76,6 +76,23 @@ class Mortar::Command::Base
76
76
  def git
77
77
  @git ||= Mortar::Git::Git.new
78
78
  end
79
+
80
+ def config_parameters
81
+ param_list = []
82
+ begin
83
+ if project.name
84
+ vars = api.get_config_vars(project.name).body['config']
85
+ unless vars.empty?
86
+ vars.each{|k, v| param_list.push({"name"=>k, "value"=>v})}
87
+ end
88
+ end
89
+ rescue Mortar::Command::CommandFailed, Mortar::API::Errors::ErrorWithResponse
90
+ # When running locally we're not guaranteed this is a project
91
+ # or that it has a config, so lets keep running.
92
+ vars = []
93
+ end
94
+ param_list
95
+ end
79
96
 
80
97
  def pig_parameters
81
98
  paramfile_params = {}
@@ -71,8 +71,10 @@ class Mortar::Command::Local < Mortar::Command::Base
71
71
  end
72
72
  Dir.chdir(project_root)
73
73
  script = validate_script!(script_name)
74
+ params = config_parameters.concat(pig_parameters)
75
+
74
76
  ctrl = Mortar::Local::Controller.new
75
- ctrl.run(script, pig_version, pig_parameters)
77
+ ctrl.run(script, pig_version, params)
76
78
  end
77
79
 
78
80
  # local:characterize -f PARAMFILE
@@ -119,8 +121,10 @@ class Mortar::Command::Local < Mortar::Command::Base
119
121
  gen = Mortar::Generators::CharacterizeGenerator.new
120
122
  gen.generate_characterize
121
123
  script = validate_script!(controlscript_name)
124
+ params = config_parameters.concat(pig_parameters)
125
+
122
126
  ctrl = Mortar::Local::Controller.new
123
- ctrl.run(script, pig_version, pig_parameters)
127
+ ctrl.run(script, pig_version, params)
124
128
  gen.cleanup_characterize(project_root)
125
129
  end
126
130
 
@@ -161,9 +165,10 @@ class Mortar::Command::Local < Mortar::Command::Base
161
165
  Dir.chdir(project_root)
162
166
 
163
167
  pigscript = validate_pigscript!(pigscript_name)
168
+ params = config_parameters.concat(pig_parameters)
164
169
 
165
170
  ctrl = Mortar::Local::Controller.new
166
- ctrl.illustrate(pigscript, alias_name, pig_version, pig_parameters, skip_pruning, no_browser)
171
+ ctrl.illustrate(pigscript, alias_name, pig_version, params, skip_pruning, no_browser)
167
172
  end
168
173
 
169
174
 
@@ -195,8 +200,10 @@ class Mortar::Command::Local < Mortar::Command::Base
195
200
  Dir.chdir(project_root)
196
201
 
197
202
  script = validate_script!(script_name)
203
+ params = config_parameters.concat(pig_parameters)
204
+
198
205
  ctrl = Mortar::Local::Controller.new
199
- ctrl.validate(script, pig_version, pig_parameters)
206
+ ctrl.validate(script, pig_version, params)
200
207
  end
201
208
 
202
209
 
@@ -209,8 +216,11 @@ class Mortar::Command::Local < Mortar::Command::Base
209
216
  #
210
217
  def repl
211
218
  validate_arguments!
219
+
220
+ params = config_parameters.concat(pig_parameters)
221
+
212
222
  ctrl = Mortar::Local::Controller.new
213
- ctrl.repl(pig_version, pig_parameters)
223
+ ctrl.repl(pig_version, params)
214
224
  end
215
225
 
216
226
 
@@ -80,6 +80,11 @@ module Mortar
80
80
  end
81
81
  end
82
82
 
83
+ mkdir "lib"
84
+ inside "lib" do
85
+ copy_file "gitkeep", ".gitkeep"
86
+ end
87
+
83
88
  mkdir "vendor"
84
89
 
85
90
  inside "vendor" do
data/lib/mortar/git.rb CHANGED
@@ -181,6 +181,9 @@ module Mortar
181
181
  if File.directory? "#{path}/vendor"
182
182
  manifest.puts "vendor"
183
183
  end
184
+ if File.directory? "#{path}/lib"
185
+ manifest.puts "lib"
186
+ end
184
187
  end
185
188
  end
186
189
 
@@ -324,7 +324,29 @@ class Mortar::Local::Pig
324
324
  if pig_version.nil?
325
325
  pig_version = Mortar::PigVersion::Pig09.new
326
326
  end
327
- "#{pig_directory(pig_version)}/*:#{pig_directory(pig_version)}/lib-local/*:#{lib_directory}/lib-local/*:#{pig_directory(pig_version)}/lib-pig/*:#{pig_directory(pig_version)}/lib-cluster/*:#{lib_directory}/lib-pig/*:#{lib_directory}/lib-cluster/*:#{jython_directory}/jython.jar:#{lib_directory}/conf/jets3t.properties"
327
+ [ "#{pig_directory(pig_version)}/*",
328
+ "#{pig_directory(pig_version)}/lib-local/*",
329
+ "#{lib_directory}/lib-local/*",
330
+ "#{pig_directory(pig_version)}/lib-pig/*",
331
+ "#{pig_directory(pig_version)}/lib-cluster/*",
332
+ "#{lib_directory}/lib-pig/*",
333
+ "#{lib_directory}/lib-cluster/*",
334
+ "#{jython_directory}/jython.jar",
335
+ "#{lib_directory}/conf/jets3t.properties",
336
+ "#{project_root}/lib/*",
337
+ ].join(":")
338
+ end
339
+
340
+ def pig_classpath(pig_version)
341
+ [ "#{pig_directory(pig_version)}/lib-local/*",
342
+ "#{lib_directory}/lib-local/*",
343
+ "#{pig_directory(pig_version)}/lib-pig/*",
344
+ "#{pig_directory(pig_version)}/lib-cluster/*",
345
+ "#{lib_directory}/lib-pig/*",
346
+ "#{lib_directory}/lib-cluster/*",
347
+ "#{jython_directory}/jython.jar",
348
+ "#{project_root}/lib/*",
349
+ ].join(":")
328
350
  end
329
351
 
330
352
  def log4j_conf
@@ -341,7 +363,7 @@ class Mortar::Local::Pig
341
363
  template_params['pig_params_file'] = make_pig_param_file(pig_parameters)
342
364
  template_params['pig_dir'] = pig_version.name
343
365
  template_params['pig_home'] = pig_directory(pig_version)
344
- template_params['pig_classpath'] = "#{pig_directory(pig_version)}/lib-local/*:#{lib_directory}/lib-local/*:#{pig_directory(pig_version)}/lib-pig/*:#{pig_directory(pig_version)}/lib-cluster/*:#{lib_directory}/lib-pig/*:#{lib_directory}/lib-cluster/*:#{jython_directory}/jython.jar"
366
+ template_params['pig_classpath'] = pig_classpath(pig_version)
345
367
  template_params['classpath'] = template_params_classpath
346
368
  template_params['log4j_conf'] = log4j_conf
347
369
  template_params['no_project_log4j_conf'] = log4j_conf_no_project
@@ -146,7 +146,7 @@ class Mortar::Local::Python
146
146
  end
147
147
 
148
148
  def pip_requirements_path
149
- return ENV.fetch('PIP_REQ_FILE', File.join(Dir.getwd, "udfs", "python", "requirements.txt"))
149
+ return ENV.fetch('PIP_REQ_FILE', File.join(Dir.getwd, "requirements.txt"))
150
150
  end
151
151
 
152
152
  def has_python_requirements
@@ -185,15 +185,10 @@ class Mortar::Local::Python
185
185
  return false
186
186
  end
187
187
  if should_do_requirements_install
188
- action "Installing python UDF dependencies" do
189
- pip_output = `. #{python_env_dir}/bin/activate &&
190
- #{python_env_dir}/bin/pip install --requirement #{pip_requirements_path}`
191
- if 0 != $?.to_i
192
- File.open(pip_error_log_path, 'w') { |f|
193
- f.write(pip_output)
194
- }
195
- return false
196
- end
188
+ action "Installing user defined python dependencies" do
189
+ unless install_user_python_dependencies()
190
+ return false
191
+ end
197
192
  note_install("pythonenv")
198
193
  end
199
194
  end
@@ -288,7 +283,7 @@ class Mortar::Local::Python
288
283
  return "#{python_env_dir}/bin/pip"
289
284
  end
290
285
 
291
- def pip_install package_url
286
+ def run_pip_command subcmd
292
287
  # Note that we're executing pip by passing it as a script for python to execute, this is
293
288
  # explicitly done to deal with this command breaking due to the maximum size of the path
294
289
  # to the interpreter in a shebang. Since the containing virtualenv is already buried
@@ -296,7 +291,7 @@ class Mortar::Local::Python
296
291
  # this limit. This unfortunately leads to very vague errors about pip not existing when
297
292
  # in fact it is the truncated path to the interpreter that does not exist. I would now
298
293
  # like the last day of my life back.
299
- pip_output = `. #{local_activate_path} && #{local_python_bin} #{local_pip_bin} install #{package_url} --use-mirrors;`
294
+ pip_output = `. #{local_activate_path} && #{local_python_bin} #{local_pip_bin} #{subcmd}`
300
295
  if 0 != $?.to_i
301
296
  File.open(pip_error_log_path, 'w') { |f|
302
297
  f.write(pip_output)
@@ -305,6 +300,15 @@ class Mortar::Local::Python
305
300
  else
306
301
  return true
307
302
  end
303
+
304
+ end
305
+
306
+ def install_user_python_dependencies
307
+ return run_pip_command "install --requirement #{pip_requirements_path}"
308
+ end
309
+
310
+ def pip_install package_url
311
+ return run_pip_command "install #{package_url} --use-mirrors;"
308
312
  end
309
313
 
310
314
  def install_mortar_python_package(package_name)
File without changes
@@ -16,5 +16,5 @@
16
16
 
17
17
  module Mortar
18
18
  # see http://semver.org/
19
- VERSION = "0.15.3"
19
+ VERSION = "0.15.4"
20
20
  end
@@ -92,6 +92,31 @@ other\tgit@github.com:other.git (push)
92
92
  end
93
93
  end
94
94
 
95
+ context "config_parameters" do
96
+ it "handles when not in mortar project" do
97
+ stub_core
98
+ @base.config_parameters.should == []
99
+ end
100
+
101
+ it "handles when in valid mortar project that isn't registered" do
102
+ with_blank_project_with_name('proj_name') do |p|
103
+ stub_core
104
+ mock(Mortar::Auth.api).get_config_vars('proj_name').returns { raise Mortar::API::Errors::ErrorWithResponse.new("meessage",400) }
105
+ @base.config_parameters.should == []
106
+ end
107
+ end
108
+
109
+ it "works" do
110
+ with_blank_project_with_name('proj_name') do |p|
111
+ stub_core
112
+ configs = {"foo" => "ABCDEFGHIJKLMNOP", "BAR" => "sheepdog"}
113
+ mock(Mortar::Auth.api).get_config_vars("proj_name").returns(Excon::Response.new(:body => {"config" => configs}))
114
+ @base.config_parameters.should =~ [{"name"=>"foo", "value"=>"ABCDEFGHIJKLMNOP"},
115
+ {"name"=>"BAR", "value"=>"sheepdog"}]
116
+ end
117
+ end
118
+ end
119
+
95
120
  context "load_defaults" do
96
121
  it "no errors with no .mortar-defaults file" do
97
122
  with_git_initialized_project do |p|
@@ -43,6 +43,9 @@ STDERR
43
43
  write_file(script_path)
44
44
  pigscript = Mortar::Project::PigScript.new(script_name, script_path)
45
45
  mock(Mortar::Project::PigScript).new(script_name, script_path).returns(pigscript)
46
+ any_instance_of(Mortar::Command::Local) do |u|
47
+ mock(u).config_parameters.returns([])
48
+ end
46
49
  any_instance_of(Mortar::Local::Controller) do |u|
47
50
  mock(u).illustrate(pigscript, "some_alias", is_a(Mortar::PigVersion::Pig09), [], false, false).returns(nil)
48
51
  end
@@ -58,6 +61,9 @@ STDERR
58
61
  write_file(script_path)
59
62
  pigscript = Mortar::Project::PigScript.new(script_name, script_path)
60
63
  mock(Mortar::Project::PigScript).new(script_name, script_path).returns(pigscript)
64
+ any_instance_of(Mortar::Command::Local) do |u|
65
+ mock(u).config_parameters.returns([])
66
+ end
61
67
  any_instance_of(Mortar::Local::Controller) do |u|
62
68
  mock(u).illustrate(pigscript, nil, is_a(Mortar::PigVersion::Pig012), [], false, false).returns(nil)
63
69
  end
@@ -66,6 +72,25 @@ STDERR
66
72
  end
67
73
  end
68
74
 
75
+ it "puts config params before pig params" do
76
+ with_git_initialized_project do |p|
77
+ script_name = "some_script"
78
+ script_path = File.join(p.pigscripts_path, "#{script_name}.pig")
79
+ write_file(script_path)
80
+ pigscript = Mortar::Project::PigScript.new(script_name, script_path)
81
+ any_instance_of(Mortar::Command::Local) do |u|
82
+ mock(u).config_parameters.returns([{"name"=>"first", "value"=>1}])
83
+ mock(u).pig_parameters.returns([{"name"=>"second", "value"=>2}])
84
+ end
85
+ mock(Mortar::Project::PigScript).new(script_name, script_path).returns(pigscript)
86
+ any_instance_of(Mortar::Local::Controller) do |u|
87
+ mock(u).illustrate(pigscript, nil, is_a(Mortar::PigVersion::Pig012), [{"name"=>"first", "value"=>1},{"name"=>"second", "value"=>2}], false, false).returns(nil)
88
+ end
89
+ stderr, stdout = execute("local:illustrate #{script_name} -g 0.12", p)
90
+ stderr.should == ""
91
+ end
92
+ end
93
+
69
94
  # illustrate
70
95
  end
71
96
 
@@ -95,6 +120,9 @@ STDERR
95
120
  write_file(script_path)
96
121
  pigscript = Mortar::Project::PigScript.new(script_name, script_path)
97
122
  mock(Mortar::Project::PigScript).new(script_name, script_path).returns(pigscript)
123
+ any_instance_of(Mortar::Command::Local) do |u|
124
+ mock(u).config_parameters.returns([])
125
+ end
98
126
  any_instance_of(Mortar::Local::Controller) do |u|
99
127
  mock(u).run(pigscript, is_a(Mortar::PigVersion::Pig09), []).returns(nil)
100
128
  end
@@ -197,11 +225,15 @@ PARAMS
197
225
  write_file(script_path)
198
226
  pigscript = Mortar::Project::PigScript.new(script_name, script_path)
199
227
  mock(Mortar::Project::PigScript).new(script_name, script_path).returns(pigscript)
228
+
229
+ any_instance_of(Mortar::Command::Local) do |u|
230
+ mock(u).config_parameters.returns([{"key"=>"k", "value"=>"v"}])
231
+ end
200
232
  any_instance_of(Mortar::Local::Controller) do |u|
201
233
  mock(u).install_and_configure(is_a(Mortar::PigVersion::Pig09), 'validate')
202
234
  end
203
235
  any_instance_of(Mortar::Local::Pig) do |u|
204
- mock(u).run_pig_command(" -check #{pigscript.path}", is_a(Mortar::PigVersion::Pig09), [])
236
+ mock(u).run_pig_command(" -check #{pigscript.path}", is_a(Mortar::PigVersion::Pig09), [{"key"=>"k", "value"=>"v"}])
205
237
  end
206
238
  stderr, stdout = execute("local:validate #{script_name}", p)
207
239
  stderr.should == ""
@@ -215,6 +247,9 @@ PARAMS
215
247
  write_file(script_path)
216
248
  pigscript = Mortar::Project::PigScript.new(script_name, script_path)
217
249
  mock(Mortar::Project::PigScript).new(script_name, script_path).returns(pigscript)
250
+ any_instance_of(Mortar::Command::Local) do |u|
251
+ mock(u).config_parameters.returns([])
252
+ end
218
253
  any_instance_of(Mortar::Local::Controller) do |u|
219
254
  mock(u).install_and_configure(is_a(Mortar::PigVersion::Pig09), 'validate')
220
255
  end
@@ -146,6 +146,8 @@ Sending request to register project: some_new_project... done
146
146
  \e[1;32m create\e[0m udfs/jython/.gitkeep
147
147
  \e[1;32m create\e[0m udfs/java
148
148
  \e[1;32m create\e[0m udfs/java/.gitkeep
149
+ \e[1;32m create\e[0m lib
150
+ \e[1;32m create\e[0m lib/.gitkeep
149
151
  \e[1;32m create\e[0m vendor
150
152
  \e[1;32m create\e[0m vendor/controlscripts
151
153
  \e[1;32m create\e[0m vendor/controlscripts/lib
metadata CHANGED
@@ -1,18 +1,20 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mortar
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.15.3
4
+ version: 0.15.4
5
+ prerelease:
5
6
  platform: ruby
6
7
  authors:
7
8
  - Mortar Data
8
9
  autorequire:
9
10
  bindir: bin
10
11
  cert_chain: []
11
- date: 2014-03-18 00:00:00.000000000 Z
12
+ date: 2014-03-25 00:00:00.000000000 Z
12
13
  dependencies:
13
14
  - !ruby/object:Gem::Dependency
14
15
  name: rdoc
15
16
  requirement: !ruby/object:Gem::Requirement
17
+ none: false
16
18
  requirements:
17
19
  - - ! '>='
18
20
  - !ruby/object:Gem::Version
@@ -20,6 +22,7 @@ dependencies:
20
22
  type: :runtime
21
23
  prerelease: false
22
24
  version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
23
26
  requirements:
24
27
  - - ! '>='
25
28
  - !ruby/object:Gem::Version
@@ -27,6 +30,7 @@ dependencies:
27
30
  - !ruby/object:Gem::Dependency
28
31
  name: mortar-api-ruby
29
32
  requirement: !ruby/object:Gem::Requirement
33
+ none: false
30
34
  requirements:
31
35
  - - ~>
32
36
  - !ruby/object:Gem::Version
@@ -34,6 +38,7 @@ dependencies:
34
38
  type: :runtime
35
39
  prerelease: false
36
40
  version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
37
42
  requirements:
38
43
  - - ~>
39
44
  - !ruby/object:Gem::Version
@@ -41,6 +46,7 @@ dependencies:
41
46
  - !ruby/object:Gem::Dependency
42
47
  name: netrc
43
48
  requirement: !ruby/object:Gem::Requirement
49
+ none: false
44
50
  requirements:
45
51
  - - ~>
46
52
  - !ruby/object:Gem::Version
@@ -48,6 +54,7 @@ dependencies:
48
54
  type: :runtime
49
55
  prerelease: false
50
56
  version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
51
58
  requirements:
52
59
  - - ~>
53
60
  - !ruby/object:Gem::Version
@@ -55,6 +62,7 @@ dependencies:
55
62
  - !ruby/object:Gem::Dependency
56
63
  name: launchy
57
64
  requirement: !ruby/object:Gem::Requirement
65
+ none: false
58
66
  requirements:
59
67
  - - ~>
60
68
  - !ruby/object:Gem::Version
@@ -62,6 +70,7 @@ dependencies:
62
70
  type: :runtime
63
71
  prerelease: false
64
72
  version_requirements: !ruby/object:Gem::Requirement
73
+ none: false
65
74
  requirements:
66
75
  - - ~>
67
76
  - !ruby/object:Gem::Version
@@ -69,6 +78,7 @@ dependencies:
69
78
  - !ruby/object:Gem::Dependency
70
79
  name: parseconfig
71
80
  requirement: !ruby/object:Gem::Requirement
81
+ none: false
72
82
  requirements:
73
83
  - - ~>
74
84
  - !ruby/object:Gem::Version
@@ -76,6 +86,7 @@ dependencies:
76
86
  type: :runtime
77
87
  prerelease: false
78
88
  version_requirements: !ruby/object:Gem::Requirement
89
+ none: false
79
90
  requirements:
80
91
  - - ~>
81
92
  - !ruby/object:Gem::Version
@@ -83,6 +94,7 @@ dependencies:
83
94
  - !ruby/object:Gem::Dependency
84
95
  name: excon
85
96
  requirement: !ruby/object:Gem::Requirement
97
+ none: false
86
98
  requirements:
87
99
  - - ~>
88
100
  - !ruby/object:Gem::Version
@@ -90,6 +102,7 @@ dependencies:
90
102
  type: :development
91
103
  prerelease: false
92
104
  version_requirements: !ruby/object:Gem::Requirement
105
+ none: false
93
106
  requirements:
94
107
  - - ~>
95
108
  - !ruby/object:Gem::Version
@@ -97,6 +110,7 @@ dependencies:
97
110
  - !ruby/object:Gem::Dependency
98
111
  name: fakefs
99
112
  requirement: !ruby/object:Gem::Requirement
113
+ none: false
100
114
  requirements:
101
115
  - - ~>
102
116
  - !ruby/object:Gem::Version
@@ -104,6 +118,7 @@ dependencies:
104
118
  type: :development
105
119
  prerelease: false
106
120
  version_requirements: !ruby/object:Gem::Requirement
121
+ none: false
107
122
  requirements:
108
123
  - - ~>
109
124
  - !ruby/object:Gem::Version
@@ -111,6 +126,7 @@ dependencies:
111
126
  - !ruby/object:Gem::Dependency
112
127
  name: gem-release
113
128
  requirement: !ruby/object:Gem::Requirement
129
+ none: false
114
130
  requirements:
115
131
  - - ! '>='
116
132
  - !ruby/object:Gem::Version
@@ -118,6 +134,7 @@ dependencies:
118
134
  type: :development
119
135
  prerelease: false
120
136
  version_requirements: !ruby/object:Gem::Requirement
137
+ none: false
121
138
  requirements:
122
139
  - - ! '>='
123
140
  - !ruby/object:Gem::Version
@@ -125,6 +142,7 @@ dependencies:
125
142
  - !ruby/object:Gem::Dependency
126
143
  name: rake
127
144
  requirement: !ruby/object:Gem::Requirement
145
+ none: false
128
146
  requirements:
129
147
  - - ! '>='
130
148
  - !ruby/object:Gem::Version
@@ -132,6 +150,7 @@ dependencies:
132
150
  type: :development
133
151
  prerelease: false
134
152
  version_requirements: !ruby/object:Gem::Requirement
153
+ none: false
135
154
  requirements:
136
155
  - - ! '>='
137
156
  - !ruby/object:Gem::Version
@@ -139,6 +158,7 @@ dependencies:
139
158
  - !ruby/object:Gem::Dependency
140
159
  name: rr
141
160
  requirement: !ruby/object:Gem::Requirement
161
+ none: false
142
162
  requirements:
143
163
  - - ! '>='
144
164
  - !ruby/object:Gem::Version
@@ -146,6 +166,7 @@ dependencies:
146
166
  type: :development
147
167
  prerelease: false
148
168
  version_requirements: !ruby/object:Gem::Requirement
169
+ none: false
149
170
  requirements:
150
171
  - - ! '>='
151
172
  - !ruby/object:Gem::Version
@@ -153,6 +174,7 @@ dependencies:
153
174
  - !ruby/object:Gem::Dependency
154
175
  name: rspec
155
176
  requirement: !ruby/object:Gem::Requirement
177
+ none: false
156
178
  requirements:
157
179
  - - ! '>='
158
180
  - !ruby/object:Gem::Version
@@ -160,6 +182,7 @@ dependencies:
160
182
  type: :development
161
183
  prerelease: false
162
184
  version_requirements: !ruby/object:Gem::Requirement
185
+ none: false
163
186
  requirements:
164
187
  - - ! '>='
165
188
  - !ruby/object:Gem::Version
@@ -248,6 +271,7 @@ files:
248
271
  - lib/mortar/templates/project/controlscripts/lib/__init__.py
249
272
  - lib/mortar/templates/project/fixtures/gitkeep
250
273
  - lib/mortar/templates/project/gitignore
274
+ - lib/mortar/templates/project/lib/gitkeep
251
275
  - lib/mortar/templates/project/macros/gitkeep
252
276
  - lib/mortar/templates/project/pigscripts/pigscript.pig
253
277
  - lib/mortar/templates/project/udfs/java/gitkeep
@@ -299,25 +323,26 @@ files:
299
323
  - spec/support/display_message_matcher.rb
300
324
  homepage: http://mortardata.com/
301
325
  licenses: []
302
- metadata: {}
303
326
  post_install_message:
304
327
  rdoc_options: []
305
328
  require_paths:
306
329
  - lib
307
330
  required_ruby_version: !ruby/object:Gem::Requirement
331
+ none: false
308
332
  requirements:
309
333
  - - ! '>='
310
334
  - !ruby/object:Gem::Version
311
335
  version: 1.8.7
312
336
  required_rubygems_version: !ruby/object:Gem::Requirement
337
+ none: false
313
338
  requirements:
314
339
  - - ! '>='
315
340
  - !ruby/object:Gem::Version
316
341
  version: '0'
317
342
  requirements: []
318
343
  rubyforge_project:
319
- rubygems_version: 2.2.2
344
+ rubygems_version: 1.8.23
320
345
  signing_key:
321
- specification_version: 4
346
+ specification_version: 3
322
347
  summary: Client library and CLI to interact with the Mortar service.
323
348
  test_files: []
checksums.yaml DELETED
@@ -1,15 +0,0 @@
1
- ---
2
- !binary "U0hBMQ==":
3
- metadata.gz: !binary |-
4
- MGY5ZmJiNTI3MmViNmRiNTkzZDA2YmViYWVkZDNhMGE3ZDQzYmYyYg==
5
- data.tar.gz: !binary |-
6
- NmExMDVmODVkODQ2NzUxMWUyZTAzZTA1YzkzN2QyZjM2ZWRhZTUwZg==
7
- SHA512:
8
- metadata.gz: !binary |-
9
- NjJmZGMwOWZkMjVkMmJkODIwZjJkZmU2OTIzMWY4ZmFiNGExNzJlN2YxOGE5
10
- ZmQ2YmQ1MzlhMGFlZWY2Y2QxMjMxYWFlYjdhYmJhOGRkYzFlMjFkMzVmNmJj
11
- MmE0NmQ4NTYyODkxMWEwOTY2YWI5M2ZlMWIyZTYxOTBlZDBmN2U=
12
- data.tar.gz: !binary |-
13
- OTQ4NjFmN2QyMGZiNjZhODQ2OWVmMDlmZWM4OTgyNzVhODc2Mjk5N2ViNWVk
14
- OGUxMzNmNWFhMGM4MTgyMWRhZDViZWZkNzVlNjZjYTlhNmQzY2Q5ZjdiMTVh
15
- MDIzZWEyMDhjY2VlMDNlYjNhYzk0NjcxNzNkN2VmNWIwMzE1YTY=