Sha256: aef911509064399e63609b0dfd9271617790eb46d85cc78df9c846730ad619c9
Contents?: true
Size: 320 Bytes
Versions: 2
Compression:
Stored size: 320 Bytes
Contents
module ActiveSupport # Returns the version of the currently loaded ActiveSupport as a <tt>Gem::Version</tt> def self.gem_version Gem::Version.new VERSION::STRING end module VERSION MAJOR = 4 MINOR = 1 TINY = 6 PRE = nil STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") end end
Version data entries
2 entries across 2 versions & 2 rubygems
Version | Path |
---|---|
nanumfont-rails-0.1 | vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/gem_version.rb |
activesupport-4.1.6 | lib/active_support/gem_version.rb |