From 4819ce694b7b034a2a609370bcbe718601a28ada Mon Sep 17 00:00:00 2001 From: Raphael Date: Thu, 8 Jul 2010 10:27:22 -0700 Subject: [PATCH] removed emspec from gemfile --- Gemfile | 1 - app/controllers/users_controller.rb | 4 ++++ 2 files changed, 4 insertions(+), 1 deletion(-) 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