Sha256: 7c1851cbd972e3ec64de84c67d085af6009b8dd06483caf5cd3bf3826e224502
Contents?: true
Size: 320 Bytes
Versions: 2
Compression:
Stored size: 320 Bytes
Contents
module ActionMailer # 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 = 5 MINOR = 0 TINY = 0 PRE = nil STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") end end
Version data entries
2 entries across 2 versions & 2 rubygems
Version | Path |
---|---|
abaci-0.3.0 | vendor/bundle/gems/actionmailer-5.0.0/lib/action_mailer/gem_version.rb |
actionmailer-5.0.0 | lib/action_mailer/gem_version.rb |