jdbc-mysql 5.1.24 → 5.1.25

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,9 +1,8 @@
1
1
  warn "Jdbc-MySQL is only for use with JRuby" if (JRUBY_VERSION.nil? rescue true)
2
+ require 'jdbc/mysql/version'
2
3
 
3
4
  module Jdbc
4
5
  module MySQL
5
- DRIVER_VERSION = '5.1.24'
6
- VERSION = DRIVER_VERSION + ''
7
6
 
8
7
  def self.driver_jar
9
8
  "mysql-connector-java-#{DRIVER_VERSION}.jar"
@@ -18,7 +17,7 @@ module Jdbc
18
17
  end
19
18
 
20
19
  if defined?(JRUBY_VERSION) && # enable backwards-compat behavior :
21
- ( Java::JavaLang::Boolean.get_boolean("jdbc.driver.autoload") ||
20
+ ( Java::JavaLang::Boolean.get_boolean("jdbc.driver.autoload") ||
22
21
  Java::JavaLang::Boolean.get_boolean("jdbc.mysql.autoload") )
23
22
  warn "autoloading JDBC driver on require 'jdbc/mysql'" if $VERBOSE
24
23
  load_driver :require
@@ -0,0 +1,6 @@
1
+ module Jdbc
2
+ module MySQL
3
+ DRIVER_VERSION = '5.1.25'
4
+ VERSION = DRIVER_VERSION + ''
5
+ end
6
+ end
metadata CHANGED
@@ -1,62 +1,55 @@
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.24
3
+ version: !ruby/object:Gem::Version
4
+ version: 5.1.25
5
+ prerelease:
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
-
13
- date: 2013-03-13 00:00:00 Z
12
+ date: 2013-06-10 00:00:00.000000000 Z
14
13
  dependencies: []
15
-
16
14
  description: Install this gem `require 'jdbc/mysql'` and invoke `Jdbc::MySQL.load_driver` within JRuby to load the driver.
17
15
  email: nick@nicksieger.com, ola.bini@gmail.com
18
16
  executables: []
19
-
20
17
  extensions: []
21
-
22
18
  extra_rdoc_files: []
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
19
+ files:
20
+ - Rakefile
21
+ - README.md
22
+ - LICENSE.txt
23
+ - lib/mysql-connector-java-5.1.25.jar
24
+ - lib/jdbc/mysql.rb
25
+ - lib/jdbc/mysql/version.rb
30
26
  homepage: https://github.com/jruby/activerecord-jdbc-adapter
31
27
  licenses: []
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
28
+ post_install_message:
29
+ rdoc_options:
30
+ - --main
31
+ - README.md
32
+ require_paths:
33
+ - lib
34
+ required_ruby_version: !ruby/object:Gem::Requirement
35
+ requirements:
36
+ - - '>='
37
+ - !ruby/object:Gem::Version
38
+ segments:
39
+ - 0
40
+ hash: 2
41
+ version: '0'
40
42
  none: false
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
43
+ required_rubygems_version: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - '>='
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
49
48
  none: false
50
- requirements:
51
- - - ">="
52
- - !ruby/object:Gem::Version
53
- version: "0"
54
49
  requirements: []
55
-
56
50
  rubyforge_project: jruby-extras
57
51
  rubygems_version: 1.8.24
58
- signing_key:
52
+ signing_key:
59
53
  specification_version: 3
60
54
  summary: MySQL JDBC driver for JRuby and MySQL/ActiveRecord-JDBC (activerecord-jdbcmysql-adapter).
61
55
  test_files: []
62
-