Class: Shindo::Rake
Instance Method Summary collapse
-
#initialize ⇒ Rake
constructor
A new instance of Rake.
Constructor Details
#initialize ⇒ Rake
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 ruby '-S', 'shindo' fail if $? != 0 end end |