DEVISE SHOW USER - RaulArgott/Library_Ruby GitHub Wiki

Show user

Creating show method

Add this lines in users_controller.rb file

def show    
 @user = User.find(params[:id])
end