1
0

command_line_helpers.rb 136 B

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