class PgBundle::GithubSource

The GithubSource class defines a Github Source

Attributes

branch[R]

Public Class Methods

new(path, branch = 'master') click to toggle source
Calls superclass method PgBundle::GitSource::new
# File lib/pgbundle/github_source.rb, line 7
def initialize(path, branch = 'master')
  branch = branch || 'master'
  path = "git@github.com:#{path}.git"
  super(path, branch)
end