zwr 0.0.8 → 0.0.9
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/bin/zwr +1 -0
- data/zwr.gemspec +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: 1c3f88e6cb68bba5bc7571d3a45f0e910f9fb477
|
|
4
|
+
data.tar.gz: 472bf856500980b9d8af4cc9f7d5f062ea85b12c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 717ef120453514a62bd63baba0bcd679741c23ddfa822b98578adf3f4f14328c73532496494f15f70e6dc67182b5de7dd1e105b64838204a66d3efbf5b60c2ca
|
|
7
|
+
data.tar.gz: cabbec0c897ada9509ff4382050c98f6ea550a37e11c4ab5ba355e459f3554af9b569910d513d92a28321901f41d8d3bbfb29849b68a4cb11e1ae8142c1e46c9
|
data/bin/zwr
CHANGED
|
@@ -115,6 +115,7 @@ when 'deploy'
|
|
|
115
115
|
putsv "Deploying new project #{ARGV[1]}"
|
|
116
116
|
`git clone git@github.com:zmilojko/tst.git`
|
|
117
117
|
Dir.chdir "/var/rails_apps/#{ARGV[1]}"
|
|
118
|
+
`cd /var/rails_apps/#{ARGV[1]} ; git checkout production`
|
|
118
119
|
`bundle install`
|
|
119
120
|
`cd /var/rails_apps/#{ARGV[1]} ; RAILS_ENV=production rake db:migrate`
|
|
120
121
|
`cd /var/rails_apps/#{ARGV[1]} ; RAILS_ENV=production rake db:seed`
|
data/zwr.gemspec
CHANGED