class Svnx::Diff::Header

Attributes

filename[R]
from[R]
to[R]

Public Class Methods

new(args) click to toggle source
# File lib/svnx/diff/elements.rb, line 27
def initialize args
  @filename = args[:filename]
  @from = args[:from]
  @to = args[:to]
end