Class: Wunderbar::TextBuilder

Inherits:
BuilderClass show all
Defined in:
lib/wunderbar/builder.rb

Instance Method Summary collapse

Methods inherited from BuilderClass

#websocket

Methods inherited from BuilderBase

#get_binding, #set_variables_from_params

Constructor Details

#initialize(scope) ⇒ TextBuilder

Returns a new instance of TextBuilder.



372
373
374
375
# File 'lib/wunderbar/builder.rb', line 372

def initialize(scope)
  @_target = StringIO.new
  @_scope = scope
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(method, *args, &block) ⇒ Object

forward to Wunderbar, @_target, or @_scope



389
390
391
392
393
394
395
396
397
398
399
# File 'lib/wunderbar/builder.rb', line 389

def method_missing(method, *args, &block)
  if Wunderbar.respond_to? method
    return Wunderbar.send method, *args, &block
  elsif @_target.respond_to? method
    return @_target.send method, *args, &block
  elsif @_scope and @_scope.respond_to? method
    return @_scope.send method, *args, &block
  else
    super
  end
end

Instance Method Details

#_(*args) ⇒ Object



383
384
385
386
# File 'lib/wunderbar/builder.rb', line 383

def _(*args)
  @_target.puts *args if args.length > 0 
  self
end

#_exception(*args) ⇒ Object



401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
# File 'lib/wunderbar/builder.rb', line 401

def _exception(*args)
  exception = args.first
  if exception.respond_to? :backtrace
    Wunderbar.error exception.inspect
    @_target.puts unless size == 0
    @_target.puts exception.inspect
    exception.backtrace.each do |frame| 
      next if CALLERS_TO_IGNORE.any? {|re| frame =~ re}
      Wunderbar.warn "  #{frame}"
      @_target.puts "  #{frame}"
    end
  else
    super
  end
end

#encode(&block) ⇒ Object



377
378
379
380
381
# File 'lib/wunderbar/builder.rb', line 377

def encode(&block)
  set_variables_from_params
  self.instance_eval(&block)
  @_target.string
end

#target!Object



417
418
419
# File 'lib/wunderbar/builder.rb', line 417

def target!
  @_target.string
end