aboutsummaryrefslogblamecommitdiffstats
path: root/activemodel/lib/active_model/version.rb
blob: 35c4b309992aae92fb2c0d66e58276cc15924eba (plain) (tree)
1
2
3
4
5
6
7
8
9
                  



                                                                             
 


                                                          

     
module ActiveModel
  # Returns the version of the currently loaded ActiveModel as a Gem::Version
  def self.version
    Gem::Version.new "4.0.0.beta1"
  end

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