Method: Authlogic.gem_version
- Defined in:
- lib/authlogic/version.rb
.gem_version ⇒ Object
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
17 18 19 |
# File 'lib/authlogic/version.rb', line 17 def self.gem_version ::Gem::Version.new("6.5.0") end |