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



                                                                               
 


                                                            

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

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