jdbc-mysql 5.1.25 → 5.1.27

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: cd691106ae95bbd6b90aa63b04b3f19b3d39dde6
4
+ data.tar.gz: 422896be107017ba3de47fceb6d5329a576c7cfb
5
+ SHA512:
6
+ metadata.gz: 2b2a71b2bb39d2661c625907d750283d7683976a95927aec1b022ef801e2bdeb0b4037cd06c3c8e6626d075b3f8efb214a73bfc597eb2949ba69087fb23255dd
7
+ data.tar.gz: 09b66552e27e900d42aa544bbf813d0a45ef2b3528e8f44c5c5429e74cb8f27a4f9a9acf8ddaa36eb0347e8e7e40b6f64b134075aa487aa7f92ac4680ea3f873
data/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  MySQL Connector/J is the official JDBC driver for MySQL.
4
4
 
5
- It is a native Java driver that converts JDBC (Java Database Connectivity)
5
+ It is a native Java driver that converts JDBC (Java Database Connectivity)
6
6
  calls into the network protocol used by the MySQL database.
7
7
 
8
8
  For more information see http://dev.mysql.com/usingmysql/java/
@@ -21,7 +21,7 @@ For backwards compatibility with older (<= **5.1.13**) versions of the gem use :
21
21
 
22
22
  ## Copyright
23
23
 
24
- Copyright (c) 2012 [The JRuby Team](https://github.com/jruby).
24
+ Copyright (c) 2013 [The JRuby Team](https://github.com/jruby).
25
25
 
26
26
  MySQL open source software is provided under the GPL (2.0) License,
27
27
  see *LICENSE.txt* and http://www.gnu.org/licenses/old-licenses/gpl-2.0.html .
@@ -1,6 +1,6 @@
1
1
  module Jdbc
2
2
  module MySQL
3
- DRIVER_VERSION = '5.1.25'
4
- VERSION = DRIVER_VERSION + ''
3
+ DRIVER_VERSION = '5.1.27'
4
+ VERSION = DRIVER_VERSION
5
5
  end
6
6
  end
metadata CHANGED
@@ -1,15 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jdbc-mysql
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.1.25
5
- prerelease:
4
+ version: 5.1.27
6
5
  platform: ruby
7
6
  authors:
8
7
  - Nick Sieger, Ola Bini and JRuby contributors
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2013-06-10 00:00:00.000000000 Z
11
+ date: 2013-11-07 00:00:00.000000000 Z
13
12
  dependencies: []
14
13
  description: Install this gem `require 'jdbc/mysql'` and invoke `Jdbc::MySQL.load_driver` within JRuby to load the driver.
15
14
  email: nick@nicksieger.com, ola.bini@gmail.com
@@ -17,14 +16,14 @@ executables: []
17
16
  extensions: []
18
17
  extra_rdoc_files: []
19
18
  files:
20
- - Rakefile
21
19
  - README.md
22
20
  - LICENSE.txt
23
- - lib/mysql-connector-java-5.1.25.jar
21
+ - lib/mysql-connector-java-5.1.27.jar
24
22
  - lib/jdbc/mysql.rb
25
23
  - lib/jdbc/mysql/version.rb
26
24
  homepage: https://github.com/jruby/activerecord-jdbc-adapter
27
25
  licenses: []
26
+ metadata: {}
28
27
  post_install_message:
29
28
  rdoc_options:
30
29
  - --main
@@ -35,21 +34,17 @@ required_ruby_version: !ruby/object:Gem::Requirement
35
34
  requirements:
36
35
  - - '>='
37
36
  - !ruby/object:Gem::Version
38
- segments:
39
- - 0
40
- hash: 2
41
37
  version: '0'
42
- none: false
43
38
  required_rubygems_version: !ruby/object:Gem::Requirement
44
39
  requirements:
45
40
  - - '>='
46
41
  - !ruby/object:Gem::Version
47
42
  version: '0'
48
- none: false
49
43
  requirements: []
50
44
  rubyforge_project: jruby-extras
51
- rubygems_version: 1.8.24
45
+ rubygems_version: 2.1.9
52
46
  signing_key:
53
- specification_version: 3
47
+ specification_version: 4
54
48
  summary: MySQL JDBC driver for JRuby and MySQL/ActiveRecord-JDBC (activerecord-jdbcmysql-adapter).
55
49
  test_files: []
50
+ has_rdoc:
data/Rakefile DELETED
@@ -1,18 +0,0 @@
1
- require 'bundler/gem_helper'
2
-
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}"
7
- end
8
-
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 }