aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/activerecord.gemspec
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2010-02-04 13:05:27 +0100
committerJosé Valim <jose.valim@gmail.com>2010-02-04 13:05:27 +0100
commitab14e3f8628da81535c09eab3ba48d06725c6769 (patch)
tree1409b4049bbc3075f7618a4759797dc6de2116d9 /activerecord/activerecord.gemspec
parent31248fe3698c8d6c54465dfdf463ea49749e1c33 (diff)
parentc9ec28b2b643de7a315276cc285d7a4506b9d568 (diff)
downloadrails-ab14e3f8628da81535c09eab3ba48d06725c6769.tar.gz
rails-ab14e3f8628da81535c09eab3ba48d06725c6769.tar.bz2
rails-ab14e3f8628da81535c09eab3ba48d06725c6769.zip
Merge branch 'master' of gitproxy:rails/rails
Diffstat (limited to 'activerecord/activerecord.gemspec')
-rw-r--r--activerecord/activerecord.gemspec30
1 files changed, 14 insertions, 16 deletions
diff --git a/activerecord/activerecord.gemspec b/activerecord/activerecord.gemspec
index 4fd1a0213c..f7ed77ca4b 100644
--- a/activerecord/activerecord.gemspec
+++ b/activerecord/activerecord.gemspec
@@ -1,25 +1,23 @@
Gem::Specification.new do |s|
- s.platform = Gem::Platform::RUBY
- s.name = 'activerecord'
- s.version = '3.0.pre'
- s.summary = "Implements the ActiveRecord pattern for ORM."
- s.description = %q{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.platform = Gem::Platform::RUBY
+ s.name = 'activerecord'
+ s.version = '3.0.0.beta'
+ s.summary = 'Object-relational mapper framework (part of Rails).'
+ s.description = 'Object-relational mapper framework (part of Rails).'
- s.files = Dir['CHANGELOG', 'README', 'examples/**/*', 'lib/**/*']
-
- s.add_dependency('activesupport', '= 3.0.pre')
- s.add_dependency('activemodel', '= 3.0.pre')
- s.add_dependency('arel', '~> 0.2.0')
+ s.author = 'David Heinemeier Hansson'
+ s.email = 'david@loudthinking.com'
+ s.homepage = 'http://www.rubyonrails.org'
+ s.rubyforge_project = 'activerecord'
+ s.files = Dir['CHANGELOG', 'README', 'examples/**/*', 'lib/**/*']
s.require_path = 'lib'
- s.autorequire = 'active_record'
- s.has_rdoc = true
+ s.has_rdoc = true
s.extra_rdoc_files = %w( README )
s.rdoc_options.concat ['--main', 'README']
- s.author = "David Heinemeier Hansson"
- s.email = "david@loudthinking.com"
- s.homepage = "http://www.rubyonrails.org"
- s.rubyforge_project = "activerecord"
+ s.add_dependency('activesupport', '= 3.0.0.beta')
+ s.add_dependency('activemodel', '= 3.0.0.beta')
+ s.add_dependency('arel', '~> 0.2.0')
end