rjack-nekohtml 1.9.14.0-java → 1.9.15.0-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 +4 -1
- data/Manifest.txt +1 -1
- data/NOTICE.txt +1 -1
- data/README.rdoc +3 -2
- data/Rakefile +2 -3
- data/assembly.xml +1 -0
- data/lib/rjack-nekohtml/base.rb +2 -2
- data/lib/rjack-nekohtml/nekohtml-1.9.15.jar +0 -0
- data/lib/rjack-nekohtml.rb +1 -1
- data/pom.xml +9 -3
- data/test/test_nekohtml.rb +1 -1
- metadata +13 -27
- data/lib/rjack-nekohtml/nekohtml-1.9.14.jar +0 -0
data/History.rdoc
CHANGED
data/Manifest.txt
CHANGED
data/NOTICE.txt
CHANGED
data/README.rdoc
CHANGED
@@ -1,7 +1,8 @@
|
|
1
1
|
= rjack-nekohtml
|
2
2
|
|
3
|
+
* http://rjack.rubyforge.org/nekohtml
|
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 the {CyberNeko HTML Parser}[http://nekohtml.sourceforge.net/]
|
|
11
12
|
|
12
13
|
=== rjack-nekohtml gem
|
13
14
|
|
14
|
-
Copyright (c) 2010 David Kellum
|
15
|
+
Copyright (c) 2010-2011 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
@@ -4,7 +4,7 @@ $LOAD_PATH << './lib'
|
|
4
4
|
require 'rjack-nekohtml/base'
|
5
5
|
|
6
6
|
require 'rubygems'
|
7
|
-
gem 'rjack-tarpit', '~> 1.
|
7
|
+
gem 'rjack-tarpit', '~> 1.3.0'
|
8
8
|
require 'rjack-tarpit'
|
9
9
|
|
10
10
|
include RJack
|
@@ -14,8 +14,7 @@ t = TarPit.new( 'rjack-nekohtml', NekoHTML::VERSION, :java_platform )
|
|
14
14
|
t.specify do |h|
|
15
15
|
h.developer( "David Kellum", "dek-oss@gravitext.com" )
|
16
16
|
h.extra_deps << [ 'rjack-xerces', '~> 2.9.1' ]
|
17
|
-
h.
|
18
|
-
h.remote_rdoc_dir = "nekohtml"
|
17
|
+
h.rdoc_locations << "dekellum@rubyforge.org:/var/www/gforge-projects/rjack/nekohtml"
|
19
18
|
end
|
20
19
|
|
21
20
|
t.jars = [ "nekohtml-#{ NekoHTML::NEKOHTML_VERSION }.jar" ]
|
data/assembly.xml
CHANGED
data/lib/rjack-nekohtml/base.rb
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
#--
|
2
|
-
# Copyright (c) 2010 David Kellum
|
2
|
+
# Copyright (c) 2010-2011 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 NekoHTML
|
19
19
|
|
20
20
|
# Upstream java version
|
21
|
-
NEKOHTML_VERSION = '1.9.
|
21
|
+
NEKOHTML_VERSION = '1.9.15'
|
22
22
|
|
23
23
|
# rjack gem version
|
24
24
|
VERSION = NEKOHTML_VERSION + '.0'
|
Binary file
|
data/lib/rjack-nekohtml.rb
CHANGED
data/pom.xml
CHANGED
@@ -6,11 +6,15 @@
|
|
6
6
|
<packaging>pom</packaging>
|
7
7
|
<version>1.0</version>
|
8
8
|
|
9
|
+
<properties>
|
10
|
+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
11
|
+
</properties>
|
12
|
+
|
9
13
|
<dependencies>
|
10
14
|
<dependency>
|
11
15
|
<groupId>net.sourceforge.nekohtml</groupId>
|
12
16
|
<artifactId>nekohtml</artifactId>
|
13
|
-
<version>1.9.
|
17
|
+
<version>1.9.15</version>
|
14
18
|
</dependency>
|
15
19
|
</dependencies>
|
16
20
|
|
@@ -18,18 +22,20 @@
|
|
18
22
|
<plugins>
|
19
23
|
<plugin>
|
20
24
|
<artifactId>maven-assembly-plugin</artifactId>
|
25
|
+
<version>2.2.1</version>
|
21
26
|
<configuration>
|
27
|
+
<attach>false</attach>
|
28
|
+
<ignoreDirFormatExtensions>false</ignoreDirFormatExtensions>
|
22
29
|
<descriptors>
|
23
30
|
<descriptor>assembly.xml</descriptor>
|
24
31
|
</descriptors>
|
25
|
-
<tarLongFileMode>gnu</tarLongFileMode>
|
26
32
|
</configuration>
|
27
33
|
<executions>
|
28
34
|
<execution>
|
29
35
|
<id>assembly</id>
|
30
36
|
<phase>package</phase>
|
31
37
|
<goals>
|
32
|
-
<goal>
|
38
|
+
<goal>single</goal>
|
33
39
|
</goals>
|
34
40
|
</execution>
|
35
41
|
</executions>
|
data/test/test_nekohtml.rb
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
#.hashdot.profile += jruby-shortlived
|
3
3
|
|
4
4
|
#--
|
5
|
-
# Copyright (c) 2010 David Kellum
|
5
|
+
# Copyright (c) 2010-2011 David Kellum
|
6
6
|
#
|
7
7
|
# Licensed under the Apache License, Version 2.0 (the "License"); you
|
8
8
|
# may not use this file except in compliance with the License. You may
|
metadata
CHANGED
@@ -1,13 +1,8 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rjack-nekohtml
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
prerelease:
|
5
|
-
|
6
|
-
- 1
|
7
|
-
- 9
|
8
|
-
- 14
|
9
|
-
- 0
|
10
|
-
version: 1.9.14.0
|
4
|
+
prerelease:
|
5
|
+
version: 1.9.15.0
|
11
6
|
platform: java
|
12
7
|
authors:
|
13
8
|
- David Kellum
|
@@ -15,20 +10,16 @@ autorequire:
|
|
15
10
|
bindir: bin
|
16
11
|
cert_chain: []
|
17
12
|
|
18
|
-
date:
|
19
|
-
default_executable:
|
13
|
+
date: 2011-09-16 00:00:00 Z
|
20
14
|
dependencies:
|
21
15
|
- !ruby/object:Gem::Dependency
|
22
16
|
name: rjack-xerces
|
23
17
|
prerelease: false
|
24
18
|
requirement: &id001 !ruby/object:Gem::Requirement
|
19
|
+
none: false
|
25
20
|
requirements:
|
26
21
|
- - ~>
|
27
22
|
- !ruby/object:Gem::Version
|
28
|
-
segments:
|
29
|
-
- 2
|
30
|
-
- 9
|
31
|
-
- 1
|
32
23
|
version: 2.9.1
|
33
24
|
type: :runtime
|
34
25
|
version_requirements: *id001
|
@@ -36,14 +27,11 @@ dependencies:
|
|
36
27
|
name: rjack-tarpit
|
37
28
|
prerelease: false
|
38
29
|
requirement: &id002 !ruby/object:Gem::Requirement
|
30
|
+
none: false
|
39
31
|
requirements:
|
40
32
|
- - ~>
|
41
33
|
- !ruby/object:Gem::Version
|
42
|
-
|
43
|
-
- 1
|
44
|
-
- 2
|
45
|
-
- 2
|
46
|
-
version: 1.2.2
|
34
|
+
version: 1.3.3
|
47
35
|
type: :development
|
48
36
|
version_requirements: *id002
|
49
37
|
description: A gem packaging of the {CyberNeko HTML Parser}[http://nekohtml.sourceforge.net/]
|
@@ -68,9 +56,9 @@ files:
|
|
68
56
|
- pom.xml
|
69
57
|
- lib/rjack-nekohtml/base.rb
|
70
58
|
- lib/rjack-nekohtml.rb
|
71
|
-
- lib/rjack-nekohtml/nekohtml-1.9.
|
72
|
-
|
73
|
-
homepage: http://rjack.rubyforge.org
|
59
|
+
- lib/rjack-nekohtml/nekohtml-1.9.15.jar
|
60
|
+
- test/test_nekohtml.rb
|
61
|
+
homepage: http://rjack.rubyforge.org/nekohtml
|
74
62
|
licenses: []
|
75
63
|
|
76
64
|
post_install_message:
|
@@ -80,23 +68,21 @@ rdoc_options:
|
|
80
68
|
require_paths:
|
81
69
|
- lib
|
82
70
|
required_ruby_version: !ruby/object:Gem::Requirement
|
71
|
+
none: false
|
83
72
|
requirements:
|
84
73
|
- - ">="
|
85
74
|
- !ruby/object:Gem::Version
|
86
|
-
segments:
|
87
|
-
- 0
|
88
75
|
version: "0"
|
89
76
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
77
|
+
none: false
|
90
78
|
requirements:
|
91
79
|
- - ">="
|
92
80
|
- !ruby/object:Gem::Version
|
93
|
-
segments:
|
94
|
-
- 0
|
95
81
|
version: "0"
|
96
82
|
requirements: []
|
97
83
|
|
98
|
-
rubyforge_project: rjack
|
99
|
-
rubygems_version: 1.
|
84
|
+
rubyforge_project: rjack-nekohtml
|
85
|
+
rubygems_version: 1.8.10
|
100
86
|
signing_key:
|
101
87
|
specification_version: 3
|
102
88
|
summary: A gem packaging of the {CyberNeko HTML Parser}[http://nekohtml.sourceforge.net/]
|
Binary file
|