2012-04-15 23:35:38 -05:00
# -*- encoding: utf-8 -*-
Gem :: Specification . new do | s |
s . name = " activerecord "
2012-06-06 11:06:33 -05:00
s . version = " 3.2.2 "
2012-04-15 23:35:38 -05:00
s . required_rubygems_version = Gem :: Requirement . new ( " >= 0 " ) if s . respond_to? :required_rubygems_version =
s . authors = [ " David Heinemeier Hansson " ]
2012-06-06 11:06:33 -05:00
s . date = " 2012-03-01 "
2012-04-15 23:35:38 -05: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. "
s . email = " david@loudthinking.com "
s . extra_rdoc_files = [ " README.rdoc " ]
s . files = [ " README.rdoc " ]
s . homepage = " http://www.rubyonrails.org "
s . rdoc_options = [ " --main " , " README.rdoc " ]
s . require_paths = [ " lib " ]
s . required_ruby_version = Gem :: Requirement . new ( " >= 1.8.7 " )
2012-05-31 17:09:59 -05:00
s . rubygems_version = " 1.8.24 "
2012-04-15 23:35:38 -05:00
s . summary = " Object-relational mapper framework (part of Rails). "
if s . respond_to? :specification_version then
s . specification_version = 3
if Gem :: Version . new ( Gem :: VERSION ) > = Gem :: Version . new ( '1.2.0' ) then
2012-06-06 11:06:33 -05:00
s . add_runtime_dependency ( %q< activesupport > , [ " = 3.2.2 " ] )
s . add_runtime_dependency ( %q< activemodel > , [ " = 3.2.2 " ] )
2012-04-15 23:35:38 -05:00
s . add_runtime_dependency ( %q< arel > , [ " ~> 3.0.2 " ] )
s . add_runtime_dependency ( %q< tzinfo > , [ " ~> 0.3.29 " ] )
else
2012-06-06 11:06:33 -05:00
s . add_dependency ( %q< activesupport > , [ " = 3.2.2 " ] )
s . add_dependency ( %q< activemodel > , [ " = 3.2.2 " ] )
2012-04-15 23:35:38 -05:00
s . add_dependency ( %q< arel > , [ " ~> 3.0.2 " ] )
s . add_dependency ( %q< tzinfo > , [ " ~> 0.3.29 " ] )
end
else
2012-06-06 11:06:33 -05:00
s . add_dependency ( %q< activesupport > , [ " = 3.2.2 " ] )
s . add_dependency ( %q< activemodel > , [ " = 3.2.2 " ] )
2012-04-15 23:35:38 -05:00
s . add_dependency ( %q< arel > , [ " ~> 3.0.2 " ] )
s . add_dependency ( %q< tzinfo > , [ " ~> 0.3.29 " ] )
end
end