Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use Ruby 2.3.0 by default for Heroku deployment #1032

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion app.json
Expand Up @@ -5,7 +5,7 @@
"repository": "https://github.com/errbit/errbit",
"env": {
"ERRBIT_ENFORCE_SSL": "true",
"GEMFILE_RUBY_VERSION": "2.2.4",
"GEMFILE_RUBY_VERSION": "2.3.0",
"SECRET_KEY_BASE": {
"generator": "secret"
},
Expand Down
2 changes: 1 addition & 1 deletion docs/deployment/heroku.md
Expand Up @@ -33,7 +33,7 @@ git commit -m "Update db/seeds.rb with initial login"
heroku apps:create
heroku addons:create mongolab:sandbox
heroku addons:create sendgrid:starter
heroku config:set GEMFILE_RUBY_VERSION=2.2.4
heroku config:set GEMFILE_RUBY_VERSION=2.3.0
heroku config:set SECRET_KEY_BASE="$(bundle exec rake secret)"
heroku config:set ERRBIT_HOST=some-hostname.example.com
heroku config:set ERRBIT_EMAIL_FROM=example@example.com
Expand Down