Skip to content

Commit 21b6422

Browse files
committed
lints
1 parent abc5adb commit 21b6422

2 files changed

Lines changed: 6 additions & 3 deletions

File tree

Rakefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -128,9 +128,9 @@ namespace :docs do
128128
end
129129

130130
task :all_tests do
131-
Rake::Task['test'].invoke
132-
Rake::Task['engine_test'].invoke
133-
Rake::Task['spec'].invoke
131+
Rake::Task["test"].invoke
132+
Rake::Task["engine_test"].invoke
133+
Rake::Task["spec"].invoke
134134
end
135135

136136
task default: [:all_tests]

lib/docs/docs_builder_component.rb

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,12 @@ def docstring
6262
@method.docstring
6363
end
6464

65+
# Not covered as we have no deprecated methods
66+
# :nocov:
6567
def deprecation_text
6668
@method.tag(:deprecated)&.text
6769
end
70+
# :nocov:
6871

6972
def docstring_and_deprecation_text
7073
<<~DOCS.strip.html_safe

0 commit comments

Comments
 (0)