rjack-xerces 2.9.1.0-java → 2.11.0.0-java
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/History.rdoc +3 -0
- data/Manifest.txt +2 -1
- data/NOTICE.txt +1 -1
- data/README.rdoc +3 -2
- data/Rakefile +5 -34
- data/assembly.xml +1 -0
- data/lib/rjack-xerces.rb +1 -1
- data/lib/rjack-xerces/base.rb +2 -2
- data/lib/rjack-xerces/xercesImpl-2.11.0.jar +0 -0
- data/pom.xml +10 -4
- data/test/test_xerces.rb +37 -0
- metadata +77 -81
- data/lib/rjack-xerces/xercesImpl-2.9.1.jar +0 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: c5da46244c4429af5cbd4cd456cc6b058bf0d78f
|
4
|
+
data.tar.gz: ad06622727bcf074fdba1e7d3191f92781ec3566
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 3d115e900e6c247b2ec547fc88cab6caee168fc040b2ccac43abf31e10d1da4eee0613cf0e9aa1413ca59143e977b92522f1a00acec9fa61fd0244afe3efddd7
|
7
|
+
data.tar.gz: 81b71518c1a804e50f2b8fb7f368c8b7301c0bd81856217dd2b69283ab1b3ad58cb061c1131a555c7f54cfd3959bd4a3ef72e8c5bd027c50bb516f9810203f6d
|
data/History.rdoc
CHANGED
data/Manifest.txt
CHANGED
data/NOTICE.txt
CHANGED
data/README.rdoc
CHANGED
@@ -1,7 +1,8 @@
|
|
1
1
|
= rjack-xerces
|
2
2
|
|
3
|
+
* http://rjack.rubyforge.org/xerces
|
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 {Xerces2 Java}[http://xerces.apache.org/xerces2-j/]
|
|
11
12
|
|
12
13
|
=== rjack-xerces gem
|
13
14
|
|
14
|
-
Copyright (c) 2010 David Kellum
|
15
|
+
Copyright (c) 2010-2013 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
@@ -1,42 +1,13 @@
|
|
1
1
|
# -*- ruby -*-
|
2
2
|
|
3
|
-
$LOAD_PATH << './lib'
|
4
|
-
require 'rjack-xerces/base'
|
5
|
-
|
6
3
|
require 'rubygems'
|
7
|
-
|
4
|
+
require 'bundler/setup'
|
8
5
|
require 'rjack-tarpit'
|
9
6
|
|
10
|
-
|
11
|
-
|
12
|
-
t = TarPit.new( 'rjack-xerces', Xerces::VERSION, :java_platform )
|
13
|
-
|
14
|
-
t.specify do |h|
|
15
|
-
h.developer( "David Kellum", "dek-oss@gravitext.com" )
|
16
|
-
h.rubyforge_name = "rjack"
|
17
|
-
h.remote_rdoc_dir = "xerces"
|
18
|
-
end
|
19
|
-
|
20
|
-
t.jars = [ "xercesImpl-#{ Xerces::XERCES_VERSION }.jar" ]
|
21
|
-
|
22
|
-
t.assembly_version = 1.0
|
7
|
+
RJack::TarPit.new( 'rjack-xerces' ) do |tp|
|
23
8
|
|
24
|
-
|
9
|
+
tp.rdoc_destinations <<
|
10
|
+
'dekellum@rubyforge.org:/var/www/gforge-projects/rjack/xerces'
|
11
|
+
tp.publish_rdoc_rsync_flags = %w[ -rL ]
|
25
12
|
|
26
|
-
task :check_pom_deps do
|
27
|
-
t.test_line_match( 'pom.xml',
|
28
|
-
%r[<version>#{ Xerces::XERCES_VERSION }</version>] )
|
29
13
|
end
|
30
|
-
|
31
|
-
task :check_history_version do
|
32
|
-
t.test_line_match( 'History.rdoc', /^==/, / #{t.version} / )
|
33
|
-
end
|
34
|
-
task :check_history_date do
|
35
|
-
t.test_line_match( 'History.rdoc', /^==/, /\([0-9\-]+\)$/ )
|
36
|
-
end
|
37
|
-
|
38
|
-
task :gem => [ :check_pom_deps, :check_history_version ]
|
39
|
-
task :tag => [ :check_pom_deps, :check_history_version, :check_history_date ]
|
40
|
-
task :push => [ :check_history_date ]
|
41
|
-
|
42
|
-
t.define_tasks
|
data/assembly.xml
CHANGED
data/lib/rjack-xerces.rb
CHANGED
data/lib/rjack-xerces/base.rb
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
#--
|
2
|
-
# Copyright (c) 2010 David Kellum
|
2
|
+
# Copyright (c) 2010-2013 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 Xerces
|
19
19
|
|
20
20
|
# xerces (java) version
|
21
|
-
XERCES_VERSION = '2.
|
21
|
+
XERCES_VERSION = '2.11.0'
|
22
22
|
|
23
23
|
# rjack gem version
|
24
24
|
VERSION = XERCES_VERSION + '.0'
|
Binary file
|
data/pom.xml
CHANGED
@@ -5,13 +5,17 @@
|
|
5
5
|
<artifactId>rjack-xerces</artifactId>
|
6
6
|
<packaging>pom</packaging>
|
7
7
|
<version>1.0</version>
|
8
|
-
<name>
|
8
|
+
<name>Xerces 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>xerces</groupId>
|
13
17
|
<artifactId>xercesImpl</artifactId>
|
14
|
-
<version>2.
|
18
|
+
<version>2.11.0</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>
|
data/test/test_xerces.rb
ADDED
@@ -0,0 +1,37 @@
|
|
1
|
+
#!/usr/bin/env jruby
|
2
|
+
#.hashdot.profile += jruby-shortlived
|
3
|
+
|
4
|
+
#--
|
5
|
+
# Copyright (c) 2010-2013 David Kellum
|
6
|
+
#
|
7
|
+
# Licensed under the Apache License, Version 2.0 (the "License"); you
|
8
|
+
# may not use this file except in compliance with the License. You may
|
9
|
+
# obtain a copy of the License at
|
10
|
+
#
|
11
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
12
|
+
#
|
13
|
+
# Unless required by applicable law or agreed to in writing, software
|
14
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
15
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
16
|
+
# implied. See the License for the specific language governing
|
17
|
+
# permissions and limitations under the License.
|
18
|
+
#++
|
19
|
+
|
20
|
+
require 'rubygems'
|
21
|
+
require 'bundler/setup'
|
22
|
+
|
23
|
+
require 'minitest/unit'
|
24
|
+
require 'minitest/autorun'
|
25
|
+
|
26
|
+
require 'rjack-xerces'
|
27
|
+
require 'java'
|
28
|
+
|
29
|
+
class TestXerces < MiniTest::Unit::TestCase
|
30
|
+
|
31
|
+
import 'org.apache.xerces.impl.Version'
|
32
|
+
|
33
|
+
def test_load
|
34
|
+
pass
|
35
|
+
end
|
36
|
+
|
37
|
+
end
|
metadata
CHANGED
@@ -1,90 +1,86 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: rjack-xerces
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
segments:
|
6
|
-
- 2
|
7
|
-
- 9
|
8
|
-
- 1
|
9
|
-
- 0
|
10
|
-
version: 2.9.1.0
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 2.11.0.0
|
11
5
|
platform: java
|
12
|
-
authors:
|
13
|
-
|
14
|
-
autorequire:
|
6
|
+
authors:
|
7
|
+
- David Kellum
|
8
|
+
autorequire:
|
15
9
|
bindir: bin
|
16
10
|
cert_chain: []
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
11
|
+
date: 2013-10-11 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: minitest
|
15
|
+
version_requirements: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ~>
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 4.7.4
|
20
|
+
requirement: !ruby/object:Gem::Requirement
|
21
|
+
requirements:
|
22
|
+
- - ~>
|
23
|
+
- !ruby/object:Gem::Version
|
24
|
+
version: 4.7.4
|
25
|
+
prerelease: false
|
26
|
+
type: :development
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rjack-tarpit
|
29
|
+
version_requirements: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ~>
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '2.0'
|
34
|
+
requirement: !ruby/object:Gem::Requirement
|
35
|
+
requirements:
|
36
|
+
- - ~>
|
37
|
+
- !ruby/object:Gem::Version
|
38
|
+
version: '2.0'
|
39
|
+
prerelease: false
|
40
|
+
type: :development
|
41
|
+
description:
|
42
|
+
email:
|
43
|
+
- dek-oss@gravitext.com
|
38
44
|
executables: []
|
39
|
-
|
40
45
|
extensions: []
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
- lib/rjack-xerces/xercesImpl-2.9.1.jar
|
58
|
-
has_rdoc: true
|
59
|
-
homepage: http://rjack.rubyforge.org
|
46
|
+
extra_rdoc_files:
|
47
|
+
- History.rdoc
|
48
|
+
- README.rdoc
|
49
|
+
files:
|
50
|
+
- History.rdoc
|
51
|
+
- Manifest.txt
|
52
|
+
- NOTICE.txt
|
53
|
+
- README.rdoc
|
54
|
+
- Rakefile
|
55
|
+
- assembly.xml
|
56
|
+
- pom.xml
|
57
|
+
- lib/rjack-xerces/base.rb
|
58
|
+
- lib/rjack-xerces.rb
|
59
|
+
- test/test_xerces.rb
|
60
|
+
- lib/rjack-xerces/xercesImpl-2.11.0.jar
|
61
|
+
homepage: http://rjack.rubyforge.org/xerces
|
60
62
|
licenses: []
|
61
|
-
|
62
|
-
post_install_message:
|
63
|
-
rdoc_options:
|
64
|
-
|
65
|
-
|
66
|
-
require_paths:
|
67
|
-
|
68
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
69
|
-
requirements:
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
- !ruby/object:Gem::Version
|
79
|
-
segments:
|
80
|
-
- 0
|
81
|
-
version: "0"
|
63
|
+
metadata: {}
|
64
|
+
post_install_message:
|
65
|
+
rdoc_options:
|
66
|
+
- --main
|
67
|
+
- README.rdoc
|
68
|
+
require_paths:
|
69
|
+
- lib
|
70
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
71
|
+
requirements:
|
72
|
+
- - '>='
|
73
|
+
- !ruby/object:Gem::Version
|
74
|
+
version: '0'
|
75
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
76
|
+
requirements:
|
77
|
+
- - '>='
|
78
|
+
- !ruby/object:Gem::Version
|
79
|
+
version: '0'
|
82
80
|
requirements: []
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
summary: A gem packaging of {Xerces2 Java}[http://xerces.apache.org/xerces2-j/]
|
81
|
+
rubyforge_project:
|
82
|
+
rubygems_version: 2.1.5
|
83
|
+
signing_key:
|
84
|
+
specification_version: 4
|
85
|
+
summary: A gem packaging of Xerces2 Java
|
89
86
|
test_files: []
|
90
|
-
|
Binary file
|