dpl 2.0.5.beta.2 → 2.0.5.beta.2.1
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 +4 -4
- data/Gemfile +1 -2
- data/Gemfile.lock +1 -2
- data/lib/dpl/providers/chef_supermarket.rb +2 -3
- data/lib/dpl/providers/git_push.rb +1 -2
- data/lib/dpl/providers/pages/api.rb +0 -1
- data/lib/dpl/providers/pages/git.rb +1 -2
- data/lib/dpl/providers/releases.rb +0 -1
- data/lib/dpl/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2be404b300bd14c198ac2cc6e6220db39a0eb7aea6285e1060fb35e897b7018d
|
|
4
|
+
data.tar.gz: 0b072cd771924d963085e964459c76fbafaae17cecdd9d0bc797693e335fc87f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3038b7850e6d1613033248663a350e197e3edc0d663fbba9ea1041e2b2abff6ef102ae242cb6a3f6c1233020c3a7d333eb71542ed9321afe97d7e5ddfb13b580
|
|
7
|
+
data.tar.gz: 1f96bfceb0c55a96c43f33e79b7404a9efa3aa4b63e511b70273a608309893589f4bc71d0b163f097c755ef3651d7835675f49f9d1e6bf549eca54558b07d2c5
|
data/Gemfile
CHANGED
|
@@ -12,8 +12,7 @@ gemspec name: 'dpl'
|
|
|
12
12
|
# gem 'json_pure', '~> 2.6'
|
|
13
13
|
|
|
14
14
|
# gem 'regstry', path: '../../registry'
|
|
15
|
-
|
|
16
|
-
gem 'uri', '0.13.0'
|
|
15
|
+
gem 'logger', '1.6.0'
|
|
17
16
|
|
|
18
17
|
gems = Dpl::Support::Gems.new('lib/dpl/providers/**/*.rb')
|
|
19
18
|
gems.each do |name, version, opts|
|
data/Gemfile.lock
CHANGED
|
@@ -11,7 +11,7 @@ GIT
|
|
|
11
11
|
PATH
|
|
12
12
|
remote: .
|
|
13
13
|
specs:
|
|
14
|
-
dpl (2.0.5.beta.2)
|
|
14
|
+
dpl (2.0.5.beta.2.1)
|
|
15
15
|
net-http (~> 0.4.1)
|
|
16
16
|
travis-cl
|
|
17
17
|
travis-packagecloud-ruby
|
|
@@ -629,7 +629,6 @@ DEPENDENCIES
|
|
|
629
629
|
rubyzip (~> 2.3)
|
|
630
630
|
simplecov-console
|
|
631
631
|
time (= 0.3.0)
|
|
632
|
-
uri (= 0.13.0)
|
|
633
632
|
webmock
|
|
634
633
|
|
|
635
634
|
RUBY VERSION
|
|
@@ -14,6 +14,7 @@ module Dpl
|
|
|
14
14
|
tbd
|
|
15
15
|
STR
|
|
16
16
|
|
|
17
|
+
gem 'logger', '1.6.0'
|
|
17
18
|
gem 'date', '~> 3.3.4'
|
|
18
19
|
gem 'time', '0.3.0'
|
|
19
20
|
gem 'chef', '~> 18', require: %w[
|
|
@@ -21,8 +22,6 @@ module Dpl
|
|
|
21
22
|
chef/cookbook_uploader
|
|
22
23
|
]
|
|
23
24
|
|
|
24
|
-
gem 'uri', '0.13.0'
|
|
25
|
-
gem 'logger', '1.6.0'
|
|
26
25
|
gem 'json'
|
|
27
26
|
gem 'mime-types', '~> 3.4.1'
|
|
28
27
|
gem 'net-telnet', '~> 0.1.0' if ruby_pre?('2.3')
|
|
@@ -68,7 +67,7 @@ module Dpl
|
|
|
68
67
|
end
|
|
69
68
|
|
|
70
69
|
def params
|
|
71
|
-
{ cookbook: json(category:
|
|
70
|
+
{ cookbook: json(category:), tarball: }
|
|
72
71
|
end
|
|
73
72
|
|
|
74
73
|
def tarball
|
|
@@ -14,7 +14,6 @@ module Dpl
|
|
|
14
14
|
changes produced by the build, and optionally opening a pull request.
|
|
15
15
|
STR
|
|
16
16
|
|
|
17
|
-
gem 'uri', '0.13.0'
|
|
18
17
|
gem 'logger', '1.6.0'
|
|
19
18
|
gem 'octokit', '~> 7'
|
|
20
19
|
gem 'public_suffix', '~> 5'
|
|
@@ -129,7 +128,7 @@ module Dpl
|
|
|
129
128
|
path = '~/.dpl/deploy_key'
|
|
130
129
|
info(:setup_deploy_key, path:)
|
|
131
130
|
mv deploy_key, path
|
|
132
|
-
chmod
|
|
131
|
+
chmod 0o600, path
|
|
133
132
|
setup_git_ssh path
|
|
134
133
|
shell :check_deploy_key, key: path
|
|
135
134
|
end
|
|
@@ -14,7 +14,6 @@ module Dpl
|
|
|
14
14
|
tbd
|
|
15
15
|
STR
|
|
16
16
|
|
|
17
|
-
gem 'uri', '0.13.0'
|
|
18
17
|
gem 'logger', '1.6.0'
|
|
19
18
|
gem 'octokit', '~> 7'
|
|
20
19
|
gem 'public_suffix', '~> 5'
|
|
@@ -122,7 +121,7 @@ module Dpl
|
|
|
122
121
|
path = '~/.dpl/deploy_key'
|
|
123
122
|
info(:setup_deploy_key, path:)
|
|
124
123
|
mv deploy_key, path
|
|
125
|
-
chmod
|
|
124
|
+
chmod 0o600, path
|
|
126
125
|
setup_git_ssh path
|
|
127
126
|
shell :check_deploy_key, key: path, url: opts[:url]
|
|
128
127
|
end
|
data/lib/dpl/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dpl
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.5.beta.2
|
|
4
|
+
version: 2.0.5.beta.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Konstantin Haase
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2024-09-
|
|
13
|
+
date: 2024-09-23 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: net-http
|
|
@@ -192,11 +192,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
192
192
|
version: '3.1'
|
|
193
193
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
194
194
|
requirements:
|
|
195
|
-
- - "
|
|
195
|
+
- - ">="
|
|
196
196
|
- !ruby/object:Gem::Version
|
|
197
|
-
version:
|
|
197
|
+
version: '0'
|
|
198
198
|
requirements: []
|
|
199
|
-
rubygems_version: 3.
|
|
199
|
+
rubygems_version: 3.5.16
|
|
200
200
|
signing_key:
|
|
201
201
|
specification_version: 4
|
|
202
202
|
summary: Dpl runs deployments at Travis CI
|