Class: ERDB::Azimutt

Inherits:
ERDProvider show all
Defined in:
lib/erdb/providers/azimutt.rb

Class Method Summary collapse

Class Method Details

.create(tables) ⇒ Object

Create a new ER Diagram using azimutt.app/.

Parameters:

  • tables (Hash)


11
12
13
14
15
16
17
# File 'lib/erdb/providers/azimutt.rb', line 11

def create(tables)
  converted_data = to_aml(tables)

  Utils.display_output(converted_data, "Azimutt")

  start_automation(converted_data)
end