capistrano-s3_archive 0.1.0 → 0.1.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 +4 -4
- data/README.md +1 -1
- data/lib/capistrano/s3_archive/version.rb +1 -1
- data/lib/capistrano/tasks/s3_archive.rake +3 -5
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: af4cb6fc6454b2ac21d4777522b76628db86b464
|
|
4
|
+
data.tar.gz: 952c61a99d960c420ddaada5c385bc23e984fcdb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3f3c07a0ef08ec6a9ab1033e932ff53704f32c19d3c09691e75446149786a1271fbff15f537f7d04987bbf6d3f808542a25262f8b8c3c6658e7d4e5beff40f15
|
|
7
|
+
data.tar.gz: 6c3609f7f0c3cafdc858c68e04adf8b8bdfaf40ce48adad35a39b57ee14cdf256fa5c8180c827945af103cc618fc88739bedb7edf85e2b9402f6b07cedb4d2ef
|
data/README.md
CHANGED
|
@@ -10,7 +10,7 @@ This behaves like the [capistrano-rsync](https://github.com/moll/capistrano-rsyn
|
|
|
10
10
|
Add this line to your application's Gemfile:
|
|
11
11
|
|
|
12
12
|
```ruby
|
|
13
|
-
gem 'capistrano-s3_archive'
|
|
13
|
+
gem 'capistrano-s3_archive'
|
|
14
14
|
```
|
|
15
15
|
|
|
16
16
|
And then execute:
|
|
@@ -13,12 +13,10 @@ namespace :s3_archive do
|
|
|
13
13
|
|
|
14
14
|
desc 'Extruct and stage the S3 archive in a stage directory'
|
|
15
15
|
task :stage do
|
|
16
|
-
|
|
17
|
-
|
|
16
|
+
run_locally do
|
|
17
|
+
if fetch(:skip_staging, false)
|
|
18
18
|
info "Skip extructing and staging."
|
|
19
|
-
|
|
20
|
-
else
|
|
21
|
-
on release_roles :all do
|
|
19
|
+
else
|
|
22
20
|
strategy.stage
|
|
23
21
|
end
|
|
24
22
|
end
|