aboutsummaryrefslogtreecommitdiff
path: root/lib/osugiru/helpers.rb
diff options
context:
space:
mode:
authormms <git@sapka.me>2024-11-12 23:23:01 +0100
committermms <git@sapka.me>2024-11-12 23:23:01 +0100
commitc65e4885b999e90732bf37ee954540bae58a4880 (patch)
treea9e22b04c7306dc4f292ae22469c3f136ac9611f /lib/osugiru/helpers.rb
parent53112538e1f47ed446848c5787a87350a2cc6e31 (diff)
feat: rename, again
Diffstat (limited to 'lib/osugiru/helpers.rb')
-rw-r--r--lib/osugiru/helpers.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/lib/osugiru/helpers.rb b/lib/osugiru/helpers.rb
deleted file mode 100644
index c493bbd..0000000
--- a/lib/osugiru/helpers.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-# 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