runtimerevolution / survey

Survey is a Rails Engine that brings quizzes, surveys and contests into your Rails application.
MIT License
265 stars 127 forks source link

Plain generation not creating routes #32

Open 4thking opened 9 years ago

4thking commented 9 years ago

Rails 4:

Rails generate survey plain is not creating the necessary routes. Rails generate survey routes did not do it either. I had to manually add it to make it work.

tabish-saleem-nxb commented 9 years ago

Make it yourself in config/routes.rb. namespace :contests do resources :surveys, :attempts end Then rake routes to see paths of surveys and attempts.