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









                                                                                      
             
             
                   



                                                        
# frozen_string_literal: true

module ActionMailbox
  # Returns the currently-loaded version of Action Mailbox 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