NullVoxPopuli/drawers

View on GitHub

Showing 21 of 21 total issues

Gem rails requirements already given on line 19 of the Gemfile.
Open

  gem 'rails', "~> #{version}.0"
Severity: Minor
Found in Gemfile by rubocop

A Gem's requirements should be listed only once in a Gemfile.

Example:

# bad
gem 'rubocop'
gem 'rubocop'

# bad
group :development do
  gem 'rubocop'
end

group :test do
  gem 'rubocop'
end

# good
group :development, :test do
  gem 'rubocop'
end

# good
gem 'rubocop', groups: [:development, :test]
Severity
Category
Status
Source
Language