mirror of
https://github.com/microsoft/regorus.git
synced 2026-08-05 02:16:11 +00:00
Bumps the per-dependency group in /bindings/ruby with 1 update: [rubocop](https://github.com/rubocop/rubocop). Updates `rubocop` from 1.85.0 to 1.85.1 - [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.85.0...v1.85.1) --- updated-dependencies: - dependency-name: rubocop dependency-version: 1.85.1 dependency-type: direct:production update-type: version-update:semver-patch 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.3"
|
|
gem "rake-compiler", "~> 1.3"
|
|
gem "rake-compiler-dock", "~> 1.11"
|
|
gem "rubocop", "~> 1.86", require: false
|
|
gem "rubocop-minitest", "~> 0.39.1", require: false
|
|
gem "rubocop-rake", "~> 0.7.1", require: false
|