class Bugzilla::APITemplate
Bugzilla::APITemplate¶ ↑
Public Class Methods
new(iface)
click to toggle source
Calls superclass method
# File lib/bugzilla/api_tmpl.rb, line 34 def initialize(iface) super @bz = Bugzilla.new(iface) end
Public Instance Methods
method_missing(symbol, *args)
click to toggle source
Calls superclass method
# File lib/bugzilla/api_tmpl.rb, line 40 def method_missing(symbol, *args) if @bz.respond_to?(symbol) then @bz.__send__(symbol, *args) else super end end