We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e25d8e commit d40d495Copy full SHA for d40d495
railties/lib/rails/api/task.rb
@@ -105,17 +105,16 @@ class Task < RDoc::Task
105
}
106
107
def initialize(name)
108
+ super
109
+
110
# Every time rake runs this task is instantiated as all the rest.
111
# Be lazy computing stuff to have as light impact as possible to
112
# the rest of tasks.
113
before_running_rdoc do
114
+ configure_sdoc
115
configure_rdoc_files
116
setup_horo_variables
117
end
-
- super do
- configure_sdoc
118
- end
119
120
121
# Hack, ignore the desc calls performed by the original initializer.
0 commit comments