iudex-barc 1.1.0-java → 1.2.b.0-java
Sign up to get free protection for your applications and to get access to all the features.
- data/History.rdoc +4 -0
- data/Manifest.txt +1 -1
- data/README.rdoc +1 -1
- data/Rakefile +2 -35
- data/bin/iudex-barc +1 -1
- data/bin/iudex-http-record +1 -1
- data/lib/iudex-barc.rb +1 -1
- data/lib/iudex-barc/base.rb +2 -2
- data/lib/iudex-barc/{iudex-barc-1.1.0.jar → iudex-barc-1.2.b.0.jar} +0 -0
- data/pom.xml +3 -3
- metadata +31 -32
data/History.rdoc
CHANGED
data/Manifest.txt
CHANGED
data/README.rdoc
CHANGED
data/Rakefile
CHANGED
@@ -1,40 +1,7 @@
|
|
1
1
|
# -*- ruby -*-
|
2
2
|
|
3
|
-
$LOAD_PATH << './lib'
|
4
|
-
require 'iudex-barc/base'
|
5
|
-
|
6
3
|
require 'rubygems'
|
7
|
-
|
4
|
+
require 'bundler/setup'
|
8
5
|
require 'rjack-tarpit'
|
9
6
|
|
10
|
-
|
11
|
-
Iudex::BARC::VERSION,
|
12
|
-
:no_assembly, :java_platform )
|
13
|
-
|
14
|
-
t.specify do |h|
|
15
|
-
h.developer( "David Kellum", "dek-oss@gravitext.com" )
|
16
|
-
h.extra_deps += [ [ 'rjack-slf4j', '~> 1.6.1' ],
|
17
|
-
[ 'gravitext-util', '~> 1.5.1' ],
|
18
|
-
[ 'iudex-http', '~> 1.1.0' ] ]
|
19
|
-
|
20
|
-
h.testlib = :minitest
|
21
|
-
h.extra_dev_deps << [ 'minitest', '~> 2.3' ]
|
22
|
-
end
|
23
|
-
|
24
|
-
file 'Manifest.txt' => "lib/#{t.name}/base.rb"
|
25
|
-
|
26
|
-
task :check_pom_version do
|
27
|
-
t.test_line_match( 'pom.xml', /<version>/, /#{t.version}/ )
|
28
|
-
end
|
29
|
-
task :check_history_version do
|
30
|
-
t.test_line_match( 'History.rdoc', /^==/, / #{t.version} / )
|
31
|
-
end
|
32
|
-
task :check_history_date do
|
33
|
-
t.test_line_match( 'History.rdoc', /^==/, /\([0-9\-]+\)$/ )
|
34
|
-
end
|
35
|
-
|
36
|
-
task :gem => [ :check_pom_version, :check_history_version ]
|
37
|
-
task :tag => [ :check_pom_version, :check_history_version, :check_history_date ]
|
38
|
-
task :push => [ :check_history_date ]
|
39
|
-
|
40
|
-
t.define_tasks
|
7
|
+
RJack::TarPit.new( 'iudex-barc' ).define_tasks
|
data/bin/iudex-barc
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
#!/usr/bin/env jruby
|
2
2
|
# -*- ruby -*-
|
3
3
|
#--
|
4
|
-
# Copyright (c) 2008-
|
4
|
+
# Copyright (c) 2008-2012 David Kellum
|
5
5
|
#
|
6
6
|
# Licensed under the Apache License, Version 2.0 (the "License"); you
|
7
7
|
# may not use this file except in compliance with the License. You
|
data/bin/iudex-http-record
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
#!/usr/bin/env jruby
|
2
2
|
# -*- ruby -*-
|
3
3
|
#--
|
4
|
-
# Copyright (c) 2008-
|
4
|
+
# Copyright (c) 2008-2012 David Kellum
|
5
5
|
#
|
6
6
|
# Licensed under the Apache License, Version 2.0 (the "License"); you
|
7
7
|
# may not use this file except in compliance with the License. You
|
data/lib/iudex-barc.rb
CHANGED
data/lib/iudex-barc/base.rb
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
#--
|
2
|
-
# Copyright (c) 2008-
|
2
|
+
# Copyright (c) 2008-2012 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
|
@@ -16,7 +16,7 @@
|
|
16
16
|
|
17
17
|
module Iudex
|
18
18
|
module BARC
|
19
|
-
VERSION = '1.
|
19
|
+
VERSION = '1.2.b.0'
|
20
20
|
|
21
21
|
LIB_DIR = File.dirname( __FILE__ ) # :nodoc:
|
22
22
|
end
|
Binary file
|
data/pom.xml
CHANGED
@@ -5,13 +5,13 @@
|
|
5
5
|
<groupId>iudex</groupId>
|
6
6
|
<artifactId>iudex-barc</artifactId>
|
7
7
|
<packaging>jar</packaging>
|
8
|
-
<version>1.
|
8
|
+
<version>1.2.b.0</version>
|
9
9
|
<name>Iudex Basic ARChive Format</name>
|
10
10
|
|
11
11
|
<parent>
|
12
12
|
<groupId>iudex</groupId>
|
13
13
|
<artifactId>iudex-parent</artifactId>
|
14
|
-
<version>1.
|
14
|
+
<version>1.2.b.0</version>
|
15
15
|
<relativePath>..</relativePath>
|
16
16
|
</parent>
|
17
17
|
|
@@ -30,7 +30,7 @@
|
|
30
30
|
<dependency>
|
31
31
|
<groupId>iudex</groupId>
|
32
32
|
<artifactId>iudex-http</artifactId>
|
33
|
-
<version>[1.
|
33
|
+
<version>[1.2,1.2.9999)</version>
|
34
34
|
</dependency>
|
35
35
|
|
36
36
|
<dependency>
|
metadata
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: iudex-barc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
prerelease:
|
5
|
-
version: 1.
|
4
|
+
prerelease: 4
|
5
|
+
version: 1.2.b.0
|
6
6
|
platform: java
|
7
7
|
authors:
|
8
8
|
- David Kellum
|
@@ -10,67 +10,64 @@ autorequire:
|
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
12
|
|
13
|
-
date:
|
13
|
+
date: 2012-03-05 00:00:00 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: rjack-slf4j
|
17
|
-
|
18
|
-
requirement: &id001 !ruby/object:Gem::Requirement
|
17
|
+
version_requirements: &id001 !ruby/object:Gem::Requirement
|
19
18
|
none: false
|
20
19
|
requirements:
|
21
20
|
- - ~>
|
22
21
|
- !ruby/object:Gem::Version
|
23
22
|
version: 1.6.1
|
23
|
+
requirement: *id001
|
24
|
+
prerelease: false
|
24
25
|
type: :runtime
|
25
|
-
version_requirements: *id001
|
26
26
|
- !ruby/object:Gem::Dependency
|
27
27
|
name: gravitext-util
|
28
|
-
|
29
|
-
requirement: &id002 !ruby/object:Gem::Requirement
|
28
|
+
version_requirements: &id002 !ruby/object:Gem::Requirement
|
30
29
|
none: false
|
31
30
|
requirements:
|
32
31
|
- - ~>
|
33
32
|
- !ruby/object:Gem::Version
|
34
|
-
version: 1.
|
33
|
+
version: 1.6.b
|
34
|
+
requirement: *id002
|
35
|
+
prerelease: false
|
35
36
|
type: :runtime
|
36
|
-
version_requirements: *id002
|
37
37
|
- !ruby/object:Gem::Dependency
|
38
38
|
name: iudex-http
|
39
|
-
|
40
|
-
requirement: &id003 !ruby/object:Gem::Requirement
|
39
|
+
version_requirements: &id003 !ruby/object:Gem::Requirement
|
41
40
|
none: false
|
42
41
|
requirements:
|
43
42
|
- - ~>
|
44
43
|
- !ruby/object:Gem::Version
|
45
|
-
version: 1.
|
44
|
+
version: 1.2.b
|
45
|
+
requirement: *id003
|
46
|
+
prerelease: false
|
46
47
|
type: :runtime
|
47
|
-
version_requirements: *id003
|
48
48
|
- !ruby/object:Gem::Dependency
|
49
49
|
name: minitest
|
50
|
-
|
51
|
-
requirement: &id004 !ruby/object:Gem::Requirement
|
50
|
+
version_requirements: &id004 !ruby/object:Gem::Requirement
|
52
51
|
none: false
|
53
52
|
requirements:
|
54
53
|
- - ~>
|
55
54
|
- !ruby/object:Gem::Version
|
56
55
|
version: "2.3"
|
56
|
+
requirement: *id004
|
57
|
+
prerelease: false
|
57
58
|
type: :development
|
58
|
-
version_requirements: *id004
|
59
59
|
- !ruby/object:Gem::Dependency
|
60
60
|
name: rjack-tarpit
|
61
|
-
|
62
|
-
requirement: &id005 !ruby/object:Gem::Requirement
|
61
|
+
version_requirements: &id005 !ruby/object:Gem::Requirement
|
63
62
|
none: false
|
64
63
|
requirements:
|
65
64
|
- - ~>
|
66
65
|
- !ruby/object:Gem::Version
|
67
|
-
version:
|
66
|
+
version: "2.0"
|
67
|
+
requirement: *id005
|
68
|
+
prerelease: false
|
68
69
|
type: :development
|
69
|
-
|
70
|
-
description: |-
|
71
|
-
Iudex is a general purpose web crawler and feed processor in
|
72
|
-
ruby/java. The iudex-barc gem contains support for the BARC Basic
|
73
|
-
ARChive format.
|
70
|
+
description: Iudex is a general purpose web crawler and feed processor in ruby/java. The iudex-barc gem contains support for the BARC Basic ARChive format.
|
74
71
|
email:
|
75
72
|
- dek-oss@gravitext.com
|
76
73
|
executables:
|
@@ -79,7 +76,6 @@ executables:
|
|
79
76
|
extensions: []
|
80
77
|
|
81
78
|
extra_rdoc_files:
|
82
|
-
- Manifest.txt
|
83
79
|
- History.rdoc
|
84
80
|
- README.rdoc
|
85
81
|
files:
|
@@ -92,7 +88,7 @@ files:
|
|
92
88
|
- bin/iudex-http-record
|
93
89
|
- lib/iudex-barc/base.rb
|
94
90
|
- lib/iudex-barc.rb
|
95
|
-
- lib/iudex-barc/iudex-barc-1.
|
91
|
+
- lib/iudex-barc/iudex-barc-1.2.b.0.jar
|
96
92
|
homepage: http://github.com/dekellum/iudex
|
97
93
|
licenses: []
|
98
94
|
|
@@ -107,19 +103,22 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
107
103
|
requirements:
|
108
104
|
- - ">="
|
109
105
|
- !ruby/object:Gem::Version
|
106
|
+
hash: 2
|
107
|
+
segments:
|
108
|
+
- 0
|
110
109
|
version: "0"
|
111
110
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
112
111
|
none: false
|
113
112
|
requirements:
|
114
|
-
- - "
|
113
|
+
- - ">"
|
115
114
|
- !ruby/object:Gem::Version
|
116
|
-
version:
|
115
|
+
version: 1.3.1
|
117
116
|
requirements: []
|
118
117
|
|
119
|
-
rubyforge_project:
|
120
|
-
rubygems_version: 1.8.
|
118
|
+
rubyforge_project:
|
119
|
+
rubygems_version: 1.8.15
|
121
120
|
signing_key:
|
122
121
|
specification_version: 3
|
123
|
-
summary: Iudex is a general purpose web crawler and feed processor in ruby/java
|
122
|
+
summary: Iudex is a general purpose web crawler and feed processor in ruby/java.
|
124
123
|
test_files: []
|
125
124
|
|