Rename `read_rule_doc` -> `read_type_doc`

Also, move the helper script into the `contrib` directory
This commit is contained in:
Sijawusz Pur Rahnama 2022-10-29 18:03:30 +02:00
parent 3d61254739
commit d55b93c866
2 changed files with 3 additions and 3 deletions

View File

@ -138,8 +138,8 @@ module Ameba::Rule
end
end
private macro read_rule_doc(filepath = __FILE__)
{{ run("../../read_rule_doc",
private macro read_type_doc(filepath = __FILE__)
{{ run("../../contrib/read_type_doc",
@type.name.split("::").last,
filepath
).chomp.stringify }}.presence
@ -160,7 +160,7 @@ module Ameba::Rule
#
# MyRule.parsed_doc # => "This is a test rule.\nDoes nothing."
# ```
class_getter parsed_doc : String? = read_rule_doc
class_getter parsed_doc : String? = read_type_doc
end
end