Tagged Questions

Shoes is a cross-platform toolkit for writing graphical apps easily and artfully using Ruby. Unlike most other GUI toolkits, Shoes is designed to be easy and straightforward without losing power.

learn more… | top users | synonyms

8
votes
3answers
640 views

Ruby GUI (non-complex layouts)

I've done quite a bit of research on Ruby GUI design, and it appears to be the one area where Ruby tends to be behind the curve. I've explored the options of MonkeyBars, wxRuby, fxRuby, Shoes, etc. ...
6
votes
3answers
489 views

Creating Ruby applications for Windows

I want to develop a Windows application. Honestly I care little about cross-platforms for now (but still would be good) I want to use Ruby, since it has quite a simple syntax and is so.. well, simple ...
6
votes
1answer
2k views

Using Ruby libraries and gems with a Shoes app

I am writing a little Shoes app that requires a library I wrote with my regular Ruby installation. My library uses the 'net-ssh' gem and a bunch of other Ruby libraries. When I run my library ...
5
votes
3answers
312 views

Is shoes is a serious GUI toolkit for ruby?

Does someone create real desktop GUI application with shoes or is it just used for learning purposes? Can shoes be compared with qtruby or gtk for ruby?
5
votes
5answers
1k views

What is best way to debug Shoes applications?

Shoes has some built in dump commands (Shoes.debug), but are there other tools that can debug the code without injecting debug messages throughout? Something like gdb would be great.
5
votes
5answers
3k views

Programming a simple IRC (Internet-Relay-Chat) Client

I started using IRC at a young age, and I have always been fascinated with it. As a language exercise, I was thinking about programming a simple IRC client in Ruby with Shoes as a graphical ...
4
votes
6answers
1k views

Where can I find documentation on functions available in the Ruby Shoe GUI Toolkit?

Is there any documentation that discribes all the available functions and objects in shoe? update: 2008.01.21 I am looking for a list of all the methods that can be called against an animate object. ...
4
votes
2answers
331 views

Tab movement in shoes

I have a problem I have a: stack { flow { para "Enter text:" edit_line } edit_box } (simplified version). When user is on edit_line and presses tab, I want it to move to edit_box ...
3
votes
1answer
51 views

Ruby (Shoes) List box crash when populating from excel

I've got a problem when using Shoes. I'm basically trying to open an excel document and pass the names of the worksheets to a list_box. The following method is called on a button press after selecting ...
3
votes
1answer
93 views

ruby shoes ssh connection

I am trying my hands on shoes but got stuck. I am trying to connect to a remote computer using ssh and issue a command, got it working in cli but it is a no go for me to get it working on shoes. This ...
3
votes
1answer
243 views

Can Shoes.rb Create Self-Contained Applications?

It's encouraging that Shoes (the Ruby GUI framework) has excellent packaging functionality, but I'm concerned that it doesn't actually 'wrap' itself around created applications. Packaging for OSX ...
3
votes
1answer
151 views

Is there a way to BDD Ruby Shoes?

I'm looking for some solutions to BDD a new Shoes app. Any suggestions
3
votes
1answer
223 views

How do I enable text selection, copying, and pasting in a Shoes app?

Is there any way to allow text selection, copying and pasting in a Shoes app? I'm making a little utility, and it would be great if it could support this functionality. I know shoes uses Pango/Cairo ...
3
votes
2answers
884 views

Shoes and Gems

Code: Shoes.setup do gem 'mechanize' end require 'rubygems' require 'mechanize' Running Shoes on it says: no such file to load -- mechanize Thank you.
3
votes
3answers
516 views

Does Shoes have a list view control?

I was taking a look at Shoes which seems like a very nice tool for quick GUI applications. The common elements/controls, however, don't seem to include the equivalent of a list/report view (e.g., ...
3
votes
4answers
627 views

How do I change the icon of my Shoes App?

I was wondering if it was possible to change the my Shoes app's icon? I imagine its style-oriented, but I haven't been able to find anything on it. Is this possible?
3
votes
1answer
313 views

How do I reload a running Shoes app after making source code changes?

