File: Rakefile

package info (click to toggle)
ruby-filepath 0.7-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster
  • size: 244 kB
  • sloc: ruby: 1,691; makefile: 5
file content (12 lines) | stat: -rw-r--r-- 269 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
# This is free software released into the public domain (CC0 license).

require 'rspec/core/rake_task'

require File.join(File.dirname(__FILE__), 'spec/tasks')

RSpec::Core::RakeTask.new

task :default => :spec
task :release => :spec

task :spec => 'spec:fixtures:gen'