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.
1758 1759 1760 |
# File 'lib/shakapacker/doctor.rb', line 1758 def initialize(doctor) @doctor = doctor end |
Instance Attribute Details
#doctor ⇒ Object (readonly)
Returns the value of attribute doctor.
1756 1757 1758 |
# File 'lib/shakapacker/doctor.rb', line 1756 def doctor @doctor end |
Instance Method Details
#print_report ⇒ Object
1762 1763 1764 1765 1766 |
# File 'lib/shakapacker/doctor.rb', line 1762 def print_report print_header print_checks print_summary end |