11 lines
170 B
Ruby
Raw Normal View History

# typed: true
# frozen_string_literal: true
module OnOS
def on_macos(&block)
raise "No block content defined for on_macos block" unless block
yield
end
end