aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/activerecord.gemspec
diff options
context:
space:
mode:
authorBryan Helmkamp <bryan@brynary.com>2010-03-04 22:41:39 -0500
committerJeremy Kemper <jeremy@bitsweat.net>2010-03-04 21:25:52 -0800
commitdeb00bcb8cf88eb6420282c9af0af64fb69aeed4 (patch)
treea2cbddf59a52f538f9b65ec8d377c99bc48a6824 /activerecord/activerecord.gemspec
parent46bf2f04a87c56826963958eaf370d9262526af0 (diff)
downloadrails-deb00bcb8cf88eb6420282c9af0af64fb69aeed4.tar.gz
rails-deb00bcb8cf88eb6420282c9af0af64fb69aeed4.tar.bz2
rails-deb00bcb8cf88eb6420282c9af0af64fb69aeed4.zip
Read Rails version from a file instead of modifying the load path and doing requires
Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
Diffstat (limited to 'activerecord/activerecord.gemspec')
-rw-r--r--activerecord/activerecord.gemspec9
1 files changed, 4 insertions, 5 deletions
diff --git a/activerecord/activerecord.gemspec b/activerecord/activerecord.gemspec
index 5d76333950..08666f08e9 100644
--- a/activerecord/activerecord.gemspec
+++ b/activerecord/activerecord.gemspec
@@ -1,10 +1,9 @@
-$:.unshift "lib"
-require "active_record/version"
+version = File.read("../RAILS_VERSION").strip
Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = 'activerecord'
- s.version = ActiveRecord::VERSION::STRING
+ s.version = version
s.summary = 'Object-relational mapper framework (part of Rails).'
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.required_ruby_version = '>= 1.8.7'
@@ -21,7 +20,7 @@ Gem::Specification.new do |s|
s.extra_rdoc_files = %w( README )
s.rdoc_options.concat ['--main', 'README']
- s.add_dependency('activesupport', "= #{ActiveRecord::VERSION::STRING}")
- s.add_dependency('activemodel', "= #{ActiveRecord::VERSION::STRING}")
+ s.add_dependency('activesupport', version)
+ s.add_dependency('activemodel', version)
s.add_dependency('arel', '~> 0.2.1')
end