Sha256: e226daeefdb208320d3ff2622101a3d6dbffeeaa4b80e8b2ba148bbb7f396698

Contents?: true

Size: 323 Bytes

Versions: 1

Compression:

Stored size: 323 Bytes

Contents

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

  module VERSION
    MAJOR = 0
    MINOR = 1
    TINY  = 2
    PRE   = 'ALPHA'

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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
action-texter-0.1.2.ALPHA lib/action_texter/gem_version.rb