flatiron-rails 2.0.1 → 2.0.2
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/templates/flatiron.rb +4 -4
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: aeff12c1256d0e944e88593e505b9e195dd67a5e
|
4
|
+
data.tar.gz: 14392d061b80a69cff2fdc5165ceeefffdec2fb1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5503efda0e49916cd215f38fc523acffc57f86b3e9b793b7f58fece6fc152b9a689095fe72a3cefd5c49bf0ae867c71a0e4d50e7bf878039128e541a73230fb9
|
7
|
+
data.tar.gz: 7c7bf8621cf0213c7e653476611273683b3fabee9e084fe8f9864903ff10468fc7ac4a5f2b9feb83335e69bdc69dc75151b2b5078a15410652944689c3397311
|
data/templates/flatiron.rb
CHANGED
@@ -498,7 +498,7 @@ file 'STACK.md', <<-STACK.strip_heredoc.chomp
|
|
498
498
|
`rails g airbrake --api-key your_api_key_here
|
499
499
|
|
500
500
|
Deploying to Heroku:
|
501
|
-
1. `bin/
|
501
|
+
1. `bin/bootstrap [<app_name>]`
|
502
502
|
* <app_name> is optional. It will, by default, attempt to create an
|
503
503
|
app on Heroku using your Rails application name.
|
504
504
|
2. `bin/deploy`
|
@@ -577,12 +577,12 @@ if yes?("Set up for Ninefold instead of Heroku? [y/N]")
|
|
577
577
|
setup_secrets_yml_for_ninefold
|
578
578
|
remove_line_from_file("Gemfile", "rails_12factor")
|
579
579
|
else
|
580
|
-
file 'bin/
|
580
|
+
file 'bin/bootstrap', <<-SETUP.strip_heredoc.chomp
|
581
581
|
#!/usr/bin/env ruby
|
582
582
|
if ['-h', '--help'].include?(ARGV[0]) || ARGV[1]
|
583
583
|
puts <<-HELP.gsub(/^ {6}/, '')
|
584
584
|
Usage:
|
585
|
-
bin/
|
585
|
+
bin/bootstrap [<app_name>]
|
586
586
|
HELP
|
587
587
|
elsif ARGV[0]
|
588
588
|
system("heroku create \#{ARGV[0]}")
|
@@ -598,7 +598,7 @@ else
|
|
598
598
|
|
599
599
|
if !log.any? {|line| line.match(/heroku/)}
|
600
600
|
puts <<-ERROR.gsub(/^ {6}/, '')
|
601
|
-
You must run `bin/
|
601
|
+
You must run `bin/bootstrap` first!
|
602
602
|
ERROR
|
603
603
|
else
|
604
604
|
system("git push heroku master && heroku run rake db:migrate && heroku open")
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: flatiron-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Logan Hasson
|
@@ -61,7 +61,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
61
61
|
version: '0'
|
62
62
|
requirements: []
|
63
63
|
rubyforge_project:
|
64
|
-
rubygems_version: 2.4.
|
64
|
+
rubygems_version: 2.4.1
|
65
65
|
signing_key:
|
66
66
|
specification_version: 4
|
67
67
|
summary: flatiron-rails gem
|