Sha256: 1be7cee6f5faa206b33a9dcfaefa75f7799231c29b15dc74c5ce8a42ddbb6b1f

Contents?: true

Size: 610 Bytes

Versions: 165

Compression:

Stored size: 610 Bytes

Contents

require 'travis/cli'

module Travis
  module CLI
    class Help < Command
      description "helps you out when in dire need of information"

      def run(command = nil)
        if command
          say CLI.command(command).new.help
        else
          say "Usage: travis COMMAND ...\n\nAvailable commands:\n\n"
          commands.each { |c| say "\t#{color(c.command_name, :command).ljust(20)} #{color(c.description, :info)}" }
          say "\nrun `#$0 help COMMAND` for more infos"
        end
      end

      def commands
        CLI.commands.sort_by { |c| c.command_name }
      end
    end
  end
end

Version data entries

165 entries across 165 versions & 1 rubygems

Version Path
travis-1.5.6.travis.336.4 lib/travis/cli/help.rb
travis-1.5.6.travis.333.4 lib/travis/cli/help.rb
travis-1.5.6.travis.332.4 lib/travis/cli/help.rb
travis-1.5.6.travis.330.4 lib/travis/cli/help.rb
travis-1.5.6.travis.329.4 lib/travis/cli/help.rb
travis-1.5.6.travis.326.4 lib/travis/cli/help.rb
travis-1.5.6.travis.324.4 lib/travis/cli/help.rb
travis-1.5.6.travis.323.4 lib/travis/cli/help.rb
travis-1.5.6.travis.320.4 lib/travis/cli/help.rb
travis-1.5.6.travis.319.4 lib/travis/cli/help.rb
travis-1.5.6.travis.317.4 lib/travis/cli/help.rb
travis-1.5.6.travis.315.4 lib/travis/cli/help.rb
travis-1.5.6.travis.314.4 lib/travis/cli/help.rb
travis-1.5.6.travis.312.4 lib/travis/cli/help.rb
travis-1.5.6.travis.307.4 lib/travis/cli/help.rb
travis-1.5.6.travis.306.4 lib/travis/cli/help.rb
travis-1.5.6.travis.304.4 lib/travis/cli/help.rb
travis-1.5.6.travis.303.4 lib/travis/cli/help.rb
travis-1.5.6.travis.301.4 lib/travis/cli/help.rb
travis-1.5.6.travis.299.4 lib/travis/cli/help.rb