Commit d5171c2e1a128b1ad4bcd772059581e87aa24826
1 parent
0ff2eb5a
Exists in
master
and in
1 other branch
fixes #936 Moved script/rails to bin/rails
Showing
3 changed files
with
6 additions
and
7 deletions
Show diff stats
.gitignore
... | ... | @@ -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' |