Skip to content

Commit cd6d5f2

Browse files
committed
spec the license(s) before the license police catches us bare gem-ed
1 parent 63160de commit cd6d5f2

File tree

8 files changed

+107
-112
lines changed

8 files changed

+107
-112
lines changed

jdbc-derby/jdbc-derby.gemspec

Lines changed: 16 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,23 @@
11
# -*- encoding: utf-8 -*-
2-
32
$LOAD_PATH << File.expand_path('../lib', __FILE__)
43
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
94

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 ]
1217

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"]
2220

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.}
2523
end
Lines changed: 15 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,23 @@
11
# -*- encoding: utf-8 -*-
22
$LOAD_PATH << File.expand_path('../lib', __FILE__)
3-
43
require 'jdbc/firebird/version'
54

6-
Gem::Specification.new do |s|
7-
s.name = %q{jdbc-firebird}
8-
s.version = Jdbc::Firebird::VERSION
5+
Gem::Specification.new do |gem|
6+
gem.name = %q{jdbc-firebird}
7+
gem.version = Jdbc::Firebird::VERSION
8+
9+
gem.authors = ["Karol Bucek"]
10+
gem.email = %q{[email protected]}
911

10-
s.authors = ["Karol Bucek"]
11-
s.email = %q{[email protected]}
12+
gem.authors = ['Nick Sieger, Ola Bini, Karol Bucek and JRuby contributors']
13+
14+
gem.homepage = 'https://github.com/jruby/activerecord-jdbc-adapter'
15+
gem.licenses = ['LGPL']
1216

