aboutsummaryrefslogblamecommitdiffstats
path: root/actionview/lib/action_view/version.rb
blob: 094dd474df07162fcb26b52b681faed098b751fb (plain) (tree)
1
2
3
4
5
6
7
8
9
                 

                                                                            
                                 


                         

                                                         

     
module ActionView
  # Returns the version of the currently loaded ActionView as a Gem::Version
  def self.version
    Gem::Version.new "4.1.0.beta"
  end

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