Ravenports generated: 19 Jun 2021 18:23
[ravenports.git] / bucket_CB / ruby-pg
1 # Buildsheet autogenerated by ravenadm tool -- Do not edit.
2
3 NAMEBASE=               ruby-pg
4 VERSION=                1.2.3
5 KEYWORDS=               ruby
6 VARIANTS=               v26 v27 v30
7 SDESC[v26]=             Interface to PostgreSQL servers (v26)
8 SDESC[v27]=             Interface to PostgreSQL servers (v27)
9 SDESC[v30]=             Interface to PostgreSQL servers (v30)
10 HOMEPAGE=               https://github.com/ged/ruby-pg
11 CONTACT=                Ruby_Automaton[ruby@ironwolf.systems]
12
13 DOWNLOAD_GROUPS=        main
14 SITES[main]=            RUBYGEMS/
15 DISTFILE[1]=            pg-1.2.3.gem:main
16 DIST_SUBDIR=            ruby
17 DF_INDEX=               1
18 SPKGS[v26]=             single
19 SPKGS[v27]=             single
20 SPKGS[v30]=             single
21
22 OPTIONS_AVAILABLE=      RUBY26 RUBY27 RUBY30
23 OPTIONS_STANDARD=       none
24 VOPTS[v26]=             RUBY26=ON RUBY27=OFF RUBY30=OFF
25 VOPTS[v27]=             RUBY26=OFF RUBY27=ON RUBY30=OFF
26 VOPTS[v30]=             RUBY26=OFF RUBY27=OFF RUBY30=ON
27
28 USES=                   pgsql
29
30 DISTNAME=               pg-1.2.3
31
32 GENERATED=              yes
33
34 [RUBY30].USES_ON=                       gem:v30
35
36 [RUBY26].USES_ON=                       gem:v26
37
38 [RUBY27].USES_ON=                       gem:v27
39
40 [FILE:566:descriptions/desc.single]
41 Pg is the Ruby interface to the {PostgreSQL
42 RDBMS}[http://www.postgresql.org/].
43
44 It works with {PostgreSQL 9.2 and
45 later}[http://www.postgresql.org/support/versioning/].
46
47 A small example usage:
48
49   #!/usr/bin/env ruby
50
51   require 'pg'
52
53   # Output a table of current connections to the DB
54   conn = PG.connect( dbname: 'sales' )
55   conn.exec( "SELECT * FROM pg_stat_activity" ) do |result|
56     puts "     PID | User             | Query"
57     result.each do |row|
58       puts " %7d | %-16s | %s " %
59         row.values_at('procpid', 'usename', 'current_query')
60     end
61   end
62
63
64 [FILE:96:distinfo]
65 f2e71e101eb7fc297222fa9a277a89a9686729a8dfa416d46408e696b5cfae8e       196608 ruby/pg-1.2.3.gem
66