.rubocop.yml in app-info-2.6.5 vs .rubocop.yml in app-info-2.7.0.beta1

- old
+ new

@@ -18,14 +18,16 @@ NewCops: enable SuggestExtensions: false Exclude: - 'bin/*' - 'spec/**/*' - - vendor/bundle/**/* + - 'vendor/bundle/**/*' - 'Rakefile' - 'app_info.gemspec' - 'lib/app-info.rb' + - 'lib/app_info/protobuf/models/*_pb.rb' + - 'main.rb' Metrics/AbcSize: Max: 100 Metrics/BlockLength: @@ -54,6 +56,21 @@ Lint/AssignmentInCondition: Enabled: false Style/Documentation: - Enabled: false \ No newline at end of file + Enabled: false + +Style/PerlBackrefs: + Exclude: + - 'lib/app_info/core_ext/string/inflector.rb' + +Style/DocumentDynamicEvalDefinition: + Enabled: false + +Metrics/BlockNesting: + Exclude: + - 'lib/app_info/dsym.rb' + + +Style/SlicingWithRange: + Enabled: false