mirror of
https://github.com/usetrmnl/trmnlp.git
synced 2026-08-13 14:27:33 -07:00
Nothing measured test coverage, so a drop in coverage could land unnoticed. SimpleCov now runs from spec_helper and CI gates on a 90% floor — set just below the current 92.5% so a real regression fails the build while normal variance does not. Only 2 of the 13 lint checks had a dedicated spec; the other 11 were exercised only incidentally through the lint command against the fixture plugin. Each check now has a focused spec covering a passing and a failing input.
12 lines
215 B
Ruby
12 lines
215 B
Ruby
# frozen_string_literal: true
|
|
|
|
source 'https://rubygems.org'
|
|
|
|
gem 'rack-test', '~> 2.1'
|
|
gem 'rake', '~> 13.0'
|
|
gem 'rspec', '~> 3.13'
|
|
gem 'rubocop', require: false
|
|
gem 'simplecov', '~> 0.22', require: false
|
|
|
|
gemspec
|