Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
annotate
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open-source
annotate
Commits
b11928ed
Commit
b11928ed
authored
Feb 17, 2014
by
Marcin Raczkowski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Replacing old block with new one.
parent
2eb9714b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
7 deletions
+11
-7
annotate_models.rb
lib/annotate/annotate_models.rb
+11
-7
No files found.
lib/annotate/annotate_models.rb
View file @
b11928ed
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment