Sha256: 325e5c9981170d4e93b98e75fd9f41bcb944255da4f93fac8ac16ec0ec66ed26
Contents?: true
Size: 440 Bytes
Versions: 47
Compression:
Stored size: 440 Bytes
Contents
module SQLite3 VERSION = "1.5.3" module VersionProxy MAJOR = 1 MINOR = 5 TINY = 3 BUILD = nil STRING = [ MAJOR, MINOR, TINY, BUILD ].compact.join( "." ) 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
47 entries across 28 versions & 2 rubygems