aboutsummaryrefslogblamecommitdiffstats
path: root/actiontext/lib/action_text/gem_version.rb
blob: 8b4103712c9c5d5548d533399c48916e7aa03929 (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                                                                   
             
             
                   



                                                        
# frozen_string_literal: true

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

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

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