Rigby K.
Rigby K.

Reputation: 31

Is there a default GUI library for Ruby 2.5?

For example, if I install Python 3, I can run a GUI code with tkinter without installing an extra library. Java has Swing.

Does Ruby have any GUI library by default?

Upvotes: 0

Views: 107

Answers (1)

varro
varro

Reputation: 2482

No. Historically, Ruby used to come with Tk, but now you have to install that as gem, so there is no longer a default.

Upvotes: 3

Related Questions