Sha256: fcc7e705e7b166edfe4816859c1a08f9944d981bccf5f894c96fee155345f3d5

Contents?: true

Size: 350 Bytes

Versions: 2

Compression:

Stored size: 350 Bytes

Contents

# frozen_string_literal: true

module ActiveModel
  # Returns the version of the currently loaded \Active \Model as a <tt>Gem::Version</tt>
  def self.gem_version
    Gem::Version.new VERSION::STRING
  end

  module VERSION
    MAJOR = 5
    MINOR = 2
    TINY  = 2
    PRE   = nil

    STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
  end
end

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
nullifyable-0.1.0 vendor/bundle/gems/activemodel-5.2.2/lib/active_model/gem_version.rb
activemodel-5.2.2 lib/active_model/gem_version.rb