Class: WikiDiff
- Inherits:
-
Redmine::Helpers::Diff
- Object
- Redmine::Helpers::Diff
- WikiDiff
- Defined in:
- app/models/wiki_page.rb
Instance Attribute Summary collapse
-
#content_from ⇒ Object
readonly
Returns the value of attribute content_from.
-
#content_to ⇒ Object
readonly
Returns the value of attribute content_to.
Attributes inherited from Redmine::Helpers::Diff
Instance Method Summary collapse
-
#initialize(content_to, content_from) ⇒ WikiDiff
constructor
A new instance of WikiDiff.
Methods inherited from Redmine::Helpers::Diff
Constructor Details
#initialize(content_to, content_from) ⇒ WikiDiff
Returns a new instance of WikiDiff
251 252 253 254 255 |
# File 'app/models/wiki_page.rb', line 251 def initialize(content_to, content_from) @content_to = content_to @content_from = content_from super(content_to.text, content_from.text) end |
Instance Attribute Details
#content_from ⇒ Object (readonly)
Returns the value of attribute content_from
249 250 251 |
# File 'app/models/wiki_page.rb', line 249 def content_from @content_from end |
#content_to ⇒ Object (readonly)
Returns the value of attribute content_to
249 250 251 |
# File 'app/models/wiki_page.rb', line 249 def content_to @content_to end |