aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/version.rb
blob: de5fd05468147e05cb3fa6a350e9b1a0aeda37b0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
module ActiveRecord
  # Returns the version of the currently loaded ActiveRecord as a Gem::Version
  def self.version
    Gem::Version.new "4.1.0.beta"
  end

  module VERSION #:nodoc:
    MAJOR, MINOR, TINY, PRE = ActiveRecord.version.segments
    STRING = ActiveRecord.version.to_s
  end
end