iudex-da 1.1.1-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 CHANGED
@@ -1,3 +1,11 @@
1
+ === 1.2.b.0 (2012-3-4)
2
+ * Upgrade to activerecord ~> 3.1.3, adapter ~> 1.2.2, pg ~> 9.1.901,
3
+ dbutils ~> 1.4.0.
4
+ * Fix order dependency issue in junit WorkPollerTest.
5
+ * Latest postgresql jar is now available in maven central, so the
6
+ java.net repo is no longer needed.
7
+ * Upgrade to tarpit ~> 2.0, bundler Gemfile, gemspec (dev)
8
+
1
9
  === 1.1.1 (2011-11-17)
2
10
  * Fix manifest to include domain migration.
3
11
 
data/Manifest.txt CHANGED
@@ -33,4 +33,4 @@ test/setup.rb
33
33
  test/test_migrate.rb
34
34
  test/test_poll_work.rb
35
35
  test/test_pool_factory.rb
36
- lib/iudex-da/iudex-da-1.1.1.jar
36
+ lib/iudex-da/iudex-da-1.2.b.0.jar
data/README.rdoc CHANGED
@@ -15,7 +15,7 @@ meta-data store and work priority queue.
15
15
 
16
16
  == License
17
17
 
18
- Copyright (c) 2008-2011 David Kellum
18
+ Copyright (c) 2008-2012 David Kellum
19
19
 
20
20
  Licensed under the Apache License, Version 2.0 (the "License"); you
21
21
  may not use this file except in compliance with the License. You may
data/Rakefile CHANGED
@@ -1,45 +1,7 @@
1
1
  # -*- ruby -*-
2
2
 
3
- $LOAD_PATH << './lib'
4
- require 'iudex-da/base'
5
-
6
3
  require 'rubygems'
7
- gem 'rjack-tarpit', '~> 1.4'
4
+ require 'bundler/setup'
8
5
  require 'rjack-tarpit'
9
6
 
