class Bugzilla::APITemplate
rdoc
Bugzilla::APITemplate
¶ ↑
Public Class Methods
new(iface)
click to toggle source
Calls superclass method
# File lib/bugzilla/api_template.rb, line 30 def initialize(iface) super # iface is a Bugzilla::XMLRPC object @bz = Bugzilla.new(iface) end
Public Instance Methods
method_missing(symbol, *args)
click to toggle source
Calls superclass method
# File lib/bugzilla/api_template.rb, line 36 def method_missing(symbol, *args) if @bz.respond_to?(symbol) @bz.__send__(symbol, *args) else super end end