Do not install lint tools in all appraisals and remove unnecessary steps

This commit is contained in:
Vasily Fedoseyev
2022-02-22 16:22:53 +03:00
parent b7370bdbff
commit 2d907efb56
6 changed files with 53 additions and 47 deletions

16
Gemfile
View File

@@ -24,11 +24,13 @@ gem 'thoughtbot-shoulda', '>= 2.9.0'
gem 'pry'
gem 'pry-byebug'
gem 'rubocop', '0.81.0'
gem 'rubocop-rails', '2.5.2'
gem 'rubocop-rspec', '1.38.1'
gem 'rubocop-performance', '1.5.2'
group :lint do
gem 'rubocop', '0.81.0'
gem 'rubocop-rails', '2.5.2'
gem 'rubocop-rspec', '1.38.1'
gem 'rubocop-performance', '1.5.2'
gem 'pronto', '>= 0.11', require: false
gem 'pronto-brakeman', require: false
gem 'pronto-rubocop', require: false
gem 'pronto', '>= 0.11', require: false
gem 'pronto-brakeman', require: false
gem 'pronto-rubocop', require: false
end