commons-pool-jars 1.6-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: c341a0f3f58e83deb157f357265c9c27005af4b3
4
+ data.tar.gz: e2dd3060997a1953ede71fd110f9768db9f3115c
5
+ SHA512:
6
+ metadata.gz: c49e46e5b9e98b8cc89e477f8068923aa84cf7fcbee13756c22855956d8190fd0589d8ed6edb8e26b8d5bfa2e8595e980010176ef8c711f3dd3df19430c9c8c7
7
+ data.tar.gz: ae994181bb93314c6d0bd4ab9db79866a0d1ed3783b9982df229f7d77f93f72a5ed7eb71264e0bbbda1d2ad953e83f23253404d71873d5fe5db6cf999c1d4053
Binary file
@@ -0,0 +1,18 @@
1
+ warn "commons-pool-jars is only for use with JRuby" if (JRUBY_VERSION.nil? rescue true)
2
+ require 'commons/pool/version'
3
+
4
+ module Commons
5
+ module Pool
6
+
7
+ def self.jar
8
+ "commons-pool-#{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::Pool.load_jar
@@ -0,0 +1,6 @@
1
+ module Commons
2
+ module Pool
3
+ JAR_VERSION = '1.6'
4
+ VERSION = JAR_VERSION + ''
5
+ end
6
+ end
metadata ADDED
@@ -0,0 +1,48 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: commons-pool-jars
3
+ version: !ruby/object:Gem::Version
4
+ version: '1.6'
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/pool'` and invoke `Commons::Pool.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-pool-1.6.jar
20
+ - lib/commons/pool.rb
21
+ - lib/commons/pool/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 Pool for JRuby
48
+ test_files: []