Class: StaleGemItem
Instance Attribute Summary collapse
-
#atime ⇒ Object
readonly
Returns the value of attribute atime.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#version ⇒ Object
readonly
Returns the value of attribute version.
Instance Method Summary collapse
-
#initialize(name, ver, atime) ⇒ StaleGemItem
constructor
A new instance of StaleGemItem.
Constructor Details
#initialize(name, ver, atime) ⇒ StaleGemItem
Returns a new instance of StaleGemItem.
7 8 9 10 11 |
# File 'lib/installedwin.rb', line 7 def initialize(name, ver, atime) @name = name @version = ver @atime = atime end |
Instance Attribute Details
#atime ⇒ Object (readonly)
Returns the value of attribute atime.
6 7 8 |
# File 'lib/installedwin.rb', line 6 def atime @atime end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
6 7 8 |
# File 'lib/installedwin.rb', line 6 def name @name end |
#version ⇒ Object (readonly)
Returns the value of attribute version.
6 7 8 |
# File 'lib/installedwin.rb', line 6 def version @version end |