Class: Card::Content::Diff::Result
- Inherits:
-
Object
- Object
- Card::Content::Diff::Result
- Defined in:
- lib/card/content/diff/result.rb
Overview
Result object for Diff processing
Defined Under Namespace
Classes: Summary
Instance Attribute Summary collapse
-
#adds_cnt ⇒ Object
Returns the value of attribute adds_cnt.
-
#complete ⇒ Object
Returns the value of attribute complete.
-
#dels_cnt ⇒ Object
Returns the value of attribute dels_cnt.
-
#summary ⇒ Object
Returns the value of attribute summary.
Instance Method Summary collapse
-
#initialize(summary_opts = nil) ⇒ Result
constructor
A new instance of Result.
- #write_added_chunk(text) ⇒ Object
- #write_deleted_chunk(text) ⇒ Object
- #write_excluded_chunk(text) ⇒ Object
- #write_unchanged_chunk(text) ⇒ Object
Constructor Details
Instance Attribute Details
#adds_cnt ⇒ Object
Returns the value of attribute adds_cnt.
6 7 8 |
# File 'lib/card/content/diff/result.rb', line 6 def adds_cnt @adds_cnt end |
#complete ⇒ Object
Returns the value of attribute complete.
6 7 8 |
# File 'lib/card/content/diff/result.rb', line 6 def complete @complete end |
#dels_cnt ⇒ Object
Returns the value of attribute dels_cnt.
6 7 8 |
# File 'lib/card/content/diff/result.rb', line 6 def dels_cnt @dels_cnt end |
#summary ⇒ Object
Returns the value of attribute summary.
6 7 8 |
# File 'lib/card/content/diff/result.rb', line 6 def summary @summary end |
Instance Method Details
#write_added_chunk(text) ⇒ Object
18 19 20 21 22 |
# File 'lib/card/content/diff/result.rb', line 18 def write_added_chunk text @adds_cnt += 1 @complete << Card::Content::Diff.render_added_chunk(text) @summary.add text end |
#write_deleted_chunk(text) ⇒ Object
24 25 26 27 28 |
# File 'lib/card/content/diff/result.rb', line 24 def write_deleted_chunk text @dels_cnt += 1 @complete << Card::Content::Diff.render_deleted_chunk(text) @summary.delete text end |
#write_excluded_chunk(text) ⇒ Object
35 36 37 |
# File 'lib/card/content/diff/result.rb', line 35 def write_excluded_chunk text @complete << text end |
#write_unchanged_chunk(text) ⇒ Object
30 31 32 33 |
# File 'lib/card/content/diff/result.rb', line 30 def write_unchanged_chunk text @complete << text @summary.omit end |