lib/travis/cli/disable.rb



require 'travis/cli'

module Travis
  module CLI
    class Disable < RepoCommand
      description "disables a project"

      def run
        authenticate
        repository.disable
        say "disabled", color("#{slug}: %s :(", :error)
      end
    end
  end
end