Class: MetaProject::Tracker::Issue
- Inherits:
-
Object
- Object
- MetaProject::Tracker::Issue
- Defined in:
- lib/meta_project/tracker/issue.rb
Instance Attribute Summary collapse
-
#summary ⇒ Object
readonly
Returns the value of attribute summary.
-
#uri ⇒ Object
readonly
Returns the value of attribute uri.
Instance Method Summary collapse
-
#initialize(uri, summary) ⇒ Issue
constructor
A new instance of Issue.
Constructor Details
#initialize(uri, summary) ⇒ Issue
Returns a new instance of Issue.
6 7 8 |
# File 'lib/meta_project/tracker/issue.rb', line 6 def initialize(uri, summary) @uri, @summary = uri, summary end |
Instance Attribute Details
#summary ⇒ Object (readonly)
Returns the value of attribute summary.
4 5 6 |
# File 'lib/meta_project/tracker/issue.rb', line 4 def summary @summary end |
#uri ⇒ Object (readonly)
Returns the value of attribute uri.
4 5 6 |
# File 'lib/meta_project/tracker/issue.rb', line 4 def uri @uri end |