aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--railties/CHANGELOG7
-rwxr-xr-xrailties/bin/rails1
2 files changed, 8 insertions, 0 deletions
diff --git a/railties/CHANGELOG b/railties/CHANGELOG
index de4b41bc0d..d979b06ac5 100644
--- a/railties/CHANGELOG
+++ b/railties/CHANGELOG
@@ -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)
* 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]
diff --git a/railties/bin/rails b/railties/bin/rails
index 3d23b99609..b3a25d6d59 100755
--- a/railties/bin/rails
+++ b/railties/bin/rails
@@ -1,3 +1,4 @@
+#!/usr/local/bin/ruby
require File.dirname(__FILE__) + '/../lib/rails_generator'
require 'rails_generator/scripts/generate'
Rails::Generator::Base.use_application_sources!