From 9f8119544a16f0ef9c652934430e63273a6421ee Mon Sep 17 00:00:00 2001 From: Michael Bleigh Date: Sat, 3 Sep 2011 21:22:53 -0300 Subject: [PATCH] Fixes spec_helper to get :development gems running. --- oa-identity/oa-identity.gemspec | 1 - oa-identity/spec/spec_helper.rb | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/oa-identity/oa-identity.gemspec b/oa-identity/oa-identity.gemspec index d6e9e93..b05d5a9 100644 --- a/oa-identity/oa-identity.gemspec +++ b/oa-identity/oa-identity.gemspec @@ -12,7 +12,6 @@ Gem::Specification.new do |gem| gem.add_development_dependency 'ZenTest', '~> 4.5' gem.add_development_dependency 'bcrypt-ruby', '~> 2.1.4' gem.add_development_dependency 'activerecord', '~> 3.0' - gem.add_development_dependency 'simplecov', '~> 0.4' gem.name = 'oa-identity' gem.version = OmniAuth::Version::STRING gem.description = %q{Internal authentication handlers for OmniAuth.} diff --git a/oa-identity/spec/spec_helper.rb b/oa-identity/spec/spec_helper.rb index 8d820cd..4c1ab8b 100644 --- a/oa-identity/spec/spec_helper.rb +++ b/oa-identity/spec/spec_helper.rb @@ -1,6 +1,6 @@ require 'rubygems' require 'bundler' -Bundler.setup :default, :test +Bundler.setup :default, :development, :test require 'simplecov' SimpleCov.start