rjack-commons-dbcp 1.3.0.0-java

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ === 1.3.0.0 (2010-3-6)
2
+ * Update to commons-dbcp 1.3(.0)
3
+ * Set gem platform to java
4
+ * Upgraded to tarpit ~> 1.2.0
5
+
6
+ === 1.2.2.0 (2009-10-10)
7
+ * Initial release based on commons-dbcp 1.2.2
@@ -0,0 +1,10 @@
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
@@ -0,0 +1,11 @@
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
11
+ lib/rjack-commons-dbcp/commons-dbcp-1.3.jar
@@ -0,0 +1,7 @@
1
+ rjack-commons-dbcp gem
2
+ Copyright (c) 2009 David Kellum
3
+
4
+ This product includes software developed by:
5
+
6
+ Apache Commons DBCP
7
+ Copyright (c) 1999-2009 The Apache Software Foundation (http://www.apache.org/)
@@ -0,0 +1,42 @@
1
+ = rjack-commons-dbcp
2
+
3
+ * http://rjack.rubyforge.org
4
+ * http://rubyforge.org/projects/rjack
5
+
6
+ == Description
7
+
8
+ A gem packaging of {Commons DBCP}[http://commons.apache.org/dbcp/]
9
+
10
+ == License
11
+
12
+ === rjack-commons-dbcp gem
13
+
14
+ Copyright (c) 2009 David Kellum
15
+
16
+ Licensed under the Apache License, Version 2.0 (the "License"); you
17
+ may not use this file except in compliance with the License. You
18
+ may obtain a copy of the License at:
19
+
20
+ http://www.apache.org/licenses/LICENSE-2.0
21
+
22
+ Unless required by applicable law or agreed to in writing, software
23
+ distributed under the License is distributed on an "AS IS" BASIS,
24
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
25
+ implied. See the License for the specific language governing
26
+ permissions and limitations under the License.
27
+
28
+ === Commons DBCP (java)
29
+
30
+ Copyright (c) 1999-2009 The Apache Software Foundation
31
+
32
+ Licensed under the Apache License, Version 2.0 (the "License"); you
33
+ may not use this file except in compliance with the License. You
34
+ may obtain a copy of the License at:
35
+
36
+ http://www.apache.org/licenses/LICENSE-2.0
37
+
38
+ Unless required by applicable law or agreed to in writing, software
39
+ distributed under the License is distributed on an "AS IS" BASIS,
40
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
41
+ implied. See the License for the specific language governing
42
+ permissions and limitations under the License.
@@ -0,0 +1,58 @@
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
+
18
+ $LOAD_PATH << './lib'
19
+ require 'rjack-commons-dbcp/base'
20
+
21
+ require 'rubygems'
22
+ gem 'rjack-tarpit', '~> 1.2.0'
23
+ require 'rjack-tarpit'
24
+
25
+ include RJack
26
+
27
+ t = TarPit.new( 'rjack-commons-dbcp', CommonsDbcp::VERSION, :java_platform )
28
+
29
+ t.specify do |h|
30
+ h.developer( "David Kellum", "dek-oss@gravitext.com" )
31
+ h.extra_deps << [ 'rjack-commons-pool', '~> 1.5.3' ]
32
+ h.rubyforge_name = "rjack"
33
+ h.remote_rdoc_dir = "commons-dbcp"
34
+ end
35
+
36
+ t.jars = [ "commons-dbcp-#{ CommonsDbcp::DBCP_VERSION }.jar" ]
37
+
38
+ t.assembly_version = 1.0
39
+
40
+ file 'Manifest.txt' => [ "lib/#{t.name}/base.rb" ]
41
+
42
+ task :check_pom_deps do
43
+ t.test_line_match( 'pom.xml',
44
+ %r[<version>#{ CommonsDbcp::DBCP_VERSION }</version>] )
45
+ end
46
+
47
+ task :check_history_version do
48
+ t.test_line_match( 'History.rdoc', /^==/, / #{t.version} / )
49
+ end
50
+ task :check_history_date do
51
+ t.test_line_match( 'History.rdoc', /^==/, /\([0-9\-]+\)$/ )
52
+ end
53
+
54
+ task :gem => [ :check_pom_deps, :check_history_version ]
55
+ task :tag => [ :check_pom_deps, :check_history_version, :check_history_date ]
56
+ task :push => [ :check_history_date ]
57
+
58
+ t.define_tasks
@@ -0,0 +1,14 @@
1
+ <assembly>
2
+ <id>bin</id>
3
+ <formats>
4
+ <format>dir</format>
5
+ </formats>
6
+ <includeBaseDirectory>false</includeBaseDirectory>
7
+ <dependencySets>
8
+ <dependencySet>
9
+ <includes>
10
+ <include>commons-dbcp:commons-dbcp</include>
11
+ </includes>
12
+ </dependencySet>
13
+ </dependencySets>
14
+ </assembly>
@@ -0,0 +1,30 @@
1
+ #--
2
+ # Copyright (C) 2009 David Kellum
3
+ #
4
+ # Licensed under the Apache License, Version 2.0 (the "License"); you
5
+ # may not use this file except in compliance with the License. You
6
+ # may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
13
+ # implied. See the License for the specific language governing
14
+ # permissions and limitations under the License.
15
+ #++
16
+
17
+ require 'rubygems'
18
+
19
+ require 'rjack-commons-pool'
20
+ require 'rjack-commons-dbcp/base'
21
+
22
+ # Commons DBCP wrapper module
23
+ #
24
+ # http://commons.apache.org/dbcp/
25
+ #
26
+ module RJack
27
+ module CommonsDbcp
28
+ require "#{DBCP_DIR}/commons-dbcp-#{DBCP_VERSION}.jar"
29
+ end
30
+ end
@@ -0,0 +1,28 @@
1
+ #--
2
+ # Copyright (C) 2009 David Kellum
3
+ #
4
+ # Licensed under the Apache License, Version 2.0 (the "License"); you
5
+ # may not use this file except in compliance with the License. You
6
+ # may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
13
+ # implied. See the License for the specific language governing
14
+ # permissions and limitations under the License.
15
+ #++
16
+
17
+ module RJack
18
+ module CommonsDbcp
19
+
20
+ # Commons dbcp (java) version
21
+ DBCP_VERSION = '1.3'
22
+
23
+ # rjack gem version
24
+ VERSION = DBCP_VERSION + '.0.0'
25
+
26
+ DBCP_DIR = File.dirname( __FILE__ ) # :nodoc:
27
+ end
28
+ end
data/pom.xml ADDED
@@ -0,0 +1,41 @@
1
+ <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
2
+
3
+ <modelVersion>4.0.0</modelVersion>
4
+ <groupId>rjack</groupId>
5
+ <artifactId>rjack-commons-dbcp</artifactId>
6
+ <packaging>pom</packaging>
7
+ <version>1.0</version>
8
+ <name>HTTPClient Assembly for Gem</name>
9
+
10
+ <dependencies>
11
+ <dependency>
12
+ <groupId>commons-dbcp</groupId>
13
+ <artifactId>commons-dbcp</artifactId>
14
+ <version>1.3</version>
15
+ </dependency>
16
+ </dependencies>
17
+
18
+ <build>
19
+ <plugins>
20
+ <plugin>
21
+ <artifactId>maven-assembly-plugin</artifactId>
22
+ <configuration>
23
+ <descriptors>
24
+ <descriptor>assembly.xml</descriptor>
25
+ </descriptors>
26
+ <tarLongFileMode>gnu</tarLongFileMode>
27
+ </configuration>
28
+ <executions>
29
+ <execution>
30
+ <id>assembly</id>
31
+ <phase>package</phase>
32
+ <goals>
33
+ <goal>attached</goal>
34
+ </goals>
35
+ </execution>
36
+ </executions>
37
+ </plugin>
38
+ </plugins>
39
+ </build>
40
+
41
+ </project>
metadata ADDED
@@ -0,0 +1,89 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rjack-commons-dbcp
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.3.0.0
5
+ platform: java
6
+ authors:
7
+ - David Kellum
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2010-03-06 00:00:00 -08:00
13
+ default_executable:
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: rjack-commons-pool
17
+ type: :runtime
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ~>
22
+ - !ruby/object:Gem::Version
23
+ version: 1.5.3
24
+ version:
25
+ - !ruby/object:Gem::Dependency
26
+ name: rjack-tarpit
27
+ type: :development
28
+ version_requirement:
29
+ version_requirements: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ~>
32
+ - !ruby/object:Gem::Version
33
+ version: 1.2.0
34
+ version:
35
+ description: A gem packaging of {Commons DBCP}[http://commons.apache.org/dbcp/]
36
+ email:
37
+ - dek-oss@gravitext.com
38
+ executables: []
39
+
40
+ extensions: []
41
+
42
+ extra_rdoc_files:
43
+ - Manifest.txt
44
+ - NOTICE.txt
45
+ - README.rdoc
46
+ - History.rdoc
47
+ files:
48
+ - Manifest.static
49
+ - Manifest.txt
50
+ - README.rdoc
51
+ - History.rdoc
52
+ - NOTICE.txt
53
+ - Rakefile
54
+ - pom.xml
55
+ - assembly.xml
56
+ - lib/rjack-commons-dbcp/base.rb
57
+ - lib/rjack-commons-dbcp.rb
58
+ - lib/rjack-commons-dbcp/commons-dbcp-1.3.jar
59
+ has_rdoc: true
60
+ homepage: http://rjack.rubyforge.org
61
+ licenses: []
62
+
63
+ post_install_message:
64
+ rdoc_options:
65
+ - --main
66
+ - README.rdoc
67
+ require_paths:
68
+ - lib
69
+ required_ruby_version: !ruby/object:Gem::Requirement
70
+ requirements:
71
+ - - ">="
72
+ - !ruby/object:Gem::Version
73
+ version: "0"
74
+ version:
75
+ required_rubygems_version: !ruby/object:Gem::Requirement
76
+ requirements:
77
+ - - ">="
78
+ - !ruby/object:Gem::Version
79
+ version: "0"
80
+ version:
81
+ requirements: []
82
+
83
+ rubyforge_project: rjack
84
+ rubygems_version: 1.3.5
85
+ signing_key:
86
+ specification_version: 3
87
+ summary: A gem packaging of {Commons DBCP}[http://commons.apache.org/dbcp/]
88
+ test_files: []
89
+