Commit e852121a by Cuong Tran

Revert "Replacing old block with new one."

This reverts commit b11928ed.
parent f264498f
...@@ -246,9 +246,6 @@ module AnnotateModels ...@@ -246,9 +246,6 @@ module AnnotateModels
# end # 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. # Strip the old schema info, and insert new schema info.
old_content.sub!(encoding, '') old_content.sub!(encoding, '')
old_content.sub!(PATTERN, '') old_content.sub!(PATTERN, '')
...@@ -256,7 +253,6 @@ module AnnotateModels ...@@ -256,7 +253,6 @@ module AnnotateModels
new_content = options[position].to_s == 'after' ? new_content = options[position].to_s == 'after' ?
(encoding_header + (old_content.rstrip + "\n\n" + info_block)) : (encoding_header + (old_content.rstrip + "\n\n" + info_block)) :
(encoding_header + info_block + "\n" + old_content) (encoding_header + info_block + "\n" + old_content)
end
File.open(file_name, "wb") { |f| f.puts new_content } File.open(file_name, "wb") { |f| f.puts new_content }
return true 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