ferret 0.11.8.5 → 0.11.8.6

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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 79d986336c6e1786037d5af14c9a046bacd03154
4
+ data.tar.gz: e59ca1733e53263346275dc573e2ac8ea5b80ab6
5
+ SHA512:
6
+ metadata.gz: 1ca3fcc094d39e327d3844ebbe329b91f397daf08853bd4ef3217bc3ba630475511f8909d689172345aaaf6c0ce9f14b5fd0210bcdf9dca6b8ea8c8d22625427
7
+ data.tar.gz: 5b0ae5d2659df9c5f2caca31fd38697924f165d749ce8d2d76fc0e60d1acd852cfdbd1e4478a0dba10ab2ae382a3e0587e84b3827da24ace703f31f5dbf82bb2
data/Rakefile CHANGED
@@ -1,8 +1,6 @@
1
1
  require 'rake'
2
2
  require 'rake/clean'
3
- #require 'rake/gempackagetask'
4
3
  require 'rubygems/package_task'
5
- #require 'rake/rdoctask'
6
4
  require 'rdoc/task'
7
5
  require 'rake/testtask'
8
6
 
@@ -189,9 +187,9 @@ end
189
187
  desc "Generate API documentation"
190
188
  task :doc => 'doc:rdoc'
191
189
  namespace :doc do
192
- if allison = Gem.cache.find_name('allison').last
193
- allison_template = File.join(allison.full_gem_path, 'lib/allison.rb')
194
- end
190
+ # if allison = Gem.cache.find_name('allison').last
191
+ # allison_template = File.join(allison.full_gem_path, 'lib/allison.rb')
192
+ # end
195
193
  desc "Generate documentation for the application"
196
194
  $rd = Rake::RDocTask.new do |rdoc|
197
195
  rdoc.rdoc_dir = 'doc/api'
@@ -199,7 +197,7 @@ namespace :doc do
199
197
  rdoc.options << '--line-numbers'
200
198
  rdoc.options << '--inline-source'
201
199
  rdoc.options << '--charset=utf-8'
202
- rdoc.template = allison_template if allison_template
200
+ # rdoc.template = allison_template if allison_template
203
201
  rdoc.rdoc_files.include('README')
204
202
  rdoc.rdoc_files.include('TODO')
205
203
  rdoc.rdoc_files.include('TUTORIAL')
@@ -148,7 +148,7 @@ typedef struct frt_xcontext_t
148
148
  # define FRT_RAISE(excode, ...) do {\
149
149
  snprintf(frt_xmsg_buffer, FRT_XMSG_BUFFER_SIZE, __VA_ARGS__);\
150
150
  snprintf(frt_xmsg_buffer_final, FRT_XMSG_BUFFER_SIZE,\
151
- "Error occured in %s:%d - %s\n\t%s",\
151
+ "Error occurred in %s:%d - %s\n\t%s",\
152
152
  __FILE__, __LINE__, __func__, frt_xmsg_buffer);\
153
153
  frt_xraise(excode, frt_xmsg_buffer_final);\
154
154
  } while (0)
@@ -156,7 +156,7 @@ typedef struct frt_xcontext_t
156
156
  # define FRT_RAISE(excode, args...) do {\
157
157
  snprintf(frt_xmsg_buffer, FRT_XMSG_BUFFER_SIZE, ##args);\
158
158
  snprintf(frt_xmsg_buffer_final, FRT_XMSG_BUFFER_SIZE,\
159
- "Error occured in %s:%d - %s\n\t%s\n",\
159
+ "Error occurred in %s:%d - %s\n\t%s\n",\
160
160
  __FILE__, __LINE__, __func__, frt_xmsg_buffer);\
161
161
  frt_xraise(excode, frt_xmsg_buffer_final);\
162
162
  } while (0)
@@ -245,10 +245,10 @@ void V_FRT_EXIT(const char *err_type, const char *fmt, va_list args)
245
245
  char buf[FRT_BUF_SIZ];
246
246
  size_t so_far = 0;
247
247
  #ifdef FRT_HAS_VARARGS