10
- t = RJack::TarPit.new( 'iudex-da',
11
- Iudex::DA::VERSION,
12
- :no_assembly, :java_platform )
13
-
14
- t.specify do |h|
15
- h.developer( "David Kellum", "dek-oss@gravitext.com" )
16
-
17
- h.extra_deps += [ [ 'iudex-core', '~> 1.1.0' ],
18
- [ 'activerecord', '~> 3.0.10' ],
19
- [ 'jdbc-postgres', '~> 9.0.801' ],
20
- [ 'activerecord-jdbcpostgresql-adapter', '~> 1.1.3' ],
21
- [ 'rjack-commons-dbcp', '~> 1.4.0' ],
22
- [ 'rjack-commons-dbutils', '~> 1.3.0' ] ]
23
-
24
- h.testlib = :minitest
25
- h.extra_dev_deps += [ [ 'minitest', '~> 2.3' ],
26
- [ 'rjack-logback', '~> 1.0' ] ]
27
- end
28
-
29
- file 'Manifest.txt' => "lib/#{t.name}/base.rb"
30
-
31
- task :check_pom_version do
32
- t.test_line_match( 'pom.xml', /<version>/, /#{t.version}/ )
33
- end
34
- task :check_history_version do
35
- t.test_line_match( 'History.rdoc', /^==/, / #{t.version} / )
36
- end
37
- task :check_history_date do
38
- t.test_line_match( 'History.rdoc', /^==/, /\([0-9\-]+\)$/ )
39
- end
40
-
41
- task :gem => [ :check_pom_version, :check_history_version ]
42
- task :tag => [ :check_pom_version, :check_history_version, :check_history_date ]
43
- task :push => [ :check_history_date ]
44
-
45
- t.define_tasks
7
+ RJack::TarPit.new( 'iudex-da' ).define_tasks
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env jruby
2
2
  # -*- ruby -*-
3
3
  #--
4
- # Copyright (c) 2008-2011 David Kellum
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-da-import CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env jruby
2
2
  # -*- ruby -*-
3
3
  #--
4
- # Copyright (c) 2008-2011 David Kellum
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
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env jruby
2
2
  # -*- ruby -*-
3
3
  #--
4
- # Copyright (c) 2008-2011 David Kellum
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-migrate CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env jruby
2
2
  # -*- ruby -*-
3
3
  #--
4
- # Copyright (c) 2008-2011 David Kellum
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/db/0010_base_urls.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2008-2011 David Kellum
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
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2008-2011 David Kellum
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
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2008-2011 David Kellum
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
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2008-2011 David Kellum
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
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2008-2011 David Kellum
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
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2008-2011 David Kellum
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
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2008-2011 David Kellum
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
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2008-2011 David Kellum
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
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2008-2011 David Kellum
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
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2008-2011 David Kellum
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
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2008-2011 David Kellum
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
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2008-2011 David Kellum
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
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2008-2011 David Kellum
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
data/lib/iudex-da.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2008-2011 David Kellum
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
data/lib/iudex-da/ar.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2008-2011 David Kellum
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
data/lib/iudex-da/base.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2008-2011 David Kellum
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 DA
19
- VERSION = '1.1.1'
19
+ VERSION = '1.2.b.0'
20
20
 
21
21
  LIB_DIR = File.dirname( __FILE__ ) # :nodoc:
22
22
  end
@@ -1,6 +1,6 @@
1
1
 
2
2
  #--
3
- # Copyright (c) 2008-2011 David Kellum
3
+ # Copyright (c) 2008-2012 David Kellum
4
4
  #
5
5
  # Licensed under the Apache License, Version 2.0 (the "License"); you
6
6
  # may not use this file except in compliance with the License. You
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2008-2011 David Kellum
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 may
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2008-2011 David Kellum
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 may
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2008-2011 David Kellum
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 may
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2008-2011 David Kellum
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
data/pom.xml CHANGED
@@ -5,37 +5,28 @@
5
5
  <groupId>iudex</groupId>
6
6
  <artifactId>iudex-da</artifactId>
7
7
  <packaging>jar</packaging>
8
- <version>1.1.1</version>
8
+ <version>1.2.b.0</version>
9
9
  <name>Iudex Data Access</name>
10
10
 
11
11
  <parent>
12
12
  <groupId>iudex</groupId>
13
13
  <artifactId>iudex-parent</artifactId>
14
- <version>1.1</version>
14
+ <version>1.2.b.0</version>
15
15
  <relativePath>..</relativePath>
16
16
  </parent>
17
17
 
18
- <repositories>
19
- <repository>
20
- <id>maven2-repository.dev.java.net</id>
21
- <name>Java.net Repository for Maven</name>
22
- <url>http://download.java.net/maven/2/</url>
23
- <layout>default</layout>
24
- </repository>
25
- </repositories>
26
-
27
18
  <dependencies>
28
19
 
29
20
  <dependency>
30
21
  <groupId>iudex</groupId>
31
22
  <artifactId>iudex-core</artifactId>
32
- <version>[1.1,1.2)</version>
23
+ <version>[1.2,1.2.9999)</version>
33
24
  </dependency>
34
25
 
35
26
  <dependency>
36
27
  <groupId>commons-dbutils</groupId>
37
28
  <artifactId>commons-dbutils</artifactId>
38
- <version>1.3</version>
29
+ <version>1.4</version>
39
30
  </dependency>
40
31
 
41
32
  <dependency>
@@ -51,9 +42,9 @@
51
42
  </dependency>
52
43
 
53
44
  <dependency>
54
- <groupId>org.postgresql</groupId>
55
- <artifactId>postgresql-jdbc4</artifactId>
56
- <version>[8.4.702,9.0.9999]</version>
45
+ <groupId>postgresql</groupId>
46
+ <artifactId>postgresql</artifactId>
47
+ <version>9.1-901.jdbc4</version>
57
48
  <scope>test</scope>
58
49
  </dependency>
59
50
 
data/test/setup.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2008-2011 David Kellum
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
@@ -14,21 +14,31 @@
14
14
  # permissions and limitations under the License.
15
15
  #++
16
16
 
17
- #### General test setup: LOAD_PATH, logging, console output ####
18
-
19
- ldir = File.join( File.dirname( __FILE__ ), "..", "lib" )
20
- $LOAD_PATH.unshift( ldir ) unless $LOAD_PATH.include?( ldir )
17
+ #### General test setup, logging, console output ####
21
18
 
22
19
  require 'rubygems'
23
- require 'rjack-logback'
24
- RJack::Logback.config_console( :stderr => true )
20
+ require 'bundler/setup'
25
21
 
26
22
  require 'minitest/unit'
27
23
  require 'minitest/autorun'
28
24
 
29
- # Make test output logging compatible: no partial lines.
30
- class TestOut
31
- def print( *a ); $stdout.puts( *a ); end
32
- def puts( *a ); $stdout.puts( *a ); end
25
+ require 'rjack-logback'
26
+
27
+ module TestSetup
28
+ include RJack
29
+ Logback.config_console( :stderr => true, :thread => true )
30
+
31
+ if ( ARGV & %w[ -v --verbose --debug ] ).empty?
32
+ # Make test output logging compatible: no partial lines.
33
+ class TestOut
34
+ def print( *a ); $stdout.puts( *a ); end
35
+ def puts( *a ); $stdout.puts( *a ); end
36
+ end
37
+ MiniTest::Unit.output = TestOut.new
38
+ else
39
+ Logback.root.level = Logback::DEBUG
40
+ end
41
+
42
+ ARGV.delete( '--debug' )
43
+
33
44
  end
34
- MiniTest::Unit.output = TestOut.new
data/test/test_migrate.rb CHANGED
@@ -2,7 +2,7 @@
2
2
  #.hashdot.profile += jruby-shortlived
3
3
 
4
4
  #--
5
- # Copyright (c) 2008-2011 David Kellum
5
+ # Copyright (c) 2008-2012 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
@@ -2,7 +2,7 @@
2
2
  #.hashdot.profile += jruby-shortlived
3
3
 
4
4
  #--
5
- # Copyright (c) 2008-2011 David Kellum
5
+ # Copyright (c) 2008-2012 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
@@ -2,7 +2,7 @@
2
2
  #.hashdot.profile += jruby-shortlived
3
3
 
4
4
  #--
5
- # Copyright (c) 2008-2011 David Kellum
5
+ # Copyright (c) 2008-2012 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
metadata CHANGED
@@ -1,8 +1,8 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: iudex-da
3
3
  version: !ruby/object:Gem::Version
4
- prerelease:
5
- version: 1.1.1
4
+ prerelease: 4
5
+ version: 1.2.b.0
6
6
  platform: java
7
7
  authors:
8
8
  - David Kellum
@@ -10,111 +10,108 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2011-11-18 00:00:00 Z
13
+ date: 2012-03-05 00:00:00 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: iudex-core
17
- prerelease: false
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
- version: 1.1.0
22
+ version: 1.2.b
23
+ requirement: *id001
24
+ prerelease: false
24
25
  type: :runtime
25
- version_requirements: *id001
26
26
  - !ruby/object:Gem::Dependency
27
27
  name: activerecord
28
- prerelease: false
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: 3.0.10
33
+ version: 3.1.3
34
+ requirement: *id002
35
+ prerelease: false
35
36
  type: :runtime
36
- version_requirements: *id002
37
37
  - !ruby/object:Gem::Dependency
38
38
  name: jdbc-postgres
39
- prerelease: false
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: 9.0.801
44
+ version: 9.1.901
45
+ requirement: *id003
46
+ prerelease: false
46
47
  type: :runtime
47
- version_requirements: *id003
48
48
  - !ruby/object:Gem::Dependency
49
49
  name: activerecord-jdbcpostgresql-adapter
50
- prerelease: false
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
- version: 1.1.3
55
+ version: 1.2.2
56
+ requirement: *id004
57
+ prerelease: false
57
58
  type: :runtime
58
- version_requirements: *id004
59
59
  - !ruby/object:Gem::Dependency
60
60
  name: rjack-commons-dbcp
61
- prerelease: false
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
66
  version: 1.4.0
67
+ requirement: *id005
68
+ prerelease: false
68
69
  type: :runtime
69
- version_requirements: *id005
70
70
  - !ruby/object:Gem::Dependency
71
71
  name: rjack-commons-dbutils
72
- prerelease: false
73
- requirement: &id006 !ruby/object:Gem::Requirement
72
+ version_requirements: &id006 !ruby/object:Gem::Requirement
74
73
  none: false
75
74
  requirements:
76
75
  - - ~>
77
76
  - !ruby/object:Gem::Version
78
- version: 1.3.0
77
+ version: 1.4.0
78
+ requirement: *id006
79
+ prerelease: false
79
80
  type: :runtime
80
- version_requirements: *id006
81
81
  - !ruby/object:Gem::Dependency
82
82
  name: minitest
83
- prerelease: false
84
- requirement: &id007 !ruby/object:Gem::Requirement
83
+ version_requirements: &id007 !ruby/object:Gem::Requirement
85
84
  none: false
86
85
  requirements:
87
86
  - - ~>
88
87
  - !ruby/object:Gem::Version
89
88
  version: "2.3"
89
+ requirement: *id007
90
+ prerelease: false
90
91
  type: :development
91
- version_requirements: *id007
92
92
  - !ruby/object:Gem::Dependency
93
93
  name: rjack-logback
94
- prerelease: false
95
- requirement: &id008 !ruby/object:Gem::Requirement
94
+ version_requirements: &id008 !ruby/object:Gem::Requirement
96
95
  none: false
97
96
  requirements:
98
97
  - - ~>
99
98
  - !ruby/object:Gem::Version
100
99
  version: "1.0"
100
+ requirement: *id008
101
+ prerelease: false
101
102
  type: :development
102
- version_requirements: *id008
103
103
  - !ruby/object:Gem::Dependency
104
104
  name: rjack-tarpit
105
- prerelease: false
106
- requirement: &id009 !ruby/object:Gem::Requirement
105
+ version_requirements: &id009 !ruby/object:Gem::Requirement
107
106
  none: false
108
107
  requirements:
109
108
  - - ~>
110
109
  - !ruby/object:Gem::Version
111
- version: 1.4.0
110
+ version: "2.0"
111
+ requirement: *id009
112
+ prerelease: false
112
113
  type: :development
113
- version_requirements: *id009
114
- description: |-
115
- Iudex is a general purpose web crawler and feed processor in
116
- ruby/java. The iudex-da gem provides a PostgreSQL-based content
117
- meta-data store and work priority queue.
114
+ description: Iudex is a general purpose web crawler and feed processor in ruby/java. The iudex-da gem provides a PostgreSQL-based content meta-data store and work priority queue.
118
115
  email:
119
116
  - dek-oss@gravitext.com
120
117
  executables:
@@ -125,7 +122,6 @@ executables:
125
122
  extensions: []
126
123
 
127
124
  extra_rdoc_files:
128
- - Manifest.txt
129
125
  - History.rdoc
130
126
  - README.rdoc
131
127
  files:
@@ -164,8 +160,7 @@ files:
164
160
  - test/test_migrate.rb
165
161
  - test/test_poll_work.rb
166
162
  - test/test_pool_factory.rb
167
- - lib/iudex-da/iudex-da-1.1.1.jar
168
- - .gemtest
163
+ - lib/iudex-da/iudex-da-1.2.b.0.jar
169
164
  homepage: http://github.com/dekellum/iudex
170
165
  licenses: []
171
166
 
@@ -180,21 +175,22 @@ required_ruby_version: !ruby/object:Gem::Requirement
180
175
  requirements:
181
176
  - - ">="
182
177
  - !ruby/object:Gem::Version
178
+ hash: 2
179
+ segments:
180
+ - 0
183
181
  version: "0"
184
182
  required_rubygems_version: !ruby/object:Gem::Requirement
185
183
  none: false
186
184
  requirements:
187
- - - ">="
185
+ - - ">"
188
186
  - !ruby/object:Gem::Version
189
- version: "0"
187
+ version: 1.3.1
190
188
  requirements: []
191
189
 
192
- rubyforge_project: iudex-da
193
- rubygems_version: 1.8.9
190
+ rubyforge_project:
191
+ rubygems_version: 1.8.15
194
192
  signing_key:
195
193
  specification_version: 3
196
- summary: Iudex is a general purpose web crawler and feed processor in ruby/java
197
- test_files:
198
- - test/test_migrate.rb
199
- - test/test_poll_work.rb
200
- - test/test_pool_factory.rb
194
+ summary: Iudex is a general purpose web crawler and feed processor in ruby/java.
195
+ test_files: []
196
+
data/.gemtest DELETED
File without changes