Class: Card::Content::Diff
- Inherits:
-
Object
- Object
- Card::Content::Diff
show all
- Defined in:
- lib/card/content/diff.rb,
lib/card/content/diff/l_c_s.rb,
lib/card/content/diff/result.rb,
lib/card/content/diff/summary.rb,
lib/card/content/diff/l_c_s/processor.rb
Defined Under Namespace
Classes: LCS, Result, Summary
Instance Attribute Summary collapse
Class Method Summary
collapse
Instance Method Summary
collapse
Constructor Details
#initialize(old_version, new_version, opts = {}) ⇒ Diff
diff options :format => :html|:text|:pointer|:raw
:html = maintain html structure, but compare only content
:text = remove all html tags; compare plain text
:pointer = remove all double square brackets
:raw = escape html tags and compare everything
summary: {length: <number> , joint: <string> }
36
37
38
39
40
41
42
|
# File 'lib/card/content/diff.rb', line 36
def initialize old_version, new_version, opts={}
@result = Result.new opts[:summary]
return unless new_version
lcs_opts = lcs_opts_for_format opts[:diff_format]
LCS.new(lcs_opts).run(old_version, new_version, @result)
end
|
Instance Attribute Details
#result ⇒ Object
Returns the value of attribute result.
24
25
26
|
# File 'lib/card/content/diff.rb', line 24
def result
@result
end
|
Class Method Details
.complete(a, b, opts = {}) ⇒ Object
7
8
9
|
# File 'lib/card/content/diff.rb', line 7
def complete a, b, opts={}
Card::Content::Diff.new(a, b, opts).complete
end
|
.render_added_chunk(text) ⇒ Object
15
16
17
|
# File 'lib/card/content/diff.rb', line 15
def render_added_chunk text
"<ins class='diffins diff-added'>#{text}</ins>"
end
|
.render_deleted_chunk(text, _count = true) ⇒ Object
19
20
21
|
# File 'lib/card/content/diff.rb', line 19
def render_deleted_chunk text, _count=true
"<del class='diffdel diff-deleted'>#{text}</del>"
end
|
.summary(a, b, opts = {}) ⇒ Object
11
12
13
|
# File 'lib/card/content/diff.rb', line 11
def summary a, b, opts={}
Card::Content::Diff.new(a, b, opts).summary
end
|
Instance Method Details
#green? ⇒ Boolean
48
49
50
|
# File 'lib/card/content/diff.rb', line 48
def green?
@result.adds_cnt.positive?
end
|
#red? ⇒ Boolean
44
45
46
|
# File 'lib/card/content/diff.rb', line 44
def red?
@result.dels_cnt.positive?
end
|