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
a84af5e8
Commit
a84af5e8
authored
Jan 13, 2015
by
Kamil Bielawski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Wrap annotations
parent
e5bedc0d
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
4 deletions
+7
-4
annotate_models.rb
lib/annotate/annotate_models.rb
+5
-2
annotate_models_spec.rb
spec/annotate/annotate_models_spec.rb
+2
-2
No files found.
lib/annotate/annotate_models.rb
View file @
a84af5e8
...
@@ -253,6 +253,9 @@ module AnnotateModels
...
@@ -253,6 +253,9 @@ module AnnotateModels
new_content
=
old_content
.
sub
(
PATTERN
,
"
\n
"
+
info_block
)
new_content
=
old_content
.
sub
(
PATTERN
,
"
\n
"
+
info_block
)
end
end
wrapper_open
=
options
[
:wrapper_open
]
?
"#
#{
options
[
:wrapper_open
]
}
\n
"
:
""
wrapper_close
=
options
[
:wrapper_close
]
?
"
\n
#
#{
options
[
:wrapper_close
]
}
"
:
""
wrapped_info_block
=
"
#{
wrapper_open
}#{
info_block
}#{
wrapper_close
}
"
# if there *was* no old schema info (no substitution happened) or :force was passed,
# if there *was* no old schema info (no substitution happened) or :force was passed,
# we simply need to insert it in correct position
# we simply need to insert it in correct position
if
new_content
==
old_content
||
options
[
:force
]
if
new_content
==
old_content
||
options
[
:force
]
...
@@ -260,8 +263,8 @@ module AnnotateModels
...
@@ -260,8 +263,8 @@ module AnnotateModels
old_content
.
sub!
(
PATTERN
,
''
)
old_content
.
sub!
(
PATTERN
,
''
)
new_content
=
%w(after bottom)
.
include?
(
options
[
position
].
to_s
)
?
new_content
=
%w(after bottom)
.
include?
(
options
[
position
].
to_s
)
?
(
encoding_header
+
(
old_content
.
rstrip
+
"
\n\n
"
+
info_block
))
:
(
encoding_header
+
(
old_content
.
rstrip
+
"
\n\n
"
+
wrapped_
info_block
))
:
(
encoding_header
+
info_block
+
"
\n
"
+
old_content
)
(
encoding_header
+
wrapped_
info_block
+
"
\n
"
+
old_content
)
end
end
File
.
open
(
file_name
,
"wb"
)
{
|
f
|
f
.
puts
new_content
}
File
.
open
(
file_name
,
"wb"
)
{
|
f
|
f
.
puts
new_content
}
...
...
spec/annotate/annotate_models_spec.rb
View file @
a84af5e8
...
@@ -456,8 +456,8 @@ end
...
@@ -456,8 +456,8 @@ end
end
end
it
'should wrap annotation if wrapper is specified'
do
it
'should wrap annotation if wrapper is specified'
do
annotate_one_file
:wrapper_
beg
=>
'START'
,
:wrapper_end
=>
'END'
annotate_one_file
:wrapper_
open
=>
'START'
,
:wrapper_close
=>
'END'
expect
(
File
.
read
(
@model_file_name
)).
to
eq
(
"
START
\n
#{
@schema_info
}
\n
END
\n
#{
@file_content
}
"
)
expect
(
File
.
read
(
@model_file_name
)).
to
eq
(
"
# START
\n
#{
@schema_info
}
\n
#
END
\n
#{
@file_content
}
"
)
end
end
describe
"with existing annotation => :before"
do
describe
"with existing annotation => :before"
do
...
...
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