lib/sqlite3/version_info.rb



module SQLite3
  # a hash of descriptive metadata about the current version of the sqlite3 gem
  VERSION_INFO = {
    ruby: RUBY_DESCRIPTION,
    gem: {
      version: SQLite3::VERSION
    },
    sqlite: {
      compiled: SQLite3::SQLITE_VERSION,
      loaded: SQLite3::SQLITE_LOADED_VERSION,
      packaged: SQLite3::SQLITE_PACKAGED_LIBRARIES,
      precompiled: SQLite3::SQLITE_PRECOMPILED_LIBRARIES,
      sqlcipher: SQLite3.sqlcipher?,
      threadsafe: SQLite3.threadsafe?
    }
  }
end