dpl 1.10.1.travis.2957.6 → 1.10.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 +5 -5
- data/README.md +7 -0
- data/lib/dpl/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 16257a2808065000b80a19e5b4e8d08a42f8645b
|
|
4
|
+
data.tar.gz: b84461b110924e6b66acdac9b9fb2a9b2052c405
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b4110cfd7bf0fd6e0fb044e7441816e781f72c6bb6871f63fd86d98da54704793497726fd3ee616930aec02b964b469980937265b999099f8de98a664d6a2deb
|
|
7
|
+
data.tar.gz: 90a88759751bc826cbbb0a2ddb3f60f44e03aeb2eb84a21a41ef8970fdfa27d0a650a0d7de3a3a65c14589ed783ccc78ebc122af72352174d56fe6f077989bf2
|
data/README.md
CHANGED
|
@@ -324,6 +324,7 @@ This _overrides_ the `gemspec` option.
|
|
|
324
324
|
* **secret-access-key**: AWS Secret Key. Can be obtained from [here](https://console.aws.amazon.com/iam/home?#security_credential).
|
|
325
325
|
* **bucket**: S3 Bucket.
|
|
326
326
|
* **region**: S3 Region. Defaults to us-east-1.
|
|
327
|
+
* **endpoint**: S3 Endpoint. Default is computed for you.
|
|
327
328
|
* **upload-dir**: S3 directory to upload to. Defaults to root directory.
|
|
328
329
|
* **storage-class**: S3 storage class to upload as. Defaults to "STANDARD". Other values are "STANDARD_IA" or "REDUCED_REDUNDANCY". Details can be found [here](https://aws.amazon.com/s3/storage-classes/).
|
|
329
330
|
* **server-side-encryption**: When set to `true`, use S3 Server Side Encryption (SSE-AES256). Defaults to `false`.
|
|
@@ -357,6 +358,12 @@ It is possible to set file-specific `Cache-Control` and `Expires` headers using
|
|
|
357
358
|
dpl --provider=s3 --access-key-id=<access-key-id> --secret-access-key=<secret-access-key> --bucket=<bucket> --detect-encoding --cache_control=max-age=99999 --expires="2012-12-21 00:00:00 -0000"
|
|
358
359
|
dpl --provider=s3 --access-key-id=<access-key-id> --secret-access-key=<secret-access-key> --bucket=<bucket> --region=us-west-2 --local-dir=BUILD --upload-dir=BUILDS
|
|
359
360
|
|
|
361
|
+
### Using S3-compatible Object Storage
|
|
362
|
+
|
|
363
|
+
By overriding the `endpoint` option, you can use an S3-compatible object storage such as [Digital Ocean Spaces](https://www.digitalocean.com/products/object-storage/).
|
|
364
|
+
|
|
365
|
+
For example: `--endpoint=https://nyc3.digitaloceanspaces.com`
|
|
366
|
+
|
|
360
367
|
### Elastic Beanstalk:
|
|
361
368
|
|
|
362
369
|
#### Options:
|
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.1
|
|
4
|
+
version: 1.10.1
|
|
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-09-
|
|
11
|
+
date: 2018-09-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rspec
|
|
@@ -223,12 +223,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
223
223
|
version: '2.2'
|
|
224
224
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
225
225
|
requirements:
|
|
226
|
-
- - "
|
|
226
|
+
- - ">="
|
|
227
227
|
- !ruby/object:Gem::Version
|
|
228
|
-
version:
|
|
228
|
+
version: '0'
|
|
229
229
|
requirements: []
|
|
230
230
|
rubyforge_project:
|
|
231
|
-
rubygems_version: 2.
|
|
231
|
+
rubygems_version: 2.6.13
|
|
232
232
|
signing_key:
|
|
233
233
|
specification_version: 4
|
|
234
234
|
summary: deploy tool
|