Class: Shindo::Rake

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

Instance Method Summary collapse

Constructor Details

#initializeRake

Returns a new instance of Rake.



5
6
7
8
9
10
# File 'lib/shindo/rake.rb', line 5

def initialize
  desc "Run shindo tests"
  task :tests do
    system 'shindo'
  end
end