From 5f32d3a901684528a30ed23554cacfe1803eefdb Mon Sep 17 00:00:00 2001 From: Thomas Reynolds Date: Mon, 26 Feb 2018 10:24:25 -0800 Subject: [PATCH] Remove coveralls --- Gemfile | 1 - README.md | 2 -- middleman-cli/features/support/env.rb | 3 --- middleman-core/features/support/env.rb | 3 --- middleman-core/spec/spec_helper.rb | 5 ----- 5 files changed, 14 deletions(-) diff --git a/Gemfile b/Gemfile index 74f3a972..73d508c9 100644 --- a/Gemfile +++ b/Gemfile @@ -41,7 +41,6 @@ gem 'therubyracer', '~> 0.12.3', platforms: :ruby # Code Quality gem 'rubocop', '~> 0.24', require: false gem 'simplecov', '~> 0.10', require: false -gem 'coveralls', '~> 0.8', require: false # Middleman itself gem 'middleman-cli', path: 'middleman-cli' diff --git a/README.md b/README.md index 6f71917a..f774e2ba 100644 --- a/README.md +++ b/README.md @@ -68,7 +68,6 @@ Additionally, up-to-date generated code documentation is available on [RubyDoc] [![License](http://img.shields.io/badge/license-MIT-blue.svg?style=flat)][license] [![Dependency Status](http://img.shields.io/gemnasium/middleman/middleman.svg?style=flat)][gemnasium] [![Build Status](http://img.shields.io/travis/middleman/middleman.svg?style=flat)][travis] -[![Code Coverage](http://img.shields.io/coveralls/middleman/middleman.svg?style=flat)][coveralls] [![Gittip](http://img.shields.io/gittip/middleman.svg?style=flat)][gittip] ## Community @@ -115,7 +114,6 @@ Copyright (c) 2010-2017 Thomas Reynolds. MIT Licensed, see [LICENSE] for details [middleman]: http://middlemanapp.com [gem]: https://rubygems.org/gems/middleman [travis]: http://travis-ci.org/middleman/middleman -[coveralls]: https://coveralls.io/r/middleman/middleman [gemnasium]: https://gemnasium.com/middleman/middleman [gittip]: https://www.gittip.com/middleman/ [rubyinstaller]: http://rubyinstaller.org/ diff --git a/middleman-cli/features/support/env.rb b/middleman-cli/features/support/env.rb index 65eb7047..bb5b7ab3 100644 --- a/middleman-cli/features/support/env.rb +++ b/middleman-cli/features/support/env.rb @@ -8,9 +8,6 @@ SimpleCov.root(File.expand_path(File.dirname(__FILE__) + '/../..')) require 'phantomjs/poltergeist' Capybara.javascript_driver = :poltergeist -require 'coveralls' -Coveralls.wear! - require 'simplecov' SimpleCov.start diff --git a/middleman-core/features/support/env.rb b/middleman-core/features/support/env.rb index 7f2fb7cd..5790cd19 100644 --- a/middleman-core/features/support/env.rb +++ b/middleman-core/features/support/env.rb @@ -8,9 +8,6 @@ SimpleCov.root(File.expand_path(File.dirname(__FILE__) + '/../..')) require 'phantomjs/poltergeist' Capybara.javascript_driver = :poltergeist -require 'coveralls' -Coveralls.wear! - require 'simplecov' SimpleCov.start diff --git a/middleman-core/spec/spec_helper.rb b/middleman-core/spec/spec_helper.rb index 3ec78cdc..563337a1 100644 --- a/middleman-core/spec/spec_helper.rb +++ b/middleman-core/spec/spec_helper.rb @@ -1,10 +1,5 @@ require 'simplecov' SimpleCov.root(File.expand_path(File.dirname(__FILE__) + '/..')) - -require 'coveralls' -Coveralls.wear! - -require 'simplecov' SimpleCov.start require 'aruba/api'