rails/activerecord/activerecord.gemspec

29 lines
1.0 KiB
Ruby
Raw Normal View History

version = File.read(File.expand_path('../../RAILS_VERSION', __FILE__)).strip
Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = 'activerecord'
s.version = version
s.summary = 'Object-relational mapper framework (part of Rails).'
2010-03-02 18:32:09 +00:00
s.description = 'Databases on Rails. Build a persistent domain model by mapping database tables to Ruby classes. Strong conventions for associations, validations, aggregations, migrations, and testing come baked-in.'
2010-04-01 20:46:04 +00:00
2011-12-20 18:13:23 +00:00
s.required_ruby_version = '>= 1.9.3'
s.license = 'MIT'
s.author = 'David Heinemeier Hansson'
s.email = 'david@loudthinking.com'
s.homepage = 'http://www.rubyonrails.org'
s.files = Dir['CHANGELOG.md', 'MIT-LICENSE', 'README.rdoc', 'examples/**/*', 'lib/**/*']
s.require_path = 'lib'
s.extra_rdoc_files = %w(README.rdoc)
s.rdoc_options.concat ['--main', 'README.rdoc']
s.add_dependency 'activesupport', version
s.add_dependency 'activemodel', version
2013-12-05 02:28:51 +00:00
s.add_dependency 'arel', '~> 5.0.0'
end