nanoc-deploy 0.0.4 → 0.0.5
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 +5 -1
- data/lib/nanoc-deploy/version.rb +1 -1
- data/nanoc-deploy.gemspec +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: 9ad1152cdb6a56e7b1f7fb5845a14e36250e7a61
|
|
4
|
+
data.tar.gz: 7d30e2be8c5763f496caedc29849be32af3a11b9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5e2b4d1bd66fdf287a9e3b7067bd623a34a9a8c7783f615e1f66a1a45a95a36dd708399fd19e7487d07a1347aba96b9069d32c4f9a454d41a82df792ac8e4b79
|
|
7
|
+
data.tar.gz: 93499f447cbbb7a2ef236b58331373b49af248c1d03e72436192814cae98bc8b2df062a6081a0713428676f9df7534c239372c5088db59a178063aad5a6651d4
|
data/README.md
CHANGED
|
@@ -5,7 +5,7 @@ Nanoc Deploy
|
|
|
5
5
|
|
|
6
6
|
Nanoc Deploy is a nanoc gem that adds a deployer that will upload your site into the cloud.
|
|
7
7
|
|
|
8
|
-
It uses the [fog](https://github.com/
|
|
8
|
+
It uses the [fog](https://github.com/fog/fog) gem and currently supports Amazon S3, Rackspace Cloud Files, and Google Storage.
|
|
9
9
|
|
|
10
10
|
Installation
|
|
11
11
|
------------
|
|
@@ -54,6 +54,10 @@ If your provider is "google":
|
|
|
54
54
|
google_storage_secret_access_key: your_key
|
|
55
55
|
google_storage_access_key_id: your_id
|
|
56
56
|
|
|
57
|
+
If your provider is "aws", there's also an optional `aws_region` config:
|
|
58
|
+
|
|
59
|
+
aws_region: us-west-1
|
|
60
|
+
|
|
57
61
|
You can set an optional path if you want a path prefix to your site. For example, the code
|
|
58
62
|
below:
|
|
59
63
|
|
data/lib/nanoc-deploy/version.rb
CHANGED
data/nanoc-deploy.gemspec
CHANGED
|
@@ -8,7 +8,7 @@ Gem::Specification.new do |s|
|
|
|
8
8
|
s.platform = Gem::Platform::RUBY
|
|
9
9
|
s.authors = ["Jack Chu"]
|
|
10
10
|
s.email = ["jack@jackchu.com"]
|
|
11
|
-
s.homepage = "http://jackchu.com/easily-deploy-static-sites-into-the-cloud-
|
|
11
|
+
s.homepage = "http://jackchu.com/2011/06/16/easily-deploy-static-sites-into-the-cloud-with-nanoc-deploy"
|
|
12
12
|
s.summary = %q{nanoc extension adds rake cloud deployment options using fog.}
|
|
13
13
|
s.description = %q{}
|
|
14
14
|
s.license = "MIT"
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: nanoc-deploy
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jack Chu
|
|
@@ -59,7 +59,7 @@ files:
|
|
|
59
59
|
- lib/nanoc-deploy/tasks/deploy/cloud.rake
|
|
60
60
|
- lib/nanoc-deploy/version.rb
|
|
61
61
|
- nanoc-deploy.gemspec
|
|
62
|
-
homepage: http://jackchu.com/easily-deploy-static-sites-into-the-cloud-
|
|
62
|
+
homepage: http://jackchu.com/2011/06/16/easily-deploy-static-sites-into-the-cloud-with-nanoc-deploy
|
|
63
63
|
licenses:
|
|
64
64
|
- MIT
|
|
65
65
|
metadata: {}
|