I’ve trying to build sample application as it’s wrote there, but there is an error:
undefined method `paginate' for #<Array:0xb0b16b0>
Admin interface works fine. What i’m doing wrong?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I just followed the spree Getting Started instructions and run into the exact same problem just now.
Turned out that because my Gemfile specified rails 3.0.10, bundler would install spree 0.40.0 which seems to be quite old.
I solved the problem by updating the relevant lines of the Gemfile like this:
Then when I ran
bundle updateagain it installed rails 3.0.9, and following arake db:bootstrapeverything started working as per the docs again…Hope that helps 🙂