pg 0.9.0 → 0.10.0
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 +0 -0
- data/ChangeLog +298 -193
- data/README +2 -2
- data/Rakefile +51 -29
- data/Rakefile.local +229 -160
- data/ext/compat.c +2 -2
- data/ext/extconf.rb +94 -73
- data/ext/pg.c +163 -106
- data/lib/pg.rb +3 -0
- data/rake/documentation.rb +123 -0
- data/rake/helpers.rb +375 -308
- data/rake/hg.rb +17 -3
- data/rake/manual.rb +11 -6
- data/rake/packaging.rb +7 -1
- data/rake/publishing.rb +158 -91
- data/rake/testing.rb +52 -88
- data/spec/lib/helpers.rb +30 -10
- data/spec/m17n_spec.rb +36 -24
- data/spec/pgconn_spec.rb +165 -19
- data/spec/pgresult_spec.rb +3 -6
- metadata +61 -20
- metadata.gz.sig +0 -0
- data/rake/rdoc.rb +0 -30
metadata.gz.sig
ADDED
Binary file
|
data/rake/rdoc.rb
DELETED
@@ -1,30 +0,0 @@
|
|
1
|
-
#
|
2
|
-
# RDoc Rake tasks
|
3
|
-
|
4
|
-
#
|
5
|
-
|
6
|
-
gem 'rdoc', '>= 2.4.3'
|
7
|
-
|
8
|
-
require 'rubygems'
|
9
|
-
require 'rdoc/rdoc'
|
10
|
-
require 'rake/clean'
|
11
|
-
require 'rdoc/task'
|
12
|
-
|
13
|
-
# Append docs/lib to the load path if it exists for a locally-installed Darkfish
|
14
|
-
DOCSLIB = DOCSDIR + 'lib'
|
15
|
-
$LOAD_PATH.unshift( DOCSLIB.to_s ) if DOCSLIB.exist?
|
16
|
-
|
17
|
-
# Make relative string paths of all the stuff we need to generate docs for
|
18
|
-
DOCFILES = Rake::FileList[ LIB_FILES + EXT_FILES + GEMSPEC.extra_rdoc_files ]
|
19
|
-
|
20
|
-
|
21
|
-
directory RDOCDIR.to_s
|
22
|
-
CLOBBER.include( RDOCDIR )
|
23
|
-
|
24
|
-
desc "Build API documentation in #{RDOCDIR}"
|
25
|
-
RDoc::Task.new do |task|
|
26
|
-
task.main = "README"
|
27
|
-
task.rdoc_files.include( DOCFILES )
|
28
|
-
task.rdoc_dir = RDOCDIR.to_s
|
29
|
-
task.options = RDOC_OPTIONS
|
30
|
-
end
|