diff options
author | mms <git@sapka.me> | 2024-11-12 21:26:10 +0100 |
---|---|---|
committer | mms <git@sapka.me> | 2024-11-12 21:26:10 +0100 |
commit | 955739e2a7be70e6abf7e95710ffe0f4a9c64481 (patch) | |
tree | c7b5256cf7fdd58b4785a521183f6776e1a2375e /lib/some/helpers.rb | |
parent | 68d7eb07d88338f28c40a5ba68061a7f4e35f340 (diff) |
feat: rename modules
Diffstat (limited to 'lib/some/helpers.rb')
-rw-r--r-- | lib/some/helpers.rb | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/lib/some/helpers.rb b/lib/some/helpers.rb deleted file mode 100644 index 36dcdef..0000000 --- a/lib/some/helpers.rb +++ /dev/null @@ -1,13 +0,0 @@ -# frozen_string_literal: true - -module Some - module Helpers - def self.header_name_from_dsl(method_name) - method_name - .to_s - .split('_') - .map(&:capitalize) - .join('-') - end - end -end |