Commit 7f9e835e3cd1a6e02a69d8093037aacc2c54fd02

Authored by Stephen Crosby
2 parents 8b48a38f d5171c2e
Exists in master and in 1 other branch production

Merge pull request #937 from expressio/move-script-rails-to-bin-rails

fixes #936 Moved script/rails to bin/rails
Showing 3 changed files with 6 additions and 7 deletions   Show diff stats
@@ -16,7 +16,6 @@ config/unicorn.rb @@ -16,7 +16,6 @@ config/unicorn.rb
16 *.rbc 16 *.rbc
17 .DS_Store 17 .DS_Store
18 *.rbx 18 *.rbx
19 -bin  
20 bundle 19 bundle
21 coverage 20 coverage
22 *# 21 *#
bin/rails 0 → 100755
@@ -0,0 +1,6 @@ @@ -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,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'