Class: Travis::CLI::RepoCommand

Inherits:
ApiCommand show all
Defined in:
lib/travis/cli/repo_command.rb

Direct Known Subclasses

Disable, Enable, Encrypt, History, Logs, Open, Restart, Show, Status

Constant Summary collapse

GIT_REGEX =
%r{^(?:https://|git://|git@)github\.com[:/](.*/.+?)(\.git)?$}

Instance Attribute Summary collapse

Attributes inherited from ApiCommand

#session

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

#new, #on, #on_initialize

Constructor Details

This class inherits a constructor from Travis::CLI::ApiCommand

Instance Attribute Details

#slugObject

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

#repositoryObject



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

#setupObject



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. Are you in the right directory?" unless self.slug ||= find_slug
  self.api_endpoint = detect_api_endpoint
  super
  repository.load # makes sure we actually have access to the repo
end