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.1 lib/travis/cli/help.rb
travis-1.8.1.travis.717.4 lib/travis/cli/help.rb
travis-1.8.1.travis.713.4 lib/travis/cli/help.rb
travis-1.8.1.travis.705.5 lib/travis/cli/help.rb
travis-1.8.1.travis.704.5 lib/travis/cli/help.rb
travis-1.8.1.travis.699.5 lib/travis/cli/help.rb
travis-1.8.1.travis.697.5 lib/travis/cli/help.rb
travis-1.8.1.travis.696.5 lib/travis/cli/help.rb
travis-1.8.1.travis.693.5 lib/travis/cli/help.rb
travis-1.8.1.travis.692.5 lib/travis/cli/help.rb
travis-1.8.1.travis.689.5 lib/travis/cli/help.rb
travis-1.8.0 lib/travis/cli/help.rb
travis-1.7.8.travis.688.5 lib/travis/cli/help.rb
travis-1.7.8.travis.687.5 lib/travis/cli/help.rb
travis-1.7.8.travis.684.5 lib/travis/cli/help.rb
travis-1.7.7 lib/travis/cli/help.rb
travis-1.7.7.travis.683.5 lib/travis/cli/help.rb
travis-1.7.7.travis.681.5 lib/travis/cli/help.rb
travis-1.7.7.travis.678.5 lib/travis/cli/help.rb
travis-1.7.6.travis.677.5 lib/travis/cli/help.rb