iudex 1.0.0-java → 1.1.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 CHANGED
@@ -1,2 +1,5 @@
1
+ === 1.1.0 (2011-11-13)
2
+ * Add dependencies for iudex-worker ~> 1.1.0 and optional httpclients.
3
+
1
4
  === 1.0.0 (2010-7-25)
2
5
  * Initial release.
data/README.rdoc CHANGED
@@ -11,7 +11,7 @@ See the documentation included in the www/ directory.
11
11
 
12
12
  == License
13
13
 
14
- Copyright (c) 2008-2010 David Kellum
14
+ Copyright (c) 2008-2011 David Kellum
15
15
 
16
16
  Licensed under the Apache License, Version 2.0 (the "License"); you
17
17
  may not use this file except in compliance with the License. You
data/Rakefile CHANGED
@@ -4,15 +4,17 @@ $LOAD_PATH << './lib'
4
4
  require 'iudex/base'
5
5
 
6
6
  require 'rubygems'
7
- gem 'rjack-tarpit', '~> 1.2'
7
+ gem 'rjack-tarpit', '~> 1.4'
8
8
  require 'rjack-tarpit'
9
9
 
10
10
  t = RJack::TarPit.new( 'iudex', Iudex::VERSION, :java_platform )
11
11
 
12
12
  t.specify do |h|
13
13
  h.developer( "David Kellum", "dek-oss@gravitext.com" )
14
-
15
- h.rubyforge_name = "iudex"
14
+ h.extra_deps += [ [ 'iudex-worker', '~> 1.1.0' ],
15
+ [ 'iudex-httpclient-3', '~> 1.1.0' ],
16
+ [ 'iudex-jetty-httpclient', '~> 1.1.0' ],
17
+ [ 'iudex-async-httpclient', '~> 1.1.0' ] ]
16
18
  end
17
19
 
18
20
  task :chk_hist_vers do
@@ -27,3 +29,5 @@ task :tag => [ :chk_hist_vers, :chk_hist_date ]
27
29
  task :push => [ :chk_hist_date ]
28
30
 
29
31
  t.define_tasks
32
+
33
+ task :test
data/lib/iudex.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2008-2010 David Kellum
2
+ # Copyright (c) 2008-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
data/lib/iudex/base.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2008-2010 David Kellum
2
+ # Copyright (c) 2008-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
@@ -15,5 +15,5 @@
15
15
  #++
16
16
 
17
17
  module Iudex
18
- VERSION = '1.0.0'
18
+ VERSION = '1.1.0'
19
19
  end
metadata CHANGED
@@ -1,12 +1,8 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: iudex
3
3
  version: !ruby/object:Gem::Version
4
- prerelease: false
5
- segments:
6
- - 1
7
- - 0
8
- - 0
9
- version: 1.0.0
4
+ prerelease:
5
+ version: 1.1.0
10
6
  platform: java
11
7
  authors:
12
8
  - David Kellum
@@ -14,23 +10,63 @@ autorequire:
14
10
  bindir: bin
15
11
  cert_chain: []
16
12
 
17
- date: 2010-07-25 00:00:00 -07:00
18
- default_executable:
13
+ date: 2011-11-13 00:00:00 Z
19
14
  dependencies:
20
15
  - !ruby/object:Gem::Dependency
21
- name: rjack-tarpit
16
+ name: iudex-worker
22
17
  prerelease: false
23
18
  requirement: &id001 !ruby/object:Gem::Requirement
19
+ none: false
24
20
  requirements:
25
21
  - - ~>
26
22
  - !ruby/object:Gem::Version
27
- segments:
28
- - 1
29
- - 2
30
- - 2
31
- version: 1.2.2
32
- type: :development
23
+ version: 1.1.0
24
+ type: :runtime
33
25
  version_requirements: *id001
26
+ - !ruby/object:Gem::Dependency
27
+ name: iudex-httpclient-3
28
+ prerelease: false
29
+ requirement: &id002 !ruby/object:Gem::Requirement
30
+ none: false
31
+ requirements:
32
+ - - ~>
33
+ - !ruby/object:Gem::Version
34
+ version: 1.1.0
35
+ type: :runtime
36
+ version_requirements: *id002
37
+ - !ruby/object:Gem::Dependency
38
+ name: iudex-jetty-httpclient
39
+ prerelease: false
40
+ requirement: &id003 !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ~>
44
+ - !ruby/object:Gem::Version
45
+ version: 1.1.0
46
+ type: :runtime
47
+ version_requirements: *id003
48
+ - !ruby/object:Gem::Dependency
49
+ name: iudex-async-httpclient
50
+ prerelease: false
51
+ requirement: &id004 !ruby/object:Gem::Requirement
52
+ none: false
53
+ requirements:
54
+ - - ~>
55
+ - !ruby/object:Gem::Version
56
+ version: 1.1.0
57
+ type: :runtime
58
+ version_requirements: *id004
59
+ - !ruby/object:Gem::Dependency
60
+ name: rjack-tarpit
61
+ prerelease: false
62
+ requirement: &id005 !ruby/object:Gem::Requirement
63
+ none: false
64
+ requirements:
65
+ - - ~>
66
+ - !ruby/object:Gem::Version
67
+ version: 1.4.0
68
+ type: :development
69
+ version_requirements: *id005
34
70
  description: |-
35
71
  Iudex provides general purpose and extendable web feed aggregation and
36
72
  web crawling facilities.
@@ -53,7 +89,6 @@ files:
53
89
  - Rakefile
54
90
  - lib/iudex/base.rb
55
91
  - lib/iudex.rb
56
- has_rdoc: true
57
92
  homepage: http://github.com/dekellum/iudex
58
93
  licenses: []
59
94
 
@@ -64,23 +99,21 @@ rdoc_options:
64
99
  require_paths:
65
100
  - lib
66
101
  required_ruby_version: !ruby/object:Gem::Requirement
102
+ none: false
67
103
  requirements:
68
104
  - - ">="
69
105
  - !ruby/object:Gem::Version
70
- segments:
71
- - 0
72
106
  version: "0"
73
107
  required_rubygems_version: !ruby/object:Gem::Requirement
108
+ none: false
74
109
  requirements:
75
110
  - - ">="
76
111
  - !ruby/object:Gem::Version
77
- segments:
78
- - 0
79
112
  version: "0"
80
113
  requirements: []
81
114
 
82
115
  rubyforge_project: iudex
83
- rubygems_version: 1.3.6
116
+ rubygems_version: 1.8.9
84
117
  signing_key:
85
118
  specification_version: 3
86
119
  summary: Iudex provides general purpose and extendable web feed aggregation and web crawling facilities