aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/activerecord.gemspec
blob: a8c990e3cbe7fda33886e7946973252126c0df9c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
Gem::Specification.new do |s|
  s.platform = Gem::Platform::RUBY
  s.name = 'activerecord'
  s.version = '3.0.0.beta'
  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.files = Dir['CHANGELOG', 'README', 'examples/**/*', 'lib/**/*']

  s.add_dependency('activesupport', '= 3.0.0.beta')
  s.add_dependency('activemodel',   '= 3.0.0.beta')
  s.add_dependency('arel',          '~> 0.2.0')

  s.require_path = 'lib'
  s.autorequire = 'active_record'

  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"
end