Method: Argus::Git#initialize
- Defined in:
- lib/argus/git.rb
#initialize(org, repo, branch = 'master', sha = nil) ⇒ Git
Returns a new instance of Git.
5 6 7 8 9 10 |
# File 'lib/argus/git.rb', line 5 def initialize(org, repo, branch = 'master', sha = nil) @org = org @repo = repo @branch = branch @sha = sha end |