13-
s.files = [ "README.md", "LICENSE.txt", *Dir["lib/**/*"].to_a ]
14-
s.homepage = %q{https://github.com/jruby/activerecord-jdbc-adapter}
15-
s.rdoc_options = ["--main", "README.md"]
16-
s.require_paths = ["lib"]
17+
gem.files = [ 'README.md', 'LICENSE.txt', *Dir['lib/**/*'].to_a ]
18+
gem.rdoc_options = ["--main", "README.md"]
19+
gem.require_paths = ["lib"]
1720

18-
s.summary = %q{FireBird JDBC driver (a.k.a. JayBird) for JRuby and FireBird/ActiveRecord-JDBC.}
19-
s.description = %q{Install this gem `require 'jdbc/firebird'` and invoke `Jdbc::FireBird.load_driver` within JRuby to load the driver.}
21+
gem.summary = %q{FireBird JDBC driver (a.k.a. JayBird) for JRuby and FireBird/ActiveRecord-JDBC.}
22+
gem.description = %q{Install this gem `require 'jdbc/firebird'` and invoke `Jdbc::FireBird.load_driver` within JRuby to load the driver.}
2023
end

jdbc-h2/jdbc-h2.gemspec

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
# -*- encoding: utf-8 -*-
22
$LOAD_PATH << File.expand_path('../lib', __FILE__)
3-
43
require 'jdbc/h2/version'
54

6-
Gem::Specification.new do |s|
7-
s.name = %q{jdbc-h2}
8-
s.version = Jdbc::H2::VERSION
5+
Gem::Specification.new do |gem|
6+
gem.name = %q{jdbc-h2}
7+
gem.version = Jdbc::H2::VERSION
8+
9+
gem.authors = ['Nick Sieger, Ola Bini, Karol Bucek and JRuby contributors']
10+
11+
gem.homepage = 'https://github.com/jruby/activerecord-jdbc-adapter'
12+
#gem.licenses = ['H2']
913

10-
s.authors = ["Nick Sieger, Ola Bini and JRuby contributors"]
11-
14+
gem.files = [ 'README.md', 'LICENSE.txt', *Dir['lib/**/*'].to_a ]
1215

13-
s.files = [ "README.md", "LICENSE.txt", *Dir["lib/**/*"].to_a ]
14-
s.homepage = %q{https://github.com/jruby/activerecord-jdbc-adapter}
15-
s.rdoc_options = ["--main", "README.md"]
16-
s.require_paths = ["lib"]
17-
s.rubyforge_project = %q{jruby-extras}
16+
gem.rdoc_options = ["--main", "README.md"]
17+
gem.require_paths = ["lib"]
1818

19-
s.summary = %q{H2 JDBC driver for JRuby and H2/ActiveRecord-JDBC (activerecord-jdbch2-adapter).}
20-
s.description = %q{Install this gem `require 'jdbc/h2'` and invoke `Jdbc::H2.load_driver` within JRuby to load the driver.}
19+
gem.summary = %q{H2 JDBC driver for JRuby and H2/ActiveRecord-JDBC (activerecord-jdbch2-adapter).}
20+
gem.description = %q{Install this gem `require 'jdbc/h2'` and invoke `Jdbc::H2.load_driver` within JRuby to load the driver.}
2121
end

jdbc-hsqldb/jdbc-hsqldb.gemspec

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
# -*- encoding: utf-8 -*-
22
$LOAD_PATH << File.expand_path('../lib', __FILE__)
3-
43
require 'jdbc/hsqldb/version'
54

6-
Gem::Specification.new do |s|
7-
s.name = %q{jdbc-hsqldb}
8-
s.version = Jdbc::HSQLDB::VERSION
5+
Gem::Specification.new do |gem|
6+
gem.name = %q{jdbc-hsqldb}
7+
gem.version = Jdbc::HSQLDB::VERSION
8+
9+
gem.authors = ['Nick Sieger, Ola Bini, Karol Bucek and JRuby contributors']
10+
11+
gem.homepage = 'https://github.com/jruby/activerecord-jdbc-adapter'
12+
gem.licenses = ['BSD']
913

10-
s.authors = ["Nick Sieger, Ola Bini and JRuby contributors"]
11-
14+
gem.files = [ 'README.md', 'LICENSE.txt', *Dir['lib/**/*'].to_a ]
1215

13-
s.files = [ "README.md", "LICENSE.txt", *Dir["lib/**/*"].to_a ]
14-
s.homepage = %q{https://github.com/jruby/activerecord-jdbc-adapter}
15-
s.rdoc_options = ["--main", "README.md"]
16-
s.require_paths = ["lib"]
17-
s.rubyforge_project = %q{jruby-extras}
16+
gem.rdoc_options = ["--main", "README.md"]
17+
gem.require_paths = ["lib"]
1818

19-
s.summary = %q{HSQLDB JDBC driver for JRuby and HSQLDB/ActiveRecord-JDBC (activerecord-jdbchsqldb-adapter).}
20-
s.description = %q{Install this gem `require 'jdbc/hsqldb'` and invoke `Jdbc::HSQLDB.load_driver` within JRuby to load the driver.}
19+
gem.summary = %q{HSQLDB JDBC driver for JRuby and HSQLDB/ActiveRecord-JDBC (activerecord-jdbchsqldb-adapter).}
20+
gem.description = %q{Install this gem `require 'jdbc/hsqldb'` and invoke `Jdbc::HSQLDB.load_driver` within JRuby to load the driver.}
2121
end

jdbc-jtds/jdbc-jtds.gemspec

Lines changed: 13 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,21 @@
11
# -*- encoding: utf-8 -*-
2-
32
$LOAD_PATH << File.expand_path('../lib', __FILE__)
43
require 'jdbc/jtds/version'
5-
version = Jdbc::JTDS::VERSION
6-
Gem::Specification.new do |s|
7-
s.name = %q{jdbc-jtds}
8-
s.version = version
94

10-
s.authors = ["Nick Sieger, Ola Bini and JRuby contributors"]
11-
5+
Gem::Specification.new do |gem|
6+
gem.name = %q{jdbc-jtds}
7+
gem.version = Jdbc::JTDS::VERSION
8+
9+
gem.authors = ['Nick Sieger, Ola Bini, Karol Bucek and JRuby contributors']
10+
11+
gem.homepage = 'https://github.com/jruby/activerecord-jdbc-adapter'
12+
gem.licenses = ['LGPL']
1213

13-
s.files = [
14-
"Rakefile", "README.md", "LICENSE.txt",
15-
*Dir["lib/**/*"].to_a
16-
]
14+
gem.files = [ 'README.md', 'LICENSE.txt', *Dir['lib/**/*'].to_a ]
1715

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}
16+
gem.rdoc_options = ["--main", "README.md"]
17+
gem.require_paths = ["lib"]
2218

23-
s.summary = %q{jTDS JDBC driver for JRuby and JTDS/ActiveRecord-JDBC (activerecord-jdbcmssql-adapter).}
24-
s.description = %q{Install this gem `require 'jdbc/jtds'` and invoke `Jdbc::JDTS.load_driver` within JRuby to load the driver.}
19+
gem.summary = %q{jTDS JDBC driver for JRuby and JTDS/ActiveRecord-JDBC (activerecord-jdbcmssql-adapter).}
20+
gem.description = %q{Install this gem `require 'jdbc/jtds'` and invoke `Jdbc::JDTS.load_driver` within JRuby to load the driver.}
2521
end

jdbc-mysql/jdbc-mysql.gemspec

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
# -*- encoding: utf-8 -*-
22
$LOAD_PATH << File.expand_path('../lib', __FILE__)
3-
43
require 'jdbc/mysql/version'
54

6-
Gem::Specification.new do |s|
7-
s.name = %q{jdbc-mysql}
8-
s.version = Jdbc::MySQL::VERSION
5+
Gem::Specification.new do |gem|
6+
gem.name = %q{jdbc-mysql}
7+
gem.version = Jdbc::MySQL::VERSION
8+
9+
gem.authors = ['Nick Sieger, Ola Bini, Karol Bucek and JRuby contributors']
10+
11+
gem.homepage = 'https://github.com/jruby/activerecord-jdbc-adapter'
12+
gem.licenses = ['GPL-2']
913

10-
s.authors = ["Nick Sieger, Ola Bini and JRuby contributors"]
11-
14+
gem.files = [ 'README.md', 'LICENSE.txt', *Dir['lib/**/*'].to_a ]
1215

13-
s.files = [ "README.md", "LICENSE.txt", *Dir["lib/**/*"].to_a ]
14-
s.homepage = %q{https://github.com/jruby/activerecord-jdbc-adapter}
15-
s.rdoc_options = ["--main", "README.md"]
16-
s.require_paths = ["lib"]
17-
s.rubyforge_project = %q{jruby-extras}
16+
gem.rdoc_options = ["--main", "README.md"]
17+
gem.require_paths = ["lib"]
1818

19-
s.summary = %q{MySQL JDBC driver for JRuby and MySQL/ActiveRecord-JDBC (activerecord-jdbcmysql-adapter).}
20-
s.description = %q{Install this gem `require 'jdbc/mysql'` and invoke `Jdbc::MySQL.load_driver` within JRuby to load the driver.}
19+
gem.summary = %q{MySQL JDBC driver for JRuby and MySQL/ActiveRecord-JDBC (activerecord-jdbcmysql-adapter).}
20+
gem.description = %q{Install this gem `require 'jdbc/mysql'` and invoke `Jdbc::MySQL.load_driver` within JRuby to load the driver.}
2121
end
Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,21 @@
11
# -*- encoding: utf-8 -*-
22
$LOAD_PATH << File.expand_path('../lib', __FILE__)
3-
43
require 'jdbc/postgres/version'
54

6-
Gem::Specification.new do |s|
7-
s.name = %q{jdbc-postgres}
8-
s.version = Jdbc::Postgres::VERSION
5+
Gem::Specification.new do |gem|
6+
gem.name = %q{jdbc-postgres}
7+
gem.version = Jdbc::Postgres::VERSION
98

10-
s.authors = ["Nick Sieger, Ola Bini and JRuby contributors"]
11-
9+
gem.authors = ['Nick Sieger, Ola Bini, Karol Bucek and JRuby contributors']
10+
11+
gem.homepage = 'https://github.com/jruby/activerecord-jdbc-adapter'
12+
gem.licenses = ['BSD']
1213

13-
s.files = [ "README.md", "LICENSE.txt", *Dir["lib/**/*"].to_a ]
14+
gem.files = [ 'README.md', 'LICENSE.txt', *Dir['lib/**/*'].to_a ]
1415

15-
s.homepage = %q{https://github.com/jruby/activerecord-jdbc-adapter}
16-
s.rdoc_options = ["--main", "README.md"]
17-
s.require_paths = ["lib"]
18-
s.rubyforge_project = %q{jruby-extras}
16+
gem.rdoc_options = ["--main", "README.md"]
17+
gem.require_paths = ["lib"]
1918

20-
s.summary = %q{PostgreSQL JDBC driver for JRuby and PostgreSQL/ActiveRecord-JDBC (activerecord-jdbcpostgresql-adapter).}
21-
s.description = %q{Install this gem `require 'jdbc/postgres'` and invoke `Jdbc::Postgres.load_driver` within JRuby to load the driver.}
19+
gem.summary = %q{PostgreSQL JDBC driver for JRuby and PostgreSQL/ActiveRecord-JDBC (activerecord-jdbcpostgresql-adapter).}
20+
gem.description = %q{Install this gem `require 'jdbc/postgres'` and invoke `Jdbc::Postgres.load_driver` within JRuby to load the driver.}
2221
end

jdbc-sqlite3/jdbc-sqlite3.gemspec

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,21 @@
11
# -*- encoding: utf-8 -*-
22
$LOAD_PATH << File.expand_path('../lib', __FILE__)
3-
43
require 'jdbc/sqlite3/version'
54

6-
Gem::Specification.new do |s|
7-
s.name = %q{jdbc-sqlite3}
8-
s.version = Jdbc::SQLite3::VERSION
5+
Gem::Specification.new do |gem|
6+
gem.name = %q{jdbc-sqlite3}
7+
gem.version = Jdbc::SQLite3::VERSION
98

10-
s.authors = ["Nick Sieger, Ola Bini and JRuby contributors"]
11-
9+
gem.authors = ['Nick Sieger, Ola Bini, Karol Bucek and JRuby contributors']
10+
11+
gem.homepage = 'https://github.com/jruby/activerecord-jdbc-adapter'
12+
gem.licenses = ['Apache-2']
1213

13-
s.files = [ "README.md", "LICENSE.txt", *Dir["lib/**/*"].to_a ]
14+
gem.files = [ 'README.md', 'LICENSE.txt', *Dir['lib/**/*'].to_a ]
1415

15-
s.homepage = %q{https://github.com/jruby/activerecord-jdbc-adapter}
16-
s.rdoc_options = ["--main", "README.md"]
17-
s.require_paths = ["lib"]
18-
s.rubyforge_project = %q{jruby-extras}
16+
gem.rdoc_options = ["--main", "README.md"]
17+
gem.require_paths = ["lib"]
1918

20-
s.summary = %q{SQLite3 JDBC driver for JRuby and SQLite3/ActiveRecord-JDBC (activerecord-jdbcsqlite3-adapter).}
21-
s.description = %q{Install this gem `require 'jdbc/sqlite3'` and invoke `Jdbc::SQLite3.load_driver` within JRuby to load the driver.}
19+
gem.summary = %q{SQLite3 JDBC driver for JRuby and SQLite3/ActiveRecord-JDBC (activerecord-jdbcsqlite3-adapter).}
20+
gem.description = %q{Install this gem `require 'jdbc/sqlite3'` and invoke `Jdbc::SQLite3.load_driver` within JRuby to load the driver.}
2221
end

0 commit comments

Comments
 (0)