Class: CVS::UpdateStatus

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeUpdateStatus

Returns a new instance of UpdateStatus.



39
40
41
42
43
# File 'lib/common/cvs.rb', line 39

def initialize
  @modified = Array.new
  @added = Array.new
  @new = Array.new
end

Instance Attribute Details

#addedObject (readonly)

Returns the value of attribute added.



37
38
39
# File 'lib/common/cvs.rb', line 37

def added
  @added
end

#modifiedObject (readonly)

Returns the value of attribute modified.



37
38
39
# File 'lib/common/cvs.rb', line 37

def modified
  @modified
end

#newObject (readonly)

Returns the value of attribute new.



37
38
39
# File 'lib/common/cvs.rb', line 37

def new
  @new
end