daf5ae8e4b
Among other fixes, this addresses the Rails security advisory from 5/31/2012: http://groups.google.com/group/rubyonrails-security/browse_thread/thread/7546a238e1962f59 http://groups.google.com/group/rubyonrails-security/browse_thread/thread/f1203e3376acec0f Thanks Joe and Trevor! Squashed commit of the following: commitd7031cebccAuthor: Joe Vennix <Joe_Vennix@rapid7.com> Date: Thu May 31 16:57:29 2012 -0500 Update activerecord in gemcache to support rails 3.2.4. [#30507689] commitc7369f6d66Author: Joe Vennix <Joe_Vennix@rapid7.com> Date: Thu May 31 16:53:01 2012 -0500 Bump rails version.
42 lines
1.7 KiB
Ruby
42 lines
1.7 KiB
Ruby
# -*- encoding: utf-8 -*-
|
|
|
|
Gem::Specification.new do |s|
|
|
s.name = "activerecord"
|
|
s.version = "3.2.4"
|
|
|
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
s.authors = ["David Heinemeier Hansson"]
|
|
s.date = "2012-05-31"
|
|
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")
|
|
s.rubygems_version = "1.8.24"
|
|
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
|
|
s.add_runtime_dependency(%q<activesupport>, ["= 3.2.4"])
|
|
s.add_runtime_dependency(%q<activemodel>, ["= 3.2.4"])
|
|
s.add_runtime_dependency(%q<arel>, ["~> 3.0.2"])
|
|
s.add_runtime_dependency(%q<tzinfo>, ["~> 0.3.29"])
|
|
else
|
|
s.add_dependency(%q<activesupport>, ["= 3.2.4"])
|
|
s.add_dependency(%q<activemodel>, ["= 3.2.4"])
|
|
s.add_dependency(%q<arel>, ["~> 3.0.2"])
|
|
s.add_dependency(%q<tzinfo>, ["~> 0.3.29"])
|
|
end
|
|
else
|
|
s.add_dependency(%q<activesupport>, ["= 3.2.4"])
|
|
s.add_dependency(%q<activemodel>, ["= 3.2.4"])
|
|
s.add_dependency(%q<arel>, ["~> 3.0.2"])
|
|
s.add_dependency(%q<tzinfo>, ["~> 0.3.29"])
|
|
end
|
|
end
|