aboutsummaryrefslogblamecommitdiffstats
path: root/actionsystemtest/lib/action_system_test/gem_version.rb
blob: c10fce2da0d1db3a9c94c3c23c6cda66488d6bb6 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15














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

  module VERSION
    MAJOR = 5
    MINOR = 1
    TINY  = 0
    PRE   = "alpha"

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