Module: Cline::OutStreams

Defined in:
lib/cline/out_streams.rb

Defined Under Namespace

Classes: WithNotify

Class Method Summary collapse

Class Method Details

.const_missing(name) ⇒ Object



6
7
8
9
10
11
12
13
# File 'lib/cline/out_streams.rb', line 6

def self.const_missing(name)
  case name
  when :WithGrowl
    WithNotify
  else
    super
  end
end