Sha256: f856e6b5d753dd96754ab886422eb5d8447d3754c950d750e4f50f26be42799e
Contents?: true
Size: 321 Bytes
Versions: 1
Compression:
Stored size: 321 Bytes
Contents
module ActiveRecord # Returns the version of the currently loaded Active Record as a <tt>Gem::Version</tt> def self.gem_version Gem::Version.new VERSION::STRING end module VERSION MAJOR = 4 MINOR = 2 TINY = 0 PRE = "rc3" STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
activerecord-4.2.0.rc3 | lib/active_record/gem_version.rb |