dpl 1.8.40 → 1.8.41

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,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 66f5e432202d2da5121683ccf524ff1bd0a5d3c0
4
- data.tar.gz: c1686cc9cbd7fa67a50eeb42cb119b76dd0b1471
3
+ metadata.gz: a4493d11b8a81f2d1febdf38117263d9739788ac
4
+ data.tar.gz: 82dece38f2b892a5695b133974dbc8cce2ae6366
5
5
  SHA512:
6
- metadata.gz: 4e2d40f655eb11130c7d28dc6031b5b900c1361d546b1803862e556ace5f7c6d008efda3ed40a8e7c26fd1a6ea1025d1e1a5fe0d88a848846ec10c4429ce0c8b
7
- data.tar.gz: b15f40300a9a30c2965aa8cdf6aceb397e8d5b5418f5a3a6d0f7f973510e694a3516aa23a7e034b54211e65a3be59cb2570bc6d69c307b142ba9823b2fc9f0f7
6
+ metadata.gz: c710a56687b17b83a4f3899602c7f47d41d68986082d1e647d836e80d02de93bc9c6d028090611698acb8325971564710d1f3cb55680b64bd7fcdfc57e606ca3
7
+ data.tar.gz: 611661ceeb246b4b0e82594185ad27b2401e50279b3d1b2b17c040fb84699844d1e10de1f09c81b5eba35f07ace67364e4fa182e7178e18ac2086fa315358c42
data/Gemfile CHANGED
@@ -33,16 +33,16 @@ group :rubygems do
33
33
  end
34
34
 
35
35
  group :sss do
36
- gem 'aws-sdk', '~> 2.6.32'
36
+ gem 'aws-sdk', '~> 2.6.32', '< 3.0'
37
37
  gem 'mime-types'
38
38
  end
39
39
 
40
40
  group :code_deploy do
41
- gem 'aws-sdk', '~> 2.6.32'
41
+ gem 'aws-sdk', '~> 2.6.32', '< 3.0'
42
42
  end
43
43
 
44
44
  group :lambda do
45
- gem 'aws-sdk', '~> 2.6.32'
45
+ gem 'aws-sdk', '~> 2.6.32', '< 3.0'
46
46
  gem 'rubyzip', '~> 1.1'
47
47
  end
48
48
 
@@ -63,7 +63,7 @@ group :gcs do
63
63
  end
64
64
 
65
65
  group :elastic_beanstalk do
66
- gem 'aws-sdk', '~> 2.6.32'
66
+ gem 'aws-sdk', '~> 2.6.32', '< 3.0'
67
67
  gem 'rubyzip', '~> 1.1'
68
68
  end
69
69
 
@@ -96,5 +96,5 @@ group :deis do
96
96
  end
97
97
 
98
98
  group :opsworks do
99
- gem 'aws-sdk', '~> 2.6.32'
99
+ gem 'aws-sdk', '~> 2.6.32', '< 3.0'
100
100
  end
data/README.md CHANGED
@@ -13,6 +13,7 @@ Dpl supports the following providers:
13
13
  * [AWS CodeDeploy](#aws-codedeploy)
14
14
  * [AWS Elastic Beanstalk](#elastic-beanstalk)
15
15
  * [AWS OpsWorks](#opsworks)
16
+ * [AWS S3](#s3)
16
17
  * [Azure Web Apps](#azure-web-apps)
17
18
  * [Bintray](#bintray)
18
19
  * [BitBalloon](#bitballoon)
@@ -43,7 +44,6 @@ Dpl supports the following providers:
43
44
  * [PyPi](#pypi)
44
45
  * [Rackspace Cloud Files](#rackspace-cloud-files)
45
46
  * [RubyGems](#rubygems)
46
- * [S3](#s3)
47
47
  * [Scalingo](#scalingo)
48
48
  * [Script](#script)
49
49
  * [Surge.sh](#surgesh)
@@ -3,7 +3,7 @@ require 'json'
3
3
  module DPL
4
4
  class Provider
5
5
  class CodeDeploy < Provider
6
- requires 'aws-sdk', pre: true, version: '~> 2.8.5'
6
+ requires 'aws-sdk', pre: true, version: '< 3.0'
7
7
 
8
8
  def code_deploy
9
9
  @code_deploy ||= Aws::CodeDeploy::Client.new(code_deploy_options)
@@ -5,7 +5,7 @@ module DPL
5
5
  class ElasticBeanstalk < Provider
6
6
  experimental 'AWS Elastic Beanstalk'
7
7
 
8
- requires 'aws-sdk'
8
+ requires 'aws-sdk', version: '< 3.0'
9
9
  requires 'rubyzip', :load => 'zip'
10
10
 
11
11
  DEFAULT_REGION = 'us-east-1'
@@ -44,7 +44,7 @@ module DPL
44
44
  end
45
45
 
46
46
  def check_auth
47
- unless with_python_2_7("#{GCLOUD} -q --verbosity debug auth activate-service-account --key-file #{keyfile}")
47
+ unless with_python_2_7("#{GCLOUD} -q auth activate-service-account --key-file #{keyfile}")
48
48
  error 'Authentication failed.'
49
49
  end
50
50
  end
@@ -5,7 +5,7 @@ require 'fileutils'
5
5
  module DPL
6
6
  class Provider
7
7
  class Lambda < Provider
8
- requires 'aws-sdk'
8
+ requires 'aws-sdk', version: '< 3.0'
9
9
  requires 'rubyzip', load: 'zip'
10
10
 
11
11
  def lambda
@@ -3,7 +3,7 @@ require 'timeout'
3
3
  module DPL
4
4
  class Provider
5
5
  class OpsWorks < Provider
6
- requires 'aws-sdk', version: '~> 2'
6
+ requires 'aws-sdk', version: '< 3.0'
7
7
  experimental 'AWS OpsWorks'
8
8
 
9
9
  def opsworks
@@ -3,7 +3,7 @@ require 'json'
3
3
  module DPL
4
4
  class Provider
5
5
  class S3 < Provider
6
- requires 'aws-sdk', version: '>= 2.0.22'
6
+ requires 'aws-sdk', version: '< 3.0'
7
7
  requires 'mime-types', version: '~> 2.0'
8
8
 
9
9
  def api
data/lib/dpl/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module DPL
2
- VERSION = '1.8.40'
2
+ VERSION = '1.8.41'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dpl
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.8.40
4
+ version: 1.8.41
5
5
  platform: ruby
6
6
  authors:
7
7
  - Konstantin Haase
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-07-12 00:00:00.000000000 Z
11
+ date: 2017-08-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rspec
@@ -230,7 +230,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
230
230
  version: '0'
231
231
  requirements: []
232
232
  rubyforge_project:
233
- rubygems_version: 2.4.5.1
233
+ rubygems_version: 2.5.2
234
234
  signing_key:
235
235
  specification_version: 4
236
236
  summary: deploy tool