rjack-commons-pool 1.5.5.0-java → 1.5.6.0-java
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.
- data/History.rdoc +4 -0
- data/Manifest.txt +1 -1
- data/NOTICE.txt +1 -1
- data/README.rdoc +3 -2
- data/Rakefile +2 -3
- data/assembly.xml +1 -0
- data/lib/rjack-commons-pool.rb +1 -1
- data/lib/rjack-commons-pool/base.rb +2 -2
- data/lib/rjack-commons-pool/{commons-pool-1.5.5.jar → commons-pool-1.5.6.jar} +0 -0
- data/pom.xml +10 -4
- metadata +11 -21
data/History.rdoc
CHANGED
data/Manifest.txt
CHANGED
data/NOTICE.txt
CHANGED
data/README.rdoc
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
= rjack-commons-pool
|
|
2
2
|
|
|
3
|
+
* http://rjack.rubyforge.org/commons-pool
|
|
3
4
|
* http://rjack.rubyforge.org
|
|
4
|
-
*
|
|
5
|
+
* https://github.com/dekellum/rjack
|
|
5
6
|
|
|
6
7
|
== Description
|
|
7
8
|
|
|
@@ -11,7 +12,7 @@ A gem packaging of {Commons Pool}[http://commons.apache.org/pool/]
|
|
|
11
12
|
|
|
12
13
|
=== rjack-commons-pool gem
|
|
13
14
|
|
|
14
|
-
Copyright (c) 2009-
|
|
15
|
+
Copyright (c) 2009-2011 David Kellum
|
|
15
16
|
|
|
16
17
|
Licensed under the Apache License, Version 2.0 (the "License"); you
|
|
17
18
|
may not use this file except in compliance with the License. You
|
data/Rakefile
CHANGED
|
@@ -4,7 +4,7 @@ $LOAD_PATH << './lib'
|
|
|
4
4
|
require 'rjack-commons-pool/base'
|
|
5
5
|
|
|
6
6
|
require 'rubygems'
|
|
7
|
-
gem 'rjack-tarpit', '~> 1.
|
|
7
|
+
gem 'rjack-tarpit', '~> 1.3.0'
|
|
8
8
|
require 'rjack-tarpit'
|
|
9
9
|
|
|
10
10
|
include RJack
|
|
@@ -13,8 +13,7 @@ t = TarPit.new( 'rjack-commons-pool', CommonsPool::VERSION, :java_platform )
|
|
|
13
13
|
|
|
14
14
|
t.specify do |h|
|
|
15
15
|
h.developer( "David Kellum", "dek-oss@gravitext.com" )
|
|
16
|
-
h.
|
|
17
|
-
h.remote_rdoc_dir = "commons-pool"
|
|
16
|
+
h.rdoc_locations << "dekellum@rubyforge.org:/var/www/gforge-projects/rjack/commons-pool"
|
|
18
17
|
end
|
|
19
18
|
|
|
20
19
|
t.jars = [ "commons-pool-#{ CommonsPool::POOL_VERSION }.jar" ]
|
data/assembly.xml
CHANGED
data/lib/rjack-commons-pool.rb
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#--
|
|
2
|
-
# Copyright (c) 2009-
|
|
2
|
+
# Copyright (c) 2009-2011 David Kellum
|
|
3
3
|
#
|
|
4
4
|
# Licensed under the Apache License, Version 2.0 (the "License"); you
|
|
5
5
|
# may not use this file except in compliance with the License. You
|
|
@@ -18,7 +18,7 @@ module RJack
|
|
|
18
18
|
module CommonsPool
|
|
19
19
|
|
|
20
20
|
# Commons pool (java) version
|
|
21
|
-
POOL_VERSION = '1.5.
|
|
21
|
+
POOL_VERSION = '1.5.6'
|
|
22
22
|
|
|
23
23
|
# rjack gem version
|
|
24
24
|
VERSION = POOL_VERSION + '.0'
|
|
Binary file
|
data/pom.xml
CHANGED
|
@@ -5,13 +5,17 @@
|
|
|
5
5
|
<artifactId>rjack-commons-pool</artifactId>
|
|
6
6
|
<packaging>pom</packaging>
|
|
7
7
|
<version>1.0</version>
|
|
8
|
-
<name>
|
|
8
|
+
<name>Commons Pool for Gem</name>
|
|
9
|
+
|
|
10
|
+
<properties>
|
|
11
|
+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
12
|
+
</properties>
|
|
9
13
|
|
|
10
14
|
<dependencies>
|
|
11
15
|
<dependency>
|
|
12
16
|
<groupId>commons-pool</groupId>
|
|
13
17
|
<artifactId>commons-pool</artifactId>
|
|
14
|
-
<version>1.5.
|
|
18
|
+
<version>1.5.6</version>
|
|
15
19
|
</dependency>
|
|
16
20
|
</dependencies>
|
|
17
21
|
|
|
@@ -19,18 +23,20 @@
|
|
|
19
23
|
<plugins>
|
|
20
24
|
<plugin>
|
|
21
25
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
26
|
+
<version>2.2.1</version>
|
|
22
27
|
<configuration>
|
|
28
|
+
<attach>false</attach>
|
|
29
|
+
<ignoreDirFormatExtensions>false</ignoreDirFormatExtensions>
|
|
23
30
|
<descriptors>
|
|
24
31
|
<descriptor>assembly.xml</descriptor>
|
|
25
32
|
</descriptors>
|
|
26
|
-
<tarLongFileMode>gnu</tarLongFileMode>
|
|
27
33
|
</configuration>
|
|
28
34
|
<executions>
|
|
29
35
|
<execution>
|
|
30
36
|
<id>assembly</id>
|
|
31
37
|
<phase>package</phase>
|
|
32
38
|
<goals>
|
|
33
|
-
<goal>
|
|
39
|
+
<goal>single</goal>
|
|
34
40
|
</goals>
|
|
35
41
|
</execution>
|
|
36
42
|
</executions>
|
metadata
CHANGED
|
@@ -1,13 +1,8 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rjack-commons-pool
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
prerelease:
|
|
5
|
-
|
|
6
|
-
- 1
|
|
7
|
-
- 5
|
|
8
|
-
- 5
|
|
9
|
-
- 0
|
|
10
|
-
version: 1.5.5.0
|
|
4
|
+
prerelease:
|
|
5
|
+
version: 1.5.6.0
|
|
11
6
|
platform: java
|
|
12
7
|
authors:
|
|
13
8
|
- David Kellum
|
|
@@ -15,21 +10,18 @@ autorequire:
|
|
|
15
10
|
bindir: bin
|
|
16
11
|
cert_chain: []
|
|
17
12
|
|
|
18
|
-
date:
|
|
13
|
+
date: 2011-06-26 00:00:00 -07:00
|
|
19
14
|
default_executable:
|
|
20
15
|
dependencies:
|
|
21
16
|
- !ruby/object:Gem::Dependency
|
|
22
17
|
name: rjack-tarpit
|
|
23
18
|
prerelease: false
|
|
24
19
|
requirement: &id001 !ruby/object:Gem::Requirement
|
|
20
|
+
none: false
|
|
25
21
|
requirements:
|
|
26
22
|
- - ~>
|
|
27
23
|
- !ruby/object:Gem::Version
|
|
28
|
-
|
|
29
|
-
- 1
|
|
30
|
-
- 2
|
|
31
|
-
- 3
|
|
32
|
-
version: 1.2.3
|
|
24
|
+
version: 1.3.3
|
|
33
25
|
type: :development
|
|
34
26
|
version_requirements: *id001
|
|
35
27
|
description: A gem packaging of {Commons Pool}[http://commons.apache.org/pool/]
|
|
@@ -54,9 +46,9 @@ files:
|
|
|
54
46
|
- pom.xml
|
|
55
47
|
- lib/rjack-commons-pool/base.rb
|
|
56
48
|
- lib/rjack-commons-pool.rb
|
|
57
|
-
- lib/rjack-commons-pool/commons-pool-1.5.
|
|
49
|
+
- lib/rjack-commons-pool/commons-pool-1.5.6.jar
|
|
58
50
|
has_rdoc: true
|
|
59
|
-
homepage: http://rjack.rubyforge.org
|
|
51
|
+
homepage: http://rjack.rubyforge.org/commons-pool
|
|
60
52
|
licenses: []
|
|
61
53
|
|
|
62
54
|
post_install_message:
|
|
@@ -66,23 +58,21 @@ rdoc_options:
|
|
|
66
58
|
require_paths:
|
|
67
59
|
- lib
|
|
68
60
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
61
|
+
none: false
|
|
69
62
|
requirements:
|
|
70
63
|
- - ">="
|
|
71
64
|
- !ruby/object:Gem::Version
|
|
72
|
-
segments:
|
|
73
|
-
- 0
|
|
74
65
|
version: "0"
|
|
75
66
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
67
|
+
none: false
|
|
76
68
|
requirements:
|
|
77
69
|
- - ">="
|
|
78
70
|
- !ruby/object:Gem::Version
|
|
79
|
-
segments:
|
|
80
|
-
- 0
|
|
81
71
|
version: "0"
|
|
82
72
|
requirements: []
|
|
83
73
|
|
|
84
|
-
rubyforge_project: rjack
|
|
85
|
-
rubygems_version: 1.
|
|
74
|
+
rubyforge_project: rjack-commons-pool
|
|
75
|
+
rubygems_version: 1.5.1
|
|
86
76
|
signing_key:
|
|
87
77
|
specification_version: 3
|
|
88
78
|
summary: A gem packaging of {Commons Pool}[http://commons.apache.org/pool/]
|