mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 03:09:00 +08:00
49bc7692bf
Commit b516ecc
added `bin/` to the .gitignore file. Now that Discourse
runs using Rails 4 by default, however, we should include the binstubs
generated by `rake rails:update:bin` in version control as this is the
recommendation of the Rails core team. Additionally, for those wishing
to deploy Discourse to Heroku, these binstubs are actually mandatory
according to [this article](https://devcenter.heroku.com/articles/rails4).
Other binstubs can continue to be ignored.
Signed-off-by: David Celis <me@davidcel.is>
5 lines
146 B
Ruby
Executable File
5 lines
146 B
Ruby
Executable File
#!/usr/bin/env ruby
|
|
APP_PATH = File.expand_path('../../config/application', __FILE__)
|
|
require_relative '../config/boot'
|
|
require 'rails/commands'
|