Sha256: dbe92f19923983cc190eb02de112a4af28981957fc8c48710560960750055600
Contents?: true
Size: 427 Bytes
Versions: 25
Compression:
Stored size: 427 Bytes
Contents
# frozen_string_literal: true require 'glimmer-dsl-libui' include Glimmer data = [ %w[cat meow], %w[dog woof], %w[chicken cock-a-doodle-doo], %w[horse neigh], %w[cow moo] ] window('Editable animal sounds', 300, 200) { horizontal_box { table { text_column('Animal') text_column('Description') cell_rows data editable true } } on_closing do puts 'Bye Bye' end }.show
Version data entries
25 entries across 25 versions & 1 rubygems