aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib
diff options
context:
space:
mode:
authorThomas Fuchs <thomas@fesch.at>2007-04-24 09:15:20 +0000
committerThomas Fuchs <thomas@fesch.at>2007-04-24 09:15:20 +0000
commitfe218684d50400d9e6564d3247d48b4e07f1024a (patch)
tree5e7305c4cfd21d1dbdc84b7893196fdae8e52949 /railties/lib
parent339a58a266c3514921ac6d2ff60de8aa5e30fb5c (diff)
downloadrails-fe218684d50400d9e6564d3247d48b4e07f1024a.tar.gz
rails-fe218684d50400d9e6564d3247d48b4e07f1024a.tar.bz2
rails-fe218684d50400d9e6564d3247d48b4e07f1024a.zip
Include Active Resource in rails:freeze:edge rake task
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6567 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties/lib')
-rw-r--r--railties/lib/tasks/framework.rake2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/lib/tasks/framework.rake b/railties/lib/tasks/framework.rake
index e9316b6c10..ae4b42b34a 100644
--- a/railties/lib/tasks/framework.rake
+++ b/railties/lib/tasks/framework.rake
@@ -60,7 +60,7 @@ namespace :rails do
touch "vendor/rails/REVISION_#{ENV['REVISION']}"
end
- for framework in %w( railties actionpack activerecord actionmailer activesupport actionwebservice )
+ for framework in %w(railties actionpack activerecord actionmailer activesupport actionwebservice activeresource)
system "svn export #{rails_svn}/#{framework} vendor/rails/#{framework}" + (ENV['REVISION'] ? " -r #{ENV['REVISION']}" : "")
end
end