diff --git a/.rubocop.yml b/.rubocop.yml index e31dd82b..af373e92 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -17,10 +17,10 @@ Style/ClassVars: Enabled: false # We need these names for backwards compatability -Style/PredicateName: +Naming/PredicateName: Enabled: false -Style/AccessorMethodName: +Naming/AccessorMethodName: Enabled: false # This has been used for customization @@ -45,7 +45,7 @@ Performance/Count: Style/RaiseArgs: Enabled: false -Style/OpMethod: +Naming/BinaryOperatorParameterName: Enabled: false # We can use good judgement here @@ -59,28 +59,28 @@ Style/AsciiComments: Lint/EndAlignment: Enabled: false -Style/ElseAlignment: +Layout/ElseAlignment: Enabled: false -Style/IndentationWidth: +Layout/IndentationWidth: Enabled: false -Style/AlignParameters: +Layout/AlignParameters: Enabled: false -Style/ClosingParenthesisIndentation: +Layout/ClosingParenthesisIndentation: Enabled: false -Style/MultilineMethodCallIndentation: +Layout/MultilineMethodCallIndentation: Enabled: false -Style/IndentArray: +Layout/IndentArray: Enabled: false -Style/IndentHash: +Layout/IndentHash: Enabled: false -Style/AlignHash: +Layout/AlignHash: Enabled: false # From http://relaxed.ruby.style/ @@ -101,7 +101,7 @@ Style/Documentation: Enabled: false StyleGuide: http://relaxed.ruby.style/#styledocumentation -Style/DotPosition: +Layout/DotPosition: Enabled: false StyleGuide: http://relaxed.ruby.style/#styledotposition @@ -169,11 +169,11 @@ Style/SingleLineMethods: Enabled: false StyleGuide: http://relaxed.ruby.style/#stylesinglelinemethods -Style/SpaceBeforeBlockBraces: +Layout/SpaceBeforeBlockBraces: Enabled: false StyleGuide: http://relaxed.ruby.style/#stylespacebeforeblockbraces -Style/SpaceInsideParens: +Layout/SpaceInsideParens: Enabled: false StyleGuide: http://relaxed.ruby.style/#stylespaceinsideparens diff --git a/Gemfile b/Gemfile index 95d91f6e..dc54be63 100644 --- a/Gemfile +++ b/Gemfile @@ -23,10 +23,10 @@ gem 'sassc-rails', platforms: :mri group :development, :test do gem 'listen' - gem 'launchy' gem "pry-rails" gem 'selenium-webdriver', require: false gem 'chromedriver-helper', require: false + gem 'ffaker' end gemspec