capistrano-rails-synchronizer 0.3.1 → 0.3.2
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/lib/tasks/sync.rake +4 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 61ef44971a15e9b9be2da68667d04b286e81dfc6d611980fa554a48fe083694b
|
|
4
|
+
data.tar.gz: a780e1be9b4e0510d1bc91149218980a3c992ff0b31dee8df5a4e585371aea5f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 651ef49e3a5adefe70ab0fb10c0f6b0044bb23c2dcfa998fd837fad808a2a3cc4ac73a0993c44f9e0fc883a610edab3ee7b809d323e083c3cf7b56963d655baa
|
|
7
|
+
data.tar.gz: 585cb399383f763a184bee0a8c323e50bf8575c43b51357b46142b552543bc98d3015a51a32d877ed2d01c11fb55022f0dbcacc5fe293b5a16046d4fb53255d3
|
data/lib/tasks/sync.rake
CHANGED
|
@@ -113,8 +113,10 @@ namespace :sync do
|
|
|
113
113
|
namespace :to_local do
|
|
114
114
|
desc 'copy assets to local (but keep artifacts remotely)'
|
|
115
115
|
task :keep do
|
|
116
|
-
|
|
117
|
-
|
|
116
|
+
on roles :web do
|
|
117
|
+
invoke 'sync:assets:pack'
|
|
118
|
+
copy_assets_to_local
|
|
119
|
+
end
|
|
118
120
|
end
|
|
119
121
|
end
|
|
120
122
|
|