Class: Yml2erd::CLI
- Inherits:
-
Thor
- Object
- Thor
- Yml2erd::CLI
- Defined in:
- lib/yml2erd/cli.rb
Instance Method Summary collapse
Instance Method Details
#convert(path) ⇒ Object
11 12 13 14 15 16 17 18 19 20 |
# File 'lib/yml2erd/cli.rb', line 11 def convert(path) schema_structure = Yml2erd::Parser.parse(path) opts = { output_path: [:output_path], project_name: [:projectname], output_style: [:outputstyle] } Yml2erd::Diagram.create(schema_structure, opts) puts 'Successfully converted!' end |