mirror of
https://github.com/puppetlabs/vmfloaty.git
synced 2026-05-31 07:25:21 -04:00
Bumps [simplecov-lcov](https://github.com/fortissimo1997/simplecov-lcov) from 0.8.0 to 0.9.0. - [Release notes](https://github.com/fortissimo1997/simplecov-lcov/releases) - [Changelog](https://github.com/fortissimo1997/simplecov-lcov/blob/master/CHANGELOG.md) - [Commits](https://github.com/fortissimo1997/simplecov-lcov/compare/v0.8.0...v0.9.0) --- updated-dependencies: - dependency-name: simplecov-lcov dependency-version: 0.9.0 dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
20 lines
427 B
Ruby
20 lines
427 B
Ruby
# frozen_string_literal: true
|
|
|
|
source 'https://rubygems.org'
|
|
|
|
gemspec
|
|
|
|
gem 'rake', require: false
|
|
|
|
group :test do
|
|
# base64 is a bundled gem in Ruby >= 3.4, so it must be declared explicitly.
|
|
gem 'base64'
|
|
gem 'simplecov', '~> 0.22.0'
|
|
gem 'simplecov-html', '~> 0.13.1'
|
|
gem 'simplecov-lcov', '~> 0.9.0'
|
|
gem 'pry'
|
|
gem 'rb-readline'
|
|
gem 'rspec', '~> 3.13.0'
|
|
gem 'rubocop', '~> 1.66'
|
|
gem 'webmock', '~> 3.23'
|
|
end
|