Sha256: f0126e8c15a891c65e03c94c7ebe79f91c8c5beb0cb086b1fa0e13d42f666da4
Contents?: true
Size: 346 Bytes
Versions: 1
Compression:
Stored size: 346 Bytes
Contents
# frozen_string_literal: true module ActionMailbox # Returns the currently loaded version of Action Mailbox as a +Gem::Version+. def self.gem_version Gem::Version.new VERSION::STRING end module VERSION MAJOR = 7 MINOR = 2 TINY = 0 PRE = "beta3" STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
actionmailbox-7.2.0.beta3 | lib/action_mailbox/gem_version.rb |