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 +4 -4
- data/.github/workflows/test.yml +3 -0
- data/CHANGELOG.md +6 -0
- data/capistrano-bundle_rsync.gemspec +1 -1
- data/lib/capistrano/bundle_rsync/bundler.rb +4 -4
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6d5ba8aa13b4b0a08a46c00bff1eb76bcb186550ae9a9d54f3e8254232fdf6c1
|
|
4
|
+
data.tar.gz: be1c9660f5b907226b65048f3488ffea8e393f373b9f9408761106c202ce97b5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d67a9528dd4a821d56f8cdf52b65a9641c0fa11d7aea783d3d211c16a198664466e4a44984238969a4f3b15dc57b2be12fe10808c5b858ee6541acdb57e2d4d6
|
|
7
|
+
data.tar.gz: d09f316f2b6afad0ef6e14e4fb616322359db865857e596d89cbe21c80eae2974a616363f3b844dd77b0d7e249de10a94783e876b8fe80a3cd152c6cbea864d2
|
data/.github/workflows/test.yml
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -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.
|
|
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.
|
|
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:
|
|
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:
|
|
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:
|