Class: Gopher::TextHandler

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

Instance Attribute Summary collapse

Attributes inherited from Handler

#app

Instance Method Summary collapse

Methods inherited from Handler

#host, #port, #with

Constructor Details

#initialize(&block) ⇒ TextHandler

Returns a new instance of TextHandler.



106
107
108
# File 'lib/gopher.rb', line 106

def initialize(&block)
  @block = block
end

Instance Attribute Details

#blockObject

Returns the value of attribute block.



104
105
106
# File 'lib/gopher.rb', line 104

def block
  @block
end

#resultObject

Returns the value of attribute result.



104
105
106
# File 'lib/gopher.rb', line 104

def result
  @result
end

Instance Method Details

#call(*args) ⇒ Object



110
111
112
113
114
# File 'lib/gopher.rb', line 110

def call(*args)
  context = TextContext.new
  context.instance_exec(*args, &block)
  context.result
end