Commit d5171c2e1a128b1ad4bcd772059581e87aa24826

Authored by Bruno Arueira
1 parent 0ff2eb5a
Exists in master and in 1 other branch production

fixes #936 Moved script/rails to bin/rails

Showing 3 changed files with 6 additions and 7 deletions   Show diff stats
.gitignore
... ... @@ -16,7 +16,6 @@ config/unicorn.rb
16 16 *.rbc
17 17 .DS_Store
18 18 *.rbx
19   -bin
20 19 bundle
21 20 coverage
22 21 *#
... ...
bin/rails 0 → 100755
... ... @@ -0,0 +1,6 @@
  1 +#!/usr/bin/env ruby
  2 +# This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
  3 +
  4 +APP_PATH = File.expand_path('../../config/application', __FILE__)
  5 +require File.expand_path('../../config/boot', __FILE__)
  6 +require 'rails/commands'
... ...
script/rails
... ... @@ -1,6 +0,0 @@
1   -#!/usr/bin/env ruby
2   -# This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
3   -
4   -APP_PATH = File.expand_path('../../config/application', __FILE__)
5   -require File.expand_path('../../config/boot', __FILE__)
6   -require 'rails/commands'