jdbc-derby 10.5.3.0 → 10.6.2.1

Sign up to get free protection for your applications and to get access to all the features.
data/Manifest.txt CHANGED
@@ -2,6 +2,6 @@ Manifest.txt
2
2
  Rakefile
3
3
  README.txt
4
4
  LICENSE.txt
5
- lib/derby-10.5.3.0.jar
5
+ lib/derby-10.6.2.1.jar
6
6
  lib/jdbc
7
7
  lib/jdbc/derby.rb
data/README.txt CHANGED
@@ -1,4 +1,12 @@
1
- This is a Derby JDBC driver gem for JRuby. Use
1
+ = jdbc-derby
2
+
3
+ * http://jruby-extras.rubyforge.org/activerecord-jdbc-adapter/
4
+
5
+ == DESCRIPTION:
6
+
7
+ This is a Derby JDBC driver gem for JRuby.
8
+
9
+ Use
2
10
 
3
11
  require 'jdbc/derby'
4
12
 
data/Rakefile CHANGED
@@ -10,7 +10,11 @@ $LOAD_PATH << "lib"
10
10
  require "jdbc/derby"
11
11
  begin
12
12
  require 'hoe'
13
- Hoe.new("jdbc-derby", Jdbc::Derby::VERSION) do |p|
13
+ Hoe.plugin :gemcutter
14
+ Hoe.spec("jdbc-derby") do |p|
15
+ version = Jdbc::Derby::VERSION
16
+ version += '.' + ENV['DRIVER_REV'] if ENV['DRIVER_REV']
17
+ p.version = version
14
18
  p.rubyforge_name = "jruby-extras"
15
19
  p.url = "http://jruby-extras.rubyforge.org/ActiveRecord-JDBC"
16
20
  p.author = "Nick Sieger, Ola Bini and JRuby contributors"
Binary file
data/lib/jdbc/derby.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  module Jdbc
2
2
  module Derby
3
- VERSION = "10.5.3.0"
3
+ VERSION = "10.6.2.1"
4
4
  end
5
5
  end
6
6
 
metadata CHANGED
@@ -1,18 +1,38 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jdbc-derby
3
3
  version: !ruby/object:Gem::Version
4
- version: 10.5.3.0
4
+ prerelease: false
5
+ segments:
6
+ - 10
7
+ - 6
8
+ - 2
9
+ - 1
10
+ version: 10.6.2.1
5
11
  platform: ruby
6
12
  authors:
7
- - Nick Sieger, Ola Bini and JRuby contributors
13
+ - Nick Sieger, Ola Bini and JRuby contributors
8
14
  autorequire:
9
15
  bindir: bin
10
16
  cert_chain: []
11
17
 
12
- date: 2009-10-02 00:00:00 -05:00
18
+ date: 2010-12-06 00:00:00 -06:00
13
19
  default_executable:
14
- dependencies: []
15
-
20
+ dependencies:
21
+ - !ruby/object:Gem::Dependency
22
+ name: rubyforge
23
+ prerelease: false
24
+ requirement: &id001 !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ segments:
30
+ - 2
31
+ - 0
32
+ - 4
33
+ version: 2.0.4
34
+ type: :development
35
+ version_requirements: *id001
16
36
  description: Install this gem and require 'derby' within JRuby to load the driver.
17
37
  email: nick@nicksieger.com, ola.bini@gmail.com
18
38
  executables: []
@@ -20,42 +40,46 @@ executables: []
20
40
  extensions: []
21
41
 
22
42
  extra_rdoc_files:
23
- - Manifest.txt
24
- - README.txt
25
- - LICENSE.txt
43
+ - Manifest.txt
44
+ - README.txt
45
+ - LICENSE.txt
26
46
  files:
27
- - Manifest.txt
28
- - Rakefile
29
- - README.txt
30
- - LICENSE.txt
31
- - lib/derby-10.5.3.0.jar
32
- - lib/jdbc/derby.rb
47
+ - Manifest.txt
48
+ - Rakefile
49
+ - README.txt
50
+ - LICENSE.txt
51
+ - lib/derby-10.6.2.1.jar
52
+ - lib/jdbc/derby.rb
33
53
  has_rdoc: true
34
54
  homepage: http://jruby-extras.rubyforge.org/ActiveRecord-JDBC
35
55
  licenses: []
36
56
 
37
57
  post_install_message:
38
58
  rdoc_options:
39
- - --main
40
- - README.txt
59
+ - --main
60
+ - README.txt
41
61
  require_paths:
42
- - lib
62
+ - lib
43
63
  required_ruby_version: !ruby/object:Gem::Requirement
64
+ none: false
44
65
  requirements:
45
- - - ">="
46
- - !ruby/object:Gem::Version
47
- version: "0"
48
- version:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ segments:
69
+ - 0
70
+ version: "0"
49
71
  required_rubygems_version: !ruby/object:Gem::Requirement
72
+ none: false
50
73
  requirements:
51
- - - ">="
52
- - !ruby/object:Gem::Version
53
- version: "0"
54
- version:
74
+ - - ">="
75
+ - !ruby/object:Gem::Version
76
+ segments:
77
+ - 0
78
+ version: "0"
55
79
  requirements: []
56
80
 
57
81
  rubyforge_project: jruby-extras
58
- rubygems_version: 1.3.5
82
+ rubygems_version: 1.3.7
59
83
  signing_key:
60
84
  specification_version: 3
61
85
  summary: Derby/JavaDB JDBC driver for Java and Derby/ActiveRecord-JDBC.
Binary file