Sha256: d6c50c0a910b36cba60e1943c7b01ec990276e787096074f637b7546a34c4c66
Contents?: true
Size: 321 Bytes
Versions: 5
Compression:
Stored size: 321 Bytes
Contents
#!/usr/bin/env rake require "bundler/gem_tasks" require 'rake/testtask' namespace :test do Rake::TestTask.new do |t| t.name = :unit t.libs << "test" t.pattern = 'test/unit/**/*_test.rb' t.verbose = true end Rake::Task['test:unit'].comment = "Run the unit tests" end task :default => 'test:unit'
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
exception_handling-1.0.4 | Rakefile |
exception_handling-1.0.3 | Rakefile |
exception_handling-1.0.2 | Rakefile |
exception_handling-1.0.1 | Rakefile |
exception_handling-1.0.0 | Rakefile |