I am currently using Rails 3.2.5 with the latest devise gem.
Currently users can access their profile page at... example.com/users/john-doe
I want to remove the users portion of the url, so the url would be example.com/john-doe. Is this possible with devise?
Right now in my routes file I have the following...
devise_for :users, :controllers => {:omniauth_callbacks => 'omniauth_callbacks'}