engineyard-serverside 1.5.20 → 1.5.21

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.
@@ -15,7 +15,8 @@ module EY
15
15
 
16
16
  attr_writer :release_path
17
17
 
18
- def initialize(opts={})
18
+ def initialize(options={})
19
+ opts = options.dup
19
20
  @release_path = opts[:release_path]
20
21
  config = JSON.parse(opts.delete("config") || "{}")
21
22
  @configuration = DEFAULT_CONFIG.merge(config).merge(opts)
@@ -1,5 +1,5 @@
1
1
  module EY
2
2
  module Serverside
3
- VERSION = '1.5.20'
3
+ VERSION = '1.5.21'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: engineyard-serverside
3
3
  version: !ruby/object:Gem::Version
4
- hash: 43
4
+ hash: 41
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 5
9
- - 20
10
- version: 1.5.20
9
+ - 21
10
+ version: 1.5.21
11
11
  platform: ruby
12
12
  authors:
13
13
  - EY Cloud Team
@@ -18,9 +18,7 @@ cert_chain: []
18
18
  date: 2011-12-08 00:00:00 Z
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
- name: rspec
22
- prerelease: false
23
- requirement: &id001 !ruby/object:Gem::Requirement
21
+ version_requirements: &id001 !ruby/object:Gem::Requirement
24
22
  none: false
25
23
  requirements:
26
24
  - - "="
@@ -31,12 +29,12 @@ dependencies:
31
29
  - 3
32
30
  - 2
33
31
  version: 1.3.2
32
+ requirement: *id001
34
33
  type: :development
35
- version_requirements: *id001
36
- - !ruby/object:Gem::Dependency
37
- name: rake
38
34
  prerelease: false
39
- requirement: &id002 !ruby/object:Gem::Requirement
35
+ name: rspec
36
+ - !ruby/object:Gem::Dependency
37
+ version_requirements: &id002 !ruby/object:Gem::Requirement
40
38
  none: false
41
39
  requirements:
42
40
  - - ">="
@@ -48,8 +46,10 @@ dependencies:
48
46
  - 2
49
47
  - 2
50
48
  version: 0.9.2.2
49
+ requirement: *id002
51
50
  type: :development
52
- version_requirements: *id002
51
+ prerelease: false
52
+ name: rake
53
53
  description:
54
54
  email: cloud@engineyard.com
55
55
  executables:
@@ -270,7 +270,6 @@ files:
270
270
  - spec/custom_deploy_spec.rb
271
271
  - spec/deploy_hook_spec.rb
272
272
  - spec/deprecation_spec.rb
273
- - spec/fixtures/gitrepo/bar
274
273
  - spec/fixtures/gitrepo/foo
275
274
  - spec/fixtures/gitrepo.tar.gz
276
275
  - spec/fixtures/invalid_hook.rb
@@ -336,7 +335,6 @@ test_files:
336
335
  - spec/custom_deploy_spec.rb
337
336
  - spec/deploy_hook_spec.rb
338
337
  - spec/deprecation_spec.rb
339
- - spec/fixtures/gitrepo/bar
340
338
  - spec/fixtures/gitrepo/foo
341
339
  - spec/fixtures/gitrepo.tar.gz
342
340
  - spec/fixtures/invalid_hook.rb
File without changes