changelog shortlog tags changeset manifest revisions annotate raw

vendor/plugins/rspec/lib/spec/runner/heckle_runner_unsupported.rb

changeset 15: 64acf98d15f4
author: moriq@moriq.com
date: Mon Mar 10 10:12:58 2008 +0900 (16 years ago)
permissions: -rw-r--r--
description: add plugins rspec
1module Spec
2 module Runner
3 # Dummy implementation for Windows that just fails (Heckle is not supported on Windows)
4 class HeckleRunner
5 def initialize(filter)
6 raise "Heckle not supported on Windows"
7 end
8 end
9 end
10end