When you do the install of hobo it pulls in the latest version of will_paginate as a dependency. The problem is the latest version is causing your problem. Add the following line to your gemfile.
gem "will_paginate", "3.0.pre2" Then do a bundle install and check your installed versions of gems, gem list. You will probably see 2 version of will_paginate installed. Do a gem uninstall will_paginate and select the one that isn't 3.0.pre2. After that you should be good to go. By adding the line above to the gemfile you are telling bundler to use that specific version. bundler install will install that version and set it in the gemfile.lock file. Once that is done it's safe to remove the version causing all your problems. Bob -- You received this message because you are subscribed to the Google Groups "Hobo Users" group. To view this discussion on the web visit https://groups.google.com/d/msg/hobousers/-/u1TA5fCoNWcJ. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/hobousers?hl=en.
