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 CHANGED
@@ -1,6 +1,6 @@
1
1
  = jdbc-mysql
2
2
 
3
- * http://jruby-extras.rubyforge.org/activerecord-jdbc-adapter/
3
+ * https://github.com/jruby/activerecord-jdbc-adapter/
4
4
 
5
5
  == DESCRIPTION:
6
6
 
data/Rakefile CHANGED
@@ -1,30 +1,18 @@
1
- MANIFEST = FileList["Manifest.txt", "Rakefile", "README.txt", "LICENSE.txt", "lib/**/*"]
1
+ require 'bundler/gem_helper'
2
2
 
3
- file "Manifest.txt" => :manifest
4
- task :manifest do
5
- File.open("Manifest.txt", "w") {|f| MANIFEST.each {|n| f << "#{n}\n"} }
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
- $LOAD_PATH << "lib"
10
- require "jdbc/mysql"
11
- begin
12
- require 'hoe'
13
- Hoe.plugin :gemcutter
14
- Hoe.spec("jdbc-mysql") do |p|
15
- version = Jdbc::MySQL::VERSION
16
- version += '.' + ENV['DRIVER_REV'] if ENV['DRIVER_REV']
17
- p.version = version
18
- p.rubyforge_name = "jruby-extras"
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.13"
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
- if RUBY_PLATFORM =~ /java/
7
- require "mysql-connector-java-#{Jdbc::MySQL::VERSION}.jar"
8
- else
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: false
5
- segments:
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
- - Nick Sieger, Ola Bini and JRuby contributors
13
- autorequire:
7
+ authors:
8
+ - Nick Sieger, Ola Bini and JRuby contributors
9
+ autorequire:
14
10
  bindir: bin
15
11
  cert_chain: []
16
-
17
- date: 2010-12-09 00:00:00 -06:00
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
- extra_rdoc_files:
42
- - Manifest.txt
43
- - README.txt
44
- - LICENSE.txt
45
- files:
46
- - Manifest.txt
47
- - Rakefile
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
- post_install_message:
57
- rdoc_options:
58
- - --main
59
- - README.txt
60
- require_paths:
61
- - lib
62
- required_ruby_version: !ruby/object:Gem::Requirement
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
- requirements:
65
- - - ">="
66
- - !ruby/object:Gem::Version
67
- segments:
68
- - 0
69
- version: "0"
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.3.7
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
@@ -1,7 +0,0 @@
1
- Manifest.txt
2
- Rakefile
3
- README.txt
4
- LICENSE.txt
5
- lib/jdbc
6
- lib/mysql-connector-java-5.1.13.jar
7
- lib/jdbc/mysql.rb
Binary file