capistrano-bundle_rsync 0.4.3 → 0.4.4

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: bb1ffbd9aa297ef922bfb330b3ad6f97483e5e38
4
- data.tar.gz: e74556d4bc1d4efdbf688f68e7604fae4e99f2fc
3
+ metadata.gz: 349871982679feccc23ae7bc661df4e3eb2b43fb
4
+ data.tar.gz: 667f75542cf4a94fa735a5e87d04b970eaae05b2
5
5
  SHA512:
6
- metadata.gz: 6b006a9bb150878bef7cfb34b3cf059ddaacc8ad24c729bec8241a31a367f9f6b3a8bb57d7afcbcc9ac5b668964ccd075bb26d3ece70f185c437d9a19f6bcce9
7
- data.tar.gz: 447b616049089a0dbb69026da720a1aadc2ce5cd2f8948e3b8507380b05f46fa6f1246d5952c416ff53ba3d763e967f1d81730ce7f1d50b294c59a5fb5bbf0d1
6
+ metadata.gz: 3f3343840c18c0b0809d5c51bc088280979437a482cd00fcf0dc3a5ebddbcd6e3ff12fc7ce342406d7ca51cb1ad7007637ad165dead2e924cc4da61cb18aed1b
7
+ data.tar.gz: d517336092ef3feef26067d71f243047a282ae7af7db839eaa7a7a101feaa62567457b392046121e3fa5c608eea98751b7489b32b4b43e8575fd581fb7dd4ea7
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ # 0.4.4 (2015/07/09)
2
+
3
+ Enhancements:
4
+
5
+ * Avoid to remove existing .bundle/config using BUNDLE_APP_CONFIG (thanks to @hkobayash)
6
+
1
7
  # 0.4.3 (2015/03/16)
2
8
 
3
9
  Fixes:
@@ -6,7 +12,7 @@ Fixes:
6
12
 
7
13
  # 0.4.2 (2015/03/16)
8
14
 
9
- Fixes:
15
+ Fixes7
10
16
 
11
17
  * Fix bugs incorporated with v0.4.1
12
18
 
@@ -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.4.3"
7
+ spec.version = "0.4.4"
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}
@@ -4,8 +4,10 @@ require 'capistrano/configuration/filter'
4
4
  class Capistrano::BundleRsync::Bundler < Capistrano::BundleRsync::Base
5
5
  def install
6
6
  Bundler.with_clean_env do
7
- execute :bundle, "--gemfile #{config.local_release_path}/Gemfile --deployment --quiet --path #{config.local_bundle_path} --without development test"
8
- execute :rm, "#{config.local_release_path}/.bundle/config"
7
+ with bundle_app_config: config.local_base_path do
8
+ execute :bundle, "--gemfile #{config.local_release_path}/Gemfile --deployment --quiet --path #{config.local_bundle_path} --without development test"
9
+ execute :rm, "#{config.local_base_path}/config"
10
+ end
9
11
  end
10
12
  end
11
13
 
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.4.3
4
+ version: 0.4.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - sonots
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2015-03-16 00:00:00.000000000 Z
12
+ date: 2015-07-09 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: capistrano
@@ -118,7 +118,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
118
118
  version: '0'
119
119
  requirements: []
120
120
  rubyforge_project:
121
- rubygems_version: 2.4.5
121
+ rubygems_version: 2.2.2
122
122
  signing_key:
123
123
  specification_version: 4
124
124
  summary: Deploy an application and bundled gems via rsync.