rjack-commons-dbutils 1.3.1-java

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,10 @@
1
+ === 1.3.1 (2010-3-6)
2
+ * Set gem platform to java
3
+ * Upgraded to tarpit ~> 1.2.0
4
+
5
+ === 1.3.0 (2009-12-19)
6
+ * Upgrade to commons-dbutils 1.3
7
+ * Upgrade to tarpit-1.1.0 (gemcutter)
8
+
9
+ === 1.2.0 (2009-10-10)
10
+ * Initial release based on commons-dbutils 1.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-dbutils/base.rb
10
+ lib/rjack-commons-dbutils.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-dbutils/base.rb
10
+ lib/rjack-commons-dbutils.rb
11
+ lib/rjack-commons-dbutils/commons-dbutils-1.3.jar
@@ -0,0 +1,7 @@
1
+ rjack-commons-dbutils gem
2
+ Copyright (c) 2009 David Kellum
3
+
4
+ This product includes software developed by:
5
+
6
+ Apache Commons DbUtils
7
+ Copyright (c) 2002-2009 The Apache Software Foundation (http://www.apache.org/)
@@ -0,0 +1,42 @@
1
+ = rjack-commons-dbutils
2
+
3
+ * http://rjack.rubyforge.org
4
+ * http://rubyforge.org/projects/rjack
5
+
6
+ == Description
7
+
8
+ A gem packaging of {Commons DbUtils}[http://commons.apache.org/dbutils/]
9
+
10
+ == License
11
+
12
+ === rjack-commons-dbutils 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 DbUtils (java)
29
+
30
+ Copyright (c) 2002-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,57 @@
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-dbutils/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-dbutils', CommonsDbUtils::VERSION, :java_platform )
28
+
29
+ t.specify do |h|
30
+ h.developer( "David Kellum", "dek-oss@gravitext.com" )
31
+ h.rubyforge_name = "rjack"
32
+ h.remote_rdoc_dir = "commons-dbutils"
33
+ end
34
+
35
+ t.jars = [ "commons-dbutils-#{ CommonsDbUtils::DBUTILS_VERSION }.jar" ]
36
+
37
+ t.assembly_version = 1.0
38
+
39
+ file 'Manifest.txt' => [ "lib/#{t.name}/base.rb" ]
40
+
41
+ task :check_pom_deps do
42
+ t.test_line_match( 'pom.xml',
43
+ %r[<version>#{ CommonsDbUtils::DBUTILS_VERSION }</version>] )
44
+ end
45
+
46
+ task :check_history_version do
47
+ t.test_line_match( 'History.rdoc', /^==/, / #{t.version} / )
48
+ end
49
+ task :check_history_date do
50
+ t.test_line_match( 'History.rdoc', /^==/, /\([0-9\-]+\)$/ )
51
+ end
52
+
53
+ task :gem => [ :check_pom_deps, :check_history_version ]
54
+ task :tag => [ :check_pom_deps, :check_history_version, :check_history_date ]
55
+ task :push => [ :check_history_date ]
56
+
57
+ 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-dbutils:commons-dbutils</include>
11
+ </includes>
12
+ </dependencySet>
13
+ </dependencySets>
14
+ </assembly>
@@ -0,0 +1,29 @@
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-dbutils/base'
20
+
21
+ # Commons DbUtils wrapper module
22
+ #
23
+ # http://commons.apache.org/dbutils/
24
+ #
25
+ module RJack
26
+ module CommonsDbUtils
27
+ require "#{DBUTILS_DIR}/commons-dbutils-#{DBUTILS_VERSION}.jar"
28
+ end
29
+ 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 CommonsDbUtils
19
+
20
+ # Commons dbutils (java) version
21
+ DBUTILS_VERSION = '1.3'
22
+
23
+ # rjack gem version
24
+ VERSION = DBUTILS_VERSION + '.1'
25
+
26
+ DBUTILS_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-dbutils</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-dbutils</groupId>
13
+ <artifactId>commons-dbutils</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,79 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rjack-commons-dbutils
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.3.1
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-tarpit
17
+ type: :development
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ~>
22
+ - !ruby/object:Gem::Version
23
+ version: 1.2.0
24
+ version:
25
+ description: A gem packaging of {Commons DbUtils}[http://commons.apache.org/dbutils/]
26
+ email:
27
+ - dek-oss@gravitext.com
28
+ executables: []
29
+
30
+ extensions: []
31
+
32
+ extra_rdoc_files:
33
+ - Manifest.txt
34
+ - NOTICE.txt
35
+ - README.rdoc
36
+ - History.rdoc
37
+ files:
38
+ - Manifest.static
39
+ - Manifest.txt
40
+ - README.rdoc
41
+ - History.rdoc
42
+ - NOTICE.txt
43
+ - Rakefile
44
+ - pom.xml
45
+ - assembly.xml
46
+ - lib/rjack-commons-dbutils/base.rb
47
+ - lib/rjack-commons-dbutils.rb
48
+ - lib/rjack-commons-dbutils/commons-dbutils-1.3.jar
49
+ has_rdoc: true
50
+ homepage: http://rjack.rubyforge.org
51
+ licenses: []
52
+
53
+ post_install_message:
54
+ rdoc_options:
55
+ - --main
56
+ - README.rdoc
57
+ require_paths:
58
+ - lib
59
+ required_ruby_version: !ruby/object:Gem::Requirement
60
+ requirements:
61
+ - - ">="
62
+ - !ruby/object:Gem::Version
63
+ version: "0"
64
+ version:
65
+ required_rubygems_version: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - ">="
68
+ - !ruby/object:Gem::Version
69
+ version: "0"
70
+ version:
71
+ requirements: []
72
+
73
+ rubyforge_project: rjack
74
+ rubygems_version: 1.3.5
75
+ signing_key:
76
+ specification_version: 3
77
+ summary: A gem packaging of {Commons DbUtils}[http://commons.apache.org/dbutils/]
78
+ test_files: []
79
+