Skip to content

Commit 63160de

Browse files
committed
boost an ego - standing on the shoulders of AR-JDBC giants + spec license
1 parent 960bee2 commit 63160de

File tree

9 files changed

+113
-102
lines changed

9 files changed

+113
-102
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -238,8 +238,10 @@ ask on the #JRuby IRC channel on http://freenode.net/ (try [web-chat][6]).
238238

239239
## Authors
240240

241-
This project was written by Nick Sieger <[email protected]> and Ola Bini
242-
<[email protected]> with lots of help from the JRuby community.
241+
This project was originally written by [Nick Sieger](http://github.com/nicksieger)
242+
and [Ola Bini](http://github.com/olabini) with lots of help from the JRuby community.
243+
Polished 3.x compatibility and 4.x support (for AR-JDBC >= 1.3.0) was managed by
244+
[Karol Bucek](http://github.com/kares) among others.
243245

244246
## License
245247

activerecord-jdbc-adapter.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ Gem::Specification.new do |gem|
66
gem.name = 'activerecord-jdbc-adapter'
77
gem.version = ArJdbc::VERSION
88
gem.platform = Gem::Platform::RUBY
9-
gem.authors = ['Nick Sieger, Ola Bini and JRuby contributors']
10-
9+
gem.authors = ['Nick Sieger, Ola Bini, Karol Bucek and JRuby contributors']
10+
1111
gem.homepage = 'https://github.com/jruby/activerecord-jdbc-adapter'
1212
gem.license = "BSD"
1313
gem.summary = 'JDBC adapter for ActiveRecord, for use within JRuby on Rails.'

activerecord-jdbcderby-adapter/activerecord-jdbcderby-adapter.gemspec

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,22 @@ arjdbc_lib = File.expand_path("../../lib", __FILE__)
33
$:.push arjdbc_lib unless $:.include?(arjdbc_lib)
44
require 'arjdbc/version'
55

6-
Gem::Specification.new do |s|
7-
s.name = "activerecord-jdbcderby-adapter"
8-
s.version = version = ArJdbc::VERSION
9-
s.platform = Gem::Platform::RUBY
10-
s.authors = ["Nick Sieger, Ola Bini and JRuby contributors"]
11-
s.description = %q{Install this gem to use Derby with JRuby on Rails.}
12-
6+
Gem::Specification.new do |gem|
7+
gem.name = "activerecord-jdbcderby-adapter"
8+
gem.version = version = ArJdbc::VERSION
9+
gem.platform = Gem::Platform::RUBY
1310

14-
s.homepage = %q{https://github.com/jruby/activerecord-jdbc-adapter}
15-
s.rubyforge_project = %q{jruby-extras}
16-
s.summary = %q{Derby JDBC adapter for JRuby on Rails.}
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.license = "BSD"
1715

18-
s.require_paths = ["lib"]
19-
s.files = `git ls-files`.split("\n") # assuming . working directory
16+
gem.rubyforge_project = %q{jruby-extras}
17+
gem.summary = %q{Derby JDBC adapter for JRuby on Rails.}
2018

21-
s.add_dependency 'activerecord-jdbc-adapter', "~>#{version}"
22-
s.add_dependency 'jdbc-derby', '~> 10.6'
19+
gem.require_paths = ["lib"]
20+
gem.files = `git ls-files`.split("\n") # assuming . working directory
21+
22+
gem.add_dependency 'activerecord-jdbc-adapter', "~>#{version}"
23+
gem.add_dependency 'jdbc-derby', '~> 10.6'
2324
end

activerecord-jdbch2-adapter/activerecord-jdbch2-adapter.gemspec

Lines changed: 16 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,23 @@ arjdbc_lib = File.expand_path("../../lib", __FILE__)
33
$:.push arjdbc_lib unless $:.include?(arjdbc_lib)
44
require 'arjdbc/version'
55

6-
Gem::Specification.new do |s|
7-
s.name = "activerecord-jdbch2-adapter"
8-
s.version = version = ArJdbc::VERSION
9-
s.platform = Gem::Platform::RUBY
10-
s.authors = ["Nick Sieger, Ola Bini and JRuby contributors"]
11-
s.description = %q{Install this gem to use H2 with JRuby on Rails.}
12-
6+
Gem::Specification.new do |gem|
7+
gem.name = "activerecord-jdbch2-adapter"
8+
gem.version = version = ArJdbc::VERSION
9+
gem.platform = Gem::Platform::RUBY
1310

14-
s.homepage = %q{https://github.com/jruby/activerecord-jdbc-adapter}
15-
s.rubyforge_project = %q{jruby-extras}
16-
s.summary = %q{H2 JDBC adapter for JRuby on Rails.}
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.license = "BSD"
1715

18-
s.require_paths = ["lib"]
19-
s.files = `git ls-files`.split("\n") # assuming . working directory
16+
gem.homepage = %q{https://github.com/jruby/activerecord-jdbc-adapter}
17+
gem.rubyforge_project = %q{jruby-extras}
18+
gem.summary = %q{H2 JDBC adapter for JRuby on Rails.}
2019

21-
s.add_dependency 'activerecord-jdbc-adapter', "~>#{version}"
22-
s.add_dependency 'jdbc-h2', '~> 1.3.0'
20+
gem.require_paths = ["lib"]
21+
gem.files = `git ls-files`.split("\n") # assuming . working directory
22+
23+
gem.add_dependency 'activerecord-jdbc-adapter', "~>#{version}"
24+
gem.add_dependency 'jdbc-h2', '~> 1.3.0'
2325
end

activerecord-jdbchsqldb-adapter/activerecord-jdbchsqldb-adapter.gemspec

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,22 @@ arjdbc_lib = File.expand_path("../../lib", __FILE__)
33
$:.push arjdbc_lib unless $:.include?(arjdbc_lib)
44
require 'arjdbc/version'
55

6-
Gem::Specification.new do |s|
7-
s.name = "activerecord-jdbchsqldb-adapter"
8-
s.version = version = ArJdbc::VERSION
9-
s.platform = Gem::Platform::RUBY
10-
s.authors = ["Nick Sieger, Ola Bini and JRuby contributors"]
11-
s.description = %q{Install this gem to use HSQLDB with JRuby on Rails.}
12-
6+
Gem::Specification.new do |gem|
7+
gem.name = "activerecord-jdbchsqldb-adapter"
8+
gem.version = version = ArJdbc::VERSION
9+
gem.platform = Gem::Platform::RUBY
1310

14-
s.homepage = %q{https://github.com/jruby/activerecord-jdbc-adapter}
15-
s.rubyforge_project = %q{jruby-extras}
16-
s.summary = %q{HSQLDB JDBC adapter for JRuby on Rails.}
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.license = "BSD"
1715

18-
s.require_paths = ["lib"]
19-
s.files = `git ls-files`.split("\n") # assuming . working directory
16+
gem.rubyforge_project = %q{jruby-extras}
17+
gem.summary = %q{HSQLDB JDBC adapter for JRuby on Rails.}
2018

21-
s.add_dependency 'activerecord-jdbc-adapter', "~>#{version}"
22-
s.add_dependency 'jdbc-hsqldb', '>= 1.8' # ~> 2.2
19+
gem.require_paths = ["lib"]
20+
gem.files = `git ls-files`.split("\n") # assuming . working directory
21+
22+
gem.add_dependency 'activerecord-jdbc-adapter', "~>#{version}"
23+
gem.add_dependency 'jdbc-hsqldb', '>= 1.8' # ~> 2.2
2324
end

activerecord-jdbcmssql-adapter/activerecord-jdbcmssql-adapter.gemspec

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,22 @@ arjdbc_lib = File.expand_path("../../lib", __FILE__)
33
$:.push arjdbc_lib unless $:.include?(arjdbc_lib)
44
require 'arjdbc/version'
55

6-
Gem::Specification.new do |s|
7-
s.name = "activerecord-jdbcmssql-adapter"
8-
s.version = version = ArJdbc::VERSION
9-
s.platform = Gem::Platform::RUBY
10-
s.authors = ["Nick Sieger, Ola Bini and JRuby contributors"]
11-
s.description = %q{Install this gem to use MS-SQL with JRuby on Rails.}
12-
6+
Gem::Specification.new do |gem|
7+
gem.name = "activerecord-jdbcmssql-adapter"
8+
gem.version = version = ArJdbc::VERSION
9+
gem.platform = Gem::Platform::RUBY
1310

14-
s.homepage = %q{https://github.com/jruby/activerecord-jdbc-adapter}
15-
s.rubyforge_project = %q{jruby-extras}
16-
s.summary = %q{MS_SQL JDBC adapter for JRuby on Rails.}
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.license = "BSD"
1715

18-
s.require_paths = ["lib"]
19-
s.files = `git ls-files`.split("\n") # assuming . working directory
16+
gem.rubyforge_project = %q{jruby-extras}
17+
gem.summary = %q{MS_SQL JDBC adapter for JRuby on Rails.}
2018

21-
s.add_dependency 'activerecord-jdbc-adapter', "~>#{version}"
22-
s.add_dependency 'jdbc-jtds', '>= 1.2.7' #, '< 1.4.0'
19+
gem.require_paths = ["lib"]
20+
gem.files = `git ls-files`.split("\n") # assuming . working directory
21+
22+
gem.add_dependency 'activerecord-jdbc-adapter', "~>#{version}"
23+
gem.add_dependency 'jdbc-jtds', '>= 1.2.7' #, '< 1.4.0'
2324
end

activerecord-jdbcmysql-adapter/activerecord-jdbcmysql-adapter.gemspec

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,22 @@ arjdbc_lib = File.expand_path("../../lib", __FILE__)
33
$:.push arjdbc_lib unless $:.include?(arjdbc_lib)
44
require 'arjdbc/version'
55

6-
Gem::Specification.new do |s|
7-
s.name = "activerecord-jdbcmysql-adapter"
8-
s.version = version = ArJdbc::VERSION
9-
s.platform = Gem::Platform::RUBY
10-
s.authors = ["Nick Sieger, Ola Bini and JRuby contributors"]
11-
s.description = %q{Install this gem to use MySQL with JRuby on Rails.}
12-
6+
Gem::Specification.new do |gem|
7+
gem.name = "activerecord-jdbcmysql-adapter"
8+
gem.version = version = ArJdbc::VERSION
9+
gem.platform = Gem::Platform::RUBY
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.license = "BSD"
1315

14-
s.homepage = %q{https://github.com/jruby/activerecord-jdbc-adapter}
15-
s.rubyforge_project = %q{jruby-extras}
16-
s.summary = %q{MySQL JDBC adapter for JRuby on Rails.}
16+
gem.rubyforge_project = %q{jruby-extras}
17+
gem.summary = %q{MySQL JDBC adapter for JRuby on Rails.}
1718

18-
s.require_paths = ["lib"]
19-
s.files = `git ls-files`.split("\n") # assuming . working directory
19+
gem.require_paths = ["lib"]
20+
gem.files = `git ls-files`.split("\n") # assuming . working directory
2021

21-
s.add_dependency 'activerecord-jdbc-adapter', "~>#{version}"
22-
s.add_dependency 'jdbc-mysql', '>= 5.1.22'
22+
gem.add_dependency 'activerecord-jdbc-adapter', "~>#{version}"
23+
gem.add_dependency 'jdbc-mysql', '>= 5.1.22'
2324
end

activerecord-jdbcpostgresql-adapter/activerecord-jdbcpostgresql-adapter.gemspec

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -3,22 +3,23 @@ arjdbc_lib = File.expand_path("../../lib", __FILE__)
33
$:.push arjdbc_lib unless $:.include?(arjdbc_lib)
44
require 'arjdbc/version'
55

6-
Gem::Specification.new do |s|
7-
s.name = "activerecord-jdbcpostgresql-adapter"
8-
s.version = version = ArJdbc::VERSION
9-
s.platform = Gem::Platform::RUBY
10-
s.authors = ["Nick Sieger, Ola Bini and JRuby contributors"]
11-
s.description = %q{Install this gem to use Postgres with JRuby on Rails.}
12-
6+
Gem::Specification.new do |gem|
7+
gem.name = "activerecord-jdbcpostgresql-adapter"
8+
gem.version = version = ArJdbc::VERSION
9+
gem.platform = Gem::Platform::RUBY
1310

14-
s.homepage = %q{https://github.com/jruby/activerecord-jdbc-adapter}
15-
s.rubyforge_project = %q{jruby-extras}
16-
s.summary = %q{Postgres JDBC adapter for JRuby on Rails.}
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.license = "BSD"
1715

18-
s.require_paths = ["lib"]
19-
s.files = `git ls-files`.split("\n") # assuming . working directory
16+
gem.rubyforge_project = %q{jruby-extras}
17+
gem.summary = %q{Postgres JDBC adapter for JRuby on Rails.}
2018

21-
s.add_dependency 'activerecord-jdbc-adapter', "~>#{version}"
22-
s.add_dependency 'jdbc-postgres', '>= 9.1' #, '< 9.3'
19+
gem.require_paths = ["lib"]
20+
gem.files = `git ls-files`.split("\n") # assuming . working directory
21+
22+
gem.add_dependency 'activerecord-jdbc-adapter', "~>#{version}"
23+
gem.add_dependency 'jdbc-postgres', '>= 9.1' #, '< 9.3'
2324
end
2425

activerecord-jdbcsqlite3-adapter/activerecord-jdbcsqlite3-adapter.gemspec

Lines changed: 16 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -3,22 +3,24 @@ arjdbc_lib = File.expand_path("../../lib", __FILE__)
33
$:.push arjdbc_lib unless $:.include?(arjdbc_lib)
44
require 'arjdbc/version'
55

6-
Gem::Specification.new do |s|
7-
s.name = "activerecord-jdbcsqlite3-adapter"
8-
s.version = version = ArJdbc::VERSION
9-
s.platform = Gem::Platform::RUBY
10-
s.authors = ["Nick Sieger, Ola Bini and JRuby contributors"]
11-
s.description = %q{Install this gem to use Sqlite3 with JRuby on Rails.}
12-
6+
Gem::Specification.new do |gem|
7+
gem.name = "activerecord-jdbcsqlite3-adapter"
8+
gem.version = version = ArJdbc::VERSION
9+
gem.platform = Gem::Platform::RUBY
1310

14-
s.homepage = %q{https://github.com/jruby/activerecord-jdbc-adapter}
15-
s.rubyforge_project = %q{jruby-extras}
16-
s.summary = %q{Sqlite3 JDBC adapter for JRuby on Rails.}
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.license = "BSD"
1715

18-
s.require_paths = ["lib"]
19-
s.files = `git ls-files`.split("\n") # assuming . working directory
16+
gem.homepage = %q{https://github.com/jruby/activerecord-jdbc-adapter}
17+
gem.rubyforge_project = %q{jruby-extras}
18+
gem.summary = %q{Sqlite3 JDBC adapter for JRuby on Rails.}
2019

21-
s.add_dependency 'activerecord-jdbc-adapter', "~>#{version}"
22-
s.add_dependency 'jdbc-sqlite3', '~> 3.7.2'
20+
gem.require_paths = ["lib"]
21+
gem.files = `git ls-files`.split("\n") # assuming . working directory
22+
23+
gem.add_dependency 'activerecord-jdbc-adapter', "~>#{version}"
24+
gem.add_dependency 'jdbc-sqlite3', '~> 3.7.2'
2325
end
2426

0 commit comments

Comments
 (0)