# frozen_string_literal: true module Osugiru module Helpers def self.header_name_from_dsl(method_name) method_name .to_s .split('_') .map(&:capitalize) .join('-') end end end