class GitSnatch::Configuration

Attributes

auth_types[RW]
endpoint[RW]
password[RW]
username[RW]

Public Class Methods

new() click to toggle source
# File lib/git_snatch/configuration.rb, line 18
def initialize
  self.endpoint   = 'https://raw.github.com'
  self.auth_types = :basic
  self.username   = nil
  self.password   = nil
end