Method: FileSource::Component#end_line
- Defined in:
- app/components/lookbook/file_source/component.rb
#end_line ⇒ Object
63 64 65 66 67 68 69 70 71 |
# File 'app/components/lookbook/file_source/component.rb', line 63 def end_line line_count = source_lines.size if lines_around_highlight && @highlight_lines.any? last = @highlight_lines.last + lines_around_highlight (last <= line_count) ? last : line_count else (@end_line && (@end_line <= line_count)) ? @end_line : line_count end end |