Class: SVNx::Log::LogEntryPath

Inherits:
Object
  • Object
show all
Defined in:
lib/svnx/log/entry.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(args = Hash.new) ⇒ LogEntryPath

Returns a new instance of LogEntryPath.



43
44
45
46
47
# File 'lib/svnx/log/entry.rb', line 43

def initialize args = Hash.new
  @kind = args[:kind]
  @action = args[:action]
  @name = args[:name]
end

Instance Attribute Details

#actionObject (readonly)

Returns the value of attribute action.



41
42
43
# File 'lib/svnx/log/entry.rb', line 41

def action
  @action
end

#kindObject (readonly)

Returns the value of attribute kind.



41
42
43
# File 'lib/svnx/log/entry.rb', line 41

def kind
  @kind
end

#nameObject (readonly)

Returns the value of attribute name.



41
42
43
# File 'lib/svnx/log/entry.rb', line 41

def name
  @name
end

Instance Method Details

#to_sObject



49
50
51
# File 'lib/svnx/log/entry.rb', line 49

def to_s
  @name
end