riddle 2.4.0 → 2.4.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f2f66eb6b310f5bee941d0677b0de214a1e6b26ea8b2aa2d5937091e39657125
4
- data.tar.gz: 85b8280f963abffe8c6062509f1ff6021e74ea5e7b556f18cb63bf1dcb275005
3
+ metadata.gz: aac8cc5886444df318418dff8d0e84ccfecd349aa66c1e2574c4696f416cab4f
4
+ data.tar.gz: e1472b9485b9489c3c808d190f632b579819a96c9adcdcddb7a5e7f0127fa2de
5
5
  SHA512:
6
- metadata.gz: 2f5abe88c5b14a2224df75eb154d2c28faae75c8a28ecdafc2dc20c40cd31635132bb786477d407e2ffbc048cc8652ff6a7291ed46673a8a13b436c4f317abdd
7
- data.tar.gz: 9a4b1d26d087d0167ea7c17ef703e71ed59f0148195a7579e18e3f15b5948226e6bc062dbf403d6d4346c6a19e98e84939f840f164be56af8a00c7437f04b0c5
6
+ metadata.gz: 0bdf24f2c23c84affd3b14bc4566a2771213e22561bb3ea51cf5058ee3e6f6b75d6474a8a1fe28d6919e802085525235e51a1460761b1888d971b45785080436
7
+ data.tar.gz: 271f6f764bbe42b1aed00ce920f9d6412ac58e7ed48ce04fff931299981e164a586b6ad3c0831d6689d1eccfcc4bdbf0587ce9c7732e09e46afc1216bd57d969
@@ -2,10 +2,11 @@ language: ruby
2
2
  dist: xenial
3
3
  rvm:
4
4
  - 2.3.8
5
- - 2.4.6
6
- - 2.5.5
7
- - 2.6.3
8
- - jruby-9.2.7.0
5
+ - 2.4.9
6
+ - 2.5.7
7
+ - 2.6.5
8
+ - 2.7.0
9
+ - jruby-9.2.9.0
9
10
  env:
10
11
  matrix:
11
12
  - SPHINX_VERSION=2.1.9 SPHINX_ENGINE=sphinx
data/HISTORY CHANGED
@@ -1,3 +1,6 @@
1
+ 2.4.1 - January 4th 2020
2
+ - Fix typo of stopword_step setting.
3
+
1
4
  2.4.0 - July 28th 2019
2
5
  - Escape slashes and single quotes for attribute and field values in INSERT/REPLACE statements, rather than removing them (#103).
3
6
  - Remove support for Sphinx 2.0.
@@ -15,7 +15,7 @@ module Riddle
15
15
  :html_index_attrs, :html_remove_elements, :preopen, :ondisk_dict,
16
16
  :inplace_enable, :inplace_hit_gap, :inplace_docinfo_gap,
17
17
  :inplace_reloc_factor, :inplace_write_factor, :index_exact_words,
18
- :overshort_step, :stopwords_step, :hitless_words, :ha_strategy,
18
+ :overshort_step, :stopword_step, :hitless_words, :ha_strategy,
19
19
  :bigram_freq_words, :bigram_index, :index_field_lengths,
20
20
  :regexp_filter, :stopwords_unstemmed, :global_idf, :rlp_context,
21
21
  :ondisk_attrs
@@ -33,7 +33,7 @@ module Riddle
33
33
  :html_remove_element_tags, :preopen, :ondisk_dict, :inplace_enable,
34
34
  :inplace_hit_gap, :inplace_docinfo_gap, :inplace_reloc_factor,
35
35
  :inplace_write_factor, :index_exact_words, :overshort_step,
36
- :stopwords_step, :hitless_words, :ha_strategy, :bigram_freq_words,
36
+ :stopword_step, :hitless_words, :ha_strategy, :bigram_freq_words,
37
37
  :bigram_index, :index_field_lengths, :regexp_filter,
38
38
  :stopwords_unstemmed, :global_idf, :rlp_context, :ondisk_attrs
39
39
 
@@ -5,7 +5,7 @@ $:.push File.expand_path('../lib', __FILE__)
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = 'riddle'
8
- s.version = '2.4.0'
8
+ s.version = '2.4.1'
9
9
  s.platform = Gem::Platform::RUBY
10
10
  s.authors = ['Pat Allan']
11
11
  s.email = ['pat@freelancing-gods.com']
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: riddle
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.4.0
4
+ version: 2.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pat Allan
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-07-28 00:00:00.000000000 Z
11
+ date: 2020-01-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
@@ -127,7 +127,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
127
127
  - !ruby/object:Gem::Version
128
128
  version: '0'
129
129
  requirements: []
130
- rubygems_version: 3.0.4
130
+ rubygems_version: 3.1.2
131
131
  signing_key:
132
132
  specification_version: 4
133
133
  summary: An API for Sphinx, written in and for Ruby.