Skip to content

Commit

Permalink
Prepare for Rails 2.2.0 [RC1]
Browse files Browse the repository at this point in the history
  • Loading branch information
dhh committed Oct 23, 2008
1 parent 1a0e739 commit 57c31a3
Show file tree
Hide file tree
Showing 11 changed files with 18 additions and 15 deletions.
3 changes: 3 additions & 0 deletions actionmailer/CHANGELOG
@@ -1,8 +1,11 @@
*2.2.0 [RC1] (October 23rd, 2008)*

* Add layout functionality to mailers [Pratik]

Mailer layouts behaves just like controller layouts, except layout names need to
have '_mailer' postfix for them to be automatically picked up.


*2.1.0 (May 31st, 2008)*

* Fixed that a return-path header would be ignored #7572 [joost]
Expand Down
2 changes: 1 addition & 1 deletion actionmailer/Rakefile
Expand Up @@ -55,7 +55,7 @@ spec = Gem::Specification.new do |s|
s.rubyforge_project = "actionmailer"
s.homepage = "http://www.rubyonrails.org"

s.add_dependency('actionpack', '= 2.1.0' + PKG_BUILD)
s.add_dependency('actionpack', '= 2.2.0' + PKG_BUILD)

s.has_rdoc = true
s.requirements << 'none'
Expand Down
2 changes: 1 addition & 1 deletion actionpack/CHANGELOG
@@ -1,4 +1,4 @@
*Edge*
*2.2.0 [RC1] (October 23rd, 2008)*

* Added stale? and fresh_when methods to provide a layer of abstraction above request.fresh? and friends [DHH]. Example:

Expand Down
2 changes: 1 addition & 1 deletion actionpack/Rakefile
Expand Up @@ -80,7 +80,7 @@ spec = Gem::Specification.new do |s|
s.has_rdoc = true
s.requirements << 'none'

s.add_dependency('activesupport', '= 2.1.0' + PKG_BUILD)
s.add_dependency('activesupport', '= 2.2.0' + PKG_BUILD)

s.require_path = 'lib'
s.autorequire = 'action_controller'
Expand Down
2 changes: 1 addition & 1 deletion activerecord/CHANGELOG
@@ -1,4 +1,4 @@
*Edge*
*2.2.0 [RC1] (October 23rd, 2008)*

* Add Model#delete instance method, similar to Model.delete class method. #1086 [Hongli Lai]

Expand Down
2 changes: 1 addition & 1 deletion activerecord/Rakefile
Expand Up @@ -171,7 +171,7 @@ spec = Gem::Specification.new do |s|
s.files = s.files + Dir.glob( "#{dir}/**/*" ).delete_if { |item| item.include?( "\.svn" ) }
end

s.add_dependency('activesupport', '= 2.1.0' + PKG_BUILD)
s.add_dependency('activesupport', '= 2.2.0' + PKG_BUILD)

s.files.delete FIXTURES_ROOT + "/fixture_database.sqlite"
s.files.delete FIXTURES_ROOT + "/fixture_database_2.sqlite"
Expand Down
2 changes: 1 addition & 1 deletion activeresource/CHANGELOG
@@ -1,4 +1,4 @@
*Edge*
*2.2.0 [RC1] (October 23rd, 2008)*

* Add ActiveResource::Base#to_xml and ActiveResource::Base#to_json. #1011 [Rasik Pandey, Cody Fauser]

Expand Down
2 changes: 1 addition & 1 deletion activeresource/Rakefile
Expand Up @@ -65,7 +65,7 @@ spec = Gem::Specification.new do |s|
s.files = s.files + Dir.glob( "#{dir}/**/*" ).delete_if { |item| item.include?( "\.svn" ) }
end

s.add_dependency('activesupport', '= 2.1.0' + PKG_BUILD)
s.add_dependency('activesupport', '= 2.2.0' + PKG_BUILD)

s.require_path = 'lib'
s.autorequire = 'active_resource'
Expand Down
2 changes: 1 addition & 1 deletion activesupport/CHANGELOG
@@ -1,4 +1,4 @@
*Edge*
*2.2.0 [RC1] (October 23rd, 2008)*

* TimeWithZone#freeze: preload instance variables so that we can actually freeze [Geoff Buesing]

Expand Down
2 changes: 1 addition & 1 deletion railties/CHANGELOG
@@ -1,4 +1,4 @@
*Edge*
*2.2.0 [RC1] (October 23rd, 2008)*

* Fixed that sqlite would report "db/development.sqlite3 already exists" whether true or not on db:create #614 [Antonio Cangiano]

Expand Down
12 changes: 6 additions & 6 deletions railties/Rakefile
Expand Up @@ -348,12 +348,12 @@ spec = Gem::Specification.new do |s|
on top of either MySQL, PostgreSQL, SQLite, DB2, SQL Server, or Oracle with eRuby- or Builder-based templates.
EOF

s.add_dependency('rake', '>= 0.8.1')
s.add_dependency('activesupport', '= 2.1.0' + PKG_BUILD)
s.add_dependency('activerecord', '= 2.1.0' + PKG_BUILD)
s.add_dependency('actionpack', '= 2.1.0' + PKG_BUILD)
s.add_dependency('actionmailer', '= 2.1.0' + PKG_BUILD)
s.add_dependency('activeresource', '= 2.1.0' + PKG_BUILD)
s.add_dependency('rake', '>= 0.8.3')
s.add_dependency('activesupport', '= 2.2.0' + PKG_BUILD)
s.add_dependency('activerecord', '= 2.2.0' + PKG_BUILD)
s.add_dependency('actionpack', '= 2.2.0' + PKG_BUILD)
s.add_dependency('actionmailer', '= 2.2.0' + PKG_BUILD)
s.add_dependency('activeresource', '= 2.2.0' + PKG_BUILD)

s.rdoc_options << '--exclude' << '.'
s.has_rdoc = false
Expand Down

4 comments on commit 57c31a3

@jimneath
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good times :)

@mislav
Copy link
Member

@mislav mislav commented on 57c31a3 Oct 24, 2008

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Wohoo!

@yaroslav
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Epic change is epic

@ELLIOTTCABLE
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

tired meme is tired

Please sign in to comment.