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
9dbf6e53
Commit
9dbf6e53
authored
Jun 08, 2011
by
Cuong Tran
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #26 from cross/dont-move-schema
Change to replace schema annotation in-place if it's already in the model file
parents
9c68c8c9
a7afaf35
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
5 deletions
+6
-5
annotate_models.rb
lib/annotate/annotate_models.rb
+6
-5
No files found.
lib/annotate/annotate_models.rb
View file @
9dbf6e53
...
@@ -126,11 +126,12 @@ module AnnotateModels
...
@@ -126,11 +126,12 @@ module AnnotateModels
if
old_header
==
new_header
if
old_header
==
new_header
false
false
else
else
# Remove old schema info
# Replace the old schema info with the new schema info
old_content
.
sub!
(
/^#
#{
COMPAT_PREFIX
}
.*?\n(#.*\n)*\n/
,
''
)
new_content
=
old_content
.
sub
(
/^#
#{
COMPAT_PREFIX
}
.*?\n(#.*\n)*\n/
,
info_block
)
# But, if there *was* no old schema info, we simply need to insert it
# Write it back
if
new_content
==
old_content
new_content
=
options
[
:position
]
==
'before'
?
(
info_block
+
old_content
)
:
(
old_content
+
"
\n
"
+
info_block
)
new_content
=
options
[
:position
]
==
'before'
?
(
info_block
+
old_content
)
:
(
old_content
+
"
\n
"
+
info_block
)
end
File
.
open
(
file_name
,
"wb"
)
{
|
f
|
f
.
puts
new_content
}
File
.
open
(
file_name
,
"wb"
)
{
|
f
|
f
.
puts
new_content
}
true
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