mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
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
This commit is contained in:
parent
339a58a266
commit
fe218684d5
2 changed files with 3 additions and 1 deletions
|
@ -1,5 +1,7 @@
|
|||
*SVN*
|
||||
|
||||
* Include Active Resource in rails:freeze:edge rake task. [Thomas Fuchs]
|
||||
|
||||
* 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 )
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue