--- !ruby/object:Gem::Specification name: pg version: !ruby/object:Gem::Version hash: 3700714167 prerelease: 7 segments: - 0 - 15 - 0 - pre - 454 version: 0.15.0.pre.454 platform: ruby authors: - Michael Granger autorequire: bindir: bin cert_chain: - | -----BEGIN CERTIFICATE----- MIIDPDCCAiSgAwIBAgIBADANBgkqhkiG9w0BAQUFADBEMQ0wCwYDVQQDDARsYXJz MR8wHQYKCZImiZPyLGQBGRYPZ3JlaXotcmVpbnNkb3JmMRIwEAYKCZImiZPyLGQB GRYCZGUwHhcNMTMwMzExMjAyMjIyWhcNMTQwMzExMjAyMjIyWjBEMQ0wCwYDVQQD DARsYXJzMR8wHQYKCZImiZPyLGQBGRYPZ3JlaXotcmVpbnNkb3JmMRIwEAYKCZIm iZPyLGQBGRYCZGUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDZb4Uv RFJfRu/VEWiy3psh2jinETjiuBrL0NeRFGf8H7iU9+gx/DI/FFhfHGLrDeIskrJx YIWDMmEjVO10UUdj7wu4ZhmU++0Cd7Kq9/TyP/shIP3IjqHjVLCnJ3P6f1cl5rxZ gqo+d3BAoDrmPk0rtaf6QopwUw9RBiF8V4HqvpiY+ruJotP5UQDP4/lVOKvA8PI9 P0GmVbFBrbc7Zt5h78N3UyOK0u+nvOC23BvyHXzCtcFsXCoEkt+Wwh0RFqVZdnjM LMO2vULHKKHDdX54K/sbVCj9pN9h1aotNzrEyo55zxn0G9PHg/G3P8nMvAXPkUTe brhXrfCwWRvOXA4TAgMBAAGjOTA3MAsGA1UdDwQEAwIEsDAJBgNVHRMEAjAAMB0G A1UdDgQWBBRAHK81igrXodaDj8a8/BIKsaZrETANBgkqhkiG9w0BAQUFAAOCAQEA Iswhcol3ytXthaUH3k5LopZ09viZrZHzAw0QleI3Opl/9QEGJ2BPV9+93iC0OrNL hmnxig6vKK1EeJ5PHXJ8hOI3nTZBrOmQcEXNBqyToP1FHMWZqwZ8wiBPXtiCqDBR ePQ25J9xFNzQ1ItgzNSpx5cs67QNKrx5woocoBHD6kStFbshZPJx4axl3GbUFQd5 H//3YdPQOH3jaVeUXhS+pz/gfbx8fhFAtsQ+855A3HO7g2ZRIg/atAp/0MFyn5s5 0rq+VHOIPyvxF5khT0mYAcNmZTC8z1yPsqdgwfYNDjsSWwiIRSPUSmJRvfjM8hsW mMFp4kPUHbWOqCp2mz9gCA== -----END CERTIFICATE----- date: 2013-03-15 00:00:00 Z dependencies: - !ruby/object:Gem::Dependency name: hoe-mercurial prerelease: false requirement: &id001 !ruby/object:Gem::Requirement none: false requirements: - - ~> - !ruby/object:Gem::Version hash: 7 segments: - 1 - 4 - 0 version: 1.4.0 type: :development version_requirements: *id001 - !ruby/object:Gem::Dependency name: hoe-highline prerelease: false requirement: &id002 !ruby/object:Gem::Requirement none: false requirements: - - ~> - !ruby/object:Gem::Version hash: 27 segments: - 0 - 1 - 0 version: 0.1.0 type: :development version_requirements: *id002 - !ruby/object:Gem::Dependency name: rdoc prerelease: false requirement: &id003 !ruby/object:Gem::Requirement none: false requirements: - - ~> - !ruby/object:Gem::Version hash: 19 segments: - 3 - 10 version: "3.10" type: :development version_requirements: *id003 - !ruby/object:Gem::Dependency name: rake-compiler prerelease: false requirement: &id004 !ruby/object:Gem::Requirement none: false requirements: - - ~> - !ruby/object:Gem::Version hash: 27 segments: - 0 - 8 version: "0.8" type: :development version_requirements: *id004 - !ruby/object:Gem::Dependency name: hoe-deveiate prerelease: false requirement: &id005 !ruby/object:Gem::Requirement none: false requirements: - - ~> - !ruby/object:Gem::Version hash: 15 segments: - 0 - 2 version: "0.2" type: :development version_requirements: *id005 - !ruby/object:Gem::Dependency name: hoe prerelease: false requirement: &id006 !ruby/object:Gem::Requirement none: false requirements: - - ~> - !ruby/object:Gem::Version hash: 7 segments: - 3 - 0 version: "3.0" type: :development version_requirements: *id006 description: |- Pg is the Ruby interface to the {PostgreSQL RDBMS}[http://www.postgresql.org/]. It works with {PostgreSQL 8.3 and later}[http://bit.ly/6AfPhm]. A small example usage: #!/usr/bin/env ruby require 'pg' # Output a table of current connections to the DB conn = PG.connect( dbname: 'sales' ) conn.exec( "SELECT * FROM pg_stat_activity" ) do |result| puts " PID | User | Query" result.each do |row| puts " %7d | %-16s | %s " % row.values_at('procpid', 'usename', 'current_query') end end email: - ged@FaerieMUD.org executables: [] extensions: - ext/extconf.rb extra_rdoc_files: - Contributors.rdoc - History.rdoc - Manifest.txt - README-OS_X.rdoc - README-Windows.rdoc - README.ja.rdoc - README.rdoc - POSTGRES - LICENSE - ext/pg_connection.c - ext/pg.c - ext/gvl_wrappers.c - ext/pg_result.c files: - .gemtest - BSDL - ChangeLog - Contributors.rdoc - History.rdoc - LICENSE - Manifest.txt - POSTGRES - README-OS_X.rdoc - README-Windows.rdoc - README.ja.rdoc - README.rdoc - Rakefile - Rakefile.cross - ext/extconf.rb - ext/gvl_wrappers.c - ext/gvl_wrappers.h - ext/pg.c - ext/pg.h - ext/pg_connection.c - ext/pg_result.c - ext/vc/pg.sln - ext/vc/pg_18/pg.vcproj - ext/vc/pg_19/pg_19.vcproj - lib/pg.rb - lib/pg/connection.rb - lib/pg/constants.rb - lib/pg/exceptions.rb - lib/pg/result.rb - sample/array_insert.rb - sample/async_api.rb - sample/async_copyto.rb - sample/async_mixed.rb - sample/check_conn.rb - sample/copyfrom.rb - sample/copyto.rb - sample/cursor.rb - sample/disk_usage_report.rb - sample/issue-119.rb - sample/losample.rb - sample/minimal-testcase.rb - sample/notify_wait.rb - sample/pg_statistics.rb - sample/replication_monitor.rb - sample/test_binary_values.rb - sample/wal_shipper.rb - sample/warehouse_partitions.rb - spec/data/expected_trace.out - spec/data/random_binary_data - spec/lib/helpers.rb - spec/pg/connection_spec.rb - spec/pg/result_spec.rb - spec/pg_spec.rb homepage: https://bitbucket.org/ged/ruby-pg licenses: - BSD - Ruby - GPL post_install_message: rdoc_options: - -f - fivefish - -t - "pg: The Ruby Interface to PostgreSQL" - -m - README.rdoc require_paths: - lib required_ruby_version: !ruby/object:Gem::Requirement none: false requirements: - - ">=" - !ruby/object:Gem::Version hash: 57 segments: - 1 - 8 - 7 version: 1.8.7 required_rubygems_version: !ruby/object:Gem::Requirement none: false requirements: - - ">" - !ruby/object:Gem::Version hash: 25 segments: - 1 - 3 - 1 version: 1.3.1 requirements: [] rubyforge_project: pg rubygems_version: 1.8.17 signing_key: specification_version: 3 summary: Pg is the Ruby interface to the {PostgreSQL RDBMS}[http://www.postgresql.org/] test_files: []