Returns the object set to var, or self if var is nil.
295 296 297
# File 'lib/tap/app.rb', line 295 def get(var) var.nil? ? self : objects[var] end