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-akerl-1.8.9.1 lib/travis/cli/help.rb
travis-akerl-1.8.9 lib/travis/cli/help.rb
travis-1.8.10.travis.950.11 lib/travis/cli/help.rb
travis-1.8.10.travis.948.11 lib/travis/cli/help.rb
travis-1.8.10.travis.946.11 lib/travis/cli/help.rb
travis-1.8.10.travis.944.11 lib/travis/cli/help.rb
travis-1.8.10.travis.943.11 lib/travis/cli/help.rb
travis-1.8.10.travis.942.11 lib/travis/cli/help.rb
travis-1.8.10.travis.941.11 lib/travis/cli/help.rb
travis-1.8.10.travis.940.11 lib/travis/cli/help.rb
travis-1.8.10.travis.935.11 lib/travis/cli/help.rb
travis-1.8.10.travis.933.11 lib/travis/cli/help.rb
travis-1.8.10.travis.931.11 lib/travis/cli/help.rb
travis-1.8.10.travis.930.11 lib/travis/cli/help.rb
travis-1.8.10.travis.929.11 lib/travis/cli/help.rb
travis-1.8.10.travis.927.11 lib/travis/cli/help.rb
travis-1.8.10.travis.925.11 lib/travis/cli/help.rb
travis-1.8.10.travis.924.11 lib/travis/cli/help.rb
travis-1.8.10.travis.923.11 lib/travis/cli/help.rb
travis-1.8.10.travis.922.11 lib/travis/cli/help.rb