flying-sphinx 1.3.0 → 1.3.1
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.
- checksums.yaml +4 -4
- data/HISTORY +14 -0
- data/README.textile +1 -1
- data/lib/flying_sphinx/controller.rb +6 -1
- data/lib/flying_sphinx/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ee5d5fc1f8745bb68578415a4e036f69adedf09c
|
|
4
|
+
data.tar.gz: a73a8a240b8950aea9f893fca507e07ba46e3783
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6d93b097372f02dacaefad4deefa2c19d21a14e38e491a74065124ea753614e56d52be6a8063fac6969657f13a54783c829548bdf30966193d2f5b4dbe4091b3
|
|
7
|
+
data.tar.gz: 86de7fec9d219ae58f0195d3cbf6edd51c7f57e9b50e3ab30de59e2437be4843458db5ba02931cc2abd50a59a9abe5cc36791729421f213a7143747d481f85a9
|
data/HISTORY
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
1.3.1 - 4th December 2017
|
|
2
|
+
* Fix call to generate real-time data for thinking-sphinx v3.4+.
|
|
3
|
+
|
|
4
|
+
1.3.0 - 4th December 2017
|
|
5
|
+
* Use v5 of the flying-sphinx.com API.
|
|
6
|
+
* Drop support for Ruby 1.8.7 and REE.
|
|
7
|
+
* Be clear about the reliance on thinking-sphinx v1.5 or better.
|
|
8
|
+
|
|
9
|
+
1.2.1 - 29th September 2017
|
|
10
|
+
* Fix population of real-time indices for thinking-sphinx v3.4+.
|
|
11
|
+
* Remove post-install message.
|
|
12
|
+
* Relax Faraday requirement to allow for v0.7.
|
|
13
|
+
* Improved behaviour with Ruby 1.8.7.
|
|
14
|
+
|
|
1
15
|
1.2.0 - 30th March 2014
|
|
2
16
|
* All configuration files (Sphinx, wordforms, exceptions, etc) are now gzipped when sent to the API.
|
|
3
17
|
|
data/README.textile
CHANGED
|
@@ -9,7 +9,7 @@ This is all covered pretty well on "the Flying Sphinx site":http://flying-sphinx
|
|
|
9
9
|
<pre><code>gem 'flying-sphinx',
|
|
10
10
|
:git => 'git://github.com/flying-sphinx/flying-sphinx.git',
|
|
11
11
|
:branch => 'master',
|
|
12
|
-
:ref => '
|
|
12
|
+
:ref => 'ffc9530a1b'</code></pre>
|
|
13
13
|
|
|
14
14
|
h2. Compatibility and Limitations
|
|
15
15
|
|
|
@@ -46,7 +46,12 @@ class FlyingSphinx::Controller
|
|
|
46
46
|
def regenerate(file = nil)
|
|
47
47
|
reset file
|
|
48
48
|
|
|
49
|
-
ThinkingSphinx::RakeInterface.new
|
|
49
|
+
interface = ThinkingSphinx::RakeInterface.new
|
|
50
|
+
if interface.respond_to?(:generate)
|
|
51
|
+
interface.generate
|
|
52
|
+
else
|
|
53
|
+
interface.rt.index
|
|
54
|
+
end
|
|
50
55
|
end
|
|
51
56
|
|
|
52
57
|
def reset(file = nil)
|