Sha256: beeddf0e8a6a0be5b63374b740171440869f4cdf94a0e675ec6884bf0918f429

Contents?: true

Size: 738 Bytes

Versions: 2

Compression:

Stored size: 738 Bytes

Contents

# frozen-string-literal: true

module Sequel
  # The major version of Sequel.  Only bumped for major changes.
  MAJOR = 5
  # The minor version of Sequel.  Bumped for every non-patch level
  # release, generally around once a month.
  MINOR = 9
  # The tiny version of Sequel.  Usually 0, only bumped for bugfix
  # releases that fix regressions from previous versions.
  TINY  = 0
  
  # The version of Sequel you are using, as a string (e.g. "2.11.0")
  VERSION = [MAJOR, MINOR, TINY].join('.').freeze

  # The version of Sequel you are using, as a number (2.11.0 -> 20110)
  VERSION_NUMBER = MAJOR*10000 + MINOR*10 + TINY
  
  # The version of Sequel you are using, as a string (e.g. "2.11.0")
  def self.version
    VERSION
  end
end

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
tdiary-5.0.9 vendor/bundle/gems/sequel-5.9.0/lib/sequel/version.rb
sequel-5.9.0 lib/sequel/version.rb