1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Add Active Resource to rails:freeze:edge and drop Action Web Service. Closes #8205.

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6872 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
Jeremy Kemper 2007-05-27 22:21:20 +00:00
parent 3c356aa9ff
commit 2aed78d270
2 changed files with 4 additions and 2 deletions

View file

@ -1,5 +1,7 @@
*SVN*
* Drop Action Web Service from rails:freeze:edge. [Jeremy Kemper]
* Add db:create, drop, reset, charset, and collation tasks. #8448 [matt]
* Scaffold generator depends on model generator instead of duplicating it. #7222 [bscofield]

View file

@ -59,8 +59,8 @@ namespace :rails do
touch "vendor/rails/REVISION_#{ENV['REVISION']}"
end
for framework in %w(railties actionpack activerecord actionmailer activesupport actionwebservice activeresource)
for framework in %w(railties actionpack activerecord actionmailer activesupport activeresource)
system "svn export #{rails_svn}/#{framework} vendor/rails/#{framework}" + (ENV['REVISION'] ? " -r #{ENV['REVISION']}" : "")
end
end