I'd like to start tinkering around with Shoes. There is one thing I can't figure out. How do I reload a running Shoes application after saving changes to the source code? I've already found the ...
3
votes
1answer
300 views

Using Shoes' download() to do basic HTTP authentication

I'm trying to use Shoes' download() method to pass a username and password in the HTTP header to authenticate the HTTP request (talking to a Rails app). I'm a bit of a newb when it comes to this ...
2
votes
1answer
41 views

Abort Rubys Shoes animation

I'm starting to code GUIs with Shoes. I tried the progress bar from the examples, but I found no way to exit the animation, break did not work... animate do |frames| unless frames > 100 ...
2
votes
2answers
104 views

Use Watir in Shoes (ruby)

I'm trying to do an application in ruby. I want to collect information from the user using some UI interface. Then use this info in my script to fill some form on a web page. I use Shoes as UI I ...
2
votes
1answer
99 views

The request is not determined by the text

Where is the mistake? If a request for hard-coded 'test' instead @edit.text then a success, but if using a variable then the request fails. require 'sqlite3' Shoes.app do db = ...
2
votes
2answers
64 views

Why does rand(variable) halt my Shoes program's execution?

I am brand new to Shoes, and am trying to create a simple dice roller that allows the user to choose a custom-sized die by inputting the number of sides. My code is as follows: Shoes.app :width ...
2
votes
1answer
56 views

Storing Information in Stack/Flow Objects

Say I have the following sort of app: Shoes.app do @i = 0 def add_button button ("#{@i += 1}") end button("0") {add_button} end So that each time you click the button it ...
2
votes
2answers
163 views

How to get Shoes to use an already installed gem?

I have a ruby gem I created and installed and want to be able to use it in a Shoes app. As expected, Shoes reports it cannot find the gem, understandably since the gem is only installed for the ...
2
votes
4answers
809 views

Best way to create GOOD LOOKING, multi-platform, desktop Ruby apps?

I've got an idea for an idiotically simple application, one that converts HAML and SASS into HTML & CSS files for the user by watching directory changes (like Compass). Almost all the components ...
2
votes
1answer
116 views

Automatic height of edit box

My shoes application has three items stacked on top of each other (with a stack, of course), in order: A banner An edit box Two buttons in a flow What I want to do is have the banner stay at it's ...
2
votes
1answer
108 views

How can I change the button text in Shoes?

Once a button is created in Shoes, is it possible to change the text? I've tried modifying the :text key in the button style--@button.style.inspect confirms the text is changed--but the button still ...
2
votes
2answers
248 views

Make text transparent in Shoes.app

Is there a way in Shoes to have text show up transparent? I have: Shoes.app{ para "Text", :stroke => rgb(1.0,0.0,0.0,0.5), :size => 100 } But it's just showing up 100% red. I know opacity ...
2
votes
1answer
577 views

Run Shoes gui app in IDE

Is there any way to write Shoes application using IDE (NetBeans for example)? I hadn't found this solution and I don't like running Shoes app, selecting files, run. I'm sure code for packing Shoes ...
2
votes
1answer
1k views

Where to put ruby .gem files so that Shoes.setup can find them?

A lot of questions have been asked about gem support in Shoes, but none have answered where to put them. I've got Shoes Raisins 1134 on Windows XP, and I've downloaded dbi-0.4.1.gem and am trying to ...
2
votes
1answer
318 views

Shoes problems: clipboard and scroll bar

