Uninstalling simpleform gem
ruby-on-rails, simple-form
Solution
The following should remove it properly:
# rails destroy simple_form:install
# bundle
Also, you can check for files in lib/templates and remove the associated ones for simple_form.
http://railscasts.com/episodes/234-simple-form?view=comments#comment_150699 http://github.com/plataformatec/simple_form/issues/680
Problem
I have commented out gem 'simple_form' from my Gemfile with Rails Rails 3.2.12 and Ruby 2.0.0p0. When I do `rails generate scaffold`, I still get simple_form forms. Is there a way to get the original `form_for` scaffolds instead?