commons-dbcp-jars 1.4-java

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: ba9f978fd1d5747d47e38928c6266ecc472f3b55
4
+ data.tar.gz: 6b8e7d6d3da6c1130f0aed0cbc9bde8203d98f70
5
+ SHA512:
6
+ metadata.gz: 958126e1acf9ea38ba8a618825a0e07bb71e54177fe9dad94b467ae6eacfb303461e7fdbdcbb8aa4283dcf4987f847bde2156d607bdf935c955da62ad8a72a6a
7
+ data.tar.gz: f46a708ddfa24e67f32d429fbf7de240180867b126a3819ae69b5516b765fe96d1c2d3769fec5c1f85167bc24f0a4bb6d108fc68c9d6930c046cd4bc9b006fc7
Binary file
@@ -0,0 +1,18 @@
1
+ warn "commons-dbcp-jars is only for use with JRuby" if (JRUBY_VERSION.nil? rescue true)
2
+ require 'commons/dbcp/version'
3
+
4
+ module Commons
5
+ module DBCP
6
+
7
+ def self.jar
8
+ "commons-dbcp-#{JAR_VERSION}.jar"
9
+ end
10
+
11
+ def self.load_jar(method = :load)
12
+ send method, jar
13
+ end
14
+
15
+ end
16
+ end
17
+
18
+ Commons::DBCP.load_jar
@@ -0,0 +1,6 @@
1
+ module Commons
2
+ module DBCP
3
+ JAR_VERSION = '1.4'
4
+ VERSION = JAR_VERSION + ''
5
+ end
6
+ end
metadata ADDED
@@ -0,0 +1,48 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: commons-dbcp-jars
3
+ version: !ruby/object:Gem::Version
4
+ version: '1.4'
5
+ platform: java
6
+ authors:
7
+ - Neil Chambers
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-11-02 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Install this gem `require 'commons/dbcp'` and invoke `Commons::DBCP.load_jar` within JRuby to load the jar into context.
14
+ email: n3llyb0y.uk@gmail.com
15
+ executables: []
16
+ extensions: []
17
+ extra_rdoc_files: []
18
+ files:
19
+ - lib/commons-dbcp-1.4.jar
20
+ - lib/commons/dbcp.rb
21
+ - lib/commons/dbcp/version.rb
22
+ homepage:
23
+ licenses:
24
+ - Apache 2.0
25
+ metadata: {}
26
+ post_install_message:
27
+ rdoc_options:
28
+ - --main
29
+ - README.md
30
+ require_paths:
31
+ - lib
32
+ required_ruby_version: !ruby/object:Gem::Requirement
33
+ requirements:
34
+ - - '>='
35
+ - !ruby/object:Gem::Version
36
+ version: '0'
37
+ required_rubygems_version: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - '>='
40
+ - !ruby/object:Gem::Version
41
+ version: '0'
42
+ requirements: []
43
+ rubyforge_project:
44
+ rubygems_version: 2.1.10
45
+ signing_key:
46
+ specification_version: 4
47
+ summary: Apache Commons DBCP for JRuby
48
+ test_files: []