.rubocop.yml in url_regexp-0.1.3 vs .rubocop.yml in url_regexp-0.1.4

- old
+ new

@@ -4,18 +4,31 @@ - 'lib/**/*' - 'spec/**/*' Metrics/AbcSize: Max: 40 Metrics/LineLength: - Max: 99 + Max: 120 Metrics/CyclomaticComplexity: Max: 20 Metrics/PerceivedComplexity: Max: 20 Metrics/MethodLength: Max: 30 Metrics/BlockNesting: Max: 4 +Metrics/BlockLength: + Exclude: + - 'spec/**/*' Documentation: Enabled: false Style/SignalException: EnforcedStyle: only_raise +RSpec/NamedSubject: + Enabled: false +RSpec/ExampleLength: + Max: 20 +RSpec/MultipleExpectations: + Max: 10 +RSpec/NestedGroups: + Max: 5 +RSpec/SubjectStub: + Enabled: false