Sha256: 04e92eec80e5dc096c5451e7c9454ea7d8e4fd37a1de6138764b1ae85fe98397

Contents?: true

Size: 280 Bytes

Versions: 167

Compression:

Stored size: 280 Bytes

Contents

require 'rubocop/rake_task'

desc 'Run RuboCop on the lib directory'
RuboCop::RakeTask.new(:rubocop) do |task|
  task.patterns = ['lib/**/*.rb']
  # only show the files with failures
  task.formatters = ['progress']
  # don't abort rake on failure
  task.fail_on_error = false
end

Version data entries

167 entries across 167 versions & 2 rubygems

Version Path
google-api-client-0.9.1 rakelib/rubocop.rake
google-api-client-0.9 rakelib/rubocop.rake
google-api-client-0.9.pre5 rakelib/rubocop.rake
google-api-client-0.9.pre4 rakelib/rubocop.rake
google-api-client-0.9.pre3 rakelib/rubocop.rake
google-api-client-0.9.pre2 rakelib/rubocop.rake
google-api-client-0.9.pre1 rakelib/rubocop.rake