File: rake.rb

package info (click to toggle)
ruby-shindo 0.3.11-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 224 kB
  • sloc: ruby: 456; makefile: 14
file content (17 lines) | stat: -rw-r--r-- 206 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
module Shindo

  class Rake

    include ::Rake::DSL

    def initialize
      desc "Run shindo tests"
      task :tests do
        ruby '-S', 'shindo'
        fail if $? != 0
      end
    end

  end

end