diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2004-12-16 15:45:55 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2004-12-16 15:45:55 +0000 |
commit | b8f8776f0cffc1b73719f16513a5721d77b19186 (patch) | |
tree | b02a65c7c9e37a8f031fecbd92b19a8a7afc4bd9 /railties/CHANGELOG | |
parent | 4fb6ed4c1c35ba055df36602e3d75b68e7fcb212 (diff) | |
download | rails-b8f8776f0cffc1b73719f16513a5721d77b19186.tar.gz rails-b8f8776f0cffc1b73719f16513a5721d77b19186.tar.bz2 rails-b8f8776f0cffc1b73719f16513a5721d77b19186.zip |
Renamed public/dispatch.servlet to script/server -- it wasn't really dispatching anyway as its delegating calls to public/dispatch.rb
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@186 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties/CHANGELOG')
-rw-r--r-- | railties/CHANGELOG | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/railties/CHANGELOG b/railties/CHANGELOG index 1d1806376b..e8c4d9acad 100644 --- a/railties/CHANGELOG +++ b/railties/CHANGELOG @@ -1,12 +1,14 @@ *CVS* +* Renamed public/dispatch.servlet to script/server -- it wasn't really dispatching anyway as its delegating calls to public/dispatch.rb + * Renamed AbstractApplicationController and abstract_application.rb to ApplicationController and application.rb, so that it will be possible for the framework to automatically pick up on app/views/layouts/application.rhtml and app/helpers/application.rb * Added script/envcon that makes it even easier to start an IRB session for interacting with the domain model. Run with no-args to see help. -* Added breakpoint support by default to the WEBrick dispatcher. This means that you can break out of execution at any point in +* Added breakpoint support through the script/breakpointer client. This means that you can break out of execution at any point in the code, investigate and change the model, AND then resume execution! Example: class WeblogController < ActionController::Base @@ -16,8 +18,8 @@ end end - So the controller will accept the action, run the first line, then present you with a IRB prompt in the WEBrick window (you shouldn't - run as daemon when you want to use this). Here you can do things like: + So the controller will accept the action, run the first line, then present you with a IRB prompt in the breakpointer window. + Here you can do things like: Executing breakpoint "Breaking out from the list" at .../webrick_server.rb:16 in 'breakpoint' |