Add rubocop-performance gem and config to fix deprecation message (#430)

* Add rubocop-performance gem and config to fix deprecation message

* ehhh apparently the order of the gemfile matters?

Gemfile:14:3: C: Bundler/OrderedGems: Gems should be sorted in an alphabetical order within their section of the Gemfile. Gem rubocop-github should appear before rubocop-performance.
  gem "rubocop-github"
  ^^^^^^^^^^^^^^^^^^^^
This commit is contained in:
Neil Matatall 2020-02-20 09:26:20 -10:00 коммит произвёл GitHub
Родитель d6cbf1a981
Коммит c3e47ee04e
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -1,3 +1,4 @@
inherit_gem:
rubocop-github:
- config/default.yml
require: rubocop-performance

Просмотреть файл

@ -11,6 +11,7 @@ group :test do
gem "rspec"
gem "rubocop", "< 0.68"
gem "rubocop-github"
gem "rubocop-performance"
gem "term-ansicolor"
gem "tins"
end