Search code examples
ruby-on-rails-4draper

Error while using draper generator


I got a problem while generating draper.

When I use rails g draper:decorator user

I got this : Could not find generator draper:decorator.

  • I got draper in gem file and made bundle install.

Any suggestions ?

Thanks,


Solution

  • rails g draper:decorator user
    

    should be

    rails g decorator User
    

    in order to create your UserDecorator