It is quite odd, I have come across an issue like this for the first time: from the looks of it, I have conflict that fromtastic for surveyor and activeadmin are trying to use different versions of the same gem, how do you handle such issues?
Bundler could not find compatible versions for gem "formtastic":
In Gemfile:
formtastic (~> 2.1.0) ruby
activeadmin (>= 0) ruby depends on
formtastic (2.3.0)
I looked more into it: And found this link on SO: Unable to use surveyor gem
I thought just changing the version in gemfile.lock might solve this, but it did not, the error I got now was: Bundler could not find compatible versions for gem "actionpack": In Gemfile: activeadmin (>= 0) ruby depends on formtastic (~> 2.1.0) ruby depends on actionpack (~> 3.0) ruby
rails (= 4.1.0) ruby depends on
actionpack (4.1.0)
The changed gemfile.lock looks like: specs: activeadmin (1.0.0.pre) arbre (~> 1.0, >= 1.0.2) bourbon coffee-rails formtastic (~> 2.1.0) the command I had to run after making this change was:
Resolving dependencies...
You have requested:
formtastic ~> 2.1.0
The bundle currently has formtastic locked at 2.3.1.
Try running `bundle update formtastic`