Class: Restapi::Extractor::ActionDescriptionUpdater
- Inherits:
-
Object
- Object
- Restapi::Extractor::ActionDescriptionUpdater
show all
- Defined in:
- lib/restapi/extractor/writer.rb
Defined Under Namespace
Classes: ActionNotFound, ControllerNotFound
Instance Method Summary
collapse
Constructor Details
Returns a new instance of ActionDescriptionUpdater.
136
137
138
139
|
# File 'lib/restapi/extractor/writer.rb', line 136
def initialize(controller, action)
@controller = controller
@action = action
end
|
Instance Method Details
#generated? ⇒ Boolean
141
142
143
|
# File 'lib/restapi/extractor/writer.rb', line 141
def generated?
.include?(Restapi.configuration.generated_doc_disclaimer)
end
|
167
168
169
170
171
172
173
174
|
# File 'lib/restapi/extractor/writer.rb', line 167
def
return @old_header if defined? @old_header
@old_header = lines_above_method[/^\s*?#{Regexp.escape(Restapi.configuration.generated_doc_disclaimer)}.*/m]
@old_header ||= lines_above_method[/^\s*?\b(api|params|error|example)\b.*/m]
@old_header ||= ""
@old_header.sub!(/\A\s*\n/,"")
@old_header = align_indented(@old_header)
end
|
#update(new_header) ⇒ Object
163
164
165
|
# File 'lib/restapi/extractor/writer.rb', line 163
def update()
()
end
|
#update_apis(apis) ⇒ Object
145
146
147
148
149
150
151
152
153
154
|
# File 'lib/restapi/extractor/writer.rb', line 145
def update_apis(apis)
= ""
<< Restapi.configuration.generated_doc_disclaimer << "\n" if generated?
<< generate_apis_code(apis)
<< ensure_line_breaks(.lines).reject do |line|
line.include?(Restapi.configuration.generated_doc_disclaimer) ||
line =~ /^api/
end.join
()
end
|
#update_generated_description(desc) ⇒ Object
156
157
158
159
160
161
|
# File 'lib/restapi/extractor/writer.rb', line 156
def update_generated_description(desc)
if generated? || .empty?
= generate_code(desc)
()
end
end
|
#write! ⇒ Object
176
177
178
179
|
# File 'lib/restapi/extractor/writer.rb', line 176
def write!
File.open(controller_path, "w") { |f| f << @controller_content }
@changed=false
end
|