diff options
author | Charlie Somerville <charlie@charliesomerville.com> | 2013-03-20 20:42:05 +1100 |
---|---|---|
committer | Charlie Somerville <charlie@charliesomerville.com> | 2013-03-21 19:56:07 +1100 |
commit | c07e1515f7c66f5599cbb3c7e9fe42e166bf3edc (patch) | |
tree | c3855a0c2170fa6112b95816e2a3a4c950af26dc /activerecord | |
parent | 70d0537d5550958d7e006787de869ce9046101fc (diff) | |
download | rails-c07e1515f7c66f5599cbb3c7e9fe42e166bf3edc.tar.gz rails-c07e1515f7c66f5599cbb3c7e9fe42e166bf3edc.tar.bz2 rails-c07e1515f7c66f5599cbb3c7e9fe42e166bf3edc.zip |
Add version method to top level modules
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/lib/active_record/version.rb | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/activerecord/lib/active_record/version.rb b/activerecord/lib/active_record/version.rb index c0471bb506..f2b041ad97 100644 --- a/activerecord/lib/active_record/version.rb +++ b/activerecord/lib/active_record/version.rb @@ -1,10 +1,11 @@ module ActiveRecord - module VERSION #:nodoc: - MAJOR = 4 - MINOR = 0 - TINY = 0 - PRE = "beta1" + # Returns the version of the currently loaded ActiveRecord as a Gem::Version + def self.version + Gem::Version.new "4.0.0.beta1" + end - STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.') + module VERSION #:nodoc: + MAJOR, MINOR, TINY, PRE = ActiveRecord.version.segments + STRING = ActiveRecord.version.to_s end end |