diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2005-03-06 14:01:52 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2005-03-06 14:01:52 +0000 |
commit | 2581806abd9cefa0beba092f66bf5bb8cb950064 (patch) | |
tree | 2e3d46c840444079739f598806004a33a05fc6e4 /railties | |
parent | cbb65c39ec22a57d31dc2b94a0a385ad461045f2 (diff) | |
download | rails-2581806abd9cefa0beba092f66bf5bb8cb950064.tar.gz rails-2581806abd9cefa0beba092f66bf5bb8cb950064.tar.bz2 rails-2581806abd9cefa0beba092f66bf5bb8cb950064.zip |
Added web_service generator (run ./script/generate web_service for help) #776 [Leon Bredt]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@850 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties')
-rw-r--r-- | railties/CHANGELOG | 2 | ||||
-rw-r--r-- | railties/helpers/test_helper.rb | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/railties/CHANGELOG b/railties/CHANGELOG index 92fad1aa79..d61a3b3135 100644 --- a/railties/CHANGELOG +++ b/railties/CHANGELOG @@ -1,5 +1,7 @@ *SVN* +* Added web_service generator (run ./script/generate web_service for help) #776 [Leon Bredt] + * Added app/apis and components to code statistics report #729 [Scott Barron] * Fixed WEBrick server to use ABSOLUTE_RAILS_ROOT instead of working_directory #687 [Nicholas Seckar] diff --git a/railties/helpers/test_helper.rb b/railties/helpers/test_helper.rb index e560caa79d..d177ec3515 100644 --- a/railties/helpers/test_helper.rb +++ b/railties/helpers/test_helper.rb @@ -5,10 +5,11 @@ require 'application' require 'test/unit' require 'active_record/fixtures' require 'action_controller/test_process' +require 'action_web_service/test_invoke' require 'breakpoint' def create_fixtures(*table_names) Fixtures.create_fixtures(File.dirname(__FILE__) + "/fixtures", table_names) end -Test::Unit::TestCase.fixture_path = File.dirname(__FILE__) + "/fixtures/"
\ No newline at end of file +Test::Unit::TestCase.fixture_path = File.dirname(__FILE__) + "/fixtures/" |