jetfuel 1.19.4 → 1.19.5
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/Gemfile.lock +1 -1
- data/README.md +14 -0
- data/lib/jetfuel/app_builder.rb +2 -2
- data/lib/jetfuel/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: c29a77c9f4258348891fc0619531cf04eeb8e16a
|
|
4
|
+
data.tar.gz: 634358c587467c218e775f97670d633ef82509f0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 07998d67b8a9750f837d5cc45e37216495de3ede40eeef5529c9d21e098f34de0b2c472d73218ce3f5c62a1b82a1d53b1fb6eac6346c7d449b868a8d8167744f
|
|
7
|
+
data.tar.gz: 784b2b8d651ffff31aeaadd1c1b9882ad5b7bb160785240dd0af8e66013e587273b21832cbdb0a8b6ef6b7a6d62d9279c4457b295bb4dd4cfdc14f037894af80
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -147,6 +147,20 @@ This:
|
|
|
147
147
|
* Configures staging with `RACK_ENV` and `RAILS_ENV` environment variables set
|
|
148
148
|
to `staging`
|
|
149
149
|
|
|
150
|
+
Capistrano
|
|
151
|
+
----------
|
|
152
|
+
|
|
153
|
+
You can optionally install capistrano if you are deploying to a VPS like Digital Ocean:
|
|
154
|
+
|
|
155
|
+
jetfuel app --capistrano true
|
|
156
|
+
|
|
157
|
+
This:
|
|
158
|
+
|
|
159
|
+
* Adds capistrano and capistrano-rails to your gemfile
|
|
160
|
+
* Adds capistrano configuration files that should work with rails-fed-chef
|
|
161
|
+
|
|
162
|
+
You will need to tell the generator what your github repository and the IP address for your server are. Otherwise, you'll need to update those values in `config/deploy.rb` and `config/deploy/production.rb` when you have everything set up.
|
|
163
|
+
|
|
150
164
|
Git
|
|
151
165
|
---
|
|
152
166
|
|
data/lib/jetfuel/app_builder.rb
CHANGED
|
@@ -353,8 +353,8 @@ fi
|
|
|
353
353
|
run "mkdir -p config/deploy"
|
|
354
354
|
template 'Capfile', 'Capfile'
|
|
355
355
|
template 'cap_deploy.erb', 'config/deploy.rb'
|
|
356
|
-
template 'cap_staging.
|
|
357
|
-
template 'cap_production.
|
|
356
|
+
template 'cap_staging.erb', 'config/deploy/staging.rb'
|
|
357
|
+
template 'cap_production.erb', 'config/deploy/production.rb'
|
|
358
358
|
run "mkdir -p lib/capistrano/tasks"
|
|
359
359
|
|
|
360
360
|
replace_in_file 'config/deploy.rb', /GITHUB_REPO/, ask("What is your github repository address?")
|
data/lib/jetfuel/version.rb
CHANGED