Class: SvnCommandHelper::Svn::DiffItem

Inherits:
Object
  • Object
show all
Defined in:
lib/svn_command_helper.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(kind:, item:, props:, path:) ⇒ DiffItem

Returns a new instance of DiffItem.



357
358
359
360
361
362
# File 'lib/svn_command_helper.rb', line 357

def initialize(kind:, item:, props:, path:)
  @kind = kind
  @item = item
  @props = props
  @path = path
end

Instance Attribute Details

#fromObject

Returns the value of attribute from.



356
357
358
# File 'lib/svn_command_helper.rb', line 356

def from
  @from
end

#itemObject (readonly)

Returns the value of attribute item.



355
356
357
# File 'lib/svn_command_helper.rb', line 355

def item
  @item
end

#kindObject (readonly)

Returns the value of attribute kind.



355
356
357
# File 'lib/svn_command_helper.rb', line 355

def kind
  @kind
end

#pathObject (readonly)

Returns the value of attribute path.



355
356
357
# File 'lib/svn_command_helper.rb', line 355

def path
  @path
end

#propsObject (readonly)

Returns the value of attribute props.



355
356
357
# File 'lib/svn_command_helper.rb', line 355

def props
  @props
end

#toObject

Returns the value of attribute to.



356
357
358
# File 'lib/svn_command_helper.rb', line 356

def to
  @to
end