Class: SvnCommandHelper::Svn::MergeStatusItem

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(status:, path:) ⇒ MergeStatusItem

Returns a new instance of MergeStatusItem.



236
237
238
239
# File 'lib/svn_command_helper.rb', line 236

def initialize(status:, path:)
  @status = status
  @path = path
end

Instance Attribute Details

#pathObject (readonly)

Returns the value of attribute path.



235
236
237
# File 'lib/svn_command_helper.rb', line 235

def path
  @path
end

#statusObject (readonly)

Returns the value of attribute status.



235
236
237
# File 'lib/svn_command_helper.rb', line 235

def status
  @status
end