capistrano-local-precompile 1.1.3 → 1.1.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 +4 -4
- data/capistrano-local-precompile.gemspec +1 -1
- data/lib/capistrano/local_precompile.rb +3 -3
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 38cad504f280676dea728df084b59e1b24a74093
|
|
4
|
+
data.tar.gz: 4c0d093b651ce1d69a38facc4024af249d5a359a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a47f22d0d21783fa5d7855f2295d0e01838ce9601a06e6bc0db15f05149d738ae560b4e7fd2b7186cf78007c9dabbb7fed55ed9aaf200c2d7840d64ddf89ddf6
|
|
7
|
+
data.tar.gz: 17cdb334748fae902c8442a3c72008052422a25cd949c5e7c91f8fd7c619efcf0f57387fd3fe9cac41847e2823f3055e63665baa211af78282080615c3c0b07f
|
|
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
4
4
|
|
|
5
5
|
Gem::Specification.new do |gem|
|
|
6
6
|
gem.name = 'capistrano-local-precompile'
|
|
7
|
-
gem.version = '1.1.
|
|
7
|
+
gem.version = '1.1.4'
|
|
8
8
|
gem.homepage = 'https://github.com/spagalloco/capistrano-local-precompile'
|
|
9
9
|
|
|
10
10
|
gem.author = "Steve Agalloco, Tom Caflisch"
|
|
@@ -2,7 +2,7 @@ namespace :load do
|
|
|
2
2
|
task :defaults do
|
|
3
3
|
set :precompile_env, fetch(:rails_env) || 'production'
|
|
4
4
|
set :assets_dir, "public/assets"
|
|
5
|
-
set :packs_dir, "public/packs"
|
|
5
|
+
set :packs_dir, "public/packs"
|
|
6
6
|
set :rsync_cmd, "rsync -av --delete"
|
|
7
7
|
set :assets_role, "web"
|
|
8
8
|
|
|
@@ -18,8 +18,8 @@ namespace :deploy do
|
|
|
18
18
|
task :cleanup do
|
|
19
19
|
run_locally do
|
|
20
20
|
with rails_env: fetch(:precompile_env) do
|
|
21
|
-
execute "rm -rf", fetch(:assets_dir)
|
|
22
|
-
execute "rm -rf", fetch(:packs_dir)
|
|
21
|
+
execute "rm", "-rf", fetch(:assets_dir)
|
|
22
|
+
execute "rm", "-rf", fetch(:packs_dir)
|
|
23
23
|
end
|
|
24
24
|
end
|
|
25
25
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: capistrano-local-precompile
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Steve Agalloco, Tom Caflisch
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-
|
|
11
|
+
date: 2018-09-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: capistrano
|