foreplay 0.5.1 → 0.5.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/foreplay/deploy.rb +1 -1
- data/lib/foreplay/version.rb +1 -1
- data/spec/lib/foreplay/deploy_spec.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b019d7002830c0b6dcdc6841fab98bc93dd226dd
|
4
|
+
data.tar.gz: a82306548df264f90c1f5b3221feaecbd0067238
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 171786e587f728fc53df63805cea7bb7097ad0aa855382fc891b29d94b02224d61154eff2884c7aa8b4f9e275a12e5cd215ba82d797ccf6c0f7043eb97a4f8fe
|
7
|
+
data.tar.gz: 23907fd2f6aaca3343c9286be4ef39afc22cb4a7469cc3e3b02b70d642d9d1620f1f94a6d307afe6a42824b285f9773406fa0ba29d558d3cdae7694a50588c52
|
data/lib/foreplay/deploy.rb
CHANGED
@@ -194,7 +194,7 @@ module Foreplay
|
|
194
194
|
commentary: 'Setting the current version of bundle to be the default' },
|
195
195
|
{ command: 'bundle install --deployment --clean --jobs 2 --without development test',
|
196
196
|
commentary: 'Using bundler to install the required gems in deployment mode' },
|
197
|
-
{ command: 'mkdir -p ../cache && cp -rf vendor/bundle ../cache/vendor/bundle',
|
197
|
+
{ command: 'mkdir -p ../cache/vendor && cp -rf vendor/bundle ../cache/vendor/bundle',
|
198
198
|
commentary: 'Caching bundle' },
|
199
199
|
{ command: 'if [ -f public/assets/manifest.yml ] ; then echo "Not precompiling assets"'\
|
200
200
|
" ; else RAILS_ENV=#{environment} bundle exec foreman run rake assets:precompile ; fi",
|
data/lib/foreplay/version.rb
CHANGED
@@ -115,7 +115,7 @@ describe Foreplay::Deploy do
|
|
115
115
|
' ; else echo No bundle to restore ; fi',
|
116
116
|
'sudo ln -f `which bundle` /usr/bin/bundle || echo Using default version of bundle',
|
117
117
|
'bundle install --deployment --clean --jobs 2 --without development test',
|
118
|
-
'mkdir -p ../cache && cp -rf vendor/bundle ../cache/vendor/bundle',
|
118
|
+
'mkdir -p ../cache/vendor && cp -rf vendor/bundle ../cache/vendor/bundle',
|
119
119
|
'if [ -f public/assets/manifest.yml ] ; then echo "Not precompiling assets"'\
|
120
120
|
' ; else RAILS_ENV=production bundle exec foreman run rake assets:precompile ; fi',
|
121
121
|
'sudo bundle exec foreman export upstart /etc/init',
|