From efa7c215e24f7a1e6f6455d1bc5955dd016c527e Mon Sep 17 00:00:00 2001 From: Maikel Linke Date: Fri, 4 Dec 2015 14:35:49 +1100 Subject: [PATCH] Removing usage of SimpleCov --- Gemfile | 1 - Gemfile.lock | 5 ----- script/rails | 5 ----- spec/spec_helper.rb | 4 ---- 4 files changed, 15 deletions(-) diff --git a/Gemfile b/Gemfile index a49c7ef06a..00fd2c8908 100644 --- a/Gemfile +++ b/Gemfile @@ -97,7 +97,6 @@ group :test, :development do gem 'factory_girl_rails', :require => false gem 'capybara' gem 'database_cleaner', '0.7.1', :require => false - gem 'simplecov', :require => false gem 'awesome_print' gem 'letter_opener' gem 'timecop' diff --git a/Gemfile.lock b/Gemfile.lock index 2ca20d0d66..bbcbfde415 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -575,10 +575,6 @@ GEM thor (~> 0.14) shoulda-matchers (1.1.0) activesupport (>= 3.0.0) - simplecov (0.7.1) - multi_json (~> 1.0) - simplecov-html (~> 0.7.1) - simplecov-html (0.7.1) slop (3.4.5) spinjs-rails (1.3) rails (>= 3.1) @@ -713,7 +709,6 @@ DEPENDENCIES sass-rails (~> 3.2.3) shoulda-matchers simple_form! - simplecov spinjs-rails spree! spree_auth_devise! diff --git a/script/rails b/script/rails index a444686425..f8da2cffd4 100755 --- a/script/rails +++ b/script/rails @@ -1,11 +1,6 @@ #!/usr/bin/env ruby # This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application. -if ENV['RAILS_ENV'] == 'test' - require 'simplecov' - SimpleCov.start 'rails' -end - APP_PATH = File.expand_path('../../config/application', __FILE__) require File.expand_path('../../config/boot', __FILE__) require 'rails/commands' diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 155b617860..d9a1e1b262 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -1,7 +1,3 @@ -require 'simplecov' -SimpleCov.start - - require 'rubygems' # Require pry when we're not inside Travis-CI