Commit 1b3abc6e44f52e99e7b5143a1868fd796fbddb40

Authored by Stephen Crosby
2 parents 23d2a81e 3de13767
Exists in master

Merge pull request #1010 from tricknotes/ruby-2.2.4

Use Ruby 2.2.4 by default for Heroku deployment
Showing 2 changed files with 2 additions and 2 deletions   Show diff stats
app.json
... ... @@ -5,7 +5,7 @@
5 5 "repository": "https://github.com/errbit/errbit",
6 6 "env": {
7 7 "ERRBIT_ENFORCE_SSL": "true",
8   - "GEMFILE_RUBY_VERSION": "2.2.3",
  8 + "GEMFILE_RUBY_VERSION": "2.2.4",
9 9 "SECRET_KEY_BASE": {
10 10 "generator": "secret"
11 11 },
... ...
docs/deployment/heroku.md
... ... @@ -33,7 +33,7 @@ git commit -m "Update db/seeds.rb with initial login"
33 33 heroku apps:create
34 34 heroku addons:create mongolab:sandbox
35 35 heroku addons:create sendgrid:starter
36   -heroku config:set GEMFILE_RUBY_VERSION=2.2.3
  36 +heroku config:set GEMFILE_RUBY_VERSION=2.2.4
37 37 heroku config:set SECRET_KEY_BASE="$(bundle exec rake secret)"
38 38 heroku config:set ERRBIT_HOST=some-hostname.example.com
39 39 heroku config:set ERRBIT_EMAIL_FROM=example@example.com
... ...