Sha256: 330aa9b7a949913c45dd6fa6d548c0443318a59118d7d8d7db35c02c66bc0658
Contents?: true
Size: 457 Bytes
Versions: 30
Compression:
Stored size: 457 Bytes
Contents
module SQLite3 VERSION = '1.3.6' module VersionProxy MAJOR = 1 MINOR = 3 TINY = 6 BUILD = nil STRING = [ MAJOR, MINOR, TINY, BUILD ].compact.join( "." ) #:beta-tag: VERSION = ::SQLite3::VERSION end def self.const_missing(name) return super unless name == :Version warn(<<-eowarn) if $VERBOSE #{caller[0]}: SQLite::Version will be removed in sqlite3-ruby version 2.0.0 eowarn VersionProxy end end
Version data entries
30 entries across 27 versions & 6 rubygems