2
votes
1answer
166 views
+50

Rails console - process finished with exit code 0

Can't start rails console. When I'm trying to start it I 've got this message: Loading development environment (Rails 3.2.12) Process finished with exit code 0 It exits without any errors. But ...
0
votes
2answers
93 views
+100

Rails Devise + Devise-bascamper How to allow super user to login to any account?

I'm using devise and devise-basecamper for authentication with my subdomain based web app. I would like to allow super users to access any of the accounts (basically any subdomain). I'm not sure how ...
8
votes
1answer
217 views
+50

NameError (undefined local variable or method `devise_parameter_sanitizer'

I'm using devise for user authentication. However, when a user tries to create an account I am getting this error: NameError (undefined local variable or method `devise_parameter_sanitizer' This ...
1
vote
0answers
27 views
+50

How to use sub uri to login in rails 3.2.12 with passenger/nginx

Our Rails 3.2.12 app is hosted under subdirectory /nbhy. The routes.rb is (related only): root :to => "authentify::sessions#new" match '/signin', :to => 'authentify::sessions#new' match ...
5
votes
2answers
900 views
+50

FAQ Plug-in or Gem for Rails 3?

FAQs seem to be a pretty commonly needed feature in a web application.. but it seems like there are no gems or plugins available for Rails. Can you recommend a gem or plugin which provides FAQs to a ...