mirror of
https://github.com/puppetlabs/vmfloaty.git
synced 2026-01-26 13:28:42 -05:00
Bumps [simplecov-html](https://github.com/simplecov-ruby/simplecov-html) from 0.12.3 to 0.13.1. - [Release notes](https://github.com/simplecov-ruby/simplecov-html/releases) - [Changelog](https://github.com/simplecov-ruby/simplecov-html/blob/main/CHANGELOG.md) - [Commits](https://github.com/simplecov-ruby/simplecov-html/compare/v0.12.3...v0.13.1) --- updated-dependencies: - dependency-name: simplecov-html dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
18 lines
333 B
Ruby
18 lines
333 B
Ruby
# frozen_string_literal: true
|
|
|
|
source 'https://rubygems.org'
|
|
|
|
gemspec
|
|
|
|
gem 'rake', require: false
|
|
|
|
group :test do
|
|
gem 'simplecov', '~> 0.22.0'
|
|
gem 'simplecov-html', '~> 0.13.1'
|
|
gem 'simplecov-lcov', '~> 0.8.0'
|
|
gem 'pry'
|
|
gem 'rb-readline'
|
|
gem 'rspec', '~> 3.13.0'
|
|
gem 'rubocop', '~> 1.66'
|
|
gem 'webmock', '~> 3.23'
|
|
end
|