Class: Adopter::ConvertedFile
- Inherits:
-
Struct
- Object
- Struct
- Adopter::ConvertedFile
- Defined in:
- lib/adopter/migration_plan.rb
Instance Attribute Summary collapse
-
#content ⇒ Object
Returns the value of attribute content.
-
#conversion_notes ⇒ Object
Returns the value of attribute conversion_notes.
-
#output_path ⇒ Object
Returns the value of attribute output_path.
-
#source_file ⇒ Object
Returns the value of attribute source_file.
Instance Method Summary collapse
Instance Attribute Details
#content ⇒ Object
Returns the value of attribute content
65 66 67 |
# File 'lib/adopter/migration_plan.rb', line 65 def content @content end |
#conversion_notes ⇒ Object
Returns the value of attribute conversion_notes
65 66 67 |
# File 'lib/adopter/migration_plan.rb', line 65 def conversion_notes @conversion_notes end |
#output_path ⇒ Object
Returns the value of attribute output_path
65 66 67 |
# File 'lib/adopter/migration_plan.rb', line 65 def output_path @output_path end |
#source_file ⇒ Object
Returns the value of attribute source_file
65 66 67 |
# File 'lib/adopter/migration_plan.rb', line 65 def source_file @source_file end |
Instance Method Details
#to_h ⇒ Object
66 67 68 69 70 71 72 73 |
# File 'lib/adopter/migration_plan.rb', line 66 def to_h { output_path:, content:, source_file:, conversion_notes: } end |