aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/lib/active_model/version.rb
blob: 5c9d2bc6bce36374600e6f0f33653a86bfdbebf8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
module ActiveModel
  # Returns the version of the currently loaded ActiveModel as a Gem::Version
  def self.version
    Gem::Version.new "4.2.0.alpha"
  end

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