File: Rakefile

package info (click to toggle)
ruby-packetfu 2.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,520 kB
  • sloc: ruby: 8,344; makefile: 2
file content (11 lines) | stat: -rw-r--r-- 187 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11

begin
  require 'rspec/core/rake_task'
rescue LoadError
  $stderr.puts "rspec not available, so can't set up spec tasks."
else
  RSpec::Core::RakeTask.new

  task :default => :spec
end