|
1 | 1 | # -*- encoding: utf-8 -*- |
2 | | - |
3 | 2 | $LOAD_PATH << File.expand_path('../lib', __FILE__) |
4 | 3 | require 'jdbc/derby/version' |
5 | | -version = Jdbc::Derby::VERSION |
6 | | -Gem::Specification.new do |s| |
7 | | - s.name = %q{jdbc-derby} |
8 | | - s.version = version |
9 | 4 |
|
10 | | - s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= |
11 | | - s.authors = ["Nick Sieger, Ola Bini and JRuby contributors"] |
| 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 | + |
| 13 | + gem.homepage = 'https://github.com/jruby/activerecord-jdbc-adapter' |
| 14 | + gem.licenses = ['Apache-2.0'] |
| 15 | + |
| 16 | + gem.files = [ 'README.md', 'LICENSE.txt', *Dir['lib/**/*'].to_a ] |
12 | 17 |
|
13 | | - |
14 | | - s.files = [ |
15 | | - "Rakefile", "README.md", "LICENSE.txt", |
16 | | - *Dir["lib/**/*"].to_a |
17 | | - ] |
18 | | - s.homepage = %q{https://github.com/jruby/activerecord-jdbc-adapter} |
19 | | - s.rdoc_options = ["--main", "README.md"] |
20 | | - s.require_paths = ["lib"] |
21 | | - s.rubyforge_project = %q{jruby-extras} |
| 18 | + gem.rdoc_options = ["--main", "README.md"] |
| 19 | + gem.require_paths = ["lib"] |
22 | 20 |
|
23 | | - s.summary = %q{Derby/JavaDB JDBC driver for JRuby and Derby/ActiveRecord-JDBC (activerecord-jdbcderby-adapter).} |
24 | | - s.description = %q{Install this gem `require 'jdbc/derby'` and invoke `Jdbc::Derby.load_driver` within JRuby to load the driver.} |
| 21 | + gem.summary = %q{Derby/JavaDB JDBC driver for JRuby and Derby/ActiveRecord-JDBC (activerecord-jdbcderby-adapter).} |
| 22 | + gem.description = %q{Install this gem `require 'jdbc/derby'` and invoke `Jdbc::Derby.load_driver` within JRuby to load the driver.} |
25 | 23 | end |
0 commit comments