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

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