class GithubStatusNotifier::Client
Public Instance Methods
create_status(state, params)
click to toggle source
# File lib/github_status_notifier/client.rb, line 3 def create_status(state, params) logger.info(['create status with these:', slug, @repo.merging_sha, state, params]) return_state = client.create_status(slug, @repo.merging_sha, state, params) logger.debug(return_state) return_state end
logger()
click to toggle source
# File lib/github_status_notifier/client.rb, line 10 def logger ::GithubStatusNotifier.logger end