Class: Chandler::GitHub::InvalidRepository
- Defined in:
- lib/chandler/github/errors.rb
Instance Method Summary collapse
-
#initialize(repository) ⇒ InvalidRepository
constructor
A new instance of InvalidRepository.
- #message ⇒ Object
Constructor Details
#initialize(repository) ⇒ InvalidRepository
Returns a new instance of InvalidRepository.
6 7 8 |
# File 'lib/chandler/github/errors.rb', line 6 def initialize(repository) @repository = repository end |
Instance Method Details
#message ⇒ Object
10 11 12 13 14 |
# File 'lib/chandler/github/errors.rb', line 10 def "Failed to find GitHub repository: #{@repository}.\n"\ "Verify you have permission to access it. Use the --github option to "\ "specify a different repository." end |