aboutsummaryrefslogtreecommitdiffstats
path: root/railties/CHANGELOG
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-11-07 10:25:36 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-11-07 10:25:36 +0000
commit5ca8b5fca42ca09bdaadfc7c985fbec9c2fbafa5 (patch)
tree11a05e7ef113a42c1c6f7117399332d0ae389e44 /railties/CHANGELOG
parent72add11c441c51de79a179438cb308d96aeaac76 (diff)
downloadrails-5ca8b5fca42ca09bdaadfc7c985fbec9c2fbafa5.tar.gz
rails-5ca8b5fca42ca09bdaadfc7c985fbec9c2fbafa5.tar.bz2
rails-5ca8b5fca42ca09bdaadfc7c985fbec9c2fbafa5.zip
Added default lighttpd config in config/lighttpd.conf and added a default runner for lighttpd in script/server (works like script/server, but using lighttpd and FastCGI). It will use lighttpd if available, otherwise WEBrick. You can force either or using 'script/server lighttpd' or 'script/server webrick' [DHH]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2912 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties/CHANGELOG')
-rw-r--r--railties/CHANGELOG10
1 files changed, 4 insertions, 6 deletions
diff --git a/railties/CHANGELOG b/railties/CHANGELOG
index 9c6e329c97..30e8eb9435 100644
--- a/railties/CHANGELOG
+++ b/railties/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* Added default lighttpd config in config/lighttpd.conf and added a default runner for lighttpd in script/server (works like script/server, but using lighttpd and FastCGI). It will use lighttpd if available, otherwise WEBrick. You can force either or using 'script/server lighttpd' or 'script/server webrick' [DHH]
+
* New configuration option config.plugin_paths which may be a single path like the default 'vendor/plugins' or an array of paths: ['vendor/plugins', 'lib/plugins']. [Jeremy Kemper]
* Plugins are discovered in nested paths, so you can organize your plugins directory as you like. [Jeremy Kemper]
@@ -10,15 +12,13 @@
* Enable HTTP installation of plugins when svn isn't avaialable. Closes #2661. [Chad Fowler]
-* Load Rails::Info after initialization [Sam Stephenson]
-
* Added script/about to display formatted Rails::Info output [Sam Stephenson]
* Added Rails::Info to catalog assorted information about a Rails application's environment [Sam Stephenson]
-* Tail the logfile when running script/lighttpd in the foreground [Sam Stephenson]
+* Tail the logfile when running script/server lighttpd in the foreground [Sam Stephenson]
-* Try to guess the port number from config/lighttpd.conf in script/lighttpd [Sam Stephenson]
+* Try to guess the port number from config/lighttpd.conf in script/server lighttpd [Sam Stephenson]
* Don't reap spawn-fcgi. #2727 [matthew@walker.wattle.id.au]
@@ -62,8 +62,6 @@
* Added test_plugins task: Run the plugin tests in vendor/plugins/**/test (or specify with PLUGIN=name) [DHH]
-* Added default lighttpd config in config/lighttpd.conf and added a default runner for lighttpd in script/lighttpd (works like script/server, but using lighttpd and FastCGI) [DHH]
-
* Added plugin generator to create a stub structure for a new plugin in vendor/plugins (see "script/generate plugin" for help) [DHH]
* Fixed scaffold generator when started with only 1 parameter #2609 [self@mattmower.com]