class SvnCommandHelper::Svn::ListItem

Attributes

author[R]
date[R]
kind[R]
path[R]
revision[R]

Public Class Methods

new(kind:, path:, revision:, author:, date:) click to toggle source
# File lib/svn_command_helper.rb, line 56
def initialize(kind:, path:, revision:, author:, date:)
  @kind = kind
  @path = path
  @revision = revision
  @author = author
  @date = date
end