10
votes
Hidden features of Ruby
Download Ruby 1.9 source, and issue make golf, then you can do things like this:
make golf
./goruby -e 'h'
# => Hello, world!
./goruby -e 'p St'
# => StandardEr …
3
votes
Recovering from a broken TCP socket in Ruby when in gets()
You can use select to see whether you can safely gets from the socket, see following implementation of a TCPServer using this technique.
require 'socket'
host, port = 'localhost', …
8
votes
What’s the best way to hash a url in ruby?
Depending on how long a string you would like you can use a few alternatives:
require 'digest'
Digest.hexencode('http://foo-bar.com/yay/?foo=bar&a=22')
# "687474703a2f2f666f6f2d …
6
votes
How can I change the text color in the windows command prompt
On windows, you can do it easily in three ways:
require 'win32console'
puts "\e[31mHello, World!\e[0m"
Now you could extend String with a small method called …
2
votes
Mongrel hangs with 100% CPU / EBADF (Bad file descriptor)
Consider using ImageScience, RMagick is known to leak massive amounts of memory and lock.
…
2
votes
Setting environment variables for Phusion Passenger applications
Before you do any requires (especially before requiring rubygems) you can do:
ENV['GEM_HOME'] = '/foo'
This will change the environment variable inside this proces …
6
votes
How do you do polymorphism in Ruby?
Using idiomatic Ruby
class Animal
def sleep
puts "#{self.class} is sleeping"
end
end
class Dog < Animal
def make_noise
"Woof!"
end
end
class Cat < Animal
d …
1
vote
[ruby] How to convert STDIN contents to an array?
What your are after is using $stdin instead of $stdin.to_s
ruby -e 'p $stdin.readlines.size' < INPUT
3
ruby -e 'p $stdin.to_s'
"#<IO:0x7fc7cc578af0>" …
1
vote
Complex or Deep Object Storage in Ramaze Session is Broken?
This issue has been solved in latest Ramaze (2009.04), please file a patch at the Ramaze issue tracker if the problem persists. …
0
votes
Why does Ruby’s Win32Console not work for me with Ramaze?
I think this is caused by the difference in the formatting string between your code and the code in Ramaze (or Innate).
"\e[#{COLOR_CODE[LEVEL_COLOR[severity]]}m#{string}\e[0m"
…
3
votes
Thin Crashes Hard with Ramaze
It means your eventmachine was compiled with Ruby 1.8 but runs with Ruby 1.9.
Do you have a parallel installation of 1.8/1.9?
…
