Commit b11928ed by Marcin Raczkowski

Replacing old block with new one.

parent 2eb9714b
...@@ -241,13 +241,17 @@ module AnnotateModels ...@@ -241,13 +241,17 @@ module AnnotateModels
# end # end
# ======= # =======
# Strip the old schema info, and insert new schema info. if PATTERN.match(old_content)
old_content.sub!(encoding, '') new_content = old_content.sub(PATTERN, info_block)
old_content.sub!(PATTERN, '') else
# Strip the old schema info, and insert new schema info.
new_content = options[position].to_s == 'after' ? old_content.sub!(encoding, '')
(encoding_header + (old_content.rstrip + "\n\n" + info_block)) : old_content.sub!(PATTERN, '')
(encoding_header + info_block + "\n" + old_content)
new_content = options[position].to_s == 'after' ?
(encoding_header + (old_content.rstrip + "\n\n" + info_block)) :
(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