dpl 2.0.0.alpha.12 → 2.0.0.alpha.13

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.
@@ -0,0 +1,22 @@
1
+ $: << 'lib'
2
+
3
+ require 'dpl/version'
4
+
5
+ Gem::Specification.new do |s|
6
+ s.version = Dpl::VERSION
7
+ s.name = 'dpl'
8
+ s.authors = ['Konstantin Haase', 'Hiro Asari', 'Sven Fuchs']
9
+ s.email = ['konstantin@travis-ci.com', 'hiro@travis-ci.com', 'sven@travis-ci.com']
10
+ s.homepage = 'https://github.com/travis-ci/dpl'
11
+ s.summary = 'Dpl runs deployments at Travis CI'
12
+ s.description = 'Dpl (dee-pee-ell) is a tool made for continuous deployment, running deployments at Travis CI.'
13
+ s.license = 'MIT'
14
+ s.require_path = 'lib'
15
+ s.required_ruby_version = '>= 2.2'
16
+
17
+ s.executables = ['dpl']
18
+ s.files = Dir['{config/**/*,lib/**/*,[A-Z]*}']
19
+
20
+ s.add_runtime_dependency 'cl', '~> 1.0'
21
+ s.add_development_dependency 'rake', '~> 12.3'
22
+ end
@@ -36,10 +36,13 @@ module Dpl
36
36
  end
37
37
 
38
38
  def gems_require(gems)
39
- gems.each { |gem| gem_require(gem) }
39
+ gems.each { |gem| gem_require(*gem) }
40
40
  end
41
41
 
42
42
  def gem_require(name, version = nil, opts = {})
43
+ # not sure why this is needed. bundler should take care of this, but
44
+ # it does not for octokit for whatever reason
45
+ require opts[:require] || name rescue nil
43
46
  cmds << "[gem:require] #{name} (#{version}, #{opts})"
44
47
  end
45
48
 
@@ -145,8 +145,6 @@ module Dpl
145
145
 
146
146
  abstract
147
147
 
148
- arg :provider, 'The provider name', required: true
149
-
150
148
  opt '--cleanup', 'Clean up build artifacts from the Git working directory before the deployment', negate: %w(skip)
151
149
  opt '--run CMD', 'Commands to execute after the deployment finished successfully', type: :array
152
150
  opt '--stage NAME', 'Execute the given stage(s) only', type: :array, internal: true, default: STAGES
@@ -3,7 +3,7 @@ require 'open-uri'
3
3
  module Dpl
4
4
  module Providers
5
5
  class Surge < Provider
6
- status :beta
6
+ status :stable
7
7
 
8
8
  description sq(<<-str)
9
9
  tbd
@@ -1,3 +1,3 @@
1
1
  module Dpl
2
- VERSION = '2.0.0.alpha.12'
2
+ VERSION = '2.0.0.alpha.13'
3
3
  end
