Skip to content

Commit

Permalink
Remove coveralls (#2553)
Browse files Browse the repository at this point in the history
Co-authored-by: Takuya Noguchi <takninnovationresearch@gmail.com>

Co-authored-by: Thomas Reynolds <me@tdreyno.com>
  • Loading branch information
tnir and tdreyno committed Jul 13, 2022
1 parent 75d59b4 commit 4486a31
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 22 deletions.
1 change: 0 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ gem 'rubydns', '~> 1.0.1', require: false
gem 'therubyrhino', '>= 2.0', platforms: :jruby

# Code Quality
gem 'coveralls', require: false
gem 'rubocop', require: false
gem 'simplecov', require: false

Expand Down
12 changes: 0 additions & 12 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -71,12 +71,6 @@ GEM
coffee-script-source (1.12.2)
concurrent-ruby (1.1.9)
contracts (0.13.0)
coveralls (0.8.19)
json (>= 1.8, < 3)
simplecov (~> 0.12.0)
term-ansicolor (~> 1.3)
thor (~> 0.19.1)
tins (~> 1.6)
cucumber (2.99.0)
builder (>= 2.1.2)
cucumber-core (~> 1.5.0)
Expand Down Expand Up @@ -203,16 +197,11 @@ GEM
slim (4.1.0)
temple (>= 0.7.6, < 0.9)
tilt (>= 2.0.6, < 2.1)
sync (0.5.0)
temple (0.8.2)
term-ansicolor (1.7.1)
tins (~> 1.0)
thor (0.19.4)
tilt (2.0.10)
timers (4.0.4)
hitimes
tins (1.29.1)
sync
toml (0.3.0)
parslet (>= 1.8.0, < 3.0.0)
tzinfo (2.0.4)
Expand All @@ -234,7 +223,6 @@ DEPENDENCIES
byebug
capybara (~> 2.5.0)
coffee-script (~> 2.2)
coveralls
cucumber (~> 2.0)
haml (~> 4.0)
kramdown (~> 1.2)
Expand Down
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ Additionally, up-to-date generated code documentation is available on [RubyDoc].
[![Gem Version](http://img.shields.io/gem/v/middleman.svg?style=flat)][gem]
[![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]
[![Code Coverage](http://img.shields.io/coveralls/middleman/middleman.svg?style=flat)][coveralls]
[![Code Quality](http://img.shields.io/codeclimate/github/middleman/middleman.svg?style=flat)][codeclimate]
[![Gittip](http://img.shields.io/gittip/middleman.svg?style=flat)][gittip]

Expand Down Expand Up @@ -114,7 +113,6 @@ Copyright (c) 2010-2020 Thomas Reynolds. MIT Licensed, see [LICENSE] for details

[middleman]: http://middlemanapp.com
[gem]: https://rubygems.org/gems/middleman
[coveralls]: https://coveralls.io/r/middleman/middleman
[gemnasium]: https://gemnasium.com/middleman/middleman
[codeclimate]: https://codeclimate.com/github/middleman/middleman
[gittip]: https://www.gittip.com/middleman/
Expand Down
3 changes: 1 addition & 2 deletions middleman-cli/features/support/env.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@
require 'simplecov'
SimpleCov.root(File.expand_path(File.dirname(__FILE__) + '/../..'))

require 'coveralls'
Coveralls.wear!
SimpleCov.start

PROJECT_ROOT_PATH = File.dirname(File.dirname(File.dirname(__FILE__)))
require File.join(PROJECT_ROOT_PATH, 'lib', 'middleman-cli')
Expand Down
3 changes: 1 addition & 2 deletions middleman-core/features/support/env.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@
require 'simplecov'
SimpleCov.root(File.expand_path(File.dirname(__FILE__) + '/../..'))

require 'coveralls'
Coveralls.wear!
SimpleCov.start

PROJECT_ROOT_PATH = File.dirname(File.dirname(File.dirname(__FILE__)))
require File.join(PROJECT_ROOT_PATH, 'lib', 'middleman-core')
Expand Down
4 changes: 1 addition & 3 deletions middleman-core/spec/spec_helper.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
require 'simplecov'
SimpleCov.root(File.expand_path(File.dirname(__FILE__) + '/..'))

require 'coveralls'
Coveralls.wear!
SimpleCov.start

require 'aruba/api'
RSpec.configure do |config|
Expand Down

0 comments on commit 4486a31

Please sign in to comment.