Class: GithubStats::ClosedByWeekReport::Results
- Inherits:
-
Object
- Object
- GithubStats::ClosedByWeekReport::Results
- Extended by:
- Forwardable
- Defined in:
- lib/github_stats/closed_by_week_report.rb
Overview
Provides enumerable access to the results
Instance Attribute Summary collapse
-
#data ⇒ Object
Returns the value of attribute data.
Instance Method Summary collapse
-
#initialize(data) ⇒ Results
constructor
A new instance of Results.
- #keys ⇒ Object
Constructor Details
#initialize(data) ⇒ Results
Returns a new instance of Results.
57 58 59 |
# File 'lib/github_stats/closed_by_week_report.rb', line 57 def initialize(data) self.data = data end |
Instance Attribute Details
#data ⇒ Object
Returns the value of attribute data.
53 54 55 |
# File 'lib/github_stats/closed_by_week_report.rb', line 53 def data @data end |
Instance Method Details
#keys ⇒ Object
61 62 63 |
# File 'lib/github_stats/closed_by_week_report.rb', line 61 def keys [:week_closed, :qty, :velocity] end |