Module: Cyclid::Cli::Formatter
- Defined in:
- lib/cyclid/cli/formatter.rb
Overview
Output formatter
Defined Under Namespace
Class Method Summary collapse
-
.method_missing(method, *args, &block) ⇒ Object
rubocop:disable Style/MethodMissing.
Class Method Details
.method_missing(method, *args, &block) ⇒ Object
rubocop:disable Style/MethodMissing
77 78 79 80 |
# File 'lib/cyclid/cli/formatter.rb', line 77 def method_missing(method, *args, &block) # rubocop:disable Style/MethodMissing @formatter ||= get @formatter.send(method, *args, &block) end |