class TreeDiff::Change
Attributes
new[R]
old[R]
path[R]
Public Class Methods
new(path, old, new)
click to toggle source
# File lib/tree_diff.rb, line 8 def initialize(path, old, new) @path = path @old = old @new = new end