Class: Shakapacker::Doctor::Reporter
- Inherits:
-
Object
- Object
- Shakapacker::Doctor::Reporter
- Defined in:
- lib/shakapacker/doctor.rb
Instance Attribute Summary collapse
-
#doctor ⇒ Object
readonly
Returns the value of attribute doctor.
Instance Method Summary collapse
-
#initialize(doctor) ⇒ Reporter
constructor
A new instance of Reporter.
- #print_report ⇒ Object
Constructor Details
#initialize(doctor) ⇒ Reporter
Returns a new instance of Reporter.
1572 1573 1574 |
# File 'lib/shakapacker/doctor.rb', line 1572 def initialize(doctor) @doctor = doctor end |
Instance Attribute Details
#doctor ⇒ Object (readonly)
Returns the value of attribute doctor.
1570 1571 1572 |
# File 'lib/shakapacker/doctor.rb', line 1570 def doctor @doctor end |
Instance Method Details
#print_report ⇒ Object
1576 1577 1578 1579 1580 |
# File 'lib/shakapacker/doctor.rb', line 1576 def print_report print_header print_checks print_summary end |