Sha256: b6ead0e892b7f06b73e10e3595c352e93f91460cb2d6f05e9647579274798859
Contents?: true
Size: 1.55 KB
Versions: 11
Compression:
Stored size: 1.55 KB
Contents
module Printer def self.print(collection) collection.each do |element| puts element end end def self.print_usage puts <<-USAGE Usage: airbrake [COMMAND] [OPTION]... Commands: raise # Raise an exception specified by ERROR and MESSAGE. list # List all the projects for given AUTH_TOKEN and ACCOUNT. create # Create a project with the given NAME. deploy # Send a new deployment notification to a project that matches the API_KEY. Options: -e, [--error=ERROR] # Error class to raise. Default: RuntimeError -m, [--message=MESSAGE] # Error message. Default: "I've made a huge mistake" -k, [--api-key=API_KEY] # Api key of your Airbrake application -h, [--host=HOST] # URL of the Airbrake API server. Default: api.airbrake.io -p, [--port=PORT] # Port of the Airbrake API server. Default: 80 -t, [--auth-token=AUTH_TOKEN] # The auth token used for API requests -a, [--account=ACCOUNT] # The account used for API requests -n, [--name=NAME] # The name of the project you're trying to create -E, [--rails-env=NAME] # The name of the environment you're deploying to. Default: production -r, [--scm-revision=REVISION] # SCM revision for deployment info -R, [--scm-repository=REPO] # SCM repository for deployment info -u, [--local-username=USER] # The name of the user who is deploying -h, [--help] # Show this usage USAGE end end
Version data entries
11 entries across 11 versions & 2 rubygems