Sha256: e0c5a75dcac70daae1eb0adba57c59275c059c5cc4081265a0ba445ab9c21d23
Contents?: true
Size: 342 Bytes
Versions: 4
Compression:
Stored size: 342 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 = 1 TINY = 3 PRE = "4" STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") end end
Version data entries
4 entries across 4 versions & 4 rubygems