Class: Doodle::DeferredBlock

Inherits:
Object
  • Object
show all
Defined in:
lib/doodle.rb

Overview

save a block for later execution

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(arg_block = nil, &block) ⇒ DeferredBlock

Returns a new instance of DeferredBlock.



163
164
165
166
# File 'lib/doodle.rb', line 163

def initialize(arg_block = nil, &block)
  arg_block = block if block_given?
  @block = arg_block
end

Instance Attribute Details

#blockObject

Returns the value of attribute block.



162
163
164
# File 'lib/doodle.rb', line 162

def block
  @block
end