jdbc-hsqldb 2.2.9.1 → 2.3.0

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # jdbc-hsqldb
2
2
 
3
- HSQLDB (HyperSQL DataBase) is the leading SQL relational database engine written
4
- in Java. It offers a small, fast multithreaded and transactional database engine
5
- with in-memory and disk-based tables and supports embedded and server modes.
3
+ HSQLDB (HyperSQL DataBase) is the leading SQL relational database engine written
4
+ in Java. It offers a small, fast multithreaded and transactional database engine
5
+ with in-memory and disk-based tables and supports embedded and server modes.
6
6
  It includes a powerful command line SQL tool and simple GUI query tools.
7
7
 
8
8
  For more information see http://hsqldb.org/
@@ -21,8 +21,8 @@ For backwards compatibility with older (<= **1.8.1.3**) 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
- HSQLDB is completely free to use and distribute under a license based on the
26
+ HSQLDB is completely free to use and distribute under a license based on the
27
27
  standard BSD license and fully compatible with all major open source licenses.
28
28
  see *LICENSE.txt* and http://hsqldb.org/web/hsqlLicense.html for more details.
Binary file
@@ -1,9 +1,8 @@
1
1
  warn "Jdbc-HSQLDB is only for use with JRuby" if (JRUBY_VERSION.nil? rescue true)
2
+ require 'jdbc/hsqldb/version'
2
3
 
3
4
  module Jdbc
4
5
  module HSQLDB
5
- DRIVER_VERSION = '2.2.9'
6
- VERSION = DRIVER_VERSION + '.1'
7
6
 
8
7
  def self.driver_jar
9
8
  "hsqldb-#{DRIVER_VERSION}.jar"
@@ -18,7 +17,7 @@ module Jdbc
18
17
  end
19
18
 
20
19
  if defined?(JRUBY_VERSION) && # enable backwards-compat behavior :
21
- ( Java::JavaLang::Boolean.get_boolean("jdbc.driver.autoload") ||
20
+ ( Java::JavaLang::Boolean.get_boolean("jdbc.driver.autoload") ||
22
21
  Java::JavaLang::Boolean.get_boolean("jdbc.hsqldb.autoload") )
23
22
  warn "autoloading JDBC driver on require 'jdbc/hsqldb'" if $VERBOSE
24
23
  load_driver :require
@@ -0,0 +1,6 @@
1
+ module Jdbc
2
+ module HSQLDB
3
+ DRIVER_VERSION = '2.3.0'
4
+ VERSION = DRIVER_VERSION
5
+ end
6
+ end
metadata CHANGED
@@ -2,14 +2,14 @@
2
2
  name: jdbc-hsqldb
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 2.2.9.1
5
+ version: 2.3.0
6
6
  platform: ruby
7
7
  authors:
8
8
  - Nick Sieger, Ola Bini and JRuby contributors
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-01-23 00:00:00.000000000 Z
12
+ date: 2013-08-29 00:00:00.000000000 Z
13
13
  dependencies: []
14
14
  description: Install this gem `require 'jdbc/hsqldb'` and invoke `Jdbc::HSQLDB.load_driver` within JRuby to load the driver.
15
15
  email: nick@nicksieger.com, ola.bini@gmail.com
@@ -17,35 +17,33 @@ executables: []
17
17
  extensions: []
18
18
  extra_rdoc_files: []
19
19
  files:
20
- - Rakefile
21
20
  - README.md
22
21
  - LICENSE.txt
23
- - lib/hsqldb-2.2.9.jar
22
+ - lib/hsqldb-2.3.0.jar
24
23
  - lib/jdbc/hsqldb.rb
24
+ - lib/jdbc/hsqldb/version.rb
25
25
  homepage: https://github.com/jruby/activerecord-jdbc-adapter
26
26
  licenses: []
27
27
  post_install_message:
28
28
  rdoc_options:
29
- - "--main"
29
+ - --main
30
30
  - README.md
31
31
  require_paths:
32
32
  - lib
33
33
  required_ruby_version: !ruby/object:Gem::Requirement
34
34
  requirements:
35
- - - ">="
35
+ - - '>='
36
36
  - !ruby/object:Gem::Version
37
37
  segments:
38
38
  - 0
39
39
  hash: 2
40
- version: !binary |-
41
- MA==
40
+ version: '0'
42
41
  none: false
43
42
  required_rubygems_version: !ruby/object:Gem::Requirement
44
43
  requirements:
45
- - - ">="
44
+ - - '>='
46
45
  - !ruby/object:Gem::Version
47
- version: !binary |-
48
- MA==
46
+ version: '0'
49
47
  none: false
50
48
  requirements: []
51
49
  rubyforge_project: jruby-extras
@@ -54,3 +52,4 @@ signing_key:
54
52
  specification_version: 3
55
53
  summary: HSQLDB JDBC driver for JRuby and HSQLDB/ActiveRecord-JDBC (activerecord-jdbchsqldb-adapter).
56
54
  test_files: []
55
+ 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 }
Binary file