engineyard-serverside-adapter 2.2.1 → 2.2.2

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,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- NDIzODliZGY4OTkzMDk2N2M0YjQyNTM4ODM5MTE1ODgwNTE0NzE2YQ==
4
+ NzhmM2I1OGE3MTFlOTQyMTIxZDczMTU0ZDIxMjIxYTNjODJiNjkyZg==
5
5
  data.tar.gz: !binary |-
6
- YzdjZTFmODM3YWQ2MDU0MmQ5ZWMzODQ2NmI0YTIzOTUxYWFjZjNlMQ==
6
+ YzkwZDgxOTljZDI0ZTZlMzJhNTk4ZWE4MWY0YTZhYmY0ZjhiYjQzMQ==
7
7
  !binary "U0hBNTEy":
8
8
  metadata.gz: !binary |-
9
- ZGE4OGU2NDRiY2Y2YTc5NDk0Y2I0OGJiMmUxZGEyNGM2NTJiZjQzZjU2NDc2
10
- NWQ1ZWY4MGU4NGEzZmJmODg2MjQwNjdlYzNlNTE1OGJkNjk0NDNhNDc5YmQ4
11
- NWMyODY1NmU1YWEyM2YwZWIyNDQ3ODI3YzZkOTk4MDZmNmNmZTQ=
9
+ MWFjYTE4MWFhNDZhMDAxY2EyY2UzZjdiNTRmYmUyZDBhNzhlNTU0M2VhNmEz
10
+ ZmQ5NjI0YzRkYWY1ZTZjYTg5NzNlZjFkOTk1YjljYmMzY2FhODc1Mjc1MmFh
11
+ NTkyMDFkZWJkYWQ1NDMzNjU3MTZhNzU4YzJkM2RlZjg4MTg5YWE=
12
12
  data.tar.gz: !binary |-
13
- M2RmYmYxMTlmZDM0MGViNWMxZTE5ZDM2ODY3NmEzMTA4MWU0ODE1ZTA1OWMy
14
- NWRmNmE2NjgyYzY2ZWIyM2NhNTZlMDkyYzBiNzFjYzNiMDhhZDllZGIyYWMy
15
- YzcxMTc4Y2QxOWJlNTcxN2JkNmRiOGUwNTNkMTU0ZGEyZTc5MWM=
13
+ ODkzODI5OWQ1Mzk2OGZlYmMyYmE4ZGExN2I4NmEwYWUyYjQ0ZmI4MjljZTI2
14
+ MzFkNmU0YTgzN2QyODYwYWMyN2Q2M2Y0NDg3MTg1YTU0NmUyNWRmMjQ4ODcz
15
+ ZDE4YzQ4MTc1MjNhZGQyOWFmN2Q4ZDFmNDcwMDhjNjRmZGU5OGQ=
data/ChangeLog.md CHANGED
@@ -4,6 +4,10 @@
4
4
 
5
5
  *
6
6
 
7
+ ## v2.2.2 (2013-10-10)
8
+
9
+ * Remove --clean option form Integrate command. We've decided that integrate should just always run clean.
10
+
7
11
  ## v2.2.1 (2013-10-03)
8
12
 
9
13
  * Add --clean option to Integrate command.
data/Gemfile CHANGED
@@ -1,9 +1,3 @@
1
1
  source "https://rubygems.org"
2
2
 
3
3
  gemspec
4
-
5
- group :guard do
6
- gem 'guard', :require => false
7
- gem 'guard-rspec', :require => false
8
- gem 'rb-fsevent', '~> 0.9.1', :require => false
9
- end
@@ -6,7 +6,7 @@ module EY
6
6
  option :app, :string, :required => true
7
7
  option :account_name, :string, :required => true, :version => '>= 2.0.0'
8
8
  option :archive, :string, :version => '>= 2.3.0'
9
- option :clean, :boolean, :version => '>= 2.3.1'
9
+ option :clean, :boolean, :version => '>= 2.3.2'
10
10
  option :config, :json
11
11
  option :environment_name, :string, :required => true, :version => '>= 2.0.0'
12
12
  option :git, :string, :version => '>= 2.3.0'
@@ -5,7 +5,6 @@ module EY
5
5
 
6
6
  option :app, :string, :required => true
7
7
  option :account_name, :string, :required => true, :version => '>=2.0.0'
8
- option :clean, :boolean, :version => '>= 2.3.1'
9
8
  option :environment_name, :string, :required => true, :version => '>=2.0.0'
10
9
  option :stack, :string, :required => true
11
10
  option :instances, :instances, :required => true
@@ -1,7 +1,7 @@
1
1
  module EY
2
2
  module Serverside
3
3
  class Adapter
4
- VERSION = "2.2.1"
4
+ VERSION = "2.2.2"
5
5
  end
6
6
  end
7
7
  end
data/spec/deploy_spec.rb CHANGED
@@ -36,6 +36,7 @@ describe EY::Serverside::Adapter::Deploy do
36
36
  it_should_exclude_from_command :repo, %w[2.3.0]
37
37
  it_should_exclude_from_command :git, %w[1.6.4 2.0.0 2.1.0 2.2.0]
38
38
  it_should_exclude_from_command :archive, %w[1.6.4 2.0.0 2.1.0 2.2.0]
39
+ it_should_exclude_from_command :clean, %w[1.6.4 2.0.0 2.1.0 2.2.0 2.3.1]
39
40
 
40
41
  it_should_behave_like "it treats config as optional"
41
42
  it_should_behave_like "it treats migrate as optional"
@@ -4,7 +4,6 @@ describe EY::Serverside::Adapter::Integrate do
4
4
  it_should_behave_like "it installs engineyard-serverside"
5
5
 
6
6
  it_should_behave_like "it accepts app"
7
- it_should_behave_like "it accepts clean"
8
7
  it_should_behave_like "it accepts environment_name"
9
8
  it_should_behave_like "it accepts account_name"
10
9
  it_should_behave_like "it accepts framework_env"
data/spec/spec_helper.rb CHANGED
@@ -4,12 +4,8 @@ require 'bundler/setup'
4
4
  require 'engineyard-serverside-adapter'
5
5
  require 'pp'
6
6
 
7
- begin
8
- specs = Gem::SpecFetcher.fetcher.fetch(Gem::Dependency.new("engineyard-serverside"))
9
- ENGINEYARD_SERVERSIDE_VERSION = specs.map {|spec,| spec.version}.sort.last.to_s
10
- rescue
11
- ENGINEYARD_SERVERSIDE_VERSION = '2.3.1'
12
- end
7
+ # Default version to use in tests when one is not specified
8
+ ENGINEYARD_SERVERSIDE_VERSION = '2.3.2'
13
9
 
14
10
  module ArgumentsHelpers
15
11
  def serverside_version
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: engineyard-serverside-adapter
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.1
4
+ version: 2.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Martin Emde
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-10-03 00:00:00.000000000 Z
12
+ date: 2013-10-10 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: escape