.rubocop.yml in message-driver-0.4.0 vs .rubocop.yml in message-driver-0.5.0

- old
+ new

@@ -4,15 +4,39 @@ Include: - 'message-driver.gemspec' - '**/Gemfile' - 'Guardfile' - 'Rakefile' + Exclude: + - 'lib/vendor/**/*.rb' + - 'vendor/**/*' +Metrics/BlockNesting: + Max: 4 + +Metrics/LineLength: + AllowURI: true + Max: 120 + Include: + - 'lib/**/*.rb' + Style/AccessorMethodName: Enabled: false -Style/BlockNesting: - Max: 4 +Style/Encoding: + Enabled: false Style/FileName: Exclude: - 'lib/message-driver.rb' + +Style/NumericLiterals: + Enabled: false + +Style/RegexpLiteral: + Exclude: + - 'Guardfile' + +Style/TrivialAccessors: + ExactNameMatch: true + AllowPredicates: true + AllowDSLWriters: true