diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2007-04-23 18:55:54 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2007-04-23 18:55:54 +0000 |
commit | df41c7cb612352951bfe8e471e11e67f249c16d5 (patch) | |
tree | d1db6c129661ebfe83aa14468dbf683db054f163 /railties/CHANGELOG | |
parent | 52a9e5089ce61fa1f07abe3e36af53ae744b3999 (diff) | |
download | rails-df41c7cb612352951bfe8e471e11e67f249c16d5.tar.gz rails-df41c7cb612352951bfe8e471e11e67f249c16d5.tar.bz2 rails-df41c7cb612352951bfe8e471e11e67f249c16d5.zip |
Include Active Resource instead of Action Web Service [DHH]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6550 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties/CHANGELOG')
-rw-r--r-- | railties/CHANGELOG | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/railties/CHANGELOG b/railties/CHANGELOG index 73378b9c4e..e607c0a2fc 100644 --- a/railties/CHANGELOG +++ b/railties/CHANGELOG @@ -1,5 +1,11 @@ *SVN* +* Include Active Resource instead of Action Web Service [DHH] You can add AWS back with this in config/environment.rb: + + config.load_paths += %W( #{RAILS_ROOT}/vendor/rails/actionwebservice/lib ) + + ...or just gem 'actionwebservice' + * Give generate scaffold a more descriptive database message. Closes #7316 [jeremymcanally] * Canonicalize RAILS_ROOT by using File.expand_path on Windows, which doesn't have to worry about symlinks, and Pathname#realpath elsewhere, which respects symlinks in relative paths but is incompatible with Windows. #6755 [Jeremy Kemper, trevor] |