File: Rakefile

package info (click to toggle)
jgrep 1.5.4-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 184 kB
  • sloc: ruby: 1,004; makefile: 8
file content (10 lines) | stat: -rw-r--r-- 208 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
require 'rspec/core/rake_task'

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

desc "Run rubycop style checks"
task :rubocop do
  sh("rubocop -f progress -f offenses lib spec bin")
end

task :default => [:rubocop, :spec]