How to make public user profiles? I use Devise and only have /user/. User can see only his profile, I want to make /user/user_id.
user_id - public user profile.
You should create a route on config/routes.rb file like below. And then implement your controller method and view.
match 'show/:id' => 'user#show'