Sha256: 56a008ff6dcb5b2453241e466802de8bade7075c298c89396291b9d70e6f425d

Contents?: true

Size: 1.55 KB

Versions: 19

Compression:

Stored size: 1.55 KB

Contents

# frozen_string_literal: true
# -*- encoding: utf-8 -*-

require_relative 'lib/pg/version'

Gem::Specification.new do |spec|
  spec.name          = "pg"
  spec.version       = PG::VERSION
  spec.authors       = ["Michael Granger", "Lars Kanis"]
  spec.email         = ["ged@FaerieMUD.org", "lars@greiz-reinsdorf.de"]

  spec.summary       = "Pg is the Ruby interface to the PostgreSQL RDBMS"
  spec.description   = "Pg is the Ruby interface to the PostgreSQL RDBMS. It works with PostgreSQL 9.3 and later."
  spec.homepage      = "https://github.com/ged/ruby-pg"
  spec.license       = "BSD-2-Clause"
  spec.required_ruby_version = ">= 2.5"

  spec.metadata["homepage_uri"] = spec.homepage
  spec.metadata["source_code_uri"] = "https://github.com/ged/ruby-pg"
  spec.metadata["changelog_uri"] = "https://github.com/ged/ruby-pg/blob/master/History.md"
  spec.metadata["documentation_uri"] = "http://deveiate.org/code/pg"

  # Specify which files should be added to the gem when it is released.
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
  spec.files = Dir.chdir(File.expand_path(__dir__)) do
    `git ls-files -z`.split("\x0").reject { |f| f.match(%r{\A(?:test|spec|features)/}) }
  end
  spec.extensions    = ["ext/extconf.rb"]
  spec.require_paths = ["lib"]
  spec.cert_chain    = ["certs/ged.pem"]
  spec.rdoc_options  = ["--main", "README.md",
                        "--title", "PG: The Ruby PostgreSQL Driver"]
  spec.extra_rdoc_files = `git ls-files -z *.rdoc *.md lib/*.rb lib/*/*.rb lib/*/*/*.rb ext/*.c ext/*.h`.split("\x0")
end

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
pg-1.5.4-x86-mingw32 pg.gemspec
pg-1.5.4-x64-mingw32 pg.gemspec
pg-1.5.4-x64-mingw-ucrt pg.gemspec
pg-1.5.4 pg.gemspec
pg-1.5.3-x64-mingw32 pg.gemspec
pg-1.5.3-x64-mingw-ucrt pg.gemspec
pg-1.5.3-x86-mingw32 pg.gemspec
pg-1.5.3 pg.gemspec
pg-1.5.2-x64-mingw32 pg.gemspec
pg-1.5.2-x64-mingw-ucrt pg.gemspec
pg-1.5.2 pg.gemspec
pg-1.5.1-x86-mingw32 pg.gemspec
pg-1.5.1-x64-mingw-ucrt pg.gemspec
pg-1.5.1-x64-mingw32 pg.gemspec
pg-1.5.1 pg.gemspec
pg-1.5.0-x86-mingw32 pg.gemspec
pg-1.5.0-x64-mingw-ucrt pg.gemspec
pg-1.5.0-x64-mingw32 pg.gemspec
pg-1.5.0 pg.gemspec