Sha256: ffb50249603bc8b4c82c1858665f3ac3e59b30ac5688bc2cfa78d281aede6ee4

Contents?: true

Size: 561 Bytes

Versions: 1

Compression:

Stored size: 561 Bytes

Contents

# frozen_string_literal: true

require "rubygems"

module Authlogic
  # Returns a `::Gem::Version`, the version number of the authlogic gem.
  #
  # It is preferable for a library to provide a `gem_version` method, rather
  # than a `VERSION` string, because `::Gem::Version` is easier to use in a
  # comparison.
  #
  # We cannot return a frozen `Version`, because rubygems will try to modify it.
  # https://github.com/binarylogic/authlogic/pull/590
  #
  # Added in 4.0.0
  #
  # @api public
  def self.gem_version
    ::Gem::Version.new("4.3.0")
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
authlogic-4.3.0 lib/authlogic/version.rb