s3_website 2.1.10 → 2.1.11
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/README.md +2 -1
- data/bin/s3_website +1 -1
- data/changelog.md +11 -0
- data/lib/s3_website/version.rb +1 -1
- data/resources/s3_website.jar.md5 +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9a6e8a67a32290b0f6534bd81a71e2f30a0f73a9
|
|
4
|
+
data.tar.gz: 0a74ab36d3c753c743fcb8abd5e042d51a6b64e8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b4ccd003bbc734969133ee5a445abd381a180eec93c6a0f0496d8bd44a4c407500388e11d48ef559aef5308ae4c8112f0f2ca23fd129cd1f65fb27a4f2866046
|
|
7
|
+
data.tar.gz: 9ef178b4f5cb0bd734c6248c518b06821b6c6070752fffd17e2e7b52187ee38b772ba4b56c5b0dfad06163dd9e25efeab3d2147049afb2a855fbce28025f8968
|
data/README.md
CHANGED
|
@@ -50,7 +50,7 @@ Let's say the contents you wish to upload to your S3 website bucket are in
|
|
|
50
50
|
|
|
51
51
|
If you want to store the `s3_website.yml` file in a directory other than
|
|
52
52
|
the project's root you can specify the directory.
|
|
53
|
-
`s3_website push --
|
|
53
|
+
`s3_website push --config-dir config`.
|
|
54
54
|
|
|
55
55
|
### Using environment variables
|
|
56
56
|
|
|
@@ -413,6 +413,7 @@ Contributors (in alphabetical order)
|
|
|
413
413
|
* Greg Karékinian
|
|
414
414
|
* John Allison
|
|
415
415
|
* Jordan White
|
|
416
|
+
* Justin Latimer
|
|
416
417
|
* László Bácsi
|
|
417
418
|
* Mason Turner
|
|
418
419
|
* Michael Bleigh
|
data/bin/s3_website
CHANGED
|
@@ -48,7 +48,7 @@ class Cli < Thor
|
|
|
48
48
|
:desc => "The directory where your website files are. When not defined, s3_website will look for the site in either _site or public/output."
|
|
49
49
|
)
|
|
50
50
|
option(
|
|
51
|
-
|
|
51
|
+
'config-dir'.to_sym,
|
|
52
52
|
:type => :string,
|
|
53
53
|
:desc => "The directory where your config file is. When not defined, s3_website will look in the current working directory."
|
|
54
54
|
)
|
data/changelog.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
This project uses [Semantic Versioning](http://semver.org).
|
|
4
4
|
|
|
5
|
+
## 2.1.11
|
|
6
|
+
|
|
7
|
+
* Fix documentation for the `--config-dir` option
|
|
8
|
+
|
|
9
|
+
The `--config_dir` option has changed to `--config-dir` in version 2 of this
|
|
10
|
+
gem.
|
|
11
|
+
|
|
5
12
|
## 2.1.10
|
|
6
13
|
|
|
7
14
|
* Remove warning on Ruby 1.8
|
|
@@ -105,6 +112,10 @@ This project uses [Semantic Versioning](http://semver.org).
|
|
|
105
112
|
At the time of writing, there does not exist a stable zopfli implementation
|
|
106
113
|
for Java.
|
|
107
114
|
|
|
115
|
+
### Other backward incompatible changes
|
|
116
|
+
|
|
117
|
+
* The option `--config_dir` has changed to `--config-dir`
|
|
118
|
+
|
|
108
119
|
## 1.8.1
|
|
109
120
|
|
|
110
121
|
* Do not push the *.env* file
|
data/lib/s3_website/version.rb
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
11822256172273e7f7d0db2234f2ac16
|
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: 2.1.
|
|
4
|
+
version: 2.1.11
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Lauri Lehmijoki
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-06-
|
|
11
|
+
date: 2014-06-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: thor
|