spec/models/article.rb in mongoid-elasticsearch-0.3.3 vs spec/models/article.rb in mongoid-elasticsearch-0.3.4
- old
+ new
@@ -11,12 +11,11 @@
field :tags
include Mongoid::Elasticsearch
i_fields = {
name: {type: 'string', analyzer: 'snowball'},
- raw: {type: 'string', index: :not_analyzed},
- _slugs: {type: 'string', index: :not_analyzed}
+ raw: {type: 'string', index: :not_analyzed}
}
if Gem::Version.new(::Elasticsearch::Client.new.info['version']['number']) > Gem::Version.new('0.90.2')
i_fields[:suggest] = {type: 'completion'}
end
@@ -24,9 +23,10 @@
elasticsearch! index_name: 'mongoid_es_news', prefix_name: false, index_mappings: {
name: {
type: 'multi_field',
fields: i_fields
},
+ _slugs: {type: 'string', index: :not_analyzed},
tags: {type: 'string', include_in_all: false}
}, wrapper: :load
end