command_line_helpers.rb 144 B

123456789
  1. # frozen_string_literal: true
  2. module CommandLineHelpers
  3. def output_results(*args)
  4. output(
  5. include(*args)
  6. ).to_stdout
  7. end
  8. end