We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent abc5adb commit 21b6422Copy full SHA for 21b6422
2 files changed
Rakefile
@@ -128,9 +128,9 @@ namespace :docs do
128
end
129
130
task :all_tests do
131
- Rake::Task['test'].invoke
132
- Rake::Task['engine_test'].invoke
133
- Rake::Task['spec'].invoke
+ Rake::Task["test"].invoke
+ Rake::Task["engine_test"].invoke
+ Rake::Task["spec"].invoke
134
135
136
task default: [:all_tests]
lib/docs/docs_builder_component.rb
@@ -62,9 +62,12 @@ def docstring
62
@method.docstring
63
64
65
+ # Not covered as we have no deprecated methods
66
+ # :nocov:
67
def deprecation_text
68
@method.tag(:deprecated)&.text
69
70
71
72
def docstring_and_deprecation_text
73
<<~DOCS.strip.html_safe
0 commit comments