Update HEROKU.md

heroku has changed its default ruby version to 2.0.0 , now no need to write ruby version on top the of Gemfile. check https://blog.heroku.com/archives/2013/6/17/ruby-2-default-new-aps
This commit is contained in:
Paritosh Piplewar 2013-07-11 16:20:54 +05:30 committed by Robin Ward
parent 33e2a9933d
commit bb03e827d0
1 changed files with 1 additions and 14 deletions

View File

@ -25,20 +25,7 @@ For details on how to reduce the monthly cost of your application, see [Advanced
+ # config/redis.yml
```
4. Specify the Ruby version at the top of the Gemfile.
Heroku defaults to `ruby 1.9.2`, but Discourse requires a **minimum** of `ruby 1.9.3`.
*Gemfile*
```ruby
source 'https://rubygems.org'
+ ruby "2.0.0"
...
```
5. Commit your changes.
4. Commit your changes.
git add .
git commit -m "ready for Heroku"