Enable LineLength cop.

This commit is contained in:
Andy Brody 2017-07-05 01:46:11 -04:00
parent 98d6a7fab7
commit 2ba8bdc8d5
2 changed files with 5 additions and 6 deletions

View File

@ -200,11 +200,10 @@ Style/Lambda:
Layout/LeadingCommentSpace:
Enabled: false
# TODO
# Offense count: 218
# Configuration parameters: AllowURI.
Metrics/LineLength:
Max: 340
Exclude:
- 'spec/**/*.rb'
- 'Rakefile'
# TODO
# Offense count: 28

View File

@ -70,8 +70,8 @@ namespace :all do
task :build => ['ruby:build'] + \
WindowsPlatforms.map {|p| "windows:#{p}:build"}
desc "Create tag v#{RestClient::VERSION} and for all platforms build and push " \
"rest-client #{RestClient::VERSION} to Rubygems"
desc "Create tag v#{RestClient::VERSION} and for all platforms build and " \
"push rest-client #{RestClient::VERSION} to Rubygems"
task :release => ['build', 'ruby:release'] + \
WindowsPlatforms.map {|p| "windows:#{p}:push"}