rake-stretcher-rails 0.1.0 → 0.1.1
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/rake/stretcher/rails/tasks/rails.rake +2 -2
- data/lib/rake/stretcher/rails/version.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: 8c0b324a91edec385549f956df28462c0c37c9d9
|
|
4
|
+
data.tar.gz: 822557c2e607be79fd288b94be83b82e1b898bbd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f9907acf0e19b97262e50ded68d604a29a117a731828a5e2137f4466ec40c8b16da0dbf065b4695308d1df531328558820307aa6f62003b3bce836129048f37e
|
|
7
|
+
data.tar.gz: f24e7c1f1e8a1bf3ff41feed233e4ff63fd83c7973b458cda1b10c3e1761b90d9ba6298129010c849b50ca91331e911718f67eb26d6b405da1d349e7183ffda0
|
|
@@ -19,7 +19,7 @@ namespace :stretcher do
|
|
|
19
19
|
bundle install \
|
|
20
20
|
--gemfile #{local_build_path}/Gemfile \
|
|
21
21
|
--deployment --path vendor/bundle -j 4 \
|
|
22
|
-
--without development test RAILS_ENV="#{
|
|
22
|
+
--without development test RAILS_ENV="#{environment}"
|
|
23
23
|
EOC
|
|
24
24
|
end
|
|
25
25
|
end
|
|
@@ -28,7 +28,7 @@ namespace :stretcher do
|
|
|
28
28
|
task :assets_precompile do
|
|
29
29
|
sh <<-EOC
|
|
30
30
|
cd #{local_build_path}
|
|
31
|
-
bundle exec rake assets:precompile RAILS_ENV="#{
|
|
31
|
+
bundle exec rake assets:precompile RAILS_ENV="#{environment}"
|
|
32
32
|
EOC
|
|
33
33
|
end
|
|
34
34
|
end
|