mirror of
https://github.com/mastodon/mastodon.git
synced 2025-11-27 10:00:50 +00:00
16 lines
220 B
Ruby
16 lines
220 B
Ruby
# frozen_string_literal: true
|
|
|
|
module CommandLineHelpers
|
|
def output_results(*)
|
|
output(
|
|
include(*)
|
|
).to_stdout
|
|
end
|
|
|
|
def not_output_results(*)
|
|
output(
|
|
not_include(*)
|
|
).to_stdout
|
|
end
|
|
end
|