gem_version.rb 349 字节
Newer Older
G
George Claghorn 已提交
1 2 3 4 5 6 7 8 9 10 11
# 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 = 0
G
George Claghorn 已提交
12
    TINY  = 1
G
v6.0.1  
George Claghorn 已提交
13
    PRE   = nil
G
George Claghorn 已提交
14 15 16 17

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