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.
750 751 752 |
# File 'lib/shakapacker/doctor.rb', line 750 def initialize(doctor) @doctor = doctor end |
Instance Attribute Details
#doctor ⇒ Object (readonly)
Returns the value of attribute doctor.
748 749 750 |
# File 'lib/shakapacker/doctor.rb', line 748 def doctor @doctor end |
Instance Method Details
#print_report ⇒ Object
754 755 756 757 758 |
# File 'lib/shakapacker/doctor.rb', line 754 def print_report print_header print_checks print_summary end |