Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've been browsing stack overflow and I noticed that many people use simple_form to make their lives easier.

I wanted to give it a try, so I added the gem to my gem file (gem 'simple_form') and sent:

rails generate simple_form:install --bootstrap

After reading the installation message, I created a view with the sample code from the readme:

<%= simple_form_for @user do |f| %>
  <%= f.input :username %>
  <%= f.input :password %>
  <%= f.button :submit %>
<% end %>

Unfortunately, I get this error as soon as I try to load the page:

undefined method `simple_form_for' for #<#<Class:0x69dd688>:0x6903ac8>

What gives? How come it can't even recognize the method? I feel like I'm missing something really simply here. Could it be because i'm using bootstrap-sass? Do I need to include a helper in my user controller?

share|improve this question
22  
did you restart server after install simple_form gem? – nash Apr 5 '12 at 5:35
3  
doh! of course. I knew it was something silly like that. Thanks. – Tushar Garg Apr 5 '12 at 14:07

1 Answer

Did you restart your server? Always keep in mind that after you install a gem or plugin. Always restart your server

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.