Sha256: 9ce890d4a83a50f12a9eb8598008844a469422d0e9ae24469e2ba2b2953cf453

Contents?: true

Size: 284 Bytes

Versions: 3

Compression:

Stored size: 284 Bytes

Contents

require 'bundler/gem_tasks'
require 'rspec/core/rake_task'

RSpec::Core::RakeTask.new(:spec)

task :cop do
  system 'bundle exec rubocop lib'
end

task :reek do
  system 'bundle exec reek lib'
end

task :doc do
  system 'bundle exec yard doc'
end

task default: %i[cop reek spec doc]

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
rack-component-0.3.0 Rakefile
rack-component-0.2.0 Rakefile
rack-component-0.1.0 Rakefile