removed emspec from gemfile
This commit is contained in:
parent
f3fd820dc7
commit
4819ce694b
2 changed files with 4 additions and 1 deletions
1
Gemfile
1
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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue