1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Fixed the missing shebang in main "rails" script #736

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@807 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
David Heinemeier Hansson 2005-02-27 20:35:12 +00:00
parent b8a0903344
commit f46515619f
2 changed files with 8 additions and 0 deletions

View file

@ -1,3 +1,10 @@
*SVN*
* Fixed the missing shebang in main "rails" script #736
* Removed the obsolete -i/--index option from the WEBrick servlet #743
*0.10.0* (24th February, 2005) *0.10.0* (24th February, 2005)
* Changed default IP binding for WEBrick from 127.0.0.1 to 0.0.0.0 so that the server is accessible both locally and remotely #696 [Marcel] * Changed default IP binding for WEBrick from 127.0.0.1 to 0.0.0.0 so that the server is accessible both locally and remotely #696 [Marcel]

View file

@ -1,3 +1,4 @@
#!/usr/local/bin/ruby
require File.dirname(__FILE__) + '/../lib/rails_generator' require File.dirname(__FILE__) + '/../lib/rails_generator'
require 'rails_generator/scripts/generate' require 'rails_generator/scripts/generate'
Rails::Generator::Base.use_application_sources! Rails::Generator::Base.use_application_sources!