File: active_support/version.rb

Overview
Module Structure
Code

Overview

Module Structure

  module: <Toplevel Module>
  module: ActiveSupport#1
  module: VERSION#2
has properties
constant: MAJOR #3
constant: MINOR #4
constant: TINY #5
constant: STRING #7

Code

   1  module ActiveSupport
   2    module VERSION #:nodoc:
   3      MAJOR = 2
   4      MINOR = 3
   5      TINY  = 14
   6 
   7      STRING = [MAJOR, MINOR, TINY].join('.')
   8    end
   9  end