jdbc-postgres 9.0.801 → 9.1.901
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +5 -0
- data/README.txt +1 -1
- data/Rakefile +2 -31
- data/lib/jdbc/postgres.rb +2 -2
- data/lib/{postgresql-9.0-801.jdbc3.jar → postgresql-9.1-901.jdbc3.jar} +0 -0
- data/lib/postgresql-9.1-901.jdbc4.jar +0 -0
- metadata +12 -37
- data/Manifest.txt +0 -9
- data/lib/postgresql-9.0-801.jdbc4.jar +0 -0
data/History.txt
CHANGED
@@ -1,3 +1,8 @@
|
|
1
|
+
=== 9.1.901
|
2
|
+
* Upgraded to 9.1-901 drivers (still compatible with PostgreSQL 7.2+).
|
3
|
+
|
4
|
+
See PostgreSQL JDBC {Change Log}[http://jdbc.postgresql.org/changes.html#version_9.1-901].
|
5
|
+
|
1
6
|
=== 9.0.801
|
2
7
|
* Upgraded to 9.0-801 drivers (still compatible with PostgreSQL 7.2+).
|
3
8
|
|
data/README.txt
CHANGED
data/Rakefile
CHANGED
@@ -1,31 +1,2 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
file "Manifest.txt" => :manifest
|
5
|
-
task :manifest do
|
6
|
-
File.open("Manifest.txt", "w") {|f| MANIFEST.each {|n| f << "#{n}\n"} }
|
7
|
-
end
|
8
|
-
Rake::Task['manifest'].invoke # Always regen manifest, so Hoe has up-to-date list of files
|
9
|
-
|
10
|
-
$LOAD_PATH << "lib"
|
11
|
-
require "jdbc/postgres"
|
12
|
-
begin
|
13
|
-
require '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
|
19
|
-
p.rubyforge_name = "jruby-extras"
|
20
|
-
p.url = "http://jruby-extras.rubyforge.org/ActiveRecord-JDBC"
|
21
|
-
p.author = "Nick Sieger, Ola Bini and JRuby contributors"
|
22
|
-
p.email = "nick@nicksieger.com, ola.bini@gmail.com"
|
23
|
-
p.summary = "PostgreSQL JDBC driver for Java and PostgreSQL/ActiveRecord-JDBC."
|
24
|
-
p.changes = "Updated to PostgreSQL version #{Jdbc::Postgres::VERSION}."
|
25
|
-
p.description = "Install this gem and require 'postgres' within JRuby to load the driver."
|
26
|
-
end.spec.dependencies.delete_if { |dep| dep.name == "hoe" }
|
27
|
-
rescue LoadError
|
28
|
-
puts "You really need Hoe installed to be able to package this gem"
|
29
|
-
rescue => e
|
30
|
-
puts "ignoring error while loading hoe: #{e.to_s}"
|
31
|
-
end
|
1
|
+
require 'bundler'
|
2
|
+
Bundler::GemHelper.install_tasks
|
data/lib/jdbc/postgres.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
module Jdbc
|
2
2
|
module Postgres
|
3
|
-
VERSION = "9.
|
3
|
+
VERSION = "9.1.901"
|
4
4
|
|
5
5
|
def self.require_driver_jar
|
6
6
|
vers = VERSION.split( '.' )
|
@@ -20,6 +20,6 @@ end
|
|
20
20
|
|
21
21
|
if RUBY_PLATFORM =~ /java/
|
22
22
|
Jdbc::Postgres::require_driver_jar
|
23
|
-
|
23
|
+
elsif $VERBOSE
|
24
24
|
warn "jdbc-postgres is only for use with JRuby"
|
25
25
|
end
|
Binary file
|
Binary file
|
metadata
CHANGED
@@ -1,12 +1,8 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jdbc-postgres
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
prerelease:
|
5
|
-
|
6
|
-
- 9
|
7
|
-
- 0
|
8
|
-
- 801
|
9
|
-
version: 9.0.801
|
4
|
+
prerelease:
|
5
|
+
version: 9.1.901
|
10
6
|
platform: ruby
|
11
7
|
authors:
|
12
8
|
- Nick Sieger, Ola Bini and JRuby contributors
|
@@ -14,46 +10,26 @@ autorequire:
|
|
14
10
|
bindir: bin
|
15
11
|
cert_chain: []
|
16
12
|
|
17
|
-
date: 2010-12-
|
18
|
-
|
19
|
-
|
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
|
13
|
+
date: 2010-12-15 00:00:00 Z
|
14
|
+
dependencies: []
|
15
|
+
|
35
16
|
description: Install this gem and require 'postgres' within JRuby to load the driver.
|
36
17
|
email: nick@nicksieger.com, ola.bini@gmail.com
|
37
18
|
executables: []
|
38
19
|
|
39
20
|
extensions: []
|
40
21
|
|
41
|
-
extra_rdoc_files:
|
42
|
-
|
43
|
-
- LICENSE.txt
|
44
|
-
- Manifest.txt
|
45
|
-
- README.txt
|
22
|
+
extra_rdoc_files: []
|
23
|
+
|
46
24
|
files:
|
47
25
|
- History.txt
|
48
26
|
- LICENSE.txt
|
49
|
-
- Manifest.txt
|
50
27
|
- README.txt
|
51
28
|
- Rakefile
|
29
|
+
- lib/postgresql-9.1-901.jdbc3.jar
|
30
|
+
- lib/postgresql-9.1-901.jdbc4.jar
|
52
31
|
- lib/jdbc/postgres.rb
|
53
|
-
|
54
|
-
- lib/postgresql-9.0-801.jdbc4.jar
|
55
|
-
has_rdoc: true
|
56
|
-
homepage: http://jruby-extras.rubyforge.org/ActiveRecord-JDBC
|
32
|
+
homepage: https://github.com/jruby/activerecord-jdbc-adapter
|
57
33
|
licenses: []
|
58
34
|
|
59
35
|
post_install_message:
|
@@ -67,6 +43,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
67
43
|
requirements:
|
68
44
|
- - ">="
|
69
45
|
- !ruby/object:Gem::Version
|
46
|
+
hash: 2
|
70
47
|
segments:
|
71
48
|
- 0
|
72
49
|
version: "0"
|
@@ -75,13 +52,11 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
52
|
requirements:
|
76
53
|
- - ">="
|
77
54
|
- !ruby/object:Gem::Version
|
78
|
-
segments:
|
79
|
-
- 0
|
80
55
|
version: "0"
|
81
56
|
requirements: []
|
82
57
|
|
83
58
|
rubyforge_project: jruby-extras
|
84
|
-
rubygems_version: 1.
|
59
|
+
rubygems_version: 1.8.15
|
85
60
|
signing_key:
|
86
61
|
specification_version: 3
|
87
62
|
summary: PostgreSQL JDBC driver for Java and PostgreSQL/ActiveRecord-JDBC.
|
data/Manifest.txt
DELETED
Binary file
|