Module: Going

Defined in:
lib/going.rb,
lib/going/channel.rb,
lib/going/version.rb

Defined Under Namespace

Classes: Channel

Constant Summary collapse

VERSION =
'0.0.3'

Class Method Summary collapse

Class Method Details

.go(*args, &blk) ⇒ Object

Creates an async thread to run the block



9
10
11
# File 'lib/going.rb', line 9

def self.go(*args, &blk)
  Thread.new(*args, &blk)
end