Class: Simulator::Make

Inherits:
Object
  • Object
show all
Includes:
Base
Defined in:
lib/logpoop/simulator/make.rb

Constant Summary collapse

HEADERS =
Dir["/usr/local/include/*.h"]

Instance Method Summary collapse

Methods included from Base

#clear_screen, included, #initialize, #simulate, #stop

Instance Method Details

#fake_itObject



7
8
9
10
11
12
13
# File 'lib/logpoop/simulator/make.rb', line 7

def fake_it
  while !@stop do
    string, wait = next_iteration
    self.out.puts string
    sleep wait
  end
end