rjack-commons-dbcp 1.4.0.0-java → 1.4.0.1-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.
@@ -1,3 +1,6 @@
1
+ === 1.4.0.1 (2010-9-1)
2
+ * Remove require 'rubygems' from lib.
3
+
1
4
  === 1.4.0.0 (2010-3-6)
2
5
  * Update to commons-dbcp 1.4(.0)
3
6
 
@@ -1,11 +1,10 @@
1
- Manifest.static
2
- Manifest.txt
3
- README.rdoc
4
1
  History.rdoc
2
+ Manifest.txt
5
3
  NOTICE.txt
4
+ README.rdoc
6
5
  Rakefile
7
- pom.xml
8
6
  assembly.xml
7
+ pom.xml
9
8
  lib/rjack-commons-dbcp/base.rb
10
9
  lib/rjack-commons-dbcp.rb
11
10
  lib/rjack-commons-dbcp/commons-dbcp-1.4.jar
data/NOTICE.txt CHANGED
@@ -1,5 +1,5 @@
1
1
  rjack-commons-dbcp gem
2
- Copyright (c) 2009 David Kellum
2
+ Copyright (c) 2009-2010 David Kellum
3
3
 
4
4
  This product includes software developed by:
5
5
 
@@ -11,7 +11,7 @@ A gem packaging of {Commons DBCP}[http://commons.apache.org/dbcp/]
11
11
 
12
12
  === rjack-commons-dbcp gem
13
13
 
14
- Copyright (c) 2009 David Kellum
14
+ Copyright (c) 2009-2010 David Kellum
15
15
 
16
16
  Licensed under the Apache License, Version 2.0 (the "License"); you
17
17
  may not use this file except in compliance with the License. You
data/Rakefile CHANGED
@@ -1,19 +1,4 @@
1
1
  # -*- ruby -*-
2
- #--
3
- # Copyright (C) 2009 David Kellum
4
- #
5
- # Licensed under the Apache License, Version 2.0 (the "License"); you
6
- # may not use this file except in compliance with the License. You
7
- # may obtain a copy of the License at
8
- #
9
- # http://www.apache.org/licenses/LICENSE-2.0
10
- #
11
- # Unless required by applicable law or agreed to in writing, software
12
- # distributed under the License is distributed on an "AS IS" BASIS,
13
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
14
- # implied. See the License for the specific language governing
15
- # permissions and limitations under the License.
16
- #++
17
2
 
18
3
  $LOAD_PATH << './lib'
19
4
  require 'rjack-commons-dbcp/base'
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (C) 2009 David Kellum
2
+ # Copyright (c) 2009-2010 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
@@ -14,8 +14,6 @@
14
14
  # permissions and limitations under the License.
15
15
  #++
16
16
 
17
- require 'rubygems'
18
-
19
17
  require 'rjack-commons-pool'
20
18
  require 'rjack-commons-dbcp/base'
21
19
 
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (C) 2009 David Kellum
2
+ # Copyright (c) 2009-2010 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
@@ -21,7 +21,7 @@ module RJack
21
21
  DBCP_VERSION = '1.4'
22
22
 
23
23
  # rjack gem version
24
- VERSION = DBCP_VERSION + '.0.0'
24
+ VERSION = DBCP_VERSION + '.0.1'
25
25
 
26
26
  DBCP_DIR = File.dirname( __FILE__ ) # :nodoc:
27
27
  end
metadata CHANGED
@@ -1,7 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rjack-commons-dbcp
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.0.0
4
+ prerelease: false
5
+ segments:
6
+ - 1
7
+ - 4
8
+ - 0
9
+ - 1
10
+ version: 1.4.0.1
5
11
  platform: java
6
12
  authors:
7
13
  - David Kellum
@@ -9,29 +15,37 @@ autorequire:
9
15
  bindir: bin
10
16
  cert_chain: []
11
17
 
12
- date: 2010-03-06 00:00:00 -08:00
18
+ date: 2010-09-01 00:00:00 -07:00
13
19
  default_executable:
14
20
  dependencies:
15
21
  - !ruby/object:Gem::Dependency
16
22
  name: rjack-commons-pool
17
- type: :runtime
18
- version_requirement:
19
- version_requirements: !ruby/object:Gem::Requirement
23
+ prerelease: false
24
+ requirement: &id001 !ruby/object:Gem::Requirement
20
25
  requirements:
21
26
  - - ~>
22
27
  - !ruby/object:Gem::Version
28
+ segments:
29
+ - 1
30
+ - 5
31
+ - 3
23
32
  version: 1.5.3
24
- version:
33
+ type: :runtime
34
+ version_requirements: *id001
25
35
  - !ruby/object:Gem::Dependency
26
36
  name: rjack-tarpit
27
- type: :development
28
- version_requirement:
29
- version_requirements: !ruby/object:Gem::Requirement
37
+ prerelease: false
38
+ requirement: &id002 !ruby/object:Gem::Requirement
30
39
  requirements:
31
40
  - - ~>
32
41
  - !ruby/object:Gem::Version
33
- version: 1.2.0
34
- version:
42
+ segments:
43
+ - 1
44
+ - 2
45
+ - 2
46
+ version: 1.2.2
47
+ type: :development
48
+ version_requirements: *id002
35
49
  description: A gem packaging of {Commons DBCP}[http://commons.apache.org/dbcp/]
36
50
  email:
37
51
  - dek-oss@gravitext.com
@@ -42,17 +56,16 @@ extensions: []
42
56
  extra_rdoc_files:
43
57
  - Manifest.txt
44
58
  - NOTICE.txt
45
- - README.rdoc
46
59
  - History.rdoc
47
- files:
48
- - Manifest.static
49
- - Manifest.txt
50
60
  - README.rdoc
61
+ files:
51
62
  - History.rdoc
63
+ - Manifest.txt
52
64
  - NOTICE.txt
65
+ - README.rdoc
53
66
  - Rakefile
54
- - pom.xml
55
67
  - assembly.xml
68
+ - pom.xml
56
69
  - lib/rjack-commons-dbcp/base.rb
57
70
  - lib/rjack-commons-dbcp.rb
58
71
  - lib/rjack-commons-dbcp/commons-dbcp-1.4.jar
@@ -70,18 +83,20 @@ required_ruby_version: !ruby/object:Gem::Requirement
70
83
  requirements:
71
84
  - - ">="
72
85
  - !ruby/object:Gem::Version
86
+ segments:
87
+ - 0
73
88
  version: "0"
74
- version:
75
89
  required_rubygems_version: !ruby/object:Gem::Requirement
76
90
  requirements:
77
91
  - - ">="
78
92
  - !ruby/object:Gem::Version
93
+ segments:
94
+ - 0
79
95
  version: "0"
80
- version:
81
96
  requirements: []
82
97
 
83
98
  rubyforge_project: rjack
84
- rubygems_version: 1.3.5
99
+ rubygems_version: 1.3.6
85
100
  signing_key:
86
101
  specification_version: 3
87
102
  summary: A gem packaging of {Commons DBCP}[http://commons.apache.org/dbcp/]
@@ -1,10 +0,0 @@
1
- Manifest.static
2
- Manifest.txt
3
- README.rdoc
4
- History.rdoc
5
- NOTICE.txt
6
- Rakefile
7
- pom.xml
8
- assembly.xml
9
- lib/rjack-commons-dbcp/base.rb
10
- lib/rjack-commons-dbcp.rb