jdbc-mysql 5.1.22.1 → 5.1.24
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/lib/jdbc/mysql.rb +2 -2
- data/lib/mysql-connector-java-5.1.24.jar +0 -0
- metadata +42 -36
- data/lib/mysql-connector-java-5.1.22.jar +0 -0
data/lib/jdbc/mysql.rb
CHANGED
|
@@ -2,8 +2,8 @@ warn "Jdbc-MySQL is only for use with JRuby" if (JRUBY_VERSION.nil? rescue true)
|
|
|
2
2
|
|
|
3
3
|
module Jdbc
|
|
4
4
|
module MySQL
|
|
5
|
-
DRIVER_VERSION = '5.1.
|
|
6
|
-
VERSION = DRIVER_VERSION + '
|
|
5
|
+
DRIVER_VERSION = '5.1.24'
|
|
6
|
+
VERSION = DRIVER_VERSION + ''
|
|
7
7
|
|
|
8
8
|
def self.driver_jar
|
|
9
9
|
"mysql-connector-java-#{DRIVER_VERSION}.jar"
|
|
Binary file
|
metadata
CHANGED
|
@@ -1,56 +1,62 @@
|
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jdbc-mysql
|
|
3
|
-
version: !ruby/object:Gem::Version
|
|
4
|
-
prerelease:
|
|
5
|
-
version: 5.1.
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
prerelease:
|
|
5
|
+
version: 5.1.24
|
|
6
6
|
platform: ruby
|
|
7
|
-
authors:
|
|
8
|
-
- Nick Sieger, Ola Bini and JRuby contributors
|
|
9
|
-
autorequire:
|
|
7
|
+
authors:
|
|
8
|
+
- Nick Sieger, Ola Bini and JRuby contributors
|
|
9
|
+
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
|
|
12
|
+
|
|
13
|
+
date: 2013-03-13 00:00:00 Z
|
|
13
14
|
dependencies: []
|
|
15
|
+
|
|
14
16
|
description: Install this gem `require 'jdbc/mysql'` and invoke `Jdbc::MySQL.load_driver` within JRuby to load the driver.
|
|
15
17
|
email: nick@nicksieger.com, ola.bini@gmail.com
|
|
16
18
|
executables: []
|
|
19
|
+
|
|
17
20
|
extensions: []
|
|
21
|
+
|
|
18
22
|
extra_rdoc_files: []
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
-
|
|
22
|
-
-
|
|
23
|
-
-
|
|
24
|
-
- lib/
|
|
23
|
+
|
|
24
|
+
files:
|
|
25
|
+
- Rakefile
|
|
26
|
+
- README.md
|
|
27
|
+
- LICENSE.txt
|
|
28
|
+
- lib/mysql-connector-java-5.1.24.jar
|
|
29
|
+
- lib/jdbc/mysql.rb
|
|
25
30
|
homepage: https://github.com/jruby/activerecord-jdbc-adapter
|
|
26
31
|
licenses: []
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
- - ">="
|
|
36
|
-
- !ruby/object:Gem::Version
|
|
37
|
-
segments:
|
|
38
|
-
- 0
|
|
39
|
-
hash: 2
|
|
40
|
-
version: !binary |-
|
|
41
|
-
MA==
|
|
32
|
+
|
|
33
|
+
post_install_message:
|
|
34
|
+
rdoc_options:
|
|
35
|
+
- --main
|
|
36
|
+
- README.md
|
|
37
|
+
require_paths:
|
|
38
|
+
- lib
|
|
39
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
42
40
|
none: false
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
41
|
+
requirements:
|
|
42
|
+
- - ">="
|
|
43
|
+
- !ruby/object:Gem::Version
|
|
44
|
+
hash: 2
|
|
45
|
+
segments:
|
|
46
|
+
- 0
|
|
47
|
+
version: "0"
|
|
48
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
49
49
|
none: false
|
|
50
|
+
requirements:
|
|
51
|
+
- - ">="
|
|
52
|
+
- !ruby/object:Gem::Version
|
|
53
|
+
version: "0"
|
|
50
54
|
requirements: []
|
|
55
|
+
|
|
51
56
|
rubyforge_project: jruby-extras
|
|
52
57
|
rubygems_version: 1.8.24
|
|
53
|
-
signing_key:
|
|
58
|
+
signing_key:
|
|
54
59
|
specification_version: 3
|
|
55
60
|
summary: MySQL JDBC driver for JRuby and MySQL/ActiveRecord-JDBC (activerecord-jdbcmysql-adapter).
|
|
56
61
|
test_files: []
|
|
62
|
+
|
|
Binary file
|