diff --git a/Gemfile b/Gemfile index fc78d34..97d3ad2 100644 --- a/Gemfile +++ b/Gemfile @@ -10,6 +10,8 @@ git 'https://github.com/refinery/refinerycms', branch: 'master' do end end +gem 'refinerycms-acts-as-indexed', git: 'https://github.com/refinery/refinerycms-acts-as-indexed', branch: 'master' + group :test do gem 'launchy' gem 'pry' @@ -47,4 +49,4 @@ end # Load local gems according to Refinery developer preference. if File.exist? local_gemfile = File.expand_path('../.gemfile', __FILE__) eval File.read(local_gemfile) -end \ No newline at end of file +end diff --git a/lib/refinery/search.rb b/lib/refinery/search.rb index 0a2e4ea..b1d0120 100644 --- a/lib/refinery/search.rb +++ b/lib/refinery/search.rb @@ -1,5 +1,5 @@ require 'refinerycms-core' -require 'refinerycms-acts-as-indexed' +require 'refinerycms/acts/as/indexed' module Refinery autoload :SearchGenerator, 'generators/refinery/search/search_generator' diff --git a/refinerycms-search.gemspec b/refinerycms-search.gemspec index de3faf6..6d2c557 100644 --- a/refinerycms-search.gemspec +++ b/refinerycms-search.gemspec @@ -2,7 +2,7 @@ Gem::Specification.new do |s| s.name = %q{refinerycms-search} - s.version = %q{4.0.0} + s.version = %q{4.1.0} s.summary = %q{Extra search handling for Refinery CMS} s.description = %q{Provides extra functionality for searching your frontend website using Refinery CMS.} s.homepage = %q{http://refinerycms.com}