jetfuel 1.19.11 → 1.19.12
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/lib/jetfuel/app_builder.rb +3 -1
- 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: d4e414faad587d829e9d34af8f2ae641deb3fab3
|
|
4
|
+
data.tar.gz: b6688ea31d20ffa9f3b716e63c1153b15af05595
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9758c7f48d09a031fe887c91c859153b1aa8c56b2ed086a263668baed9c2c7b04fd162c33ce400b022241fb19556f4b1526c55a6486af4193f656d6d11462146
|
|
7
|
+
data.tar.gz: b3eb510a5c4adc22fa6894e4a8df0f56bd7c47b003cee0b45b34b241feda10106970cd824d7e7788a2fd59735666716a3b143ee72689d6eeb4c87e7fe4ca93ae
|
data/Gemfile.lock
CHANGED
data/lib/jetfuel/app_builder.rb
CHANGED
|
@@ -315,11 +315,13 @@ end
|
|
|
315
315
|
path_addition = override_path_for_tests
|
|
316
316
|
heroku_account = ask("If you are using the heroku-accounts gem, what account would you like to use? (leave blank if n/a)")
|
|
317
317
|
unless heroku_account.blank?
|
|
318
|
-
run "heroku accounts:set #{heroku_account}"
|
|
318
|
+
run "#{path_addition} heroku accounts:set #{heroku_account}"
|
|
319
319
|
end
|
|
320
320
|
run "#{path_addition} heroku create #{app_name}-production --remote=production"
|
|
321
321
|
run "#{path_addition} heroku create #{app_name}-staging --remote=staging"
|
|
322
322
|
run "#{path_addition} heroku config:add RACK_ENV=staging RAILS_ENV=staging --remote=staging"
|
|
323
|
+
email_recipient = ask("What email address do you want emails to be delivered to on staging?")
|
|
324
|
+
run "#{path_addition} heroku config:add EMAIL_RECIPIENTS=#{email_recipient}"
|
|
323
325
|
end
|
|
324
326
|
|
|
325
327
|
def set_heroku_remotes
|
data/lib/jetfuel/version.rb
CHANGED