The code below has (at least) two problems: the Copy button doesn't update the clipboard, and the edit_box doesn't show a vertical scroll bar when it should. Shoes.app (:title => "Test", :width ...
2
votes
2answers
327 views

Shoes Layout

I'm trying to produce a shoes layout like the following: the text is giving me a problem. I tried: stack { flow { check stack { para 'text 1' para 'text 2' ...
2
votes
2answers
418 views

Method for building lightweight, cross-platform, text editor

I'm planning to build a simple, lightweight text editor that combines a great look with keyboard focused input. I want to have a lot of control over things like antialiasing and all the graphics in ...
2
votes
2answers
376 views

Click event in Shoes

On clicking a slot , I change the contents of the slot to provide user feed back, then call some code which takes several seconds to run. However the changes to the slot do not render until after the ...
2
votes
2answers
329 views

Is Shoes' idea of window dimensions broken on the Mac, or am I crazy?

Full disclosure: I'm very new to Ruby. The following code seems like it should update the para's text with the app's current dimensions as you resize it. Shoes.app do stack do @para ...
2
votes
1answer
113 views

When does the finish event get called in shoes?

Using Shoes, I would like to have a block executed upon window destruction. I thought I could use the finish event, but in the following piece of code, "Starting" is displayed, but "Finished" is never ...
2
votes
1answer
323 views

In shoes, how do I dock a stack to the bottom of the window?

In shoes, how would I dock a stack to the bottom of the window? For example I have the following snippet. Shoe.app do stack :height => 100 do background red end stack :height => ...
2
votes
1answer
395 views

How to position editbox's cursor in shoes?

Shoes is very handy GUI tool. I would like to do a search form so that a user is helped to navigate through larger texts for editing. For this I need to move the cursor within an editbox element. ...
2
votes
3answers
1k views

How Do I Install Ruby Shoes On x64 Linux?

I recently discovered Ruby Shoes, which sounds rather useful for a beginner like me. The only the problem is that my laptop is x64, while the only Linux package is i686. I tried it anyway and it ...
2
votes
1answer
729 views

How do I pass/get command line parameters?

I am trying to use Shoes and I need to pass it command-line parameters (basically, my Shoes app will be called from another pre-existing app and this would allow me to pre-fill some parts of shoes). ...
2
votes
1answer
2k views

Ruby (Shoes) - Wait for function to return value

I have a function that presents the user a combo-box. def select_interface(interfaces) list_box :items => interfaces do |list| interface = list.text end ### ideally should wait until ...
2
votes
5answers
846 views

Shoes packager problem

I used packager to make an executable file for the following code: Shoes.app do stack :margin => 10 do @edit = edit_box :width => 1.0 do @para.text = @edit.text end @para = ...
2
votes
2answers
824 views

How to use embedded c within Shoes? (ruby-serialport)

Is it possible to use something like: require 'serialport.o' with Shoes? serialport.o is compiled c code as a ruby extension. When I attempt to run the following code in shoes, I see no visible ...
2
votes
4answers
274 views

Scrollbars in Subpane window

I can't seem to get a scrollbar to work in an inner stack/flow. Does anyone know how to?
1
vote
0answers
27 views

Trying to access the “current dir” in a packaged Shoes app

I need to build an app which reads a file which is external to the Shoes package I'll be distributing it in. In my app, Dir.pwd points to the temp dir (at least in Windows) where the script is ...
1
vote
2answers
78 views

How can I display the output of an array in Ruby Shoes?

I've got this as my code openAll = File.open('N:\Josh\Blondie\db.txt') allNumbers = Array.new allNumbers=[] openAll.each_line {|line| allNumbers.push line } puts allNumbers and I'd ...
1
vote
2answers
124 views

Pressing the Enter key instead of Clicking button with Shoes (Ruby)

As the title suggests, I'm just looking for a way of pressing a button in Shoes without clicking it. I've searched the forum, but unfortunately can't find anything. Thanks
1
vote
1answer
110 views

Ruby Shoes and MySQL: GUI freezes, should I use threads?

I'm trying to learn Shoes and decided to make a simple GUI to run a SQL-script line-by-line. My problem is that in GUI pressing the button, which executes my function, freezes the GUI for the time it ...
1
vote
1answer
127 views

Strange behavior with instance variables in Shoes

Hey, all. I'm working on making a GUI for a Ruby project using Shoes. I've got a class called Manager (as in memory manager) that loads a 'process list' from a file, splits it up and assigns things ...
1
vote
2answers
202 views

Best way to open shoes apps when developing

Learning Shoes here. I am wondering if there is a better way to open shoes apps while keeping the console open. Currently I have to first open the shoes app, then open the console, then open my app ...

1 2 3