jdbc-derby 10.10.2.0 → 10.11.1.1

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 12fe94eea018a4b8ef21abfd6bf0af5f3abd106c
4
- data.tar.gz: 6c9bd08468d74cc6c35042467109e5c3424dfb65
3
+ metadata.gz: d85f4ee47bfbd21605ef0a0764295f82ede0fc08
4
+ data.tar.gz: 5505939b990a676b973318f3ca2dc21af7445e32
5
5
  SHA512:
6
- metadata.gz: 24706a003cbe64914298aea898a1a4bd7b09e232bae60f918219d4f96f11bb22ea17d81a4256451ca3bd4b97bf63ba08f75f457daea45312ac02da9ab42909b7
7
- data.tar.gz: 2ccd18a5ada5b067d51e851678519a3c642938a67201c9d5d26096fa46e77b67897091229160b5bd866c5c7699f954e5a75fdc42522db12c0884d9d92de50c58
6
+ metadata.gz: bd7baf6e2a1e3afe9f6a85fc832649af311ac75ee0ebfcce42d40862a1ed4e310db5c404b8a42786a681e4cf44742e4b466275cd20a27a03b9cb73f4bb99e8a0
7
+ data.tar.gz: 248ee474066f81dfd3e96452acb38a80f405ec3d989d7ce4bfaebcddc911b8d8ca684a20528883ca260081dd3564f84c16c8b450ee7e691df5f5e33509d91adf
@@ -0,0 +1,25 @@
1
+ === 10.11.1.1
2
+
3
+ * http://db.apache.org/derby/releases/release-10.11.1.1.html
4
+
5
+ === 10.10.2.0
6
+
7
+ * http://db.apache.org/derby/releases/release-10.10.2.0.html
8
+
9
+ === 10.9.1.0
10
+
11
+ * http://db.apache.org/derby/releases/release-10.9.1.0.html
12
+
13
+ === 10.8.3.0
14
+
15
+ * http://db.apache.org/derby/releases/release-10.8.3.0.html
16
+
17
+ === 10.8.2.2
18
+
19
+ * http://db.apache.org/derby/releases/release-10.8.2.2.html
20
+ * http://db.apache.org/derby/releases/release-10.8.1.2.html
21
+ * http://db.apache.org/derby/releases/release-10.7.1.1.html
22
+
23
+ === 10.6.2.1
24
+
25
+ * http://db.apache.org/derby/releases/release-10.6.2.1.html
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # jdbc-derby
2
2
 
3
- Apache Derby, an Apache DB subproject, is an open source relational database
3
+ Apache Derby, an Apache DB subproject, is an open source relational database
4
4
  implemented entirely in Java.
5
5
 
6
6
  Some key advantages include:
@@ -14,8 +14,8 @@ For more information see http://db.apache.org/derby/
14
14
 
15
15
  ## Java DB
16
16
 
17
- Java DB is Oracle's supported distribution of the Apache Derby open source database.
18
- It supports standard ANSI/ISO SQL through the JDBC and Java EE APIs.
17
+ Java DB is Oracle's supported distribution of the Apache Derby open source database.
18
+ It supports standard ANSI/ISO SQL through the JDBC and Java EE APIs.
19
19
  Java DB is included in the JDK since Java 6 (1.6).
20
20
 
21
21
  See http://www.oracle.com/technetwork/java/javadb/overview/index.html
@@ -34,7 +34,7 @@ For backwards compatibility with older (<= **10.6.2.1**) versions of the gem use
34
34
 
35
35
  ## Copyright
36
36
 
37
- Copyright (c) 2012 [The JRuby Team](https://github.com/jruby).
37
+ Copyright (c) 2012-2015 [The JRuby Team](https://github.com/jruby).
38
38
 
39
39
  Apache Derby is available under the Apache License, Version 2.0
40
40
  see *LICENSE.txt* and http://db.apache.org/derby/license.html for more details.
@@ -0,0 +1,18 @@
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 }
@@ -0,0 +1,23 @@
1
+ # -*- encoding: utf-8 -*-
2
+ $LOAD_PATH << File.expand_path('../lib', __FILE__)
3
+ require 'jdbc/derby/version'
4
+
5
+ Gem::Specification.new do |gem|
6
+ gem.name = %q{jdbc-derby}
7
+ gem.version = Jdbc::Derby::VERSION
8
+
9
+ gem.required_rubygems_version = Gem::Requirement.new(">= 0") if gem.respond_to? :required_rubygems_version=
10
+
11
+ gem.authors = ['Nick Sieger, Ola Bini, Karol Bucek and JRuby contributors']
12
+ gem.email = ['nick@nicksieger.com', 'ola.bini@gmail.com', 'self@kares.org']
13
+ gem.homepage = 'http://github.com/jruby/activerecord-jdbc-adapter/tree/master/jdbc-derby'
14
+ gem.licenses = ['Apache-2.0']
15
+
16
+ Dir.chdir(File.dirname(__FILE__)) { gem.files = `git ls-files`.split("\n") }
17
+
18
+ gem.rdoc_options = ["--main", "README.md"]
19
+ gem.require_paths = ["lib"]
20
+
21
+ gem.summary = %q{Derby/JavaDB for JRuby, includes the JDBC driver as well as the embedded Derby database.}
22
+ gem.description = %q{Install this gem `require 'jdbc/derby'` and invoke `Jdbc::Derby.load_driver` within JRuby to load the driver.}
23
+ end
Binary file
@@ -1,6 +1,6 @@
1
1
  module Jdbc
2
2
  module Derby
3
- DRIVER_VERSION = '10.10.2.0'
3
+ DRIVER_VERSION = '10.11.1.1'
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-derby
3
3
  version: !ruby/object:Gem::Version
4
- version: 10.10.2.0
4
+ version: 10.11.1.1
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-05-30 00:00:00.000000000 Z
11
+ date: 2015-07-04 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Install this gem `require 'jdbc/derby'` and invoke `Jdbc::Derby.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
24
- - lib/derby-10.10.2.0.jar
25
+ - Rakefile
26
+ - jdbc-derby.gemspec
27
+ - lib/derby-10.11.1.1.jar
25
28
  - lib/jdbc/derby.rb
26
29
  - lib/jdbc/derby/version.rb
27
- homepage: https://github.com/jruby/activerecord-jdbc-adapter
30
+ homepage: http://github.com/jruby/activerecord-jdbc-adapter/tree/master/jdbc-derby
28
31
  licenses:
29
32
  - Apache-2.0
30
33
  metadata: {}
@@ -46,9 +49,9 @@ 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
- summary: Derby/JavaDB JDBC driver for JRuby and Derby/ActiveRecord-JDBC (activerecord-jdbcderby-adapter).
55
+ summary: Derby/JavaDB for JRuby, includes the JDBC driver as well as the embedded Derby database.
53
56
  test_files: []
54
57
  has_rdoc:
Binary file