248
- snprintf(buf, FRT_BUF_SIZ, "%s occured at <%s>:%d in %s\n",
248
+ snprintf(buf, FRT_BUF_SIZ, "%s occurred at <%s>:%d in %s\n",
249
249
  err_type, file, line_num, func);
250
250
  #else
251
- snprintf(buf, FRT_BUF_SIZ, "%s occured:\n", err_type);
251
+ snprintf(buf, FRT_BUF_SIZ, "%s occurred:\n", err_type);
252
252
  #endif
253
253
  so_far = strlen(buf);
254
254
  vsnprintf(buf + so_far, FRT_BUF_SIZ - so_far, fmt, args);
@@ -419,7 +419,7 @@ static const char *signal_to_string(int signum)
419
419
  static void sighandler_crash(int signum)
420
420
  {
421
421
  print_stacktrace();
422
- XEXIT("Exiting on signal %s (%d)",
422
+ XEXIT("Signal", "Exiting on signal %s (%d)",
423
423
  signal_to_string(signum), signum);
424
424
  }
425
425
 
@@ -65,7 +65,11 @@ int
65
65
  frb_rb_hash_size(VALUE hash)
66
66
  {
67
67
  #ifdef FRT_RUBY_VERSION_1_9
68
+ #ifdef RHASH_SIZE
69
+ return RHASH_SIZE(hash);
70
+ #else
68
71
  return RHASH(hash)->ntbl->num_entries;
72
+ #endif
69
73
  #else
70
74
  return RHASH(hash)->tbl->num_entries;
71
75
  #endif
@@ -2937,7 +2937,7 @@ Init_FieldInfos(void)
2937
2937
  * te = index_reader.terms(:content)
2938
2938
  *
2939
2939
  * while te.next?
2940
- * puts "#{te.term} occured in #{te.doc_freq} documents in the index"
2940
+ * puts "#{te.term} occurred in #{te.doc_freq} documents in the index"
2941
2941
  * end
2942
2942
  */
2943
2943
  static void
@@ -1605,7 +1605,7 @@ static int msea_search_unscored_w(Searcher *self,
1605
1605
  const int index_offset = msea->starts[i];
1606
1606
  int current_limit = limit - count;
1607
1607
  /* if offset_docnum occurs in the current index then adjust,
1608
- * otherwise set it to zero as it occured in a previous index */
1608
+ * otherwise set it to zero as it occurred in a previous index */
1609
1609
  int current_offset_docnum = offset_docnum > index_offset
1610
1610
  ? offset_docnum - index_offset
1611
1611
  : 0;
@@ -1,3 +1,3 @@
1
1
  module Ferret
2
- VERSION = '0.11.8.5'
2
+ VERSION = '0.11.8.6'
3
3
  end
metadata CHANGED
@@ -1,44 +1,36 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: ferret
3
- version: !ruby/object:Gem::Version
4
- hash: 61
5
- prerelease:
6
- segments:
7
- - 0
8
- - 11
9
- - 8
10
- - 5
11
- version: 0.11.8.5
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.11.8.6
12
5
  platform: ruby
13
- authors:
6
+ authors:
14
7
  - David Balmain
15
8
  autorequire:
16
9
  bindir: bin
17
10
  cert_chain: []
18
-
19
- date: 2012-11-26 00:00:00 Z
20
- dependencies:
21
- - !ruby/object:Gem::Dependency
11
+ date: 2015-02-19 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
22
14
  name: rake
23
- prerelease: false
24
- requirement: &id001 !ruby/object:Gem::Requirement
25
- none: false
26
- requirements:
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
27
17
  - - ">="
28
- - !ruby/object:Gem::Version
29
- hash: 3
30
- segments:
31
- - 0
32
- version: "0"
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
33
20
  type: :development
34
- version_requirements: *id001
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
35
27
  description: Ferret is a super fast, highly configurable search library.
36
28
  email: dbalmain@gmail.com
37
- executables:
29
+ executables:
38
30
  - ferret-browser
39
- extensions:
31
+ extensions:
40
32
  - ext/extconf.rb
41
- extra_rdoc_files:
33
+ extra_rdoc_files:
42
34
  - README
43
35
  - TODO
44
36
  - TUTORIAL
@@ -50,109 +42,103 @@ extra_rdoc_files:
50
42
  - ext/r_store.c
51
43
  - ext/r_utils.c
52
44
  - ext/ferret.c
53
- files:
54
- - setup.rb
45
+ files:
55
46
  - CHANGELOG
56
47
  - MIT-LICENSE
57
- - Rakefile
58
48
  - README
59
49
  - RELEASE_CHANGES
60
50
  - RELEASE_NOTES
51
+ - Rakefile
61
52
  - TODO
62
53
  - TUTORIAL
63
- - lib/ferret/browser/webrick.rb
64
- - lib/ferret/browser.rb
65
- - lib/ferret/document.rb
66
- - lib/ferret/field_infos.rb
67
- - lib/ferret/field_symbol.rb
68
- - lib/ferret/index.rb
69
- - lib/ferret/number_tools.rb
70
- - lib/ferret/version.rb
71
- - lib/ferret.rb
72
- - lib/ferret/browser/views/document/list.rhtml
73
- - lib/ferret/browser/views/document/show.rhtml
74
- - lib/ferret/browser/views/error/index.rhtml
75
- - lib/ferret/browser/views/help/index.rhtml
76
- - lib/ferret/browser/views/home/index.rhtml
77
- - lib/ferret/browser/views/layout.rhtml
78
- - lib/ferret/browser/views/term/index.rhtml
79
- - lib/ferret/browser/views/term/termdocs.rhtml
80
- - lib/ferret/browser/views/term-vector/index.rhtml
81
- - lib/ferret/browser/s/style.css
82
- - lib/ferret/browser/s/global.js
83
- - test/long_running/largefile/tc_largefile.rb
84
- - test/test_all.rb
85
- - test/test_helper.rb
86
- - test/test_installed.rb
87
- - test/threading/number_to_spoken.rb
88
- - test/threading/thread_safety_index_test.rb
89
- - test/threading/thread_safety_read_write_test.rb
90
- - test/threading/thread_safety_test.rb
91
- - test/unit/analysis/tc_analyzer.rb
92
- - test/unit/analysis/tc_token_stream.rb
93
- - test/unit/index/tc_index.rb
94
- - test/unit/index/tc_index_reader.rb
95
- - test/unit/index/tc_index_writer.rb
96
- - test/unit/index/th_doc.rb
97
- - test/unit/query_parser/tc_query_parser.rb
98
- - test/unit/search/tc_filter.rb
99
- - test/unit/search/tc_fuzzy_query.rb
100
- - test/unit/search/tc_index_searcher.rb
101
- - test/unit/search/tc_multi_searcher.rb
102
- - test/unit/search/tc_multiple_search_requests.rb
103
- - test/unit/search/tc_search_and_sort.rb
104
- - test/unit/search/tc_sort.rb
105
- - test/unit/search/tc_sort_field.rb
106
- - test/unit/search/tc_spans.rb
107
- - test/unit/search/tm_searcher.rb
108
- - test/unit/store/tc_fs_store.rb
109
- - test/unit/store/tc_ram_store.rb
110
- - test/unit/store/tm_store.rb
111
- - test/unit/store/tm_store_lock.rb
112
- - test/unit/tc_document.rb
113
- - test/unit/tc_field_symbol.rb
114
- - test/unit/ts_analysis.rb
115
- - test/unit/ts_index.rb
116
- - test/unit/ts_largefile.rb
117
- - test/unit/ts_query_parser.rb
118
- - test/unit/ts_search.rb
119
- - test/unit/ts_store.rb
120
- - test/unit/ts_utils.rb
121
- - test/unit/utils/tc_bit_vector.rb
122
- - test/unit/utils/tc_number_tools.rb
123
- - test/unit/utils/tc_priority_queue.rb
124
- - test/utils/content_generator.rb
125
- - ext/ferret.c
126
- - ext/ferret.h
127
- - ext/lang.c
128
- - ext/lang.h
129
- - ext/r_analysis.c
130
- - ext/r_index.c
131
- - ext/r_qparser.c
132
- - ext/r_search.c
133
- - ext/r_store.c
134
- - ext/r_utils.c
135
- - ext/symbol.c
136
- - ext/symbol.h
137
- - ext/threading.h
54
+ - bin/ferret-browser
55
+ - ext/BZLIB_blocksort.c
56
+ - ext/BZLIB_bzlib.c
57
+ - ext/BZLIB_compress.c
58
+ - ext/BZLIB_crctable.c
59
+ - ext/BZLIB_decompress.c
60
+ - ext/BZLIB_huffman.c
61
+ - ext/BZLIB_randtable.c
62
+ - ext/STEMMER_api.c
63
+ - ext/STEMMER_libstemmer.c
64
+ - ext/STEMMER_stem_ISO_8859_1_danish.c
65
+ - ext/STEMMER_stem_ISO_8859_1_dutch.c
66
+ - ext/STEMMER_stem_ISO_8859_1_english.c
67
+ - ext/STEMMER_stem_ISO_8859_1_finnish.c
68
+ - ext/STEMMER_stem_ISO_8859_1_french.c
69
+ - ext/STEMMER_stem_ISO_8859_1_german.c
70
+ - ext/STEMMER_stem_ISO_8859_1_hungarian.c
71
+ - ext/STEMMER_stem_ISO_8859_1_italian.c
72
+ - ext/STEMMER_stem_ISO_8859_1_norwegian.c
73
+ - ext/STEMMER_stem_ISO_8859_1_porter.c
74
+ - ext/STEMMER_stem_ISO_8859_1_portuguese.c
75
+ - ext/STEMMER_stem_ISO_8859_1_spanish.c
76
+ - ext/STEMMER_stem_ISO_8859_1_swedish.c
77
+ - ext/STEMMER_stem_ISO_8859_2_romanian.c
78
+ - ext/STEMMER_stem_KOI8_R_russian.c
79
+ - ext/STEMMER_stem_UTF_8_danish.c
80
+ - ext/STEMMER_stem_UTF_8_dutch.c
81
+ - ext/STEMMER_stem_UTF_8_english.c
82
+ - ext/STEMMER_stem_UTF_8_finnish.c
83
+ - ext/STEMMER_stem_UTF_8_french.c
84
+ - ext/STEMMER_stem_UTF_8_german.c
85
+ - ext/STEMMER_stem_UTF_8_hungarian.c
86
+ - ext/STEMMER_stem_UTF_8_italian.c
87
+ - ext/STEMMER_stem_UTF_8_norwegian.c
88
+ - ext/STEMMER_stem_UTF_8_porter.c
89
+ - ext/STEMMER_stem_UTF_8_portuguese.c
90
+ - ext/STEMMER_stem_UTF_8_romanian.c
91
+ - ext/STEMMER_stem_UTF_8_russian.c
92
+ - ext/STEMMER_stem_UTF_8_spanish.c
93
+ - ext/STEMMER_stem_UTF_8_swedish.c
94
+ - ext/STEMMER_stem_UTF_8_turkish.c
95
+ - ext/STEMMER_utilities.c
138
96
  - ext/analysis.c
97
+ - ext/analysis.h
98
+ - ext/api.h
139
99
  - ext/array.c
100
+ - ext/array.h
140
101
  - ext/bitvector.c
102
+ - ext/bitvector.h
103
+ - ext/bzlib.h
104
+ - ext/bzlib_private.h
141
105
  - ext/compound_io.c
106
+ - ext/config.h
142
107
  - ext/document.c
108
+ - ext/document.h
143
109
  - ext/except.c
110
+ - ext/except.h
111
+ - ext/extconf.rb
112
+ - ext/ferret.c
113
+ - ext/ferret.h
144
114
  - ext/field_index.c
115
+ - ext/field_index.h
145
116
  - ext/filter.c
146
117
  - ext/fs_store.c
147
118
  - ext/global.c
119
+ - ext/global.h
148
120
  - ext/hash.c
121
+ - ext/hash.h
149
122
  - ext/hashset.c
123
+ - ext/hashset.h
124
+ - ext/header.h
150
125
  - ext/helper.c
126
+ - ext/helper.h
151
127
  - ext/index.c
128
+ - ext/index.h
129
+ - ext/internal.h
130
+ - ext/lang.c
131
+ - ext/lang.h
132
+ - ext/libstemmer.h
152
133
  - ext/mempool.c
134
+ - ext/mempool.h
135
+ - ext/modules.h
153
136
  - ext/multimapper.c
137
+ - ext/multimapper.h
154
138
  - ext/posh.c
139
+ - ext/posh.h
155
140
  - ext/priorityqueue.c
141
+ - ext/priorityqueue.h
156
142
  - ext/q_boolean.c
157
143
  - ext/q_const_score.c
158
144
  - ext/q_filtered_query.c
@@ -166,156 +152,152 @@ files:
166
152
  - ext/q_span.c
167
153
  - ext/q_term.c
168
154
  - ext/q_wildcard.c
155
+ - ext/r_analysis.c
156
+ - ext/r_index.c
157
+ - ext/r_qparser.c
158
+ - ext/r_search.c
159
+ - ext/r_store.c
160
+ - ext/r_utils.c
169
161
  - ext/ram_store.c
170
162
  - ext/scanner.c
171
163
  - ext/scanner.h
172
164
  - ext/scanner_mb.c
173
165
  - ext/scanner_utf8.c
174
166
  - ext/search.c
175
- - ext/similarity.c
176
- - ext/sort.c
177
- - ext/stopwords.c
178
- - ext/store.c
179
- - ext/term_vectors.c
180
- - ext/analysis.h
181
- - ext/array.h
182
- - ext/bitvector.h
183
- - ext/config.h
184
- - ext/document.h
185
- - ext/except.h
186
- - ext/field_index.h
187
- - ext/global.h
188
- - ext/hash.h
189
- - ext/hashset.h
190
- - ext/helper.h
191
- - ext/index.h
192
- - ext/mempool.h
193
- - ext/multimapper.h
194
- - ext/posh.h
195
- - ext/priorityqueue.h
196
167
  - ext/search.h
168
+ - ext/similarity.c
197
169
  - ext/similarity.h
198
- - ext/store.h
199
- - ext/win32.h
200
- - ext/BZLIB_blocksort.c
201
- - ext/BZLIB_bzlib.c
202
- - ext/bzlib.h
203
- - ext/bzlib_private.h
204
- - ext/BZLIB_compress.c
205
- - ext/BZLIB_crctable.c
206
- - ext/BZLIB_decompress.c
207
- - ext/BZLIB_huffman.c
208
- - ext/BZLIB_randtable.c
209
- - ext/STEMMER_stem_ISO_8859_1_danish.c
170
+ - ext/sort.c
210
171
  - ext/stem_ISO_8859_1_danish.h
211
- - ext/STEMMER_stem_ISO_8859_1_dutch.c
212
172
  - ext/stem_ISO_8859_1_dutch.h
213
- - ext/STEMMER_stem_ISO_8859_1_english.c
214
173
  - ext/stem_ISO_8859_1_english.h
215
- - ext/STEMMER_stem_ISO_8859_1_finnish.c
216
174
  - ext/stem_ISO_8859_1_finnish.h
217
- - ext/STEMMER_stem_ISO_8859_1_french.c
218
175
  - ext/stem_ISO_8859_1_french.h
219
- - ext/STEMMER_stem_ISO_8859_1_german.c
220
176
  - ext/stem_ISO_8859_1_german.h
221
- - ext/STEMMER_stem_ISO_8859_1_hungarian.c
222
177
  - ext/stem_ISO_8859_1_hungarian.h
223
- - ext/STEMMER_stem_ISO_8859_1_italian.c
224
178
  - ext/stem_ISO_8859_1_italian.h
225
- - ext/STEMMER_stem_ISO_8859_1_norwegian.c
226
179
  - ext/stem_ISO_8859_1_norwegian.h
227
- - ext/STEMMER_stem_ISO_8859_1_porter.c
228
180
  - ext/stem_ISO_8859_1_porter.h
229
- - ext/STEMMER_stem_ISO_8859_1_portuguese.c
230
181
  - ext/stem_ISO_8859_1_portuguese.h
231
- - ext/STEMMER_stem_ISO_8859_1_spanish.c
232
182
  - ext/stem_ISO_8859_1_spanish.h
233
- - ext/STEMMER_stem_ISO_8859_1_swedish.c
234
183
  - ext/stem_ISO_8859_1_swedish.h
235
- - ext/STEMMER_stem_ISO_8859_2_romanian.c
236
184
  - ext/stem_ISO_8859_2_romanian.h
237
- - ext/STEMMER_stem_KOI8_R_russian.c
238
185
  - ext/stem_KOI8_R_russian.h
239
- - ext/STEMMER_stem_UTF_8_danish.c
240
186
  - ext/stem_UTF_8_danish.h
241
- - ext/STEMMER_stem_UTF_8_dutch.c
242
187
  - ext/stem_UTF_8_dutch.h
243
- - ext/STEMMER_stem_UTF_8_english.c
244
188
  - ext/stem_UTF_8_english.h
245
- - ext/STEMMER_stem_UTF_8_finnish.c
246
189
  - ext/stem_UTF_8_finnish.h
247
- - ext/STEMMER_stem_UTF_8_french.c
248
190
  - ext/stem_UTF_8_french.h
249
- - ext/STEMMER_stem_UTF_8_german.c
250
191
  - ext/stem_UTF_8_german.h
251
- - ext/STEMMER_stem_UTF_8_hungarian.c
252
192
  - ext/stem_UTF_8_hungarian.h
253
- - ext/STEMMER_stem_UTF_8_italian.c
254
193
  - ext/stem_UTF_8_italian.h
255
- - ext/STEMMER_stem_UTF_8_norwegian.c
256
194
  - ext/stem_UTF_8_norwegian.h
257
- - ext/STEMMER_stem_UTF_8_porter.c
258
195
  - ext/stem_UTF_8_porter.h
259
- - ext/STEMMER_stem_UTF_8_portuguese.c
260
196
  - ext/stem_UTF_8_portuguese.h
261
- - ext/STEMMER_stem_UTF_8_romanian.c
262
197
  - ext/stem_UTF_8_romanian.h
263
- - ext/STEMMER_stem_UTF_8_russian.c
264
198
  - ext/stem_UTF_8_russian.h
265
- - ext/STEMMER_stem_UTF_8_spanish.c
266
199
  - ext/stem_UTF_8_spanish.h
267
- - ext/STEMMER_stem_UTF_8_swedish.c
268
200
  - ext/stem_UTF_8_swedish.h
269
- - ext/STEMMER_stem_UTF_8_turkish.c
270
201
  - ext/stem_UTF_8_turkish.h
271
- - ext/STEMMER_api.c
272
- - ext/api.h
273
- - ext/header.h
274
- - ext/STEMMER_utilities.c
275
- - ext/STEMMER_libstemmer.c
276
- - ext/modules.h
277
- - ext/libstemmer.h
278
- - ext/internal.h
279
- - bin/ferret-browser
280
- - ext/extconf.rb
202
+ - ext/stopwords.c
203
+ - ext/store.c
204
+ - ext/store.h
205
+ - ext/symbol.c
206
+ - ext/symbol.h
207
+ - ext/term_vectors.c
208
+ - ext/threading.h
209
+ - ext/win32.h
210
+ - lib/ferret.rb
211
+ - lib/ferret/browser.rb
212
+ - lib/ferret/browser/s/global.js
213
+ - lib/ferret/browser/s/style.css
214
+ - lib/ferret/browser/views/document/list.rhtml
215
+ - lib/ferret/browser/views/document/show.rhtml
216
+ - lib/ferret/browser/views/error/index.rhtml
217
+ - lib/ferret/browser/views/help/index.rhtml
218
+ - lib/ferret/browser/views/home/index.rhtml
219
+ - lib/ferret/browser/views/layout.rhtml
220
+ - lib/ferret/browser/views/term-vector/index.rhtml
221
+ - lib/ferret/browser/views/term/index.rhtml
222
+ - lib/ferret/browser/views/term/termdocs.rhtml
223
+ - lib/ferret/browser/webrick.rb
224
+ - lib/ferret/document.rb
225
+ - lib/ferret/field_infos.rb
226
+ - lib/ferret/field_symbol.rb
227
+ - lib/ferret/index.rb
228
+ - lib/ferret/number_tools.rb
229
+ - lib/ferret/version.rb
230
+ - setup.rb
231
+ - test/long_running/largefile/tc_largefile.rb
232
+ - test/test_all.rb
233
+ - test/test_helper.rb
234
+ - test/test_installed.rb
235
+ - test/threading/number_to_spoken.rb
236
+ - test/threading/thread_safety_index_test.rb
237
+ - test/threading/thread_safety_read_write_test.rb
238
+ - test/threading/thread_safety_test.rb
239
+ - test/unit/analysis/tc_analyzer.rb
240
+ - test/unit/analysis/tc_token_stream.rb
241
+ - test/unit/index/tc_index.rb
242
+ - test/unit/index/tc_index_reader.rb
243
+ - test/unit/index/tc_index_writer.rb
244
+ - test/unit/index/th_doc.rb
245
+ - test/unit/query_parser/tc_query_parser.rb
246
+ - test/unit/search/tc_filter.rb
247
+ - test/unit/search/tc_fuzzy_query.rb
248
+ - test/unit/search/tc_index_searcher.rb
249
+ - test/unit/search/tc_multi_searcher.rb
250
+ - test/unit/search/tc_multiple_search_requests.rb
251
+ - test/unit/search/tc_search_and_sort.rb
252
+ - test/unit/search/tc_sort.rb
253
+ - test/unit/search/tc_sort_field.rb
254
+ - test/unit/search/tc_spans.rb
255
+ - test/unit/search/tm_searcher.rb
256
+ - test/unit/store/tc_fs_store.rb
257
+ - test/unit/store/tc_ram_store.rb
258
+ - test/unit/store/tm_store.rb
259
+ - test/unit/store/tm_store_lock.rb
260
+ - test/unit/tc_document.rb
261
+ - test/unit/tc_field_symbol.rb
262
+ - test/unit/ts_analysis.rb
263
+ - test/unit/ts_index.rb
264
+ - test/unit/ts_largefile.rb
265
+ - test/unit/ts_query_parser.rb
266
+ - test/unit/ts_search.rb
267
+ - test/unit/ts_store.rb
268
+ - test/unit/ts_utils.rb
269
+ - test/unit/utils/tc_bit_vector.rb
270
+ - test/unit/utils/tc_number_tools.rb
271
+ - test/unit/utils/tc_priority_queue.rb
272
+ - test/utils/content_generator.rb
281
273
  homepage: http://github.com/jkraemer/ferret
282
274
  licenses: []
283
-
275
+ metadata: {}
284
276
  post_install_message:
285
- rdoc_options:
286
- - --title
277
+ rdoc_options:
278
+ - "--title"
287
279
  - Ferret -- Ruby Search Library
288
- - --main
280
+ - "--main"
289
281
  - README
290
- - --line-numbers
282
+ - "--line-numbers"
291
283
  - TUTORIAL
292
284
  - TODO
293
- require_paths:
285
+ require_paths:
294
286
  - lib
295
- required_ruby_version: !ruby/object:Gem::Requirement
296
- none: false
297
- requirements:
287
+ required_ruby_version: !ruby/object:Gem::Requirement
288
+ requirements:
298
289
  - - ">="
299
- - !ruby/object:Gem::Version
300
- hash: 3
301
- segments:
302
- - 0
303
- version: "0"
304
- required_rubygems_version: !ruby/object:Gem::Requirement
305
- none: false
306
- requirements:
290
+ - !ruby/object:Gem::Version
291
+ version: '0'
292
+ required_rubygems_version: !ruby/object:Gem::Requirement
293
+ requirements:
307
294
  - - ">="
308
- - !ruby/object:Gem::Version
309
- hash: 3
310
- segments:
311
- - 0
312
- version: "0"
295
+ - !ruby/object:Gem::Version
296
+ version: '0'
313
297
  requirements: []
314
-
315
298
  rubyforge_project: ferret
316
- rubygems_version: 1.8.24
299
+ rubygems_version: 2.4.5
317
300
  signing_key:
318
- specification_version: 3
301
+ specification_version: 4
319
302
  summary: Ruby indexing library.
320
303
  test_files: []
321
-