class Shaf::Tasks::TestTask

Public Class Methods

new(*args) { |self| ... } click to toggle source
Calls superclass method
# File lib/shaf/tasks/test_task.rb, line 6
def initialize(*args)
  super(*args) do |t|
    t.libs = %w(. api spec)
    t.verbose = true
    t.warning = false
    yield self if block_given?
  end
end