Class: Gopher::TextHandler
Instance Attribute Summary collapse
-
#block ⇒ Object
Returns the value of attribute block.
-
#result ⇒ Object
Returns the value of attribute result.
Attributes inherited from Handler
Instance Method Summary collapse
- #call(*args) ⇒ Object
-
#initialize(&block) ⇒ TextHandler
constructor
A new instance of TextHandler.
Methods inherited from Handler
Constructor Details
#initialize(&block) ⇒ TextHandler
Returns a new instance of TextHandler.
107 108 109 |
# File 'lib/gopher.rb', line 107 def initialize(&block) @block = block end |
Instance Attribute Details
#block ⇒ Object
Returns the value of attribute block.
105 106 107 |
# File 'lib/gopher.rb', line 105 def block @block end |
#result ⇒ Object
Returns the value of attribute result.
105 106 107 |
# File 'lib/gopher.rb', line 105 def result @result end |
Instance Method Details
#call(*args) ⇒ Object
111 112 113 114 115 |
# File 'lib/gopher.rb', line 111 def call(*args) context = TextContext.new context.instance_exec(*args, &block) context.result end |