Bundler could not find compatible versions for gem "activesupport"
68 views
Skip to first unread message
Alexander Timoshilov
unread,
Jul 2, 2014, 9:55:12 AM7/2/14
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to rubyonra...@googlegroups.com
I tried to set up Searchlogic gem to my blog app and got an error:
Bundler could not find compatible versions for gem "activesupport": InGemfile: searchlogic (~>2.5.17) x86-mingw32 depends on activesupport (~>2.3.12) x86-mingw32
rails (=4.1.1) x86-mingw32 depends on activesupport (4.1.1)
Any solutions?
Frederick Cheung
unread,
Jul 2, 2014, 10:40:05 AM7/2/14
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to rubyonra...@googlegroups.com
It means that searchlogic is only compatible with rails 2.3.x but that you're using rails 4.1.1. Judging by the gem's github page it's not really being maintained - either find a fork that is maintained (and has been updated for newer versions of rails) or pick a different gem
Fred
Matt Jones
unread,
Jul 3, 2014, 9:36:12 AM7/3/14
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to rubyonra...@googlegroups.com
You'll need to find something besides Searchlogic, it's no longer maintained. I've seen recommendations for Ransack:
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to rubyonra...@googlegroups.com
I've used ransack, but lately I've used scoped_search instead. Both work just fine, which one you use depends on how you want to construct your search forms.