Sha256: 8655c4c80f1dea8ec91260f8ffc33af46976ea4b32b7e73fecad9b9ad62f5a4a

Contents?: true

Size: 638 Bytes

Versions: 1

Compression:

Stored size: 638 Bytes

Contents

# frozen-string-literal: true

module Rodauth
  # The major version of Rodauth, updated only for major changes that are
  # likely to require modification to apps using Rodauth.
  MAJOR = 1

  # The minor version of Rodauth, updated for new feature releases of Rodauth.
  MINOR = 23

  # The patch version of Rodauth, updated only for bug fixes from the last
  # feature release.
  TINY = 0

  # The full version of Rodauth as a string
  VERSION = "#{MAJOR}.#{MINOR}.#{TINY}".freeze

  # The full version of Rodauth as a number (1.17.0 => 11700)
  VERSION_NUMBER = MAJOR*10000 + MINOR*100 + TINY

  def self.version
    VERSION
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rodauth-1.23.0 lib/rodauth/version.rb