mirror of
https://github.com/puppetlabs/vmfloaty.git
synced 2026-05-30 23:25:20 -04:00
Bumps [rubocop](https://github.com/rubocop/rubocop) from 1.86.1 to 1.86.2. - [Release notes](https://github.com/rubocop/rubocop/releases) - [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md) - [Commits](https://github.com/rubocop/rubocop/compare/v1.86.1...v1.86.2) --- updated-dependencies: - dependency-name: rubocop dependency-version: 1.86.2 dependency-type: direct:development update-type: version-update:semver-patch ... 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.8.0'
|
|
gem 'pry'
|
|
gem 'rb-readline'
|
|
gem 'rspec', '~> 3.13.0'
|
|
gem 'rubocop', '~> 1.86'
|
|
gem 'webmock', '~> 3.23'
|
|
end
|