iudex-brutefuzzy-service 1.3.0-java → 1.4.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 +5 -0
- data/Manifest.txt +1 -1
- data/README.rdoc +1 -1
- data/bin/iudex-brutefuzzy-client +1 -1
- data/bin/iudex-brutefuzzy-service-fg +1 -1
- data/init/iudex-brutefuzzy-service +2 -2
- data/lib/iudex-brutefuzzy-service.rb +1 -1
- data/lib/iudex-brutefuzzy-service/agent.rb +1 -1
- data/lib/iudex-brutefuzzy-service/base.rb +2 -2
- data/lib/iudex-brutefuzzy-service/destinations.rb +1 -1
- data/lib/iudex-brutefuzzy-service/{iudex-brutefuzzy-service-1.3.0.jar → iudex-brutefuzzy-service-1.4.0.jar} +0 -0
- data/pom.xml +6 -6
- data/test/setup.rb +1 -1
- data/test/test_agent.rb +1 -1
- data/test/test_qpid_context.rb +1 -1
- metadata +13 -13
data/History.rdoc
CHANGED
data/Manifest.txt
CHANGED
data/README.rdoc
CHANGED
|
@@ -11,7 +11,7 @@ lookup index as a distributed service.
|
|
|
11
11
|
|
|
12
12
|
== License
|
|
13
13
|
|
|
14
|
-
Copyright (c) 2008-
|
|
14
|
+
Copyright (c) 2008-2013 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/bin/iudex-brutefuzzy-client
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
#. hashdot.vm.options += -XX:+UseCompressedOops
|
|
9
9
|
|
|
10
10
|
#--
|
|
11
|
-
# Copyright (c) 2008-
|
|
11
|
+
# Copyright (c) 2008-2013 David Kellum
|
|
12
12
|
#
|
|
13
13
|
# Licensed under the Apache License, Version 2.0 (the "License"); you
|
|
14
14
|
# may not use this file except in compliance with the License. You
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
|
|
26
26
|
require 'rubygems'
|
|
27
27
|
|
|
28
|
-
gem( "iudex-brutefuzzy-service", "= 1.
|
|
28
|
+
gem( "iudex-brutefuzzy-service", "= 1.4.0" )
|
|
29
29
|
|
|
30
30
|
module IudexInitScript
|
|
31
31
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#--
|
|
2
|
-
# Copyright (c) 2008-
|
|
2
|
+
# Copyright (c) 2008-2013 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
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
module Iudex
|
|
18
18
|
module BruteFuzzy
|
|
19
19
|
module Service
|
|
20
|
-
VERSION = '1.
|
|
20
|
+
VERSION = '1.4.0'
|
|
21
21
|
end
|
|
22
22
|
end
|
|
23
23
|
end
|
|
Binary file
|
data/pom.xml
CHANGED
|
@@ -3,13 +3,13 @@
|
|
|
3
3
|
<groupId>iudex</groupId>
|
|
4
4
|
<artifactId>iudex-brutefuzzy-service</artifactId>
|
|
5
5
|
<packaging>jar</packaging>
|
|
6
|
-
<version>1.
|
|
6
|
+
<version>1.4.0</version>
|
|
7
7
|
<name>Iudex BruteFuzzy Service</name>
|
|
8
8
|
|
|
9
9
|
<parent>
|
|
10
10
|
<groupId>iudex</groupId>
|
|
11
11
|
<artifactId>iudex-parent</artifactId>
|
|
12
|
-
<version>1.
|
|
12
|
+
<version>1.4.0</version>
|
|
13
13
|
<relativePath>..</relativePath>
|
|
14
14
|
</parent>
|
|
15
15
|
|
|
@@ -18,19 +18,19 @@
|
|
|
18
18
|
<dependency>
|
|
19
19
|
<groupId>iudex</groupId>
|
|
20
20
|
<artifactId>iudex-core</artifactId>
|
|
21
|
-
<version>[1.
|
|
21
|
+
<version>[1.4.0,1.4.999)</version>
|
|
22
22
|
</dependency>
|
|
23
23
|
|
|
24
24
|
<dependency>
|
|
25
25
|
<groupId>iudex</groupId>
|
|
26
26
|
<artifactId>iudex-brutefuzzy-protobuf</artifactId>
|
|
27
|
-
<version>[1.
|
|
27
|
+
<version>[1.4.0,1.4.999)</version>
|
|
28
28
|
</dependency>
|
|
29
29
|
|
|
30
30
|
<dependency>
|
|
31
31
|
<groupId>iudex</groupId>
|
|
32
32
|
<artifactId>iudex-simhash</artifactId>
|
|
33
|
-
<version>[1.
|
|
33
|
+
<version>[1.4.0,1.4.999)</version>
|
|
34
34
|
</dependency>
|
|
35
35
|
|
|
36
36
|
<dependency>
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
<dependency>
|
|
43
43
|
<groupId>org.apache.qpid</groupId>
|
|
44
44
|
<artifactId>qpid-client</artifactId>
|
|
45
|
-
<version>[0.14,0.
|
|
45
|
+
<version>[0.14,0.24.999)</version>
|
|
46
46
|
</dependency>
|
|
47
47
|
|
|
48
48
|
</dependencies>
|
data/test/setup.rb
CHANGED
data/test/test_agent.rb
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
#.hashdot.profile += jruby-shortlived
|
|
3
3
|
|
|
4
4
|
#--
|
|
5
|
-
# Copyright (c) 2008-
|
|
5
|
+
# Copyright (c) 2008-2013 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
|
data/test/test_qpid_context.rb
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
#.hashdot.profile += jruby-shortlived
|
|
3
3
|
|
|
4
4
|
#--
|
|
5
|
-
# Copyright (c) 2008-
|
|
5
|
+
# Copyright (c) 2008-2013 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
|
@@ -2,14 +2,14 @@
|
|
|
2
2
|
name: iudex-brutefuzzy-service
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease:
|
|
5
|
-
version: 1.
|
|
5
|
+
version: 1.4.0
|
|
6
6
|
platform: java
|
|
7
7
|
authors:
|
|
8
8
|
- David Kellum
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date:
|
|
12
|
+
date: 2013-10-30 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: iudex-core
|
|
@@ -17,13 +17,13 @@ dependencies:
|
|
|
17
17
|
requirements:
|
|
18
18
|
- - ~>
|
|
19
19
|
- !ruby/object:Gem::Version
|
|
20
|
-
version: 1.
|
|
20
|
+
version: 1.4.0
|
|
21
21
|
none: false
|
|
22
22
|
requirement: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - ~>
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: 1.
|
|
26
|
+
version: 1.4.0
|
|
27
27
|
none: false
|
|
28
28
|
prerelease: false
|
|
29
29
|
type: :runtime
|
|
@@ -49,13 +49,13 @@ dependencies:
|
|
|
49
49
|
requirements:
|
|
50
50
|
- - ~>
|
|
51
51
|
- !ruby/object:Gem::Version
|
|
52
|
-
version: 1.
|
|
52
|
+
version: 1.4.0
|
|
53
53
|
none: false
|
|
54
54
|
requirement: !ruby/object:Gem::Requirement
|
|
55
55
|
requirements:
|
|
56
56
|
- - ~>
|
|
57
57
|
- !ruby/object:Gem::Version
|
|
58
|
-
version: 1.
|
|
58
|
+
version: 1.4.0
|
|
59
59
|
none: false
|
|
60
60
|
prerelease: false
|
|
61
61
|
type: :runtime
|
|
@@ -65,13 +65,13 @@ dependencies:
|
|
|
65
65
|
requirements:
|
|
66
66
|
- - ~>
|
|
67
67
|
- !ruby/object:Gem::Version
|
|
68
|
-
version: 1.
|
|
68
|
+
version: 1.4.0
|
|
69
69
|
none: false
|
|
70
70
|
requirement: !ruby/object:Gem::Requirement
|
|
71
71
|
requirements:
|
|
72
72
|
- - ~>
|
|
73
73
|
- !ruby/object:Gem::Version
|
|
74
|
-
version: 1.
|
|
74
|
+
version: 1.4.0
|
|
75
75
|
none: false
|
|
76
76
|
prerelease: false
|
|
77
77
|
type: :runtime
|
|
@@ -100,7 +100,7 @@ dependencies:
|
|
|
100
100
|
version: 0.14.1
|
|
101
101
|
- - <
|
|
102
102
|
- !ruby/object:Gem::Version
|
|
103
|
-
version: '0.
|
|
103
|
+
version: '0.25'
|
|
104
104
|
none: false
|
|
105
105
|
requirement: !ruby/object:Gem::Requirement
|
|
106
106
|
requirements:
|
|
@@ -109,7 +109,7 @@ dependencies:
|
|
|
109
109
|
version: 0.14.1
|
|
110
110
|
- - <
|
|
111
111
|
- !ruby/object:Gem::Version
|
|
112
|
-
version: '0.
|
|
112
|
+
version: '0.25'
|
|
113
113
|
none: false
|
|
114
114
|
prerelease: false
|
|
115
115
|
type: :runtime
|
|
@@ -119,13 +119,13 @@ dependencies:
|
|
|
119
119
|
requirements:
|
|
120
120
|
- - ~>
|
|
121
121
|
- !ruby/object:Gem::Version
|
|
122
|
-
version:
|
|
122
|
+
version: 4.7.4
|
|
123
123
|
none: false
|
|
124
124
|
requirement: !ruby/object:Gem::Requirement
|
|
125
125
|
requirements:
|
|
126
126
|
- - ~>
|
|
127
127
|
- !ruby/object:Gem::Version
|
|
128
|
-
version:
|
|
128
|
+
version: 4.7.4
|
|
129
129
|
none: false
|
|
130
130
|
prerelease: false
|
|
131
131
|
type: :development
|
|
@@ -172,7 +172,7 @@ files:
|
|
|
172
172
|
- test/setup.rb
|
|
173
173
|
- test/test_agent.rb
|
|
174
174
|
- test/test_qpid_context.rb
|
|
175
|
-
- lib/iudex-brutefuzzy-service/iudex-brutefuzzy-service-1.
|
|
175
|
+
- lib/iudex-brutefuzzy-service/iudex-brutefuzzy-service-1.4.0.jar
|
|
176
176
|
homepage: http://iudex.gravitext.com
|
|
177
177
|
licenses: []
|
|
178
178
|
post_install_message:
|