Sha256: d33e24ec5a2dce645b12a9a08944ce01141663cb07eaca2e220966eabe0978fb

Contents?: true

Size: 610 Bytes

Versions: 187

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(22)} #{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

187 entries across 187 versions & 3 rubygems

Version Path
travis-1.8.12.travis.1136.9 lib/travis/cli/help.rb
travis-1.8.12.travis.1135.9 lib/travis/cli/help.rb
travis-1.8.12.travis.1125.9 lib/travis/cli/help.rb
travis-1.8.12.pre.rc1 lib/travis/cli/help.rb
travis-1.8.12.travis.1116.9 lib/travis/cli/help.rb
travis-1.8.12.travis.1111.9 lib/travis/cli/help.rb
travis-1.8.12.travis.1101.9 lib/travis/cli/help.rb
travis-1.8.11 lib/travis/cli/help.rb
travis-1.8.11.travis.1098.9 lib/travis/cli/help.rb
travis-1.8.11.travis.1081.9 lib/travis/cli/help.rb
travis-1.8.11.travis.1059.11 lib/travis/cli/help.rb
travis-1.8.11.travis.1058.11 lib/travis/cli/help.rb
travis-1.8.11.travis.1056.11 lib/travis/cli/help.rb
travis-1.8.11.travis.1051.11 lib/travis/cli/help.rb
travis-1.8.11.travis.1048.11 lib/travis/cli/help.rb
travis-1.8.11.travis.1044.11 lib/travis/cli/help.rb
travis-1.8.11.travis.1041.11 lib/travis/cli/help.rb
travis-1.8.11.travis.1040.11 lib/travis/cli/help.rb
travis-1.8.11.travis.1026.11 lib/travis/cli/help.rb
travis-1.8.11.travis.1025.11 lib/travis/cli/help.rb