jdbc-mariadb 1.1.7 → 1.1.8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c6019ab786848bfd9d6283552892d904d0bfe6e7
4
- data.tar.gz: 6042d009cc6fb86a99017b8abb1d06b5419be3f2
3
+ metadata.gz: e9440dfc14f85d325e59f788e5ec05e2b87204f5
4
+ data.tar.gz: 5b4948882ba1d7cab01f59adfe463916523522f2
5
5
  SHA512:
6
- metadata.gz: 3cc81101938efb95fbae8903b93ab4c1314cf16eb69bc3d660dbff170481d19dfbf78056815675a702dfbf423012b881a07e30418331b1f4d4e7453eec9c8968
7
- data.tar.gz: 7b37a8f2fec7553b9838f5b05dd357735f4825ec3c4bf6e320afb2fccfc443c1bd0139691d96fc6ac553c6292f0d18679dc82a079e8a7d0f4273847fa4a67a39
6
+ metadata.gz: 90e091646b7fc4cdcb786e6ac5c26cc6452c7a905d82d0743496c2e613d301ba70f911af2df70f463e769afef6faa8ff4941baa85a878e12198afe5750da09dd
7
+ data.tar.gz: 8a7a800c71b9f5ae9372205db4675b44f370c9db884666c42c6c358b67bd9dedb7916e728f38c90400c82399f103fdc0128591b039ba9652b7ee9ea0945d4c37
@@ -0,0 +1,8 @@
1
+ === 1.1.8
2
+
3
+ * release following MariaDB Java Client 1.1.8
4
+ https://mariadb.com/kb/en/mariadb/mariadb-java-client-118-release-notes/
5
+
6
+ === 1.1.7
7
+
8
+ * initial release using MariaDB Java Client 1.1.7
@@ -0,0 +1 @@
1
+ load File.expand_path('../Rakefile.jdbc', File.dirname(__FILE__))
@@ -0,0 +1,21 @@
1
+ # -*- encoding: utf-8 -*-
2
+ $LOAD_PATH << File.expand_path('../lib', __FILE__)
3
+ require 'jdbc/mariadb/version'
4
+
5
+ Gem::Specification.new do |gem|
6
+ gem.name = %q{jdbc-mariadb}
7
+ gem.version = Jdbc::MariaDB::VERSION
8
+
9
+ gem.authors = ['Nick Sieger, Ola Bini, Karol Bucek and JRuby contributors']
10
+ gem.email = ['nick@nicksieger.com', 'ola.bini@gmail.com', 'self@kares.org']
11
+ gem.homepage = 'http://github.com/jruby/activerecord-jdbc-adapter/tree/master/jdbc-mariadb'
12
+ gem.licenses = ['LGPL']
13
+
14
+ Dir.chdir(File.dirname(__FILE__)) { gem.files = `git ls-files`.split("\n") }
15
+
16
+ gem.rdoc_options = ["--main", "README.md"]
17
+ gem.require_paths = ["lib"]
18
+
19
+ gem.summary = %q{JDBC driver for JRuby and MariaDB/MySQL (usable with ActiveRecord-JDBC).}
20
+ gem.description = %q{Install this gem `require 'jdbc/mariadb'` and invoke `Jdbc::MariaDB.load_driver` within JRuby to load the driver.}
21
+ end
@@ -1,6 +1,6 @@
1
1
  module Jdbc
2
2
  module MariaDB
3
- DRIVER_VERSION = '1.1.7'
3
+ DRIVER_VERSION = '1.1.8'
4
4
  VERSION = DRIVER_VERSION
5
5
  end
6
6
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jdbc-mariadb
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.7
4
+ version: 1.1.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nick Sieger, Ola Bini, Karol Bucek and JRuby contributors
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-06-24 00:00:00.000000000 Z
11
+ date: 2015-02-16 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Install this gem `require 'jdbc/mariadb'` and invoke `Jdbc::MariaDB.load_driver` within JRuby to load the driver.
14
14
  email:
@@ -19,12 +19,15 @@ executables: []
19
19
  extensions: []
20
20
  extra_rdoc_files: []
21
21
  files:
22
+ - History.txt
22
23
  - LICENSE.txt
23
24
  - README.md
25
+ - Rakefile
26
+ - jdbc-mariadb.gemspec
24
27
  - lib/jdbc/mariadb.rb
25
28
  - lib/jdbc/mariadb/version.rb
26
- - lib/mariadb-java-client-1.1.7.jar
27
- homepage: https://github.com/jruby/activerecord-jdbc-adapter
29
+ - lib/mariadb-java-client-1.1.8.jar
30
+ homepage: http://github.com/jruby/activerecord-jdbc-adapter/tree/master/jdbc-mariadb
28
31
  licenses:
29
32
  - LGPL
30
33
  metadata: {}
@@ -46,7 +49,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
46
49
  version: '0'
47
50
  requirements: []
48
51
  rubyforge_project:
49
- rubygems_version: 2.2.2
52
+ rubygems_version: 2.4.5
50
53
  signing_key:
51
54
  specification_version: 4
52
55
  summary: JDBC driver for JRuby and MariaDB/MySQL (usable with ActiveRecord-JDBC).