Object
# File lib/bugzilla/skeleton.rb, line 35 def method_missing(symbol, *args) m = "_#{symbol}" klass = self.class.to_s.sub(/\ABugzilla::/, '') fm = "#{klass}.#{symbol}" if self.respond_to?(m) then __send__(m, fm, *args) else raise NoMethodError, sprintf("No such Bugzilla APIs: %s.%s", klass, symbol) end end
Generated with the Darkfish Rdoc Generator 2.