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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b115e7eb956584d31756788bc14b8119ec3e68ba
4
- data.tar.gz: 28d21d5c1364dfe513d482d6463de1924c04469b
3
+ metadata.gz: ee5d5fc1f8745bb68578415a4e036f69adedf09c
4
+ data.tar.gz: a73a8a240b8950aea9f893fca507e07ba46e3783
5
5
  SHA512:
6
- metadata.gz: 2921c3b5a1f2a8b2c5c7e962b290144581b46341c52b05685682798e84db1791bbedaed7a7e67aa45f9b5cc946829d4cafcf69b69d09ce08d85080a14e813655
7
- data.tar.gz: 2ab0e472479c65c54157e50f08f6e7b8a4faa8c858f48c302fd5ddda9903c5513e163ccad20aff289c772190286babeec5998cc39c0d4330cacc19d05dee410d
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 => 'ab0dd5f047'</code></pre>
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.generate
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)
@@ -1,3 +1,3 @@
1
1
  module FlyingSphinx
2
- Version = '1.3.0'
2
+ Version = '1.3.1'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: flying-sphinx
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.0
4
+ version: 1.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pat Allan