module Authlogic
Authlogic
bridge for Sinatra
Public Class Methods
gem_version()
click to toggle source
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. github.com/binarylogic/authlogic/pull/590
Added in 4.0.0
@api public
# File lib/authlogic/version.rb, line 19 def self.gem_version ::Gem::Version.new("5.0.2") end