class Chandler::GitHub::InvalidRepository
Public Class Methods
new(repository)
click to toggle source
# File lib/chandler/github/errors.rb, line 6 def initialize(repository) @repository = repository end
Public Instance Methods
message()
click to toggle source
# File lib/chandler/github/errors.rb, line 10 def message "Failed to find GitHub repository: #{@repository}.\n"\ "Verify you have permission to access it. Use the --github option to "\ "specify a different repository." end