Method: ClucumberSubprocess#initialize

Defined in:
lib/clucumber.rb

#initialize(dir, options = {}) ⇒ ClucumberSubprocess

Returns a new instance of ClucumberSubprocess.



19
20
21
22
23
24
# File 'lib/clucumber.rb', line 19

def initialize(dir, options={})
  @dir = dir
  @lisp = options[:lisp] || ENV['LISP'] || 'sbcl --disable-debugger'
  @port = options[:port]
  @output = ""
end