module Bugcrowd
Constants
- VERSION
Public Class Methods
client()
click to toggle source
# File lib/bugcrowd.rb, line 7 def client @client ||= Bugcrowd::Client.new end
Private Class Methods
method_missing(method_name, *args, &block)
click to toggle source
Calls superclass method
# File lib/bugcrowd.rb, line 13 def method_missing(method_name, *args, &block) if client.respond_to?(method_name) return client.send(method_name, *args, &block) end super end