.rubocop.yml in pacto-0.3.1 vs .rubocop.yml in pacto-0.4.0.rc1

- old
+ new

@@ -1,10 +1,32 @@ -inherit_from: .rubocop-todo.yml +require: rubocop-rspec +Documentation: + Enabled: false + +DotPosition: + Enabled: false + +LineLength: + Enabled: false + +MethodLength: + Max: 15 + +Style/Encoding: + EnforcedStyle: when_needed + AllCops: - Includes: + Include: - Guardfile - - Rakefile - - pacto.gemspec - Excludes: - - bin/** - - tmp/** + - '**/Rakefile' + - pacto*.gemspec + Exclude: + - bin/**/* + - tmp/**/* +RSpec/DescribeClass: + Exclude: + - samples/**/* + - spec/integration/**/* +RSpec/MultipleDescribes: + Exclude: + - samples/**/*