jdbc-mysql 5.1.13 → 5.1.22
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/README.txt +1 -1
- data/Rakefile +15 -27
- data/lib/jdbc/mysql.rb +16 -5
- data/lib/mysql-connector-java-5.1.22.jar +0 -0
- metadata +40 -70
- data/Manifest.txt +0 -7
- data/lib/mysql-connector-java-5.1.13.jar +0 -0
data/README.txt
CHANGED
data/Rakefile
CHANGED
@@ -1,30 +1,18 @@
|
|
1
|
-
|
1
|
+
require 'bundler/gem_helper'
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
|
3
|
+
name = Dir["*.gemspec"].first.sub('.gemspec', '')
|
4
|
+
gem_helper = Bundler::GemHelper.new(Dir.pwd, name)
|
5
|
+
def gem_helper.version_tag
|
6
|
+
"#{name}-#{version}" # override "v#{version}"
|
6
7
|
end
|
7
|
-
Rake::Task['manifest'].invoke # Always regen manifest, so Hoe has up-to-date list of files
|
8
8
|
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
p.url = "http://jruby-extras.rubyforge.org/ActiveRecord-JDBC"
|
20
|
-
p.author = "Nick Sieger, Ola Bini and JRuby contributors"
|
21
|
-
p.email = "nick@nicksieger.com, ola.bini@gmail.com"
|
22
|
-
p.summary = "MySQL JDBC driver for Java and MySQL/ActiveRecord-JDBC."
|
23
|
-
p.changes = "Updated to MySQL connector version #{Jdbc::MySQL::VERSION}."
|
24
|
-
p.description = "Install this gem and require 'mysql' within JRuby to load the driver."
|
25
|
-
end.spec.dependencies.delete_if { |dep| dep.name == "hoe" }
|
26
|
-
rescue LoadError
|
27
|
-
puts "You really need Hoe installed to be able to package this gem"
|
28
|
-
rescue => e
|
29
|
-
puts "ignoring error while loading hoe: #{e.to_s}"
|
30
|
-
end
|
9
|
+
version = gem_helper.send(:version)
|
10
|
+
version_tag = gem_helper.version_tag
|
11
|
+
desc "Build #{name}-#{version}.gem into the pkg directory"
|
12
|
+
task('build') { gem_helper.build_gem }
|
13
|
+
|
14
|
+
desc "Build and install #{name}-#{version}.gem into system gems"
|
15
|
+
task('install') { gem_helper.install_gem }
|
16
|
+
|
17
|
+
desc "Create tag #{version_tag} build and push #{name}-#{version}.gem to Rubygems"
|
18
|
+
task('release') { gem_helper.release_gem }
|
data/lib/jdbc/mysql.rb
CHANGED
@@ -1,10 +1,21 @@
|
|
1
1
|
module Jdbc
|
2
2
|
module MySQL
|
3
|
-
VERSION = "5.1.
|
3
|
+
VERSION = "5.1.22"
|
4
|
+
|
5
|
+
def self.driver_jar
|
6
|
+
"mysql-connector-java-#{VERSION}.jar"
|
7
|
+
end
|
8
|
+
|
9
|
+
def self.load_driver(method = :load)
|
10
|
+
send method, driver_jar
|
11
|
+
end
|
12
|
+
|
13
|
+
def self.driver_name
|
14
|
+
'com.mysql.jdbc.Driver'
|
15
|
+
end
|
4
16
|
end
|
5
17
|
end
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
warn "jdbc-mysql is only for use with JRuby"
|
18
|
+
|
19
|
+
if $VERBOSE && (JRUBY_VERSION.nil? rescue true)
|
20
|
+
warn "Jdbc-MySQL is only for use with JRuby"
|
10
21
|
end
|
Binary file
|
metadata
CHANGED
@@ -1,86 +1,56 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: jdbc-mysql
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
prerelease:
|
5
|
-
|
6
|
-
- 5
|
7
|
-
- 1
|
8
|
-
- 13
|
9
|
-
version: 5.1.13
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease:
|
5
|
+
version: 5.1.22
|
10
6
|
platform: ruby
|
11
|
-
authors:
|
12
|
-
|
13
|
-
autorequire:
|
7
|
+
authors:
|
8
|
+
- Nick Sieger, Ola Bini and JRuby contributors
|
9
|
+
autorequire:
|
14
10
|
bindir: bin
|
15
11
|
cert_chain: []
|
16
|
-
|
17
|
-
|
18
|
-
default_executable:
|
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
|
12
|
+
date: 2010-12-08 00:00:00.000000000 Z
|
13
|
+
dependencies: []
|
35
14
|
description: Install this gem and require 'mysql' within JRuby to load the driver.
|
36
15
|
email: nick@nicksieger.com, ola.bini@gmail.com
|
37
16
|
executables: []
|
38
|
-
|
39
17
|
extensions: []
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
- README.txt
|
49
|
-
- LICENSE.txt
|
50
|
-
- lib/mysql-connector-java-5.1.13.jar
|
51
|
-
- lib/jdbc/mysql.rb
|
52
|
-
has_rdoc: true
|
53
|
-
homepage: http://jruby-extras.rubyforge.org/ActiveRecord-JDBC
|
18
|
+
extra_rdoc_files: []
|
19
|
+
files:
|
20
|
+
- Rakefile
|
21
|
+
- README.txt
|
22
|
+
- LICENSE.txt
|
23
|
+
- lib/mysql-connector-java-5.1.22.jar
|
24
|
+
- lib/jdbc/mysql.rb
|
25
|
+
homepage: https://github.com/jruby/activerecord-jdbc-adapter
|
54
26
|
licenses: []
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
27
|
+
post_install_message:
|
28
|
+
rdoc_options:
|
29
|
+
- --main
|
30
|
+
- README.txt
|
31
|
+
require_paths:
|
32
|
+
- lib
|
33
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
34
|
+
requirements:
|
35
|
+
- - ! '>='
|
36
|
+
- !ruby/object:Gem::Version
|
37
|
+
segments:
|
38
|
+
- 0
|
39
|
+
hash: 2
|
40
|
+
version: !binary |-
|
41
|
+
MA==
|
63
42
|
none: false
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
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: !binary |-
|
48
|
+
MA==
|
71
49
|
none: false
|
72
|
-
requirements:
|
73
|
-
- - ">="
|
74
|
-
- !ruby/object:Gem::Version
|
75
|
-
segments:
|
76
|
-
- 0
|
77
|
-
version: "0"
|
78
50
|
requirements: []
|
79
|
-
|
80
51
|
rubyforge_project: jruby-extras
|
81
|
-
rubygems_version: 1.
|
82
|
-
signing_key:
|
52
|
+
rubygems_version: 1.8.24
|
53
|
+
signing_key:
|
83
54
|
specification_version: 3
|
84
55
|
summary: MySQL JDBC driver for Java and MySQL/ActiveRecord-JDBC.
|
85
56
|
test_files: []
|
86
|
-
|
data/Manifest.txt
DELETED
Binary file
|