Sha256: 0eb02949b48590c1933db5e665f80509c87d7b1da86e38fbc2a24d2de8a3e8c8
Contents?: true
Size: 580 Bytes
Versions: 1
Compression:
Stored size: 580 Bytes
Contents
module Sequel # The major version of Sequel. Only bumped for major changes. MAJOR = 3 # The minor version of Sequel. Bumped for every non-patch level # release, generally around once a month. MINOR = 23 # 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('.') # The version of Sequel you are using, as a string (e.g. "2.11.0") def self.version VERSION end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
sequel-3.23.0 | lib/sequel/version.rb |