mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-10 02:53:36 -05:00
633b8af60d
rubocop-rspec >= 3.0.0 doesn't install some gems by default, so we install them manually. Fix #5980
17 lines
495 B
Ruby
17 lines
495 B
Ruby
# frozen_string_literal: true
|
|
|
|
source "https://rubygems.org"
|
|
|
|
git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
|
|
|
|
gem "rubocop", "~> 1.62.1"
|
|
gem "rubocop-github", "~> 0.20.0"
|
|
gem "rubocop-minitest", "~> 0.35.1"
|
|
gem "rubocop-performance", "~>1.21.1"
|
|
gem "rubocop-rails", "~> 2.25"
|
|
gem "rubocop-rake", "~> 0.6.0"
|
|
gem "rubocop-rspec", "~> 3.0.3"
|
|
gem "standard", "~>1.35"
|
|
gem "rubocop-capybara", "~> 2.21"
|
|
gem "rubocop-factory_bot", "~> 2.26"
|
|
gem "rubocop-rspec_rails", "~> 2.30"
|