Commit e852121a by Cuong Tran

Revert "Replacing old block with new one."

This reverts commit b11928ed.
parent f264498f
......@@ -246,17 +246,13 @@ module AnnotateModels
# end
# =======
if PATTERN.match(old_content)
new_content = old_content.sub(PATTERN, info_block)
else
# Strip the old schema info, and insert new schema info.
old_content.sub!(encoding, '')
old_content.sub!(PATTERN, '')
new_content = options[position].to_s == 'after' ?
(encoding_header + (old_content.rstrip + "\n\n" + info_block)) :
(encoding_header + info_block + "\n" + old_content)
end
# Strip the old schema info, and insert new schema info.
old_content.sub!(encoding, '')
old_content.sub!(PATTERN, '')
new_content = options[position].to_s == 'after' ?
(encoding_header + (old_content.rstrip + "\n\n" + info_block)) :
(encoding_header + info_block + "\n" + old_content)
File.open(file_name, "wb") { |f| f.puts new_content }
return true
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment