s3_website 2.16.0 → 3.0.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 +4 -4
- data/changelog.md +10 -0
- data/lib/s3_website/version.rb +1 -1
- data/s3_website.gemspec +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3e5dc3e5f8d46a22ed296aa8bd4a13a6dacd3b8a
|
4
|
+
data.tar.gz: 41f5bc55b289e55bad653dad55481d7e5116b253
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 42f2c57cfc5c19ddb65f4045a4691e4868b17033de2eb38bcc79180b37d82acedfb659b7df83b8cfea253bfd07ec9d4549c91a4279e48469f17e70189141a0bd
|
7
|
+
data.tar.gz: 75afbbd52b508bcd3bebfb1b138e1dd040af5baf5ae67eeec7a652b29428f5f878869a53111aa9c956f7df120097c6ab7d27e505c504f0d370a64e09d5654c0a
|
data/changelog.md
CHANGED
@@ -2,6 +2,16 @@
|
|
2
2
|
|
3
3
|
This project uses [Semantic Versioning](http://semver.org).
|
4
4
|
|
5
|
+
## 3.0.0
|
6
|
+
|
7
|
+
The CloudFront client now uses the official AWS SDK. If your `s3_website.yml`
|
8
|
+
file contains the `cloudfront_distribution_config` setting, you might need to modify
|
9
|
+
the it. The modifications should be rather straightforward, just follow the
|
10
|
+
[instructions](https://github.com/laurilehmijoki/configure-s3-website/blob/master/changelog.md#200).
|
11
|
+
|
12
|
+
In other words, if you don't use CloudFront, upgrading to 3.0.0 should not
|
13
|
+
result in any problems.
|
14
|
+
|
5
15
|
## 2.16.0
|
6
16
|
|
7
17
|
* Add command `s3_website install`
|
data/lib/s3_website/version.rb
CHANGED
data/s3_website.gemspec
CHANGED
@@ -18,7 +18,7 @@ Gem::Specification.new do |s|
|
|
18
18
|
s.default_executable = %q{s3_website}
|
19
19
|
|
20
20
|
s.add_dependency 'thor', '~> 0.18'
|
21
|
-
s.add_dependency 'configure-s3-website', '=
|
21
|
+
s.add_dependency 'configure-s3-website', '= 2.0.0'
|
22
22
|
s.add_dependency 'colored', '1.2'
|
23
23
|
s.add_dependency 'dotenv', '~> 1.0'
|
24
24
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: s3_website
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 3.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Lauri Lehmijoki
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-12-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: thor
|
@@ -30,14 +30,14 @@ dependencies:
|
|
30
30
|
requirements:
|
31
31
|
- - '='
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version:
|
33
|
+
version: 2.0.0
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - '='
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version:
|
40
|
+
version: 2.0.0
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: colored
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -166,7 +166,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
166
166
|
version: '0'
|
167
167
|
requirements: []
|
168
168
|
rubyforge_project:
|
169
|
-
rubygems_version: 2.
|
169
|
+
rubygems_version: 2.6.8
|
170
170
|
signing_key:
|
171
171
|
specification_version: 4
|
172
172
|
summary: Manage your S3 website
|