Papipo / locomotivecms-search

Content search for LocomotiveCMS
MIT License
12 stars 8 forks source link

No searchable option #8

Closed markgarrigan closed 11 years ago

markgarrigan commented 11 years ago

I seem to be missing something. Everything seems to be working with no errors except I have no searchable option.

#Gemfile
gem 'locomotive_cms', :require => 'locomotive/engine'
gem 'locomotivecms-search'

#config/initializers/locomotive.rb
config.search_engine = :mongoid

options

hems commented 11 years ago

the way i got it working, was with this on my gemfile

gem 'activesearch' gem 'locomotivecms-search', path: 'gems/locomotivecms-search', require: 'locomotive/search'

being "gems/locomotivecms-search" the latest "master".

i also use :mongoid so perhaps its just about that little tweak on your Gemfile, then the oldie bundle commands

markgarrigan commented 11 years ago

Thanks hems.

This is what I did.

#Gemfile

gem 'locomotivecms-search', :require => 'locomotive/search'

I now have the searchable option.