Class: AgileNotifier::Github::Repository
- Inherits:
-
SCM::Repository
- Object
- SCM::Repository
- AgileNotifier::Github::Repository
- Defined in:
- lib/agile_notifier/github.rb
Instance Attribute Summary
Attributes inherited from SCM::Repository
Instance Method Summary collapse
Methods inherited from SCM::Repository
#get_commit, #get_committer_of_a_commit, #initialize
Constructor Details
This class inherits a constructor from AgileNotifier::SCM::Repository
Instance Method Details
#get_committer_name_of_a_commit(revision) ⇒ Object
65 66 67 68 69 |
# File 'lib/agile_notifier/github.rb', line 65 def get_committer_name_of_a_commit(revision) url = @url + "/repos/#{@user}/#{@repo}/git/commits/#{revision}" committer = Github.get_value('committer', url) committer['name'] end |