Can I make a windows application with Ruby?
what famous software made with Ruby (on or off the rails :D)?
everybody seems to be talking about Ruby , and I need a motivation to learn it.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You most certainly can, though it’s uncommon due to Ruby’s affinity to web programming. Ruby is a cross-platform language, so if you write the code, there’s a 99% chance that it will work anywhere you can install the ruby interpreter.
Specific to windows, there’s the Win32 API, which allows you to interface with the windows-specific libraries from creating GUIs to getting data from the clipboard. In addition, Ruby has modules for WxWidgets, Qt, and GTK; so a large number of cross platform GUI-toolkits are available.
As for a state of purpose, the Ruby website has a listing of authorities that use Ruby and what they use it for.
If you’re feeling daring, you can use JRuby and develop in Ruby that runs on the JVM; meaning that your program is able to run anywhere that Java can be installed.