outoftime-sunspot 0.9.1 → 0.9.2
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/History.txt +44 -0
- data/VERSION.yml +1 -1
- data/tasks/gemspec.rake +1 -1
- metadata +4 -3
data/History.txt
CHANGED
|
@@ -1,3 +1,47 @@
|
|
|
1
|
+
== 0.9.0 2009-07-21
|
|
2
|
+
* Use Dismax parser for keyword search
|
|
3
|
+
* Field and document boosting
|
|
4
|
+
* Specify which fields to search in keyword search
|
|
5
|
+
* Allow indexing of multiple values in text fields
|
|
6
|
+
* Access keyword relevance score in Hit objects
|
|
7
|
+
* Allow stored fields, retrieve stored values from Hit objects
|
|
8
|
+
* Support more values in shorthand restrictions
|
|
9
|
+
* Disjunctions and conjunctions
|
|
10
|
+
* Random ordering
|
|
11
|
+
* Control all options for field facets
|
|
12
|
+
* Time range facets
|
|
13
|
+
* Get referenced objects from facets on foreign keys
|
|
14
|
+
* Facet by class
|
|
15
|
+
* Batch indexing
|
|
16
|
+
* New Date field type
|
|
17
|
+
* Direct access to data accessors
|
|
18
|
+
* Executable to configure production Solr instances
|
|
19
|
+
* Replace solr-ruby with RSolr
|
|
20
|
+
* Remove accidental ActiveSupport dependency
|
|
21
|
+
|
|
22
|
+
== 0.8.9 2009-06-23
|
|
23
|
+
* Fix OrderedHash bug in older versions of ActiveSupport
|
|
24
|
+
|
|
25
|
+
== 0.8.8 2009-06-15
|
|
26
|
+
* Escape type names to support namespaced classes
|
|
27
|
+
* Fix bug with anonymous modules in Ruby 1.9
|
|
28
|
+
|
|
29
|
+
== 0.8.7 2009-06-10
|
|
30
|
+
* Add --pid-dir option for sunspot-solr executable
|
|
31
|
+
|
|
32
|
+
== 0.8.5 2009-06-09
|
|
33
|
+
* Added dependencies for sunspot-solr executable to gem dependencies
|
|
34
|
+
* Search for adapters using class ancestors rather than superclasses
|
|
35
|
+
|
|
36
|
+
== 0.8.3 2009-06-03
|
|
37
|
+
* Index objects passed as a collection in a single HTTP request
|
|
38
|
+
|
|
39
|
+
== 0.8.2 2009-05-27
|
|
40
|
+
* Allow specification of Solr home when using sunspot-solr
|
|
41
|
+
|
|
42
|
+
== 0.8.1 2009-05-26
|
|
43
|
+
* Add Search#execute! to public API
|
|
44
|
+
|
|
1
45
|
== 0.8.0 2009-05-22
|
|
2
46
|
* Access query API directly; instantiate search without running it
|
|
3
47
|
* Dynamic fields
|
data/VERSION.yml
CHANGED
data/tasks/gemspec.rake
CHANGED
|
@@ -3,7 +3,7 @@ begin
|
|
|
3
3
|
require 'jeweler'
|
|
4
4
|
Jeweler::Tasks.new do |s|
|
|
5
5
|
s.name = 'sunspot'
|
|
6
|
-
s.executables = 'sunspot-solr'
|
|
6
|
+
s.executables = ['sunspot-solr', 'sunspot-configure-solr']
|
|
7
7
|
s.summary = 'Library for expressive, powerful interaction with the Solr search engine'
|
|
8
8
|
s.email = 'mat@patch.com'
|
|
9
9
|
s.homepage = 'http://github.com/outoftime/sunspot'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: outoftime-sunspot
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.9.
|
|
4
|
+
version: 0.9.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mat Brown
|
|
@@ -12,8 +12,8 @@ autorequire:
|
|
|
12
12
|
bindir: bin
|
|
13
13
|
cert_chain: []
|
|
14
14
|
|
|
15
|
-
date: 2009-07-
|
|
16
|
-
default_executable:
|
|
15
|
+
date: 2009-07-23 00:00:00 -07:00
|
|
16
|
+
default_executable:
|
|
17
17
|
dependencies:
|
|
18
18
|
- !ruby/object:Gem::Dependency
|
|
19
19
|
name: mwmitchell-rsolr
|
|
@@ -79,6 +79,7 @@ description: Library for expressive, powerful interaction with the Solr search e
|
|
|
79
79
|
email: mat@patch.com
|
|
80
80
|
executables:
|
|
81
81
|
- sunspot-solr
|
|
82
|
+
- sunspot-configure-solr
|
|
82
83
|
extensions: []
|
|
83
84
|
|
|
84
85
|
extra_rdoc_files:
|