dpl 1.10.9.travis.3280.5 → 1.10.9
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 +5 -5
- data/dpl-chef_supermarket.gemspec +11 -4
- data/dpl-heroku.gemspec +1 -1
- data/dpl-pages.gemspec +1 -1
- data/dpl-puppet_forge.gemspec +1 -1
- data/lib/dpl/version.rb +1 -1
- metadata +10 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: a774fc4f9cc1839e28e201b2039f45da9b42f676
|
|
4
|
+
data.tar.gz: f8548902bec37bdaea90d778a2fbfaff5bd826cd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0b6ed6be1f815d7a03b2c9e3df380e721ae0cf784138780cb44c21c145629517d486f732b882a29deb39d93b6625689a088cd1a6396b45b061123e44eb6c7c80
|
|
7
|
+
data.tar.gz: 2263da1ab53d14c83b06881338491ccc4973502a4b722d450a3357d6dc2cc39a61291cff7615d71fed79fb588fdbac4d14cec3dfc6e14a2cc6105552a458f132
|
|
@@ -1,10 +1,17 @@
|
|
|
1
1
|
require './gemspec_helper'
|
|
2
2
|
|
|
3
|
+
deps = [
|
|
4
|
+
['rack'],
|
|
5
|
+
['mime-types'],
|
|
6
|
+
]
|
|
7
|
+
|
|
3
8
|
if Gem::Version.new(RUBY_VERSION) < Gem::Version.new("2.3.0")
|
|
4
|
-
|
|
9
|
+
deps << ['net-telnet', '~> 0.1.0'] << ['chef', '~> 12.0'] << ['public_suffix', '< 3.1.0']
|
|
10
|
+
gemspec_for 'chef_supermarket', deps
|
|
5
11
|
elsif Gem::Version.new(RUBY_VERSION) < Gem::Version.new("2.4.0")
|
|
6
|
-
gemspec_for 'chef_supermarket',
|
|
12
|
+
gemspec_for 'chef_supermarket', (deps << ['chef', '~> 13.0'])
|
|
13
|
+
elsif Gem::Version.new(RUBY_VERSION) < Gem::Version.new("2.5.0")
|
|
14
|
+
gemspec_for 'chef_supermarket', (deps << ['chef', '~> 14.0'])
|
|
7
15
|
else
|
|
8
|
-
gemspec_for 'chef_supermarket',
|
|
16
|
+
gemspec_for 'chef_supermarket', (deps << ['chef', '>= 14'])
|
|
9
17
|
end
|
|
10
|
-
|
data/dpl-heroku.gemspec
CHANGED
data/dpl-pages.gemspec
CHANGED
data/dpl-puppet_forge.gemspec
CHANGED
data/lib/dpl/version.rb
CHANGED
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.10.9
|
|
4
|
+
version: 1.10.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Konstantin Haase
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-
|
|
11
|
+
date: 2019-05-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rspec
|
|
@@ -222,12 +222,16 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
222
222
|
version: '2.2'
|
|
223
223
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
224
224
|
requirements:
|
|
225
|
-
- - "
|
|
225
|
+
- - ">="
|
|
226
226
|
- !ruby/object:Gem::Version
|
|
227
|
-
version:
|
|
227
|
+
version: '0'
|
|
228
228
|
requirements: []
|
|
229
|
-
|
|
229
|
+
rubyforge_project:
|
|
230
|
+
rubygems_version: 2.4.5.5
|
|
230
231
|
signing_key:
|
|
231
232
|
specification_version: 4
|
|
232
233
|
summary: deploy tool
|
|
233
|
-
test_files:
|
|
234
|
+
test_files:
|
|
235
|
+
- spec/cli_spec.rb
|
|
236
|
+
- spec/provider_spec.rb
|
|
237
|
+
- spec/spec_helper.rb
|