iudex 1.0.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 +2 -0
- data/Manifest.txt +6 -0
- data/README.rdoc +26 -0
- data/Rakefile +29 -0
- data/lib/iudex.rb +20 -0
- data/lib/iudex/base.rb +19 -0
- metadata +88 -0
data/History.rdoc
ADDED
data/Manifest.txt
ADDED
data/README.rdoc
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
= iudex
|
|
2
|
+
|
|
3
|
+
* http://github.com/dekellum/iudex
|
|
4
|
+
|
|
5
|
+
== Description
|
|
6
|
+
|
|
7
|
+
Iudex provides general purpose and extendable web feed aggregation and
|
|
8
|
+
web crawling facilities.
|
|
9
|
+
|
|
10
|
+
See the documentation included in the www/ directory.
|
|
11
|
+
|
|
12
|
+
== License
|
|
13
|
+
|
|
14
|
+
Copyright (c) 2008-2010 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.
|
data/Rakefile
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# -*- ruby -*-
|
|
2
|
+
|
|
3
|
+
$LOAD_PATH << './lib'
|
|
4
|
+
require 'iudex/base'
|
|
5
|
+
|
|
6
|
+
require 'rubygems'
|
|
7
|
+
gem 'rjack-tarpit', '~> 1.2'
|
|
8
|
+
require 'rjack-tarpit'
|
|
9
|
+
|
|
10
|
+
t = RJack::TarPit.new( 'iudex', Iudex::VERSION, :java_platform )
|
|
11
|
+
|
|
12
|
+
t.specify do |h|
|
|
13
|
+
h.developer( "David Kellum", "dek-oss@gravitext.com" )
|
|
14
|
+
|
|
15
|
+
h.rubyforge_name = "iudex"
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
task :chk_hist_vers do
|
|
19
|
+
t.test_line_match( 'History.rdoc', /^==/, / #{t.version} / )
|
|
20
|
+
end
|
|
21
|
+
task :chk_hist_date do
|
|
22
|
+
t.test_line_match( 'History.rdoc', /^==/, /\([0-9\-]+\)$/ )
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
task :gem => [ :chk_hist_vers, ]
|
|
26
|
+
task :tag => [ :chk_hist_vers, :chk_hist_date ]
|
|
27
|
+
task :push => [ :chk_hist_date ]
|
|
28
|
+
|
|
29
|
+
t.define_tasks
|
data/lib/iudex.rb
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
#--
|
|
2
|
+
# Copyright (c) 2008-2010 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 'iudex/base'
|
|
18
|
+
|
|
19
|
+
module Iudex
|
|
20
|
+
end
|
data/lib/iudex/base.rb
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
#--
|
|
2
|
+
# Copyright (c) 2008-2010 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 Iudex
|
|
18
|
+
VERSION = '1.0.0'
|
|
19
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: iudex
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
prerelease: false
|
|
5
|
+
segments:
|
|
6
|
+
- 1
|
|
7
|
+
- 0
|
|
8
|
+
- 0
|
|
9
|
+
version: 1.0.0
|
|
10
|
+
platform: java
|
|
11
|
+
authors:
|
|
12
|
+
- David Kellum
|
|
13
|
+
autorequire:
|
|
14
|
+
bindir: bin
|
|
15
|
+
cert_chain: []
|
|
16
|
+
|
|
17
|
+
date: 2010-07-25 00:00:00 -07:00
|
|
18
|
+
default_executable:
|
|
19
|
+
dependencies:
|
|
20
|
+
- !ruby/object:Gem::Dependency
|
|
21
|
+
name: rjack-tarpit
|
|
22
|
+
prerelease: false
|
|
23
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
|
24
|
+
requirements:
|
|
25
|
+
- - ~>
|
|
26
|
+
- !ruby/object:Gem::Version
|
|
27
|
+
segments:
|
|
28
|
+
- 1
|
|
29
|
+
- 2
|
|
30
|
+
- 2
|
|
31
|
+
version: 1.2.2
|
|
32
|
+
type: :development
|
|
33
|
+
version_requirements: *id001
|
|
34
|
+
description: |-
|
|
35
|
+
Iudex provides general purpose and extendable web feed aggregation and
|
|
36
|
+
web crawling facilities.
|
|
37
|
+
|
|
38
|
+
See the documentation included in the www/ directory.
|
|
39
|
+
email:
|
|
40
|
+
- dek-oss@gravitext.com
|
|
41
|
+
executables: []
|
|
42
|
+
|
|
43
|
+
extensions: []
|
|
44
|
+
|
|
45
|
+
extra_rdoc_files:
|
|
46
|
+
- Manifest.txt
|
|
47
|
+
- History.rdoc
|
|
48
|
+
- README.rdoc
|
|
49
|
+
files:
|
|
50
|
+
- History.rdoc
|
|
51
|
+
- Manifest.txt
|
|
52
|
+
- README.rdoc
|
|
53
|
+
- Rakefile
|
|
54
|
+
- lib/iudex/base.rb
|
|
55
|
+
- lib/iudex.rb
|
|
56
|
+
has_rdoc: true
|
|
57
|
+
homepage: http://github.com/dekellum/iudex
|
|
58
|
+
licenses: []
|
|
59
|
+
|
|
60
|
+
post_install_message:
|
|
61
|
+
rdoc_options:
|
|
62
|
+
- --main
|
|
63
|
+
- README.rdoc
|
|
64
|
+
require_paths:
|
|
65
|
+
- lib
|
|
66
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
67
|
+
requirements:
|
|
68
|
+
- - ">="
|
|
69
|
+
- !ruby/object:Gem::Version
|
|
70
|
+
segments:
|
|
71
|
+
- 0
|
|
72
|
+
version: "0"
|
|
73
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
74
|
+
requirements:
|
|
75
|
+
- - ">="
|
|
76
|
+
- !ruby/object:Gem::Version
|
|
77
|
+
segments:
|
|
78
|
+
- 0
|
|
79
|
+
version: "0"
|
|
80
|
+
requirements: []
|
|
81
|
+
|
|
82
|
+
rubyforge_project: iudex
|
|
83
|
+
rubygems_version: 1.3.6
|
|
84
|
+
signing_key:
|
|
85
|
+
specification_version: 3
|
|
86
|
+
summary: Iudex provides general purpose and extendable web feed aggregation and web crawling facilities
|
|
87
|
+
test_files: []
|
|
88
|
+
|