Skip to content

Commit

Permalink
Merge pull request #9030 from johndouthat/2-3-stable
Browse files Browse the repository at this point in the history
Add .gemspec files to 2-3-stable to help Bundler
  • Loading branch information
steveklabnik committed Jan 22, 2013
2 parents 7763f39 + 06b33a8 commit 3b75781
Show file tree
Hide file tree
Showing 6 changed files with 97 additions and 0 deletions.
14 changes: 14 additions & 0 deletions actionmailer/actionmailer.gemspec
@@ -0,0 +1,14 @@
Gem::Specification.new do |s|
s.name = 'actionmailer'
s.version = '2.3.15'
s.summary = 'Service layer for easy email delivery and testing.'
s.description = 'Makes it trivial to test and deliver emails sent from a single service layer.'

s.author = 'David Heinemeier Hansson'
s.email = 'david@loudthinking.com'
s.homepage = 'http://www.rubyonrails.org'

s.require_path = 'lib'

s.add_dependency 'actionpack', '= 2.3.15'
end
15 changes: 15 additions & 0 deletions actionpack/actionpack.gemspec
@@ -0,0 +1,15 @@
Gem::Specification.new do |s|
s.name = 'actionpack'
s.version = '2.3.15'
s.summary = 'Web-flow and rendering framework putting the VC in MVC.'
s.description = 'Eases web-request routing, handling, and response as a half-way front, half-way page controller. Implemented with specific emphasis on enabling easy unit/integration testing that doesn\'t require a browser.'

s.author = 'David Heinemeier Hansson'
s.email = 'david@loudthinking.com'
s.homepage = 'http://www.rubyonrails.org'

s.require_path = 'lib'

s.add_dependency 'activesupport', '= 2.3.15'
s.add_dependency 'rack', '~> 1.1.0'
end
17 changes: 17 additions & 0 deletions activerecord/activerecord.gemspec
@@ -0,0 +1,17 @@
Gem::Specification.new do |s|
s.name = 'activerecord'
s.version = '2.3.15'
s.summary = 'Implements the ActiveRecord pattern for ORM.'
s.description = 'Implements the ActiveRecord pattern (Fowler, PoEAA) for ORM. It ties database tables and classes together for business objects, like Customer or Subscription, that can find, save, and destroy themselves without resorting to manual SQL.'

s.author = 'David Heinemeier Hansson'
s.email = 'david@loudthinking.com'
s.homepage = 'http://www.rubyonrails.org'

s.require_path = 'lib'
s.files = ['README']
s.rdoc_options = ['--main', 'README']
s.extra_rdoc_files = ['README']

s.add_dependency 'activesupport', '= 2.3.15'
end
17 changes: 17 additions & 0 deletions activeresource/activeresource.gemspec
@@ -0,0 +1,17 @@
Gem::Specification.new do |s|
s.name = 'activeresource'
s.version = '2.3.15'
s.summary = 'Think Active Record for web resources.'
s.description = 'Wraps web resources in model classes that can be manipulated through XML over REST.'

s.author = 'David Heinemeier Hansson'
s.email = 'david@loudthinking.com'
s.homepage = 'http://www.rubyonrails.org'

s.require_path = 'lib'
s.files = ['README']
s.rdoc_options = ['--main', 'README']
s.extra_rdoc_files = ['README']

s.add_dependency 'activesupport', '= 2.3.15'
end
12 changes: 12 additions & 0 deletions activesupport/activesupport.gemspec
@@ -0,0 +1,12 @@
Gem::Specification.new do |s|
s.name = 'activesupport'
s.version = '2.3.15'
s.summary = 'Support and utility classes used by the Rails framework.'
s.description = 'Utility library which carries commonly used classes and goodies from the Rails framework'

s.author = 'David Heinemeier Hansson'
s.email = 'david@loudthinking.com'
s.homepage = 'http://www.rubyonrails.org'

s.require_path = 'lib'
end
22 changes: 22 additions & 0 deletions railties/railties.gemspec
@@ -0,0 +1,22 @@
Gem::Specification.new do |s|
s.name = 'rails'
s.version = '2.3.15'
s.summary = 'Web-application framework with template engine, control-flow layer, and ORM.'
s.description = "Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick\non top of either MySQL, PostgreSQL, SQLite, DB2, SQL Server, or Oracle with eRuby- or Builder-based templates."

s.author = 'David Heinemeier Hansson'
s.email = 'david@loudthinking.com'
s.homepage = 'http://www.rubyonrails.org'

s.require_path = 'lib'
s.files = ['bin/rails']
s.executables = ['rails']
s.rdoc_options = ['--exclude', '.']

s.add_dependency 'rake', '>= 0.8.3'
s.add_dependency 'activesupport', '= 2.3.15'
s.add_dependency 'activerecord', '= 2.3.15'
s.add_dependency 'actionpack', '= 2.3.15'
s.add_dependency 'actionmailer', '= 2.3.15'
s.add_dependency 'activeresource', '= 2.3.15'
end

0 comments on commit 3b75781

Please sign in to comment.