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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f929af3d48043349bb6daae12fbab57f89944eff
4
- data.tar.gz: 795364463429bd33d45273d179ee4164d8b1d6b9
3
+ metadata.gz: af4cb6fc6454b2ac21d4777522b76628db86b464
4
+ data.tar.gz: 952c61a99d960c420ddaada5c385bc23e984fcdb
5
5
  SHA512:
6
- metadata.gz: 94a42525f5804a5ed3f44dd3de4c03e2a199888844f6395432a41560d599b3a9e5190207430dddf8a8a88f1bc26b48873e5115b91876ba9bbf49386e11e074ba
7
- data.tar.gz: bdb87791a1eb8b1f583f3d6ab426bf281acf8c673220ad4ea2ee74d7565fa363db8aa2fedf80e4634c97f21c70c7efefd36c4d8e934c4881961876c678159ed3
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', github: 'komazarari/capistrano-s3_archive'
13
+ gem 'capistrano-s3_archive'
14
14
  ```
15
15
 
16
16
  And then execute:
@@ -1,5 +1,5 @@
1
1
  module Capistrano
2
2
  module S3Archive
3
- VERSION = "0.1.0"
3
+ VERSION = "0.1.1"
4
4
  end
5
5
  end
@@ -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
- if fetch(:skip_staging, false)
17
- run_locally do
16
+ run_locally do
17
+ if fetch(:skip_staging, false)
18
18
  info "Skip extructing and staging."
19
- end
20
- else
21
- on release_roles :all do
19
+ else
22
20
  strategy.stage
23
21
  end
24
22
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano-s3_archive
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Takuto Komazaki