mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Complete AWS -> ARes changeover. Closes #8717 [kampers]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7914 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
parent
671228942d
commit
3397d971ff
3 changed files with 3 additions and 3 deletions
|
@ -73,7 +73,7 @@ HTML_FILES = %w( 422.html 404.html 500.html index.html robots.txt favicon.ico
|
|||
javascripts/effects.js javascripts/dragdrop.js javascripts/controls.js )
|
||||
BIN_FILES = %w( about console destroy generate performance/benchmarker performance/profiler process/reaper process/spawner process/inspector runner server plugin )
|
||||
|
||||
VENDOR_LIBS = %w( actionpack activerecord actionmailer activesupport actionwebservice railties )
|
||||
VENDOR_LIBS = %w( actionpack activerecord actionmailer activesupport activeresource railties )
|
||||
|
||||
|
||||
desc "Generates a fresh Rails package with documentation"
|
||||
|
|
|
@ -89,7 +89,7 @@ module Rails
|
|||
end
|
||||
|
||||
# Versions of each Rails component (Active Record, Action Pack,
|
||||
# Action Web Service, Active Resource, Action Mailer, and Active Support).
|
||||
# Active Resource, Action Mailer, and Active Support).
|
||||
components.each do |component|
|
||||
property "#{component.titlecase} version" do
|
||||
component_version(component)
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/local/bin/ruby
|
||||
|
||||
VERSION = ARGV.first
|
||||
PACKAGES = %w( activesupport activerecord actionpack actionmailer actionwebservice )
|
||||
PACKAGES = %w(activesupport activerecord actionpack actionmailer activeresource)
|
||||
|
||||
# Checkout source
|
||||
`rm -rf release && svn export http://dev.rubyonrails.org/svn/rails/trunk release`
|
||||
|
|
Loading…
Reference in a new issue