Class: CVS::UpdateStatus
- Inherits:
-
Object
- Object
- CVS::UpdateStatus
- Defined in:
- lib/common/cvs.rb
Instance Attribute Summary collapse
-
#added ⇒ Object
readonly
Returns the value of attribute added.
-
#modified ⇒ Object
readonly
Returns the value of attribute modified.
-
#new ⇒ Object
readonly
Returns the value of attribute new.
Instance Method Summary collapse
-
#initialize ⇒ UpdateStatus
constructor
A new instance of UpdateStatus.
Constructor Details
#initialize ⇒ UpdateStatus
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
#added ⇒ Object (readonly)
Returns the value of attribute added.
37 38 39 |
# File 'lib/common/cvs.rb', line 37 def added @added end |
#modified ⇒ Object (readonly)
Returns the value of attribute modified.
37 38 39 |
# File 'lib/common/cvs.rb', line 37 def modified @modified end |
#new ⇒ Object (readonly)
Returns the value of attribute new.
37 38 39 |
# File 'lib/common/cvs.rb', line 37 def new @new end |