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.
1704 1705 1706 |
# File 'lib/shakapacker/doctor.rb', line 1704 def initialize(doctor) @doctor = doctor end |
Instance Attribute Details
#doctor ⇒ Object (readonly)
Returns the value of attribute doctor.
1702 1703 1704 |
# File 'lib/shakapacker/doctor.rb', line 1702 def doctor @doctor end |
Instance Method Details
#print_report ⇒ Object
1708 1709 1710 1711 1712 |
# File 'lib/shakapacker/doctor.rb', line 1708 def print_report print_header print_checks print_summary end |