aboutsummaryrefslogblamecommitdiffstats
path: root/version.rb
blob: c7397c4f15c90a84f0e56e25d7a79294c84c70e6 (plain) (tree)
1
2
3
4
5
6
7
8
9
            




                                                                                
                
             
             
             
                   
 
                                                        

     
module Rails
  # Returns the version of the currently loaded Rails as a <tt>Gem::Version</tt>
  def self.gem_version
    Gem::Version.new VERSION::STRING
  end

  module VERSION
    MAJOR = 4
    MINOR = 2
    TINY  = 0
    PRE   = "alpha"

    STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
  end
end