class Shindo::Rake

def initialize

def initialize
  desc "Run shindo tests"
  task :tests do
    system 'shindo'
    fail if $? != 0
  end
end