capistrano-copy-bundle 0.0.2 → 1.0.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 +5 -5
- data/lib/capistrano-copy-bundle/version.rb +1 -1
- data/lib/capistrano3/tasks/copybundle.rake +3 -2
- metadata +3 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: aff0b22ad7321b08dd3d3368aefecea5f9b4b01f5f76fd99a46eeee4365b7ef8
|
4
|
+
data.tar.gz: 4432caaab62c2ac09771550625a252d1b2bf406603f57ae75b1ccb58f6686c4b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4f300b9473146eb53fe0f7f6592127c5024304452f947f3d4923b21529d6eae7f1d64757babff2687391d0beef1ac6ab8bc248183e6221dd8dd2eec78c2c15ce
|
7
|
+
data.tar.gz: c97c522d0b894752baca9f8fa7dfa9734686a3d4917c2a188181f3c4af702cc24c595a6bae17acc7b887270e08969e71b7138acb692873285b31b3b1df2ee021
|
@@ -1,9 +1,10 @@
|
|
1
1
|
require "capistrano-copy-bundle"
|
2
2
|
|
3
|
-
desc %{execute "bundle
|
3
|
+
desc %{execute "BUNDLE_CACHE_ALL=true bundle cache" and store to .tar.gz}
|
4
4
|
task :make_bundle_package do
|
5
|
+
ENV["BUNDLE_CACHE_ALL"] = "true"
|
5
6
|
run_locally do
|
6
|
-
execute :bundle, "
|
7
|
+
execute :bundle, "cache"
|
7
8
|
execute :tar, "-czf #{CapistranoCopyBundle.local_tarfile} vendor/cache/"
|
8
9
|
end
|
9
10
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: capistrano-copy-bundle
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Alexander Markov
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-12-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: capistrano
|
@@ -55,8 +55,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
55
55
|
- !ruby/object:Gem::Version
|
56
56
|
version: '0'
|
57
57
|
requirements: []
|
58
|
-
|
59
|
-
rubygems_version: 2.5.2
|
58
|
+
rubygems_version: 3.2.5
|
60
59
|
signing_key:
|
61
60
|
specification_version: 4
|
62
61
|
summary: Bundling all the gems locally and sending to remote server. For capistrano
|