Class: RailsCTO::Installer::Report
- Inherits:
-
Struct
- Object
- Struct
- RailsCTO::Installer::Report
- Defined in:
- lib/rails_cto/installer.rb
Instance Attribute Summary collapse
-
#created ⇒ Object
Returns the value of attribute created.
-
#errors ⇒ Object
Returns the value of attribute errors.
-
#patched ⇒ Object
Returns the value of attribute patched.
-
#skipped ⇒ Object
Returns the value of attribute skipped.
Class Method Summary collapse
Instance Method Summary collapse
Instance Attribute Details
#created ⇒ Object
Returns the value of attribute created
11 12 13 |
# File 'lib/rails_cto/installer.rb', line 11 def created @created end |
#errors ⇒ Object
Returns the value of attribute errors
11 12 13 |
# File 'lib/rails_cto/installer.rb', line 11 def errors @errors end |
#patched ⇒ Object
Returns the value of attribute patched
11 12 13 |
# File 'lib/rails_cto/installer.rb', line 11 def patched @patched end |
#skipped ⇒ Object
Returns the value of attribute skipped
11 12 13 |
# File 'lib/rails_cto/installer.rb', line 11 def skipped @skipped end |
Class Method Details
.empty ⇒ Object
12 13 14 |
# File 'lib/rails_cto/installer.rb', line 12 def self.empty new([], [], [], []) end |
Instance Method Details
#ok? ⇒ Boolean
16 17 18 |
# File 'lib/rails_cto/installer.rb', line 16 def ok? errors.empty? end |