Skip to content

Commit f67415f

Browse files
committed
better jdbc- gem summaries + READMEs
1 parent 4676e72 commit f67415f

File tree

12 files changed

+23
-24
lines changed

12 files changed

+23
-24
lines changed

jdbc-derby/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# jdbc-derby
22

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
44
implemented entirely in Java.
55

66
Some key advantages include:
@@ -14,8 +14,8 @@ For more information see http://db.apache.org/derby/
1414

1515
## Java DB
1616

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.
1919
Java DB is included in the JDK since Java 6 (1.6).
2020

2121
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
3434

3535
## Copyright
3636

37-
Copyright (c) 2012 [The JRuby Team](https://github.com/jruby).
37+
Copyright (c) 2012-2014 [The JRuby Team](https://github.com/jruby).
3838

3939
Apache Derby is available under the Apache License, Version 2.0
4040
see *LICENSE.txt* and http://db.apache.org/derby/license.html for more details.

jdbc-derby/jdbc-derby.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ Gem::Specification.new do |gem|
1818
gem.rdoc_options = ["--main", "README.md"]
1919
gem.require_paths = ["lib"]
2020

21-
gem.summary = %q{Derby/JavaDB JDBC driver for JRuby and Derby/ActiveRecord-JDBC (activerecord-jdbcderby-adapter).}
21+
gem.summary = %q{Derby/JavaDB for JRuby, includes the JDBC driver as well as the embedded Derby database.}
2222
gem.description = %q{Install this gem `require 'jdbc/derby'` and invoke `Jdbc::Derby.load_driver` within JRuby to load the driver.}
2323
end

jdbc-h2/jdbc-h2.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ Gem::Specification.new do |gem|
1616
gem.rdoc_options = ["--main", "README.md"]
1717
gem.require_paths = ["lib"]
1818

19-
gem.summary = %q{H2 JDBC driver for JRuby and H2/ActiveRecord-JDBC (activerecord-jdbch2-adapter).}
19+
gem.summary = %q{H2 (JDBC driver) for JRuby (usable with ActiveRecord-JDBC).}
2020
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ Gem::Specification.new do |gem|
1616
gem.rdoc_options = ["--main", "README.md"]
1717
gem.require_paths = ["lib"]
1818

19-
gem.summary = %q{HSQLDB JDBC driver for JRuby and HSQLDB/ActiveRecord-JDBC (activerecord-jdbchsqldb-adapter).}
19+
gem.summary = %q{HSQLDB (JDBC driver) for JRuby (usable with ActiveRecord-JDBC).}
2020
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/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# jdbc-jtds
22

3-
jTDS - SQL Server and Sybase JDBC driver gem for JRuby
3+
jTDS JDBC - SQL Server and Sybase JDBC driver gem for JRuby
44

5-
Open source JDBC 3.0 type 4 driver for Microsoft SQL Server (6.5 up to 2012) and Sybase ASE.
6-
jTDS is a complete implementation of the JDBC 3.0 spec and the fastest JDBC driver for MS SQL Server.
5+
jTDS is an open source (type 4) JDBC 3.0 driver for Microsoft SQL Server (6.5,
6+
7, 2000, 2005, 2008 and 2012) and Sybase Adaptive Server (10, 11, 12 and 15).
77

88
For more information see http://jtds.sourceforge.net/
99

1010
## Usage
1111

12-
To make the driver (Java class) accessible to JDBC and ActiveRecord code running in JRuby :
12+
To make the driver accessible to JDBC with JRuby :
1313

1414
require 'jdbc/jtds'
1515
Jdbc::JTDS.load_driver
@@ -19,11 +19,11 @@ For backwards compatibility with older (**1.2.5**) versions of the gem use :
1919
require 'jdbc/jtds'
2020
Jdbc::JTDS.load_driver(:require) if Jdbc::JTDS.respond_to?(:load_driver)
2121

22-
NOTE: jTDS **1.3.0** requires Java 7 or newer, if you're on older Java please use **1.2.x**.
22+
**NOTE:** jTDS **1.3.x** requires Java 7, if you're on Java 6 use **1.2.x**.
2323

2424
## Copyright
2525

26-
Copyright (c) 2012 [The JRuby Team](https://github.com/jruby).
26+
Copyright (c) 2012-2014 [The JRuby Team](https://github.com/jruby).
2727

28-
jTDS is made available under the terms of the GNU Lesser General Public License,
28+
jTDS is made available under the terms of the GNU Lesser General Public License,
2929
see *LICENSE.txt* and http://jtds.sourceforge.net/license.html for more details.

jdbc-jtds/jdbc-jtds.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ Gem::Specification.new do |gem|
1616
gem.rdoc_options = ["--main", "README.md"]
1717
gem.require_paths = ["lib"]
1818

19-
gem.summary = %q{jTDS JDBC driver for JRuby and JTDS/ActiveRecord-JDBC (activerecord-jdbcmssql-adapter).}
19+
gem.summary = %q{JDBC driver for SQL Server and Sybase using the TDS protocol (usable with ActiveRecord-JDBC).}
2020
gem.description = %q{Install this gem `require 'jdbc/jtds'` and invoke `Jdbc::JDTS.load_driver` within JRuby to load the driver.}
2121
end

jdbc-mysql/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ For backwards compatibility with older (<= **5.1.13**) versions of the gem use :
2121

2222
## Copyright
2323

24-
Copyright (c) 2013 [The JRuby Team](https://github.com/jruby).
24+
Copyright (c) 2013-2014 [The JRuby Team](https://github.com/jruby).
2525

2626
MySQL open source software is provided under the GPL (2.0) License,
2727
see *LICENSE.txt* and http://www.gnu.org/licenses/old-licenses/gpl-2.0.html .

jdbc-mysql/jdbc-mysql.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ Gem::Specification.new do |gem|
1616
gem.rdoc_options = ["--main", "README.md"]
1717
gem.require_paths = ["lib"]
1818

19-
gem.summary = %q{MySQL JDBC driver for JRuby and MySQL/ActiveRecord-JDBC (activerecord-jdbcmysql-adapter).}
19+
gem.summary = %q{JDBC driver for JRuby and MySQL (used by ActiveRecord-JDBC).}
2020
gem.description = %q{Install this gem `require 'jdbc/mysql'` and invoke `Jdbc::MySQL.load_driver` within JRuby to load the driver.}
2121
end

jdbc-postgres/README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
# jdbc-postgres
22

3-
PostgreSQL JDBC driver allows Java programs to connect to a PostgreSQL database
4-
using standard, database independent Java code.
5-
It is a pure Java (Type IV) implementation.
3+
PostgreSQL JDBC driver allows Java programs to connect to a PostgreSQL database
4+
using standard, database independent Java code - it's a pure Java (Type 4) impl.
65

76
For more information see http://jdbc.postgresql.org/
87

@@ -20,7 +19,7 @@ For backwards compatibility with older (<= **9.1.903**) versions of the gem use
2019

2120
## Copyright
2221

23-
Copyright (c) 2012 [The JRuby Team](https://github.com/jruby).
22+
Copyright (c) 2012-2014 [The JRuby Team](https://github.com/jruby).
2423

2524
The PostgreSQL JDBC driver is distributed under the BSD license,
2625
see *LICENSE.txt* and http://jdbc.postgresql.org/license.html for details.

jdbc-postgres/jdbc-postgres.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ Gem::Specification.new do |gem|
1616
gem.rdoc_options = ["--main", "README.md"]
1717
gem.require_paths = ["lib"]
1818

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

0 commit comments

Comments
 (0)