@@ -0,0 +1,222 @@
1
+ [
2
+ {
3
+ "name": "anynines",
4
+ "status": "alpha",
5
+ "date": "2019-08-05"
6
+ },
7
+ {
8
+ "name": "azure_web_apps",
9
+ "status": "alpha",
10
+ "date": "2019-08-05"
11
+ },
12
+ {
13
+ "name": "bintray",
14
+ "status": "stable",
15
+ "date": "2019-11-04"
16
+ },
17
+ {
18
+ "name": "bluemixcloudfoundry",
19
+ "status": "alpha",
20
+ "date": "2019-08-05"
21
+ },
22
+ {
23
+ "name": "boxfuse",
24
+ "status": "alpha",
25
+ "date": "2019-08-05"
26
+ },
27
+ {
28
+ "name": "cargo",
29
+ "status": "beta",
30
+ "date": "2019-10-01"
31
+ },
32
+ {
33
+ "name": "chef_supermarket",
34
+ "status": "alpha",
35
+ "date": "2019-08-05"
36
+ },
37
+ {
38
+ "name": "cloud66",
39
+ "status": "alpha",
40
+ "date": "2019-08-05"
41
+ },
42
+ {
43
+ "name": "cloudfiles",
44
+ "status": "alpha",
45
+ "date": "2019-08-05"
46
+ },
47
+ {
48
+ "name": "cloudformation",
49
+ "status": "stable",
50
+ "date": "2019-11-04"
51
+ },
52
+ {
53
+ "name": "cloudfoundry",
54
+ "status": "stable",
55
+ "date": "2019-10-28"
56
+ },
57
+ {
58
+ "name": "codedeploy",
59
+ "status": "alpha",
60
+ "date": "2019-08-05"
61
+ },
62
+ {
63
+ "name": "convox",
64
+ "status": "dev",
65
+ "date": "2019-08-16"
66
+ },
67
+ {
68
+ "name": "datica",
69
+ "status": "dev",
70
+ "date": "2019-08-05"
71
+ },
72
+ {
73
+ "name": "elasticbeanstalk",
74
+ "status": "stable",
75
+ "date": "2019-10-28"
76
+ },
77
+ {
78
+ "name": "engineyard",
79
+ "status": "alpha",
80
+ "date": "2019-08-05"
81
+ },
82
+ {
83
+ "name": "firebase",
84
+ "status": "stable",
85
+ "date": "2019-10-28"
86
+ },
87
+ {
88
+ "name": "gae",
89
+ "status": "stable",
90
+ "date": "2019-10-29"
91
+ },
92
+ {
93
+ "name": "gcs",
94
+ "status": "stable",
95
+ "date": "2019-10-28"
96
+ },
97
+ {
98
+ "name": "gleis",
99
+ "status": "alpha",
100
+ "date": "2019-09-04"
101
+ },
102
+ {
103
+ "name": "hackage",
104
+ "status": "alpha",
105
+ "date": "2019-08-05"
106
+ },
107
+ {
108
+ "name": "hephy",
109
+ "status": "beta",
110
+ "date": "2019-10-07"
111
+ },
112
+ {
113
+ "name": "heroku:api",
114
+ "status": "stable",
115
+ "date": "2019-10-28"
116
+ },
117
+ {
118
+ "name": "heroku:git",
119
+ "status": "alpha",
120
+ "date": "2019-08-05"
121
+ },
122
+ {
123
+ "name": "lambda",
124
+ "status": "stable",
125
+ "date": "2019-11-04"
126
+ },
127
+ {
128
+ "name": "launchpad",
129
+ "status": "alpha",
130
+ "date": "2019-08-05"
131
+ },
132
+ {
133
+ "name": "netlify",
134
+ "status": "stable",
135
+ "date": "2019-11-11"
136
+ },
137
+ {
138
+ "name": "npm",
139
+ "status": "stable",
140
+ "date": "2019-11-04"
141
+ },
142
+ {
143
+ "name": "openshift",
144
+ "status": "stable",
145
+ "date": "2019-11-04"
146
+ },
147
+ {
148
+ "name": "opsworks",
149
+ "status": "stable",
150
+ "date": "2019-11-18"
151
+ },
152
+ {
153
+ "name": "packagecloud",
154
+ "status": "alpha",
155
+ "date": "2019-08-05"
156
+ },
157
+ {
158
+ "name": "pages:api",
159
+ "status": "dev",
160
+ "date": "2019-09-10"
161
+ },
162
+ {
163
+ "name": "pages:git",
164
+ "status": "stable",
165
+ "date": "2019-10-28"
166
+ },
167
+ {
168
+ "name": "puppetforge",
169
+ "status": "alpha",
170
+ "date": "2019-08-05"
171
+ },
172
+ {
173
+ "name": "pypi",
174
+ "status": "stable",
175
+ "date": "2019-11-04"
176
+ },
177
+ {
178
+ "name": "releases",
179
+ "status": "stable",
180
+ "date": "2019-10-29"
181
+ },
182
+ {
183
+ "name": "rubygems",
184
+ "status": "stable",
185
+ "date": "2019-11-04"
186
+ },
187
+ {
188
+ "name": "s3",
189
+ "status": "stable",
190
+ "date": "2019-10-28"
191
+ },
192
+ {
193
+ "name": "scalingo",
194
+ "status": "alpha",
195
+ "date": "2019-08-05"
196
+ },
197
+ {
198
+ "name": "script",
199
+ "status": "stable",
200
+ "date": "2019-10-28"
201
+ },
202
+ {
203
+ "name": "snap",
204
+ "status": "dev",
205
+ "date": "2019-08-05"
206
+ },
207
+ {
208
+ "name": "surge",
209
+ "status": "beta",
210
+ "date": "2019-11-18"
211
+ },
212
+ {
213
+ "name": "testfairy",
214
+ "status": "alpha",
215
+ "date": "2019-08-05"
216
+ },
217
+ {
218
+ "name": "transifex",
219
+ "status": "alpha",
220
+ "date": "2019-08-05"
221
+ }
222
+ ]
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.0.alpha.12
4
+ version: 2.0.0.alpha.13
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: 2020-01-06 00:00:00.000000000 Z
13
+ date: 2020-01-14 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: cl
@@ -55,11 +55,14 @@ files:
55
55
  - CODE_OF_CONDUCT.md
56
56
  - CONTRIBUTING.md
57
57
  - Gemfile
58
+ - Gemfile.lock
58
59
  - LICENSE
60
+ - NOTES.md
59
61
  - README.md
60
62
  - Rakefile
61
63
  - bin/dpl
62
64
  - config/transliterate.yml
65
+ - dpl.gemspec
63
66
  - lib/dpl.rb
64
67
  - lib/dpl/assets/atlas/install
65
68
  - lib/dpl/assets/convox/install
@@ -140,6 +143,7 @@ files:
140
143
  - lib/dpl/support/gstore_patch.rb
141
144
  - lib/dpl/support/version.rb
142
145
  - lib/dpl/version.rb
146
+ - status.json
143
147
  homepage: https://github.com/travis-ci/dpl
144
148
  licenses:
145
149
  - MIT
@@ -159,7 +163,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
159
163
  - !ruby/object:Gem::Version
160
164
  version: 1.3.1
161
165
  requirements: []
162
- rubygems_version: 3.0.3
166
+ rubyforge_project:
167
+ rubygems_version: 2.6.11
163
168
  signing_key:
164
169
  specification_version: 4
165
170
  summary: Dpl runs deployments at Travis CI