dpl 1.9.9.travis.2894.6 → 1.10.0
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/README.md +15 -0
- data/dpl-hephy.gemspec +3 -0
- data/lib/dpl/provider.rb +1 -0
- data/lib/dpl/version.rb +1 -1
- metadata +6 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 060e6a55519cb9918375c330be979df5450275f4
|
|
4
|
+
data.tar.gz: ab613a1b8b17dce8b4805c7a08ce7a2d5f51a73f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5e731c223ee05d6c6c67d13eed8b325f792eae87ab257df9d609b0725827ebe73776d9c9b463e28d31c78a57af9c86b32fc2213e37bd631cef94dccbd1d6970e
|
|
7
|
+
data.tar.gz: f0c8ebce7c1141b5464dc025f467bccbd97fa6e0ff8bc98b6eab47168de115f1427d952e320698ce43a13d8f0f1cf47b880298effef13c34da60d68910fcb211
|
data/README.md
CHANGED
|
@@ -31,6 +31,7 @@ Dpl supports the following providers:
|
|
|
31
31
|
* [Google App Engine (experimental)](#google-app-engine)
|
|
32
32
|
* [Google Cloud Storage](#google-cloud-storage)
|
|
33
33
|
* [Hackage](#hackage)
|
|
34
|
+
* [Hephy](#hephy)
|
|
34
35
|
* [Heroku](#heroku)
|
|
35
36
|
* [Lambda](#lambda)
|
|
36
37
|
* [Launchpad](#launchpad)
|
|
@@ -586,6 +587,20 @@ For accounts using two factor authentication, you have to use an oauth token as
|
|
|
586
587
|
|
|
587
588
|
dpl --provider=deis --controller=deis.deisapps.com --username=travis --password=secret --app=example
|
|
588
589
|
|
|
590
|
+
### Hephy:
|
|
591
|
+
|
|
592
|
+
#### Options:
|
|
593
|
+
|
|
594
|
+
* **controller**: Hephy controller e.g. hephy.hephyapps.com
|
|
595
|
+
* **username**: Hephy username
|
|
596
|
+
* **password**: Hephy password
|
|
597
|
+
* **app**: Hephy app
|
|
598
|
+
* **cli_version**: Install a specific hephy cli version
|
|
599
|
+
|
|
600
|
+
#### Examples:
|
|
601
|
+
|
|
602
|
+
dpl --provider=hephy --controller=hephy.hephyapps.com --username=travis --password=secret --app=example
|
|
603
|
+
|
|
589
604
|
### Google Cloud Storage:
|
|
590
605
|
|
|
591
606
|
#### Options:
|
data/dpl-hephy.gemspec
ADDED
data/lib/dpl/provider.rb
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.
|
|
4
|
+
version: 1.10.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Konstantin Haase
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-
|
|
11
|
+
date: 2018-08-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rspec
|
|
@@ -176,6 +176,7 @@ files:
|
|
|
176
176
|
- dpl-gae.gemspec
|
|
177
177
|
- dpl-gcs.gemspec
|
|
178
178
|
- dpl-hackage.gemspec
|
|
179
|
+
- dpl-hephy.gemspec
|
|
179
180
|
- dpl-heroku.gemspec
|
|
180
181
|
- dpl-lambda.gemspec
|
|
181
182
|
- dpl-launchpad.gemspec
|
|
@@ -222,12 +223,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
222
223
|
version: '2.2'
|
|
223
224
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
224
225
|
requirements:
|
|
225
|
-
- - "
|
|
226
|
+
- - ">="
|
|
226
227
|
- !ruby/object:Gem::Version
|
|
227
|
-
version:
|
|
228
|
+
version: '0'
|
|
228
229
|
requirements: []
|
|
229
230
|
rubyforge_project:
|
|
230
|
-
rubygems_version: 2.
|
|
231
|
+
rubygems_version: 2.4.5.4
|
|
231
232
|
signing_key:
|
|
232
233
|
specification_version: 4
|
|
233
234
|
summary: deploy tool
|