Sha256: d43c07b7905ee099e2b21fb4a56dcf88260952275f1b926f6092f747d9631d30
Contents?: true
Size: 1.08 KB
Versions: 1
Compression:
Stored size: 1.08 KB
Contents
KManager.model :shapes, namespace: %i[domain] do # microapp = import(:handlebars_helpers, :microapp) table :shapes do fields :type, :x, :y, :w, :h, :style_modifiers # row :shape , x: 0, y: 0, w: 20, h: 20, style_modifiers: '' row :square , x: 0, y: 0, w: 160, h: 160, style_modifiers: '' row :rectangle , x: 0, y: 0, w: 200, h: 120, style_modifiers: '' row :circle , x: 0, y: 0, w: 160, h: 160, style_modifiers: 'double=1;ellipse' row :process , x: 0, y: 0, w: 200, h: 120, style_modifiers: 'double=1;shape=process' row :ellipse , x: 0, y: 0, w: 200, h: 120, style_modifiers: 'double=1;ellipse' row :diamond , x: 0, y: 0, w: 160, h: 160, style_modifiers: 'double=1;rhombus' row :hexagon , x: 0, y: 0, w: 200, h: 120, style_modifiers: 'double=1;shape=hexagon' row :cloud , x: 0, y: 0, w: 160, h: 160, style_modifiers: 'double=1;shape=cloud' row :note , x: 0, y: 0, w: 160, h: 160, style_modifiers: 'double=1;shape=note' row :callout , x: 0, y: 0, w: 160, h: 160, style_modifiers: 'double=1;shape=callout' end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
drawio_dsl-0.4.0 | .builders/blueprint/shapes.rb |