module OhlohScm::Factory

Public Instance Methods

get_core(scm_type: :git, url:, branch_name: nil, username: nil, password: nil) click to toggle source
# File lib/ohloh_scm/factory.rb, line 7
def get_core(scm_type: :git, url:, branch_name: nil, username: nil, password: nil)
  OhlohScm::Core.new(scm_type, url, branch_name, username, password)
end