Method: Command::Base.trace_option
- Defined in:
- lib/command/base.rb
.trace_option(required: false) ⇒ Object
274 275 276 277 278 279 280 281 282 283 |
# File 'lib/command/base.rb', line 274 def self.trace_option(required: false) { name: :trace, params: { desc: "Shows trace of API calls. WARNING: may contain sensitive data", type: :boolean, required: required } } end |