class Github::API

def initialize(options={}, &block)

Creates new API
def initialize(options={}, &block)
  super()
  setup options
  set_api_client
  client if client_id? && client_secret?
  self.instance_eval(&block) if block_given?
end