jdbc-postgres 8.3.604 → 8.4.702
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/History.txt +16 -4
- data/Manifest.txt +2 -2
- data/README.txt +9 -1
- data/Rakefile +5 -1
- data/lib/jdbc/postgres.rb +1 -1
- data/lib/postgresql-8.4-702.jdbc3.jar +0 -0
- data/lib/postgresql-8.4-702.jdbc4.jar +0 -0
- metadata +52 -29
- data/lib/postgresql-8.3-604.jdbc3.jar +0 -0
- data/lib/postgresql-8.3-604.jdbc4.jar +0 -0
data/History.txt
CHANGED
|
@@ -1,7 +1,19 @@
|
|
|
1
|
+
=== 8.4.702
|
|
2
|
+
* Upgraded to 8.4-702 drivers, see PostgreSQL JDBC
|
|
3
|
+
{Change Log}[http://jdbc.postgresql.org/changes.html#version_8.4-702].
|
|
4
|
+
|
|
5
|
+
=== 8.4.701
|
|
6
|
+
* Upgraded to 8.4-701 drivers, see PostgreSQL JDBC
|
|
7
|
+
{Change Log}[http://jdbc.postgresql.org/changes.html#version_8.4-701].
|
|
8
|
+
|
|
9
|
+
=== 8.3.605
|
|
10
|
+
* Upgraded to 8.3-605 drivers, see PostgreSQL JDBC
|
|
11
|
+
{Change Log}[http://jdbc.postgresql.org/changes.html#version_8.3-605].
|
|
12
|
+
|
|
1
13
|
=== 8.3.604
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
14
|
+
* Upgraded to 8.3-604 drivers
|
|
15
|
+
* Added runtime selection of either JDBC 3 or JDBC 4 (j2se 1.6+)
|
|
16
|
+
driver.
|
|
5
17
|
|
|
6
18
|
=== 8.2
|
|
7
|
-
|
|
19
|
+
* Initial version
|
data/Manifest.txt
CHANGED
data/README.txt
CHANGED
data/Rakefile
CHANGED
|
@@ -11,7 +11,11 @@ $LOAD_PATH << "lib"
|
|
|
11
11
|
require "jdbc/postgres"
|
|
12
12
|
begin
|
|
13
13
|
require 'hoe'
|
|
14
|
-
Hoe.
|
|
14
|
+
Hoe.plugin :gemcutter
|
|
15
|
+
Hoe.spec("jdbc-postgres") do |p|
|
|
16
|
+
version = Jdbc::Postgres::VERSION
|
|
17
|
+
version += '.' + ENV['DRIVER_REV'] if ENV['DRIVER_REV']
|
|
18
|
+
p.version = version
|
|
15
19
|
p.rubyforge_name = "jruby-extras"
|
|
16
20
|
p.url = "http://jruby-extras.rubyforge.org/ActiveRecord-JDBC"
|
|
17
21
|
p.author = "Nick Sieger, Ola Bini and JRuby contributors"
|
data/lib/jdbc/postgres.rb
CHANGED
|
Binary file
|
|
Binary file
|
metadata
CHANGED
|
@@ -1,18 +1,37 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jdbc-postgres
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
|
|
4
|
+
prerelease: false
|
|
5
|
+
segments:
|
|
6
|
+
- 8
|
|
7
|
+
- 4
|
|
8
|
+
- 702
|
|
9
|
+
version: 8.4.702
|
|
5
10
|
platform: ruby
|
|
6
11
|
authors:
|
|
7
|
-
- Nick Sieger, Ola Bini and JRuby contributors
|
|
12
|
+
- Nick Sieger, Ola Bini and JRuby contributors
|
|
8
13
|
autorequire:
|
|
9
14
|
bindir: bin
|
|
10
15
|
cert_chain: []
|
|
11
16
|
|
|
12
|
-
date:
|
|
17
|
+
date: 2010-12-06 00:00:00 -06:00
|
|
13
18
|
default_executable:
|
|
14
|
-
dependencies:
|
|
15
|
-
|
|
19
|
+
dependencies:
|
|
20
|
+
- !ruby/object:Gem::Dependency
|
|
21
|
+
name: rubyforge
|
|
22
|
+
prerelease: false
|
|
23
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
|
24
|
+
none: false
|
|
25
|
+
requirements:
|
|
26
|
+
- - ">="
|
|
27
|
+
- !ruby/object:Gem::Version
|
|
28
|
+
segments:
|
|
29
|
+
- 2
|
|
30
|
+
- 0
|
|
31
|
+
- 4
|
|
32
|
+
version: 2.0.4
|
|
33
|
+
type: :development
|
|
34
|
+
version_requirements: *id001
|
|
16
35
|
description: Install this gem and require 'postgres' within JRuby to load the driver.
|
|
17
36
|
email: nick@nicksieger.com, ola.bini@gmail.com
|
|
18
37
|
executables: []
|
|
@@ -20,45 +39,49 @@ executables: []
|
|
|
20
39
|
extensions: []
|
|
21
40
|
|
|
22
41
|
extra_rdoc_files:
|
|
23
|
-
- History.txt
|
|
24
|
-
- LICENSE.txt
|
|
25
|
-
- Manifest.txt
|
|
26
|
-
- README.txt
|
|
42
|
+
- History.txt
|
|
43
|
+
- LICENSE.txt
|
|
44
|
+
- Manifest.txt
|
|
45
|
+
- README.txt
|
|
27
46
|
files:
|
|
28
|
-
- History.txt
|
|
29
|
-
- LICENSE.txt
|
|
30
|
-
- Manifest.txt
|
|
31
|
-
- README.txt
|
|
32
|
-
- Rakefile
|
|
33
|
-
- lib/jdbc/postgres.rb
|
|
34
|
-
- lib/postgresql-8.
|
|
35
|
-
- lib/postgresql-8.
|
|
47
|
+
- History.txt
|
|
48
|
+
- LICENSE.txt
|
|
49
|
+
- Manifest.txt
|
|
50
|
+
- README.txt
|
|
51
|
+
- Rakefile
|
|
52
|
+
- lib/jdbc/postgres.rb
|
|
53
|
+
- lib/postgresql-8.4-702.jdbc3.jar
|
|
54
|
+
- lib/postgresql-8.4-702.jdbc4.jar
|
|
36
55
|
has_rdoc: true
|
|
37
56
|
homepage: http://jruby-extras.rubyforge.org/ActiveRecord-JDBC
|
|
38
57
|
licenses: []
|
|
39
58
|
|
|
40
59
|
post_install_message:
|
|
41
60
|
rdoc_options:
|
|
42
|
-
- --main
|
|
43
|
-
- README.txt
|
|
61
|
+
- --main
|
|
62
|
+
- README.txt
|
|
44
63
|
require_paths:
|
|
45
|
-
- lib
|
|
64
|
+
- lib
|
|
46
65
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
66
|
+
none: false
|
|
47
67
|
requirements:
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
68
|
+
- - ">="
|
|
69
|
+
- !ruby/object:Gem::Version
|
|
70
|
+
segments:
|
|
71
|
+
- 0
|
|
72
|
+
version: "0"
|
|
52
73
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
74
|
+
none: false
|
|
53
75
|
requirements:
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
76
|
+
- - ">="
|
|
77
|
+
- !ruby/object:Gem::Version
|
|
78
|
+
segments:
|
|
79
|
+
- 0
|
|
80
|
+
version: "0"
|
|
58
81
|
requirements: []
|
|
59
82
|
|
|
60
83
|
rubyforge_project: jruby-extras
|
|
61
|
-
rubygems_version: 1.3.
|
|
84
|
+
rubygems_version: 1.3.7
|
|
62
85
|
signing_key:
|
|
63
86
|
specification_version: 3
|
|
64
87
|
summary: PostgreSQL JDBC driver for Java and PostgreSQL/ActiveRecord-JDBC.
|
|
Binary file
|
|
Binary file
|