capistrano-bundle_rsync 0.2.5 → 0.2.6

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: 63590982f55043e42dd7b1d9295aa885f265b8d6
4
- data.tar.gz: 10f89bb5c7f34feeae5efafd0c7f67394b646b7c
3
+ metadata.gz: daaf67d8cab94d4f1d79f861785f3fb8e4cd5340
4
+ data.tar.gz: a5965a5a9e3f285a0dc2b066a8134417d6ed89a8
5
5
  SHA512:
6
- metadata.gz: 43f1ab1478797a5a701209a52039978b84da445711c67d807bd4b601c59518912cbfc0e1e10f9de7ba29b56c5a3f29650a53c915b08d0d368824679bdefb2117
7
- data.tar.gz: 1fd91e762d4e034f9abd49cab993b21121a585b59e0da75f3cbd9d025145ad4a3635e54008e156eda2f546ce0154bb992b60364f661843388edf66a629056dff
6
+ metadata.gz: 2b91db67a5c67438f04f0fb40114657e7da1b0221340dc4b171b318e67a7d73280ebae942801093102546c8266ce34d1920776b291e91b1c4d4ad32cb1aeab95
7
+ data.tar.gz: 271296dbde43833a73aa7b438aa05e1b855c752f95fce6da7406db9e83797c78d42c40a601c8fed56a7ce526e27040ad54909145bd5df79a94ca6071d9dc8ce2
data/CHANGELOG.md CHANGED
@@ -1,9 +1,13 @@
1
- # 0.2.5 (2014/08/05)
1
+ # 0.2.6 (2014/08/05)
2
2
 
3
3
  Enhancements:
4
4
 
5
5
  * Add `bundle_rsync_shared_dirs` and `bundle_rsync_shared_rsync_options` options
6
6
 
7
+ # 0.2.5 (2014/08/05)
8
+
9
+ Skipped
10
+
7
11
  # 0.2.4 (2014/07/28)
8
12
 
9
13
  Changes:
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
 
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = "capistrano-bundle_rsync"
7
- spec.version = "0.2.5"
7
+ spec.version = "0.2.6"
8
8
  spec.authors = ["sonots", "tohae"]
9
9
  spec.email = ["sonots@gmail.com", "tohaechan@gmail.com"]
10
10
  spec.description = %q{Deploy an application and bundled gems via rsync}
@@ -30,13 +30,6 @@ BUNDLE_BIN: #{release_path.join('bin')}
30
30
  rsync_options = config.rsync_options
31
31
  Parallel.each(hosts, in_threads: config.max_parallels(hosts)) do |host|
32
32
  ssh = config.build_ssh_command(host)
33
- if config_files = config.config_files
34
- config_files.each do |config_file|
35
- basename = File.basename(config_file)
36
- execute :rsync, "#{rsync_options} --rsh='#{ssh}' #{config_file} #{host}:#{release_path}/config/#{basename}"
37
- end
38
- end
39
-
40
33
  execute :rsync, "#{rsync_options} --rsh='#{ssh}' #{config.local_bundle_path}/ #{host}:#{shared_path}/bundle/"
41
34
  execute :rsync, "#{rsync_options} --rsh='#{ssh}' #{bundle_config_path} #{host}:#{release_path}/.bundle/config"
42
35
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano-bundle_rsync
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.5
4
+ version: 0.2.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - sonots