0
votes
0
votes
Python vs Groovy vs Ruby? (based on criteria listed in question)
ruby has jruby with access to...something of the java internals, if necessary.
…
0
votes
Is it idiomatic Ruby to add an assert( ) method to Ruby’s Kernel class?
I absolutely agree it would be useful [and as a default method].
…
0
votes
What is best way to debug Shoes applications?
Note that if you use Alt + / you'll have to run that "before" starting the app
…
1
vote
0
votes
Where can I find documentation on functions available in the Ruby Shoe GUI Toolkit?
It appears that there is no real documentation, as such--you just have to glean it from examples [?]
An attempt at rdoc failed pretty well [just ran rdoc from within the github repo]
…
0
votes
What’s the best/easiest GUI Library for Ruby?
http://ihate.rubyforge.org/profligacy/ is a jruby swing wrapper that might be nice.
…
0
votes
0
votes
How can I make a simple text editing application in Shoes?
I think there's an example in the samples folder
…
0
votes
How do I call Windows DLL functions from Ruby?
I think you can use ruby/dl
http://groups.google.com/group/comp.lang.ruby/browse_thread/ …
2
votes
What makes Ruby slow?
Ruby is slow. But what parts of it are the most problematic?
It does "late lookup" for methods, to allow for flexibility. This slows it down quite a bit. It a …
0
votes
0
votes
getting rid of ruby gems that won’t die
update your version of ruby gems
gem update --system
then hopefully
gem uninstall xxx
will work right now [was a bug in older versions]
…
0
votes
Ruby can’t link with MS C runtime (msvcr90.dll)
appears to be that you need to exclude the /MD parameter
and make sure your library calls xfree, not free :)
…
0
votes
How to send mail with ruby over smtp with ssl (not with rails, no TLS for gmail)
this might help
http://blog.segment7.net/articles/2009/07/08/smtp_tls-1-0-3
…
