Class: Travis::CLI::RepoCommand
- Inherits:
-
ApiCommand
- Object
- Command
- ApiCommand
- Travis::CLI::RepoCommand
- Defined in:
- lib/travis/cli/repo_command.rb
Constant Summary collapse
- GIT_REGEX =
%r{^(?:https://|git://|git@)github\.com[:/](.*/.+?)(\.git)?$}
Instance Attribute Summary collapse
-
#slug ⇒ Object
Returns the value of attribute slug.
Attributes inherited from ApiCommand
Attributes inherited from Command
#arguments, #config, #force_interactive, #formatter, #input, #output
Instance Method Summary collapse
Methods inherited from ApiCommand
#authenticate, #endpoint_config, #initialize, #org?, #pro?, #sync
Methods included from Travis::Client::Methods
#access_token, #access_token=, #api_endpoint, #api_endpoint=, #artifact, #explicit_api_endpoint?, #github_auth, #repo, #repos, #restart, #user, #worker, #workers
Methods inherited from Command
abstract, abstract?, command_name, #command_name, #debug, #execute, #help, #initialize, #parse, #say, skip, #terminal, #usage, #write_to
Methods included from Parser
Constructor Details
This class inherits a constructor from Travis::CLI::ApiCommand
Instance Attribute Details
#slug ⇒ Object
Returns the value of attribute slug.
9 10 11 |
# File 'lib/travis/cli/repo_command.rb', line 9 def slug @slug end |
Instance Method Details
#repository ⇒ Object
19 20 21 22 23 |
# File 'lib/travis/cli/repo_command.rb', line 19 def repository repo(slug) rescue Travis::Client::NotFound error "repository not known to #{api_endpoint}: #{color(slug, :important)}" end |
#setup ⇒ Object
12 13 14 15 16 17 |
# File 'lib/travis/cli/repo_command.rb', line 12 def setup error "Can't figure out GitHub repo name. Ensure you're in the repo directory, or specify the repo name via the -r option (e.g. travis <command> -r <repo-name>)" unless self.slug ||= find_slug self.api_endpoint = detect_api_endpoint super repository.load # makes sure we actually have access to the repo end |