From 3c1868361bb6380368306a474f8d6ce5de8dac89 Mon Sep 17 00:00:00 2001 From: Anita Date: Sat, 2 Apr 2022 13:11:20 +0800 Subject: [PATCH 1/2] Use new path for refinerycms-acts-as-indexed --- lib/refinery/search.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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' From 36fd8a39be5909c2a83e5faee93a5fb46d1b3fb2 Mon Sep 17 00:00:00 2001 From: Anita Date: Tue, 3 May 2022 11:16:47 +0800 Subject: [PATCH 2/2] Use github master branch of acts-as-indexed. Change version number --- Gemfile | 4 +++- refinerycms-search.gemspec | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) 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/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}