jdbc-openedge 10.1C → 10.2B

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. data/README.md +4 -4
  2. data/lib/jdbc/openedge.rb +2 -3
  3. metadata +1 -1
data/README.md CHANGED
@@ -1,17 +1,17 @@
1
- = jdbc-openedge
1
+ # jdbc-openedge
2
2
 
3
3
  * https://github.com/abevoelker/jdbc-openedge
4
4
 
5
- == DESCRIPTION:
5
+ ## DESCRIPTION:
6
6
 
7
7
  This gem abstracts away the `require` statements for loading the Progress
8
8
  DataDirect OpenEdge JDBC client drivers. Unfortunately, the drivers
9
9
  themselves cannot be stored in this gem as they are proprietary. They can
10
10
  normally be found in an OpenEdge installation directory.
11
11
 
12
- Add the .jar files to your Java $CLASSPATH, and then use
12
+ Add the .jar files to your Java `$CLASSPATH`, and then use
13
13
 
14
- require 'jdbc/openedge'
14
+ require 'jdbc/openedge'
15
15
 
16
16
  to make the driver accessible to JDBC code running in JRuby.
17
17
 
@@ -1,13 +1,12 @@
1
1
  module Jdbc
2
2
  module OpenEdge
3
- VERSION = "10.1C"
3
+ VERSION = "10.2B"
4
4
  end
5
5
  end
6
6
 
7
7
  if RUBY_PLATFORM =~ /java/
8
- require 'base.jar'
9
8
  require 'openedge.jar'
10
- require 'util.jar'
9
+ require 'pool.jar'
11
10
  elsif $VERBOSE
12
11
  warn "jdbc-OpenEdge is only for use with JRuby!"
13
12
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: jdbc-openedge
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease: 4
5
- version: 10.1C
5
+ version: 10.2B
6
6
  platform: ruby
7
7
  authors:
8
8
  - Abe Voelker