Skip to content

Commit

Permalink
Fix the gemfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Startouf committed Jun 9, 2019
1 parent 3626057 commit a16e94f
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 24 deletions.
46 changes: 23 additions & 23 deletions .rubocop_todo.yml
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
# This configuration was generated by
# `rubocop --auto-gen-config`
# on 2018-08-12 23:34:44 -0700 using RuboCop version 0.48.1.
# on 2019-06-09 13:41:12 +0200 using RuboCop version 0.60.0.
# The point is for the user to remove these configuration records
# one by one as the offenses are removed from the code base.
# Note that changes in the inspected code, or installation of new
# versions of RuboCop, may require this file to be generated again.

# Offense count: 7
# Configuration parameters: Include.
# Include: **/Gemfile, **/gems.rb
# Include: **/*.gemfile, **/Gemfile, **/gems.rb
Bundler/DuplicatedGem:
Exclude:
- 'Gemfile'

# Offense count: 1
# Cop supports --auto-correct.
# Configuration parameters: EnforcedStyleAlignWith, SupportedStylesAlignWith, AutoCorrect.
# Configuration parameters: EnforcedStyleAlignWith, AutoCorrect, Severity.
# SupportedStylesAlignWith: keyword, variable, start_of_line
Lint/EndAlignment:
Layout/EndAlignment:
Exclude:
- 'lib/mongoid/history/options.rb'

Expand All @@ -32,12 +32,13 @@ Lint/ParenthesesAsGroupedExpression:
- 'spec/integration/integration_spec.rb'
- 'spec/integration/nested_embedded_polymorphic_documents_spec.rb'

# Offense count: 21
# Offense count: 22
Metrics/AbcSize:
Max: 52

# Offense count: 118
# Offense count: 122
# Configuration parameters: CountComments, ExcludedMethods.
# ExcludedMethods: refine
Metrics/BlockLength:
Max: 837

Expand All @@ -50,26 +51,27 @@ Metrics/ClassLength:
Metrics/CyclomaticComplexity:
Max: 13

# Offense count: 392
# Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns.
# URISchemes: http, https
Metrics/LineLength:
Max: 688

# Offense count: 16
# Configuration parameters: CountComments.
# Offense count: 17
# Configuration parameters: CountComments, ExcludedMethods.
Metrics/MethodLength:
Max: 23

# Offense count: 2
# Configuration parameters: CountComments.
Metrics/ModuleLength:
Max: 182
Max: 191

# Offense count: 6
Metrics/PerceivedComplexity:
Max: 15

# Offense count: 1
# Configuration parameters: ExpectMatchingDefinition, Regex, IgnoreExecutableScripts, AllowedAcronyms.
# AllowedAcronyms: CLI, DSL, ACL, API, ASCII, CPU, CSS, DNS, EOF, GUID, HTML, HTTP, HTTPS, ID, IP, JSON, LHS, QPS, RAM, RHS, RPC, SLA, SMTP, SQL, SSH, TCP, TLS, TTL, UDP, UI, UID, UUID, URI, URL, UTF8, VM, XML, XMPP, XSRF, XSS
Naming/FileName:
Exclude:
- 'lib/mongoid-history.rb'

# Offense count: 12
Style/Documentation:
Exclude:
Expand All @@ -91,15 +93,13 @@ Style/EachWithObject:
- 'lib/mongoid/history/trackable.rb'
- 'lib/mongoid/history/tracker.rb'

# Offense count: 2
# Configuration parameters: ExpectMatchingDefinition, Regex, IgnoreExecutableScripts, AllowedAcronyms.
# AllowedAcronyms: CLI, DSL, ACL, API, ASCII, CPU, CSS, DNS, EOF, GUID, HTML, HTTP, HTTPS, ID, IP, JSON, LHS, QPS, RAM, RHS, RPC, SLA, SMTP, SQL, SSH, TCP, TLS, TTL, UDP, UI, UID, UUID, URI, URL, UTF8, VM, XML, XMPP, XSRF, XSS
Style/FileName:
Exclude:
- 'Dangerfile'
- 'lib/mongoid-history.rb'

# Offense count: 1
Style/MultilineBlockChain:
Exclude:
- 'lib/mongoid/history/tracker.rb'

# Offense count: 404
# Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns.
# URISchemes: http, https
Metrics/LineLength:
Max: 688
1 change: 0 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ gem 'mongoid-compatibility'

group :development, :test do
gem 'bundler'
gem 'byebug'
gem 'pry'
gem 'rake', '< 11.0'
end
Expand Down

0 comments on commit a16e94f

Please sign in to comment.