Class: Shindo::Rake

Inherits:
Object
  • Object
show all
Includes:
Rake::DSL
Defined in:
lib/shindo/rake.rb

Instance Method Summary collapse

Constructor Details

#initializeRake

Returns a new instance of Rake.



7
8
9
10
11
12
13
# File 'lib/shindo/rake.rb', line 7

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