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
217fc9c5
Commit
217fc9c5
authored
Sep 21, 2011
by
Denis Lifanov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* Fixed type detection (fallback: sql_type)
* Fixed issue with newlines at the end of file.
parent
cfeec96c
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
annotate_models.rb
lib/annotate/annotate_models.rb
+4
-2
No files found.
lib/annotate/annotate_models.rb
View file @
217fc9c5
...
...
@@ -56,7 +56,7 @@ module AnnotateModels
attrs
<<
"not null"
unless
col
.
null
attrs
<<
"primary key"
if
col
.
name
==
klass
.
primary_key
col_type
=
col
.
type
.
to_s
col_type
=
(
col
.
type
||
col
.
sql_type
)
.
to_s
if
col_type
==
"decimal"
col_type
<<
"(
#{
col
.
precision
}
,
#{
col
.
scale
}
)"
else
...
...
@@ -138,9 +138,11 @@ module AnnotateModels
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
if
new_content
==
old_content
#p old_content =~ /\n$/m
new_content
=
options
[
:position
]
==
'before'
?
(
info_block
+
old_content
)
:
((
old_content
=~
/\n$/
?
old_content
:
old_content
+
'\n'
)
+
info_block
)
(
old_content
.
rstrip
+
"
\n\n
"
+
info_block
)
#((old_content =~ /\n$/ ? old_content : old_content + "\n") + info_block)
end
File
.
open
(
file_name
,
"wb"
)
{
|
f
|
f
.
puts
new_content
}
...
...
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