mirror of
https://github.com/microsoft/regorus.git
synced 2026-08-05 02:16:11 +00:00
Bumps the per-dependency group with 2 updates in the /bindings/ruby directory: [rubocop](https://github.com/rubocop/rubocop) and [rubocop-minitest](https://github.com/rubocop/rubocop-minitest). Updates `rubocop` from 1.88.0 to 1.88.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.88.0...v1.88.2) Updates `rubocop-minitest` from 0.39.1 to 0.40.0 - [Release notes](https://github.com/rubocop/rubocop-minitest/releases) - [Changelog](https://github.com/rubocop/rubocop-minitest/blob/master/CHANGELOG.md) - [Commits](https://github.com/rubocop/rubocop-minitest/compare/v0.39.1...v0.40.0) --- updated-dependencies: - dependency-name: rubocop dependency-version: 1.88.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: per-dependency - dependency-name: rubocop-minitest dependency-version: 0.40.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: per-dependency ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
17 lines
485 B
Ruby
17 lines
485 B
Ruby
# frozen_string_literal: true
|
|
|
|
source "https://rubygems.org"
|
|
|
|
# Specify your gem's dependencies in regorusrb.gemspec
|
|
gemspec
|
|
|
|
# These gems are required for local development and testing,
|
|
# but won't be included in the published gem
|
|
gem "minitest", "~> 6.0"
|
|
gem "rake", "~> 13.4"
|
|
gem "rake-compiler", "~> 1.3"
|
|
gem "rake-compiler-dock", "~> 1.12"
|
|
gem "rubocop", "~> 1.88", require: false
|
|
gem "rubocop-minitest", "~> 0.40.0", require: false
|
|
gem "rubocop-rake", "~> 0.7.1", require: false
|