Skip to content

Commit 49f3b65

Browse files
committed
Replace unmaintained coveralls gem with coveralls_reborn
1 parent 754ba28 commit 49f3b65

File tree

3 files changed

+11
-21
lines changed

3 files changed

+11
-21
lines changed

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ group :test do
9393
# Capybara for integration testing
9494
gem 'capybara', '>= 2.15'
9595
# Coveralls for test coverage reporting
96-
gem 'coveralls'
96+
gem 'coveralls_reborn', require: false
9797
# Database cleaner for test database cleaning
9898
gem 'database_cleaner'
9999
gem 'database_cleaner-active_record'

Gemfile.lock

Lines changed: 9 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -181,12 +181,11 @@ GEM
181181
coderay (1.1.3)
182182
concurrent-ruby (1.3.4)
183183
connection_pool (2.4.1)
184-
coveralls (0.7.1)
185-
multi_json (~> 1.3)
186-
rest-client
187-
simplecov (>= 0.7)
188-
term-ansicolor
189-
thor
184+
coveralls_reborn (0.28.0)
185+
simplecov (~> 0.22.0)
186+
term-ansicolor (~> 1.7)
187+
thor (~> 1.2)
188+
tins (~> 1.32)
190189
crass (1.0.6)
191190
dartsass-sprockets (3.1.0)
192191
railties (>= 4.0.0)
@@ -219,8 +218,6 @@ GEM
219218
declarative (>= 0.0.9, < 1.0.0)
220219
representable (>= 3.1.1, < 4)
221220
docile (1.4.0)
222-
domain_name (0.5.20190701)
223-
unf (>= 0.0.5, < 1.0.0)
224221
drb (2.2.1)
225222
dry-auto_inject (1.0.1)
226223
dry-core (~> 1.0)
@@ -275,9 +272,6 @@ GEM
275272
rake (>= 13)
276273
highline (3.1.0)
277274
reline
278-
http-accept (1.7.0)
279-
http-cookie (1.0.5)
280-
domain_name (~> 0.5)
281275
i18n (1.14.5)
282276
concurrent-ruby (~> 1.0)
283277
i18n-tasks (1.0.14)
@@ -357,7 +351,6 @@ GEM
357351
timeout
358352
net-smtp (0.5.0)
359353
net-protocol
360-
netrc (0.11.0)
361354
nio4r (2.7.3)
362355
nokogiri (1.16.7-x86_64-linux)
363356
racc (~> 1.4)
@@ -462,11 +455,6 @@ GEM
462455
responders (3.1.1)
463456
actionpack (>= 5.2)
464457
railties (>= 5.2)
465-
rest-client (2.1.0)
466-
http-accept (>= 1.7.0, < 2.0)
467-
http-cookie (>= 1.0.2, < 2.0)
468-
mime-types (>= 1.16, < 4.0)
469-
netrc (~> 0.8)
470458
rexml (3.3.6)
471459
strscan
472460
rgeo (3.0.1)
@@ -581,14 +569,15 @@ GEM
581569
stringio (3.1.1)
582570
strscan (3.1.0)
583571
sync (0.5.0)
584-
term-ansicolor (1.7.1)
572+
term-ansicolor (1.11.2)
585573
tins (~> 1.0)
586574
terminal-table (3.0.2)
587575
unicode-display_width (>= 1.1.1, < 3)
588576
thor (1.3.1)
589577
tilt (2.3.0)
590578
timeout (0.4.1)
591-
tins (1.32.1)
579+
tins (1.33.0)
580+
bigdecimal
592581
sync
593582
trailblazer-option (0.1.2)
594583
translate_enum (0.2.0)
@@ -646,7 +635,7 @@ DEPENDENCIES
646635
bundler-audit
647636
byebug
648637
capybara (>= 2.15)
649-
coveralls
638+
coveralls_reborn
650639
database_cleaner
651640
database_cleaner-active_record
652641
factory_bot_rails

spec/spec_helper.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818

1919
require 'simplecov'
2020
require 'coveralls'
21+
Coveralls.wear!('rails')
2122

2223
SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter.new(
2324
[

0 commit comments

Comments
 (0)