File: Rakefile

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

task :default => :spec

desc 'Run tests with rspec'
RSpec::Core::RakeTask.new(:spec) do |t|
  # t.rspec_opts = '-Ilib:test'
  t.verbose = true
  t.pattern = 'test/*.rb'
end