mirror of
https://github.com/puppetlabs/vmfloaty.git
synced 2026-01-25 21:28:40 -05:00
Bumps [rubocop](https://github.com/rubocop/rubocop) from 1.52.0 to 1.54.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.52.0...v1.54.2) --- updated-dependencies: - dependency-name: rubocop 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.12.3'
|
|
gem 'simplecov-lcov', '~> 0.8.0'
|
|
gem 'pry'
|
|
gem 'rb-readline'
|
|
gem 'rspec', '~> 3.12.0'
|
|
gem 'rubocop', '~> 1.54'
|
|
gem 'webmock', '~> 3.13'
|
|
end
|