diff --git a/Gemfile b/Gemfile index d36727342..fb8243e53 100644 --- a/Gemfile +++ b/Gemfile @@ -32,7 +32,6 @@ group :test do gem 'autotest' gem 'factory_girl_rails' gem 'database_cleaner' - gem 'em-spec', :git => 'http://github.com/danielsdeleo/em-spec.git' end group :development do diff --git a/app/controllers/users_controller.rb b/app/controllers/users_controller.rb index eb6a95578..91c199c97 100644 --- a/app/controllers/users_controller.rb +++ b/app/controllers/users_controller.rb @@ -4,4 +4,8 @@ class UsersController < ApplicationController def index @users = User.sort(:created_at.desc).all end + + def show + @user = User.find(params[:id]) + end end