Class: AbideDevUtils::Jira::DryRun::DummyProject
- Defined in:
- lib/abide_dev_utils/jira/dry_run.rb
Instance Attribute Summary collapse
-
#issues ⇒ Object
readonly
Returns the value of attribute issues.
-
#key ⇒ Object
readonly
Returns the value of attribute key.
Attributes inherited from Dummy
Instance Method Summary collapse
-
#initialize(key = 'DUM', issues = [DummyIssue.new, DummySubtask.new]) ⇒ DummyProject
constructor
A new instance of DummyProject.
Constructor Details
#initialize(key = 'DUM', issues = [DummyIssue.new, DummySubtask.new]) ⇒ DummyProject
Returns a new instance of DummyProject.
128 129 130 131 132 |
# File 'lib/abide_dev_utils/jira/dry_run.rb', line 128 def initialize(key = 'DUM', issues = [DummyIssue.new, DummySubtask.new]) super @key = 'DUM' @issues = [DummyIssue.new, DummySubtask.new] end |
Instance Attribute Details
#issues ⇒ Object (readonly)
Returns the value of attribute issues.
126 127 128 |
# File 'lib/abide_dev_utils/jira/dry_run.rb', line 126 def issues @issues end |
#key ⇒ Object (readonly)
Returns the value of attribute key.
126 127 128 |
# File 'lib/abide_dev_utils/jira/dry_run.rb', line 126 def key @key end |