Sha256: aec14fe01e3cb227430ec70696881ed8b1e4e6579b3f9a60e6ec59e14b4f95de
Contents?: true
Size: 617 Bytes
Versions: 1
Compression:
Stored size: 617 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 = 7 # The tiny version of Sequel. Usually 0, only bumped for bugfix # releases that fix regressions from previous versions. TINY = 1 # 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 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-5.7.1 | lib/sequel/version.rb |