pg 0.12.0 → 0.12.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data.tar.gz.sig CHANGED
Binary file
data/ChangeLog CHANGED
@@ -1,8 +1,46 @@
1
+ 2011-12-27 Michael Granger <ged@FaerieMUD.org>
2
+
3
+ * Merged with f8d66e32b9a8
4
+ [f72b14d349bf] [tip]
5
+
6
+ 2011-12-14 Michael Granger <ged@FaerieMUD.org>
7
+
8
+ * History.rdoc, ext/pg.c:
9
+ Bumped patch version, updated History.
10
+ [f8d66e32b9a8]
11
+
12
+ 2011-12-27 Michael Granger <ged@FaerieMUD.org>
13
+
14
+ * .tm_properties:
15
+ Adding my TextMate2 project settings
16
+ [daa6f202c54a]
17
+
18
+ * ext/extconf.rb, ext/pg.h:
19
+ Explicitly include the st.h file for interpreters that need it
20
+ (fixes #95)
21
+ [448cccfe5bbb]
22
+
23
+ * Rakefile.cross:
24
+ Allow native compiles without Mingw tools present
25
+ [f15ac13b396b]
26
+
27
+ * Rakefile, Rakefile.cross:
28
+ Whitespace consistency fixes
29
+ [784c6c5cbea9]
30
+
31
+ 2011-12-14 Michael Granger <ged@FaerieMUD.org>
32
+
33
+ * Rakefile:
34
+ Made rake-compiler a dev dependency. Thanks to eolamey@bitbucket and
35
+ Jeremy Evans for pointing out that it isn't needed for gem
36
+ installation. (Fixes #93)
37
+ [af645318f239]
38
+
1
39
  2011-12-07 Michael Granger <ged@FaerieMUD.org>
2
40
 
3
41
  * .hgtags:
4
42
  Added tag v0.12.0 for changeset b767401684d8
5
- [1060487e7621] [tip]
43
+ [1060487e7621]
6
44
 
7
45
  * .hgsigs:
8
46
  Added signature for changeset 19b551f972e2
@@ -17,7 +55,7 @@
17
55
  * README.windows.rdoc, Rakefile, Rakefile.cross:
18
56
  re-add mingw32 cross compilation tasks, updated to current
19
57
  pg,openssl,ruby versions
20
- [a8b505d430d0] [github/master]
58
+ [a8b505d430d0]
21
59
 
22
60
  2011-12-07 Michael Granger <ged@FaerieMUD.org>
23
61
 
@@ -555,6 +593,11 @@
555
593
  * Merged with 168:dfaa59767b2e
556
594
  [86f238c12fa3]
557
595
 
596
+ * spec/pgconn_spec.rb:
597
+ Reworded an example's description and added a specific transaction-
598
+ abort spec
599
+ [dfaa59767b2e]
600
+
558
601
  2010-06-22 Michael Granger <ged@FaerieMUD.org>
559
602
 
560
603
  * Rakefile.local:
@@ -585,15 +628,6 @@
585
628
  * Improved diagnostics of failed extconf runs (refs #32, #24)
586
629
  [5418a1d86d91]
587
630
 
588
- 2010-07-21 Michael Granger <ged@FaerieMUD.org>
589
-
590
- * spec/pgconn_spec.rb:
591
- Reworded an example's description and added a specific transaction-
592
- abort spec
593
- [dfaa59767b2e]
594
-
595
- 2010-06-22 Michael Granger <ged@FaerieMUD.org>
596
-
597
631
  * .hgignore:
598
632
  Adding some more stuff to the ignorefile
599
633
  [07502a793f3a]
@@ -1,3 +1,10 @@
1
+ == v0.12.1 [2011-12-14] Michael Granger <ged@FaerieMUD.org>
2
+
3
+ - Made rake-compiler a dev dependency, as Rubygems doesn't use the Rakefile
4
+ for compiling the extension. Thanks to eolamey@bitbucket and Jeremy Evans
5
+ for pointing this out.
6
+
7
+
1
8
  == v0.12.0 [2011-12-07] Michael Granger <ged@FaerieMUD.org>
2
9
 
3
10
  - PGconn#wait_for_notify
data/Rakefile CHANGED
@@ -55,7 +55,7 @@ $hoespec = Hoe.spec 'pg' do
55
55
  self.developer 'Jeff Davis', 'ruby-pg@j-davis.com'
56
56
  self.developer 'Michael Granger', 'ged@FaerieMUD.org'
57
57
 
58
- self.dependency 'rake-compiler', '~> 0.7'
58
+ self.dependency 'rake-compiler', '~> 0.7', :developer
59
59
  self.dependency 'rspec', '~> 2.6', :developer
60
60
 
61
61
  self.spec_extras[:licenses] = ['BSD', 'Ruby', 'GPL']
@@ -109,14 +109,14 @@ Rake::ExtensionTask.new do |ext|
109
109
  ext.cross_compile = true
110
110
  ext.cross_platform = %w[i386-mingw32]
111
111
 
112
- # configure options only for cross compile
113
- ext.cross_config_options += [
114
- "--with-pg-include=#{STATIC_POSTGRESQL_LIBDIR}",
115
- "--with-opt-include=#{STATIC_POSTGRESQL_INCDIR}",
116
- "--with-pg-lib=#{STATIC_POSTGRESQL_LIBDIR}",
117
- "--with-opt-lib=#{STATIC_OPENSSL_BUILDDIR}",
118
- "--enable-static-build",
119
- ]
112
+ # configure options only for cross compile
113
+ ext.cross_config_options += [
114
+ "--with-pg-include=#{STATIC_POSTGRESQL_LIBDIR}",
115
+ "--with-opt-include=#{STATIC_POSTGRESQL_INCDIR}",
116
+ "--with-pg-lib=#{STATIC_POSTGRESQL_LIBDIR}",
117
+ "--with-opt-lib=#{STATIC_OPENSSL_BUILDDIR}",
118
+ "--enable-static-build",
119
+ ]
120
120
  end
121
121
 
122
122
 
@@ -10,11 +10,11 @@ require 'rake/extensioncompiler'
10
10
  MISCDIR = BASEDIR + 'misc'
11
11
 
12
12
  NUM_CPUS = if File.exist?('/proc/cpuinfo')
13
- File.read('/proc/cpuinfo').scan('processor').length
13
+ File.read('/proc/cpuinfo').scan('processor').length
14
14
  elsif RUBY_PLATFORM.include?( 'darwin' )
15
- `system_profiler SPHardwareDataType | grep 'Cores' | awk '{print $5}'`.chomp
15
+ `system_profiler SPHardwareDataType | grep 'Cores' | awk '{print $5}'`.chomp
16
16
  else
17
- 1
17
+ 1
18
18
  end
19
19
 
20
20
  # Cross-compilation constants
@@ -29,7 +29,7 @@ STATIC_BUILDDIR = COMPILE_HOME + 'builds'
29
29
  STATIC_OPENSSL_BUILDDIR = STATIC_BUILDDIR + "openssl-#{OPENSSL_VERSION}"
30
30
 
31
31
  OPENSSL_SOURCE_URI =
32
- URI( "http://www.openssl.org/source/openssl-#{OPENSSL_VERSION}.tar.gz" )
32
+ URI( "http://www.openssl.org/source/openssl-#{OPENSSL_VERSION}.tar.gz" )
33
33
  OPENSSL_TARBALL = STATIC_SOURCESDIR + File.basename( OPENSSL_SOURCE_URI.path )
34
34
  OPENSSL_MAKEFILE = STATIC_OPENSSL_BUILDDIR + 'Makefile'
35
35
 
@@ -41,9 +41,9 @@ OPENSSL_PATCHES = Rake::FileList[ MISCDIR + "openssl-#{OPENSSL_VERSIO
41
41
  # Static PostgreSQL build vars
42
42
  STATIC_POSTGRESQL_BUILDDIR = STATIC_BUILDDIR + "postgresql-#{POSTGRESQL_VERSION}"
43
43
  POSTGRESQL_SOURCE_URI = begin
44
- uristring = "http://ftp9.us.postgresql.org/pub/mirrors/postgresql/source/" +
45
- "v%s/postgresql-%s.tar.bz2" % [ POSTGRESQL_VERSION, POSTGRESQL_VERSION ]
46
- URI( uristring )
44
+ uristring = "http://ftp9.us.postgresql.org/pub/mirrors/postgresql/source/" +
45
+ "v%s/postgresql-%s.tar.bz2" % [ POSTGRESQL_VERSION, POSTGRESQL_VERSION ]
46
+ URI( uristring )
47
47
  end
48
48
  POSTGRESQL_TARBALL = STATIC_SOURCESDIR + File.basename( POSTGRESQL_SOURCE_URI.path )
49
49
 
@@ -56,7 +56,12 @@ POSTGRESQL_SHLIB_MAKEFILE = STATIC_POSTGRESQL_SRCDIR + 'Makefile.shlib'
56
56
  POSTGRESQL_SHLIB_MF_ORIG = STATIC_POSTGRESQL_SRCDIR + 'Makefile.shlib.orig'
57
57
  POSTGRESQL_LIB = STATIC_POSTGRESQL_LIBDIR + 'libpq.a'
58
58
 
59
- CROSS_PREFIX = Rake::ExtensionCompiler.mingw_host
59
+ CROSS_PREFIX = begin
60
+ Rake::ExtensionCompiler.mingw_host
61
+ rescue => err
62
+ $stderr.puts "Cross-compilation disabled -- %s" % [ err.message ]
63
+ 'unknown'
64
+ end
60
65
 
61
66
 
62
67
  # clean intermediate files and folders
@@ -66,13 +71,13 @@ CLEAN.include( STATIC_BUILDDIR.to_s )
66
71
  ENV['RUBY_CC_VERSION'] ||= '1.8.7:1.9.3'
67
72
 
68
73
  def download(url, save_to)
69
- part = save_to+".part"
70
- sh "wget #{url.to_s.inspect} -O #{part.inspect} || curl #{url.to_s.inspect} -o #{part.inspect}"
71
- FileUtils.mv part, save_to
74
+ part = save_to+".part"
75
+ sh "wget #{url.to_s.inspect} -O #{part.inspect} || curl #{url.to_s.inspect} -o #{part.inspect}"
76
+ FileUtils.mv part, save_to
72
77
  end
73
78
 
74
79
  def run(*args)
75
- sh *args
80
+ sh *args
76
81
  end
77
82
 
78
83
  #####################################################################
@@ -89,62 +94,62 @@ directory STATIC_OPENSSL_BUILDDIR.to_s
89
94
 
90
95
  # openssl source file should be stored there
91
96
  file OPENSSL_TARBALL => STATIC_SOURCESDIR do |t|
92
- download( OPENSSL_SOURCE_URI, t.name )
97
+ download( OPENSSL_SOURCE_URI, t.name )
93
98
  end
94
99
 
95
100
  # Extract the openssl builds
96
101
  file STATIC_OPENSSL_BUILDDIR => OPENSSL_TARBALL do |t|
97
- puts "extracting %s to %s" % [ OPENSSL_TARBALL, STATIC_OPENSSL_BUILDDIR.parent ]
98
- STATIC_OPENSSL_BUILDDIR.mkpath
99
- run 'tar', '-xzf', OPENSSL_TARBALL.to_s, '-C', STATIC_OPENSSL_BUILDDIR.parent.to_s
100
- OPENSSL_MAKEFILE.unlink if OPENSSL_MAKEFILE.exist?
102
+ puts "extracting %s to %s" % [ OPENSSL_TARBALL, STATIC_OPENSSL_BUILDDIR.parent ]
103
+ STATIC_OPENSSL_BUILDDIR.mkpath
104
+ run 'tar', '-xzf', OPENSSL_TARBALL.to_s, '-C', STATIC_OPENSSL_BUILDDIR.parent.to_s
105
+ OPENSSL_MAKEFILE.unlink if OPENSSL_MAKEFILE.exist?
101
106
 
102
- OPENSSL_PATCHES.each do |patchfile|
103
- puts " applying patch #{patchfile}..."
104
- run 'patch', '-Np1', '-d', STATIC_OPENSSL_BUILDDIR.to_s,
105
- '-i', File.expand_path( patchfile, BASEDIR )
106
- end
107
+ OPENSSL_PATCHES.each do |patchfile|
108
+ puts " applying patch #{patchfile}..."
109
+ run 'patch', '-Np1', '-d', STATIC_OPENSSL_BUILDDIR.to_s,
110
+ '-i', File.expand_path( patchfile, BASEDIR )
111
+ end
107
112
  end
108
113
 
109
114
  CMD_PRELUDE = [
110
- 'env',
111
- "CC=#{CROSS_PREFIX}-gcc",
112
- "CFLAGS=-DDSO_WIN32",
113
- "AR=#{CROSS_PREFIX}-ar",
114
- "RANLIB=#{CROSS_PREFIX}-ranlib"
115
+ 'env',
116
+ "CC=#{CROSS_PREFIX}-gcc",
117
+ "CFLAGS=-DDSO_WIN32",
118
+ "AR=#{CROSS_PREFIX}-ar",
119
+ "RANLIB=#{CROSS_PREFIX}-ranlib"
115
120
  ]
116
121
 
117
122
 
118
123
  # generate the makefile in a clean build location
119
124
  file OPENSSL_MAKEFILE => STATIC_OPENSSL_BUILDDIR do |t|
120
- Dir.chdir( STATIC_OPENSSL_BUILDDIR ) do
121
- cmd = CMD_PRELUDE.dup
122
- cmd << "./Configure" << 'mingw'
125
+ Dir.chdir( STATIC_OPENSSL_BUILDDIR ) do
126
+ cmd = CMD_PRELUDE.dup
127
+ cmd << "./Configure" << 'mingw'
123
128
 
124
- run( *cmd )
125
- end
129
+ run( *cmd )
130
+ end
126
131
  end
127
132
 
128
133
  desc "compile static openssl libraries"
129
134
  task :openssl_libs => [ LIBSSLEAY32, LIBEAY32 ]
130
135
 
131
136
  task :compile_static_openssl => OPENSSL_MAKEFILE do |t|
132
- Dir.chdir( STATIC_OPENSSL_BUILDDIR ) do
133
- cmd = CMD_PRELUDE.dup
134
- cmd << 'make' << "-j#{NUM_CPUS}" << 'build_libs'
137
+ Dir.chdir( STATIC_OPENSSL_BUILDDIR ) do
138
+ cmd = CMD_PRELUDE.dup
139
+ cmd << 'make' << "-j#{NUM_CPUS}" << 'build_libs'
135
140
 
136
- run( *cmd )
137
- end
141
+ run( *cmd )
142
+ end
138
143
  end
139
144
 
140
145
  desc "compile static #{LIBEAY32}"
141
146
  file LIBEAY32 => :compile_static_openssl do |t|
142
- FileUtils.cp( STATIC_OPENSSL_BUILDDIR + 'libcrypto.a', LIBEAY32.to_s )
147
+ FileUtils.cp( STATIC_OPENSSL_BUILDDIR + 'libcrypto.a', LIBEAY32.to_s )
143
148
  end
144
149
 
145
150
  desc "compile static #{LIBSSLEAY32}"
146
151
  file LIBSSLEAY32 => :compile_static_openssl do |t|
147
- FileUtils.cp( STATIC_OPENSSL_BUILDDIR + 'libssl.a', LIBSSLEAY32.to_s )
152
+ FileUtils.cp( STATIC_OPENSSL_BUILDDIR + 'libssl.a', LIBSSLEAY32.to_s )
148
153
  end
149
154
 
150
155
 
@@ -157,61 +162,61 @@ directory STATIC_POSTGRESQL_BUILDDIR.to_s
157
162
 
158
163
  # postgresql source file should be stored there
159
164
  file POSTGRESQL_TARBALL => STATIC_SOURCESDIR do |t|
160
- download( POSTGRESQL_SOURCE_URI, t.name )
165
+ download( POSTGRESQL_SOURCE_URI, t.name )
161
166
  end
162
167
 
163
168
  # Extract the postgresql sources
164
169
  file STATIC_POSTGRESQL_BUILDDIR => POSTGRESQL_TARBALL do |t|
165
- puts "extracting %s to %s" % [ POSTGRESQL_TARBALL, STATIC_POSTGRESQL_BUILDDIR.parent ]
166
- STATIC_POSTGRESQL_BUILDDIR.mkpath
167
- run 'tar', '-xjf', POSTGRESQL_TARBALL.to_s, '-C', STATIC_POSTGRESQL_BUILDDIR.parent.to_s
168
- mv POSTGRESQL_SHLIB_MAKEFILE, POSTGRESQL_SHLIB_MF_ORIG
170
+ puts "extracting %s to %s" % [ POSTGRESQL_TARBALL, STATIC_POSTGRESQL_BUILDDIR.parent ]
171
+ STATIC_POSTGRESQL_BUILDDIR.mkpath
172
+ run 'tar', '-xjf', POSTGRESQL_TARBALL.to_s, '-C', STATIC_POSTGRESQL_BUILDDIR.parent.to_s
173
+ mv POSTGRESQL_SHLIB_MAKEFILE, POSTGRESQL_SHLIB_MF_ORIG
169
174
  end
170
175
 
171
176
  # generate the makefile in a clean build location
172
177
  file POSTGRESQL_GLOBAL_MAKEFILE => [ STATIC_POSTGRESQL_BUILDDIR, :openssl_libs ] do |t|
173
- options = [
174
- '--target=i386-mingw32',
175
- "--host=#{Rake::ExtensionCompiler.mingw_host}",
176
- '--with-openssl',
177
- '--without-zlib',
178
- '--disable-shared',
179
- ]
178
+ options = [
179
+ '--target=i386-mingw32',
180
+ "--host=#{Rake::ExtensionCompiler.mingw_host}",
181
+ '--with-openssl',
182
+ '--without-zlib',
183
+ '--disable-shared',
184
+ ]
180
185
 
181
- Dir.chdir( STATIC_POSTGRESQL_BUILDDIR ) do
182
- configure_path = STATIC_POSTGRESQL_BUILDDIR + 'configure'
183
- cmd = [ configure_path.to_s, *options ]
184
- cmd << "CFLAGS=-L#{STATIC_OPENSSL_BUILDDIR}"
185
- cmd << "LDFLAGS=-L#{STATIC_OPENSSL_BUILDDIR}"
186
- cmd << "LDFLAGS_SL=-L#{STATIC_OPENSSL_BUILDDIR}"
187
- cmd << "LIBS=-lwsock32 -lws2_32 -lgdi32"
188
- cmd << "CPPFLAGS=-I#{STATIC_OPENSSL_BUILDDIR}/include"
186
+ Dir.chdir( STATIC_POSTGRESQL_BUILDDIR ) do
187
+ configure_path = STATIC_POSTGRESQL_BUILDDIR + 'configure'
188
+ cmd = [ configure_path.to_s, *options ]
189
+ cmd << "CFLAGS=-L#{STATIC_OPENSSL_BUILDDIR}"
190
+ cmd << "LDFLAGS=-L#{STATIC_OPENSSL_BUILDDIR}"
191
+ cmd << "LDFLAGS_SL=-L#{STATIC_OPENSSL_BUILDDIR}"
192
+ cmd << "LIBS=-lwsock32 -lws2_32 -lgdi32"
193
+ cmd << "CPPFLAGS=-I#{STATIC_OPENSSL_BUILDDIR}/include"
189
194
 
190
- run( *cmd )
191
- end
195
+ run( *cmd )
196
+ end
192
197
  end
193
198
 
194
199
 
195
200
  # patch the Makefile.shlib -- depend on the build dir so it's only
196
201
  # rewritten if the tarball is re-extracted.
197
202
  file POSTGRESQL_SHLIB_MAKEFILE => POSTGRESQL_SHLIB_MF_ORIG do |t|
198
- tf = Tempfile.new( POSTGRESQL_SHLIB_MAKEFILE.basename )
199
- POSTGRESQL_SHLIB_MF_ORIG.open( File::RDONLY ) do |ifh|
200
- ifh.each_line do |line|
201
- tf.print( line.sub(/^(\s*haslibarule\s*=\s*yes)/, "# \\1 ") )
202
- end
203
- end
204
- tf.close
203
+ tf = Tempfile.new( POSTGRESQL_SHLIB_MAKEFILE.basename )
204
+ POSTGRESQL_SHLIB_MF_ORIG.open( File::RDONLY ) do |ifh|
205
+ ifh.each_line do |line|
206
+ tf.print( line.sub(/^(\s*haslibarule\s*=\s*yes)/, "# \\1 ") )
207
+ end
208
+ end
209
+ tf.close
205
210
 
206
- FileUtils.mv( tf.path, t.name, :verbose => $puts )
211
+ FileUtils.mv( tf.path, t.name, :verbose => $puts )
207
212
  end
208
213
 
209
214
 
210
215
  # make libpq.a
211
216
  task POSTGRESQL_LIB => [ POSTGRESQL_GLOBAL_MAKEFILE, POSTGRESQL_SHLIB_MAKEFILE ] do |t|
212
- Dir.chdir( POSTGRESQL_LIB.dirname ) do
213
- sh 'make', "-j#{NUM_CPUS}", POSTGRESQL_LIB.basename.to_s, 'PORTNAME=win32'
214
- end
217
+ Dir.chdir( POSTGRESQL_LIB.dirname ) do
218
+ sh 'make', "-j#{NUM_CPUS}", POSTGRESQL_LIB.basename.to_s, 'PORTNAME=win32'
219
+ end
215
220
  end
216
221
 
217
222
 
@@ -220,15 +225,15 @@ task :static_libpq => POSTGRESQL_LIB
220
225
 
221
226
  desc 'cross compile pg for win32'
222
227
  task :cross do
223
- ENV['CROSS_COMPILING'] = 'yes'
228
+ ENV['CROSS_COMPILING'] = 'yes'
224
229
  end
225
230
  task :cross => [ :mingw32, :static_libpq ]
226
231
 
227
232
  task :mingw32 do
228
- # Use Rake::ExtensionCompiler helpers to find the proper host
229
- unless Rake::ExtensionCompiler.mingw_host then
230
- warn "You need to install mingw32 cross compile functionality to be able to continue."
231
- warn "Please refer to your distribution/package manager documentation about installation."
232
- fail
233
- end
233
+ # Use Rake::ExtensionCompiler helpers to find the proper host
234
+ unless Rake::ExtensionCompiler.mingw_host then
235
+ warn "You need to install mingw32 cross compile functionality to be able to continue."
236
+ warn "Please refer to your distribution/package manager documentation about installation."
237
+ fail
238
+ end
234
239
  end
@@ -61,6 +61,7 @@ $defs.push( "-DHAVE_ST_NOTIFY_EXTRA" ) if
61
61
 
62
62
  # unistd.h confilicts with ruby/win32.h when cross compiling for win32 and ruby 1.9.1
63
63
  have_header 'unistd.h' unless enable_config("static-build")
64
+ have_header 'ruby/st.h' or abort "pg currently requires the ruby/st.h header"
64
65
 
65
66
  create_header()
66
67
  create_makefile( "pg_ext" )
data/ext/pg.c CHANGED
@@ -9,7 +9,7 @@
9
9
  modified at: Wed Jan 20 16:41:51 1999
10
10
 
11
11
  $Author: ged $
12
- $Date: 2011/12/05 16:59:23 $
12
+ $Date: 2011/12/14 20:20:25 $
13
13
  ************************************************/
14
14
 
15
15
  #include "pg.h"
@@ -28,7 +28,7 @@ static VALUE rb_cPGconn;
28
28
  static VALUE rb_cPGresult;
29
29
  static VALUE rb_ePGError;
30
30
 
31
- static const char *VERSION = "0.12.0";
31
+ static const char *VERSION = "0.12.1";
32
32
 
33
33
 
34
34
  /* The following functions are part of libpq, but not
data/ext/pg.h CHANGED
@@ -14,6 +14,7 @@
14
14
  #endif /* HAVE_UNISTD_H */
15
15
 
16
16
  #include "ruby.h"
17
+ #include "ruby/st.h"
17
18
  #include "libpq-fe.h"
18
19
  #include "libpq/libpq-fs.h" /* large-object interface */
19
20
  #include "compat.h"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pg
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.12.0
4
+ version: 0.12.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -49,44 +49,44 @@ cert_chain:
49
49
  -----END CERTIFICATE-----
50
50
 
51
51
  '
52
- date: 2011-12-07 00:00:00.000000000 Z
52
+ date: 2012-01-02 00:00:00.000000000 Z
53
53
  dependencies:
54
54
  - !ruby/object:Gem::Dependency
55
- name: rake-compiler
56
- requirement: &70276294379100 !ruby/object:Gem::Requirement
55
+ name: hoe-mercurial
56
+ requirement: &70247769972340 !ruby/object:Gem::Requirement
57
57
  none: false
58
58
  requirements:
59
59
  - - ~>
60
60
  - !ruby/object:Gem::Version
61
- version: '0.7'
62
- type: :runtime
61
+ version: 1.3.1
62
+ type: :development
63
63
  prerelease: false
64
- version_requirements: *70276294379100
64
+ version_requirements: *70247769972340
65
65
  - !ruby/object:Gem::Dependency
66
- name: hoe-mercurial
67
- requirement: &70276294378680 !ruby/object:Gem::Requirement
66
+ name: hoe-highline
67
+ requirement: &70247769971300 !ruby/object:Gem::Requirement
68
68
  none: false
69
69
  requirements:
70
70
  - - ~>
71
71
  - !ruby/object:Gem::Version
72
- version: 1.3.1
72
+ version: 0.0.1
73
73
  type: :development
74
74
  prerelease: false
75
- version_requirements: *70276294378680
75
+ version_requirements: *70247769971300
76
76
  - !ruby/object:Gem::Dependency
77
- name: hoe-highline
78
- requirement: &70276294378220 !ruby/object:Gem::Requirement
77
+ name: rake-compiler
78
+ requirement: &70247769970780 !ruby/object:Gem::Requirement
79
79
  none: false
80
80
  requirements:
81
81
  - - ~>
82
82
  - !ruby/object:Gem::Version
83
- version: 0.0.1
83
+ version: '0.7'
84
84
  type: :development
85
85
  prerelease: false
86
- version_requirements: *70276294378220
86
+ version_requirements: *70247769970780
87
87
  - !ruby/object:Gem::Dependency
88
88
  name: rspec
89
- requirement: &70276294377740 !ruby/object:Gem::Requirement
89
+ requirement: &70247769970320 !ruby/object:Gem::Requirement
90
90
  none: false
91
91
  requirements:
92
92
  - - ~>
@@ -94,10 +94,10 @@ dependencies:
94
94
  version: '2.6'
95
95
  type: :development
96
96
  prerelease: false
97
- version_requirements: *70276294377740
97
+ version_requirements: *70247769970320
98
98
  - !ruby/object:Gem::Dependency
99
99
  name: hoe
100
- requirement: &70276294377300 !ruby/object:Gem::Requirement
100
+ requirement: &70247769969900 !ruby/object:Gem::Requirement
101
101
  none: false
102
102
  requirements:
103
103
  - - ~>
@@ -105,7 +105,18 @@ dependencies:
105
105
  version: '2.12'
106
106
  type: :development
107
107
  prerelease: false
108
- version_requirements: *70276294377300
108
+ version_requirements: *70247769969900
109
+ - !ruby/object:Gem::Dependency
110
+ name: rdoc
111
+ requirement: &70247770191220 !ruby/object:Gem::Requirement
112
+ none: false
113
+ requirements:
114
+ - - ~>
115
+ - !ruby/object:Gem::Version
116
+ version: '3.10'
117
+ type: :development
118
+ prerelease: false
119
+ version_requirements: *70247770191220
109
120
  description: ! "Pg is the Ruby interface to the {PostgreSQL RDBMS}[http://www.postgresql.org/].\n\nIt
110
121
  works with PostgreSQL 8.2 and later.\n\nThis will be the last minor version to support
111
122
  8.2 -- 0.13 will support 8.3 \nand later, following the \n{PostgreSQL Release Support
@@ -198,7 +209,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
198
209
  version: '0'
199
210
  requirements: []
200
211
  rubyforge_project: pg
201
- rubygems_version: 1.8.11
212
+ rubygems_version: 1.8.10
202
213
  signing_key:
203
214
  specification_version: 3
204
215
  summary: Pg is the Ruby interface to the {PostgreSQL RDBMS}[http://www.postgresql.org/]
metadata.gz.sig CHANGED
Binary file