Class: Mxrb::MigrationResult
- Inherits:
-
Data
- Object
- Data
- Mxrb::MigrationResult
- Defined in:
- lib/mxrb/project_lifecycle.rb
Instance Attribute Summary collapse
-
#current ⇒ Object
readonly
Returns the value of attribute current.
-
#diff ⇒ Object
readonly
Returns the value of attribute diff.
-
#generated ⇒ Object
readonly
Returns the value of attribute generated.
Instance Method Summary collapse
Instance Attribute Details
#current ⇒ Object (readonly)
Returns the value of attribute current
7 8 9 |
# File 'lib/mxrb/project_lifecycle.rb', line 7 def current @current end |
#diff ⇒ Object (readonly)
Returns the value of attribute diff
7 8 9 |
# File 'lib/mxrb/project_lifecycle.rb', line 7 def diff @diff end |
#generated ⇒ Object (readonly)
Returns the value of attribute generated
7 8 9 |
# File 'lib/mxrb/project_lifecycle.rb', line 7 def generated @generated end |
Instance Method Details
#clean? ⇒ Boolean
8 |
# File 'lib/mxrb/project_lifecycle.rb', line 8 def clean? = diff.added.empty? && diff.removed.empty? && diff.changed.empty? |