capistrano-bundle_rsync 0.6.0 → 0.7.0

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
  SHA256:
3
- metadata.gz: cdbec22674e3aa432b0f63649aff52b7f0d78973ba111942b645457275cec18d
4
- data.tar.gz: d6497efbdf096e3d20a0fb8a1dc2bd9104ea56246940e0e50a3ff17be09020a6
3
+ metadata.gz: 6d5ba8aa13b4b0a08a46c00bff1eb76bcb186550ae9a9d54f3e8254232fdf6c1
4
+ data.tar.gz: be1c9660f5b907226b65048f3488ffea8e393f373b9f9408761106c202ce97b5
5
5
  SHA512:
6
- metadata.gz: d7178f6918d8a847d66d04aa5e054f61a698f5313851642082f32d720e88bb4f631e1b457b00232810b97add0af3a329d1ef4858623e51f756a99b41b1fd1732
7
- data.tar.gz: c171464ff5632dd688295f2ca86a2f090ba23bdba858ca0182d83caf82bf2bcd76fbdd454d5c861a8406f9907746ae004c0c0564a4caf9ed5c8c4f57a22a3f51
6
+ metadata.gz: d67a9528dd4a821d56f8cdf52b65a9641c0fa11d7aea783d3d211c16a198664466e4a44984238969a4f3b15dc57b2be12fe10808c5b858ee6541acdb57e2d4d6
7
+ data.tar.gz: d09f316f2b6afad0ef6e14e4fb616322359db865857e596d89cbe21c80eae2974a616363f3b844dd77b0d7e249de10a94783e876b8fe80a3cd152c6cbea864d2
@@ -18,6 +18,9 @@ jobs:
18
18
  - '3.0'
19
19
  - '3.1'
20
20
  - '3.2'
21
+ - '3.3'
22
+ - '3.4'
23
+ - 'head'
21
24
 
22
25
  steps:
23
26
  - uses: actions/checkout@v3
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ # 0.7.0 (2026/07/03)
2
+
3
+ Enhancements:
4
+
5
+ * Support Bundler 4 (@yayamochi)
6
+
1
7
  # 0.6.0 (2025/03/14)
2
8
 
3
9
  New Features:
@@ -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.6.0"
7
+ spec.version = "0.7.0"
8
8
  spec.authors = ["Naotoshi Seo", "tohae"]
9
9
  spec.email = ["sonots@gmail.com", "tohaechan@gmail.com"]
10
10
  spec.description = %q{Deploy an application and bundled gems via rsync}
@@ -12,9 +12,9 @@ class Capistrano::BundleRsync::Bundler < Capistrano::BundleRsync::Base
12
12
  %w[bundle]
13
13
  end
14
14
 
15
- execute *bundle_commands, 'config', '--local', 'deployment', 'true'
16
- execute *bundle_commands, 'config', '--local', 'path', config.local_bundle_path
17
- execute *bundle_commands, 'config', '--local', 'without', *config.bundle_without
15
+ execute *bundle_commands, 'config', 'set', '--local', 'deployment', 'true'
16
+ execute *bundle_commands, 'config', 'set', '--local', 'path', config.local_bundle_path
17
+ execute *bundle_commands, 'config', 'set', '--local', 'without', *config.bundle_without
18
18
 
19
19
  opts = ['--quiet']
20
20
  if jobs = config.bundle_install_jobs
@@ -25,7 +25,7 @@ class Capistrano::BundleRsync::Bundler < Capistrano::BundleRsync::Base
25
25
  opts.push(standalone)
26
26
  end
27
27
 
28
- execute *bundle_commands, *opts
28
+ execute *bundle_commands, 'install', *opts
29
29
  execute :rm, "#{config.local_base_path}/config"
30
30
  end
31
31
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano-bundle_rsync
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Naotoshi Seo
8
8
  - tohae
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-03-13 00:00:00.000000000 Z
11
+ date: 1980-01-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: capistrano
@@ -137,7 +137,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
137
137
  - !ruby/object:Gem::Version
138
138
  version: '0'
139
139
  requirements: []
140
- rubygems_version: 3.6.2
140
+ rubygems_version: 4.0.10
141
141
  specification_version: 4
142
142
  summary: Deploy an application and bundled gems via rsync.
143
143
  test_files: