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.6.18.travis.596.5 lib/travis/cli/help.rb
travis-1.6.18.travis.595.5 lib/travis/cli/help.rb
travis-1.6.18.travis.594.5 lib/travis/cli/help.rb
travis-1.6.18.travis.592.5 lib/travis/cli/help.rb
travis-1.6.17 lib/travis/cli/help.rb
travis-1.6.17.travis.591.5 lib/travis/cli/help.rb
travis-1.6.17.travis.590.5 lib/travis/cli/help.rb
travis-1.6.17.travis.589.5 lib/travis/cli/help.rb
travis-1.6.17.travis.588.5 lib/travis/cli/help.rb
travis-1.6.17.travis.587.5 lib/travis/cli/help.rb
travis-1.6.16 lib/travis/cli/help.rb
travis-1.6.15.1 lib/travis/cli/help.rb
travis-1.6.15 lib/travis/cli/help.rb
travis-1.6.15.travis.580.6 lib/travis/cli/help.rb
travis-1.6.15.travis.566.6 lib/travis/cli/help.rb
travis-1.6.15.travis.565.6 lib/travis/cli/help.rb
travis-1.6.15.travis.564.6 lib/travis/cli/help.rb
travis-1.6.15.travis.563.6 lib/travis/cli/help.rb
travis-1.6.15.travis.562.6 lib/travis/cli/help.rb
travis-1.6.15.travis.561.6 lib/travis/cli/help.rb