Teek API Documentation

Tcl/Tk interface for Ruby (8.6+ and 9.x).

Getting Started

require 'teek'

app = Teek::App.new
app.set_window_title('Hello Teek')
app.command(:button, '.b', text: 'Hello', command: proc { app.destroy('.') })
app.command(:pack, '.b')
app.mainloop

Use the search box above to find classes, modules, and methods.