File: Rakefile

package info (click to toggle)
ruby-buff-ignore 1.2.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 164 kB
  • sloc: ruby: 183; makefile: 3
file content (10 lines) | stat: -rw-r--r-- 191 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
#require 'bundler/gem_tasks'
require 'rspec/core/rake_task'

RSpec::Core::RakeTask.new do |t|
  t.rspec_opts = [
    '--color',
    '--format progress',
  ].join(' ')
end
task default: :spec