Sha256: 4afb1121ab6a9400343d1c3b07f77c0be8c2f5323260621040d07c01865ce649
Contents?: true
Size: 1.32 KB
Versions: 1
Compression:
Stored size: 1.32 KB
Contents
require 'travis/cli' module Travis module CLI class RepoCommand < ApiCommand GIT_REGEX = %r{Fetch URL: (?:https://|git://|git@)github\.com[:/](.*/.+?)(\.git)?$} on('-r', '--repo SLUG') { |c, slug| c.slug = slug } attr_accessor :slug abstract 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 end def repository repo(slug) rescue Travis::Client::NotFound error "repository not known to travis: #{color(slug, :important)}" end private def detected_endpoint? !explicit_api_endpoint? end def find_slug git_info = `git remote show origin 2>&1` $1 if git_info =~ GIT_REGEX end def repo_config config['repos'] ||= {} config['repos'][slug] ||= {} end def detect_api_endpoint if explicit_api_endpoint? repo_config['endpoint'] = api_endpoint else repo_config['endpoint'] ||= begin GH.head("/repos/#{slug}") Travis::Client::ORG_URI rescue GH::Error Travis::Client::PRO_URI end end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
travis-1.0.3 | lib/travis/cli/repo_command.rb |