class Github::ApiFactory

def self.new(klass, options={})

Instantiates a new github api object
def self.new(klass, options={})
  return _create_instance(klass, options) if klass
  raise ArgumentError, 'must provied klass to be instantiated'
end