rjack-commons-codec 1.4.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.
- data/History.rdoc +6 -0
- data/Manifest.static +10 -0
- data/Manifest.txt +11 -0
- data/NOTICE.txt +14 -0
- data/README.rdoc +45 -0
- data/Rakefile +57 -0
- data/assembly.xml +14 -0
- data/lib/rjack-commons-codec.rb +29 -0
- data/lib/rjack-commons-codec/base.rb +28 -0
- data/lib/rjack-commons-codec/commons-codec-1.4.jar +0 -0
- data/pom.xml +53 -0
- metadata +79 -0
data/History.rdoc
ADDED
data/Manifest.static
ADDED
data/Manifest.txt
ADDED
data/NOTICE.txt
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
rjack-commons-codec gem
|
2
|
+
Copyright (c) 2009 David Kellum
|
3
|
+
|
4
|
+
This product includes software developed by:
|
5
|
+
|
6
|
+
Apache Commons Codec
|
7
|
+
Copyright (c) 2002-2009 The Apache Software Foundation (http://www.apache.org/)
|
8
|
+
|
9
|
+
src/test/org/apache/commons/codec/language/DoubleMetaphoneTest.java contains
|
10
|
+
test data from http://aspell.sourceforge.net/test/batch0.tab.
|
11
|
+
|
12
|
+
Copyright (C) 2002 Kevin Atkinson (kevina@gnu.org). Verbatim copying
|
13
|
+
and distribution of this entire article is permitted in any medium,
|
14
|
+
provided this notice is preserved.
|
data/README.rdoc
ADDED
@@ -0,0 +1,45 @@
|
|
1
|
+
= rjack-commons-codec
|
2
|
+
|
3
|
+
* http://rjack.rubyforge.org
|
4
|
+
* http://rubyforge.org/projects/rjack
|
5
|
+
|
6
|
+
== Description
|
7
|
+
|
8
|
+
A gem packaging of {Commons Codec}[http://commons.apache.org/codec/]
|
9
|
+
|
10
|
+
== License
|
11
|
+
|
12
|
+
=== rjack-commons-codec 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 Codec (java)
|
29
|
+
|
30
|
+
Copyright (c) 2002-2009 The Apache Software Foundation
|
31
|
+
|
32
|
+
Licensed to the Apache Software Foundation (ASF) under one or more
|
33
|
+
contributor license agreements. See the NOTICE file distributed with
|
34
|
+
this work for additional information regarding copyright ownership.
|
35
|
+
The ASF licenses this file to You under the Apache License, Version 2.0
|
36
|
+
(the "License"); you may not use this file except in compliance with
|
37
|
+
the License. You may obtain a copy of the License at
|
38
|
+
|
39
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
40
|
+
|
41
|
+
Unless required by applicable law or agreed to in writing, software
|
42
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
43
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
44
|
+
See the License for the specific language governing permissions and
|
45
|
+
limitations under the License.
|
data/Rakefile
ADDED
@@ -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-codec/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-codec', CommonsCodec::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-codec"
|
33
|
+
end
|
34
|
+
|
35
|
+
t.jars = [ "commons-codec-#{ CommonsCodec::CODEC_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>#{ CommonsCodec::CODEC_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
|
data/assembly.xml
ADDED
@@ -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-codec:commons-codec</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-codec/base'
|
20
|
+
|
21
|
+
# Commons Codec wrapper module
|
22
|
+
#
|
23
|
+
# http://commons.apache.org/codec/
|
24
|
+
#
|
25
|
+
module RJack
|
26
|
+
module CommonsCodec
|
27
|
+
require "#{CODEC_DIR}/commons-codec-#{CODEC_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 CommonsCodec
|
19
|
+
|
20
|
+
# Commons codec (java) version
|
21
|
+
CODEC_VERSION = '1.4'
|
22
|
+
|
23
|
+
# rjack gem version
|
24
|
+
VERSION = CODEC_VERSION + '.1'
|
25
|
+
|
26
|
+
CODEC_DIR = File.dirname( __FILE__ ) # :nodoc:
|
27
|
+
end
|
28
|
+
end
|
Binary file
|
data/pom.xml
ADDED
@@ -0,0 +1,53 @@
|
|
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-codec</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-codec</groupId>
|
13
|
+
<artifactId>commons-codec</artifactId>
|
14
|
+
<version>1.4</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
|
+
<plugin>
|
39
|
+
<artifactId>maven-compiler-plugin</artifactId>
|
40
|
+
<configuration>
|
41
|
+
<source>1.5</source>
|
42
|
+
<target>1.5</target>
|
43
|
+
<optimize>true</optimize>
|
44
|
+
<debug>true</debug>
|
45
|
+
<encoding>UTF-8</encoding>
|
46
|
+
<showDeprecation>true</showDeprecation>
|
47
|
+
<showWarnings>true</showWarnings>
|
48
|
+
</configuration>
|
49
|
+
</plugin>
|
50
|
+
</plugins>
|
51
|
+
</build>
|
52
|
+
|
53
|
+
</project>
|
metadata
ADDED
@@ -0,0 +1,79 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: rjack-commons-codec
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.4.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 Codec}[http://commons.apache.org/codec/]
|
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-codec/base.rb
|
47
|
+
- lib/rjack-commons-codec.rb
|
48
|
+
- lib/rjack-commons-codec/commons-codec-1.4.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 Codec}[http://commons.apache.org/codec/]
|
78
|
+
test_files: []
|
79
|
+
|