oedipus 0.0.1.pre2 → 0.0.1.pre3

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/README.md CHANGED
@@ -115,8 +115,8 @@ results = sphinx[:articles].search("badgers", limit: 2)
115
115
  # => {
116
116
  # total_found: 987,
117
117
  # time: 0.000,
118
- # keyword[0]: "badgers",
119
- # docs[0]: 987,
118
+ # keywords: [ "badgers" ],
119
+ # docs: { "badgers" => 987 },
120
120
  # records: [
121
121
  # { id: 7, author_id: 4, views: 102 },
122
122
  # { id: 11, author_id: 6, views: 23 }
@@ -8,5 +8,5 @@
8
8
  ##
9
9
 
10
10
  module Oedipus
11
- VERSION = "0.0.1.pre2"
11
+ VERSION = "0.0.1.pre3"
12
12
  end
data/oedipus.gemspec CHANGED
@@ -12,11 +12,12 @@ Gem::Specification.new do |s|
12
12
  s.description = <<-DESC.gsub(/^ {4}/m, "")
13
13
  Oedipus brings full support for Sphinx 2 to Ruby:
14
14
 
15
- * real-time indexes
16
- * faceted search
17
- * multi-queries
18
- * full attribute support
19
- * optional model-style interaction
15
+ <ul>
16
+ <li>real-time indexes (insert, replace, update, delete)</li>
17
+ <li>faceted search (variations on a base query)</li>
18
+ <li>multi-queries (multiple queries executed in a batch)</li>
19
+ <li>full attribute filtering support</li>
20
+ </ul>
20
21
 
21
22
  It works with 'stable' versions of Sphinx 2 (>= 2.0.2). All
22
23
  features are implemented entirely through the SphinxQL interface.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: oedipus
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1.pre2
4
+ version: 0.0.1.pre3
5
5
  prerelease: 6
6
6
  platform: ruby
7
7
  authors:
@@ -13,7 +13,7 @@ date: 2012-04-01 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rspec
16
- requirement: &22480320 !ruby/object:Gem::Requirement
16
+ requirement: &22577120 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ! '>='
@@ -21,10 +21,10 @@ dependencies:
21
21
  version: '0'
22
22
  type: :development
23
23
  prerelease: false
24
- version_requirements: *22480320
24
+ version_requirements: *22577120
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: rake-compiler
27
- requirement: &22479900 !ruby/object:Gem::Requirement
27
+ requirement: &22576700 !ruby/object:Gem::Requirement
28
28
  none: false
29
29
  requirements:
30
30
  - - ! '>='
@@ -32,11 +32,13 @@ dependencies:
32
32
  version: '0'
33
33
  type: :development
34
34
  prerelease: false
35
- version_requirements: *22479900
36
- description: ! "Oedipus brings full support for Sphinx 2 to Ruby:\n\n * real-time
37
- indexes\n * faceted search\n * multi-queries\n * full attribute support\n *
38
- optional model-style interaction\n\nIt works with 'stable' versions of Sphinx 2
39
- (>= 2.0.2). All\nfeatures are implemented entirely through the SphinxQL interface.\n"
35
+ version_requirements: *22576700
36
+ description: ! "Oedipus brings full support for Sphinx 2 to Ruby:\n\n<ul>\n <li>real-time
37
+ indexes (insert, replace, update, delete)</li>\n <li>faceted search (variations
38
+ on a base query)</li>\n <li>multi-queries (multiple queries executed in a batch)</li>\n
39
+ \ <li>full attribute filtering support</li>\n</ul>\n\nIt works with 'stable' versions
40
+ of Sphinx 2 (>= 2.0.2). All\nfeatures are implemented entirely through the SphinxQL
41
+ interface.\n"
40
42
  email:
41
43
  - chris@w3style.co.uk
42
44
  executables: []