multi-solr 01.11.00 → 01.11.01
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/lib/multi_solr/single_core_handler.rb +5 -3
- data/lib/multi_solr/version.rb +1 -1
- metadata +2 -2
@@ -73,9 +73,11 @@ class MultiSolr::SingleCoreHandler
|
|
73
73
|
def list_possible_values fieldname, context=nil, search_request=nil, config=nil
|
74
74
|
value_pair_data = list_possible_values_with_count fieldname, context, search_request, config
|
75
75
|
values = []
|
76
|
-
|
77
|
-
|
78
|
-
|
76
|
+
if value_pair_data
|
77
|
+
# es werden nur die Werte benötigt und deshalb aus den [value,count]-Paaren entnommen
|
78
|
+
value_pair_data.each do |value_count_pair|
|
79
|
+
values << value_count_pair[0]
|
80
|
+
end
|
79
81
|
end
|
80
82
|
# Ergebnis ist ein Array mit Werten
|
81
83
|
values
|
data/lib/multi_solr/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: multi-solr
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 01.11.
|
4
|
+
version: 01.11.01
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2015-01-28 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rsolr
|