diff --git a/Gemfile b/Gemfile index 583d56d..863d41d 100644 --- a/Gemfile +++ b/Gemfile @@ -44,6 +44,9 @@ group :development, :test do # Call 'byebug' anywhere in the code to stop execution and get a debugger console gem 'byebug', platforms: %i[mri mingw x64_mingw] gem 'mina', '1.2.3' + + # Use Rubocop to lint files + gem "rubocop", "~> 1.16.0" end group :development do @@ -51,6 +54,3 @@ end # Windows does not include zoneinfo files, so bundle the tzinfo-data gem gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby] - -# Use Rubocop to lint files during developing but it is not required in production -gem "rubocop", "~> 1.16.0", require: false