Search Results

3
votes
2answers
288 views

What is the easiest way I can create a ‘beep’ sound from a Ruby program?

I'm making a small ruby command line script and I wanted to know what the simplest way to have the program emit a beep is. …
0
votes
1answer
79 views

How does the putspecialobject opcode in the RubyVM work?

I'm working on an implementation of the RubyVM and I've searched all over for some documentation on the opcodes, but to no avail. If anyone knows specifically how the putspecialobject …
3
votes

Generate a different range in Ruby i.e. all possible /[0-9A-Za-z]{3}/

Ruby Facets provides a cartesian product method for enumerable. # File lib/core/facets/array/product.rb, line 21 def product(*enums, &block) enums.unshift self result = [[] …
1
vote

What rails plugins are good, stable and *really* enhance your code?

For me, Haml is excellent. It's not for everyone but if it clicks with you you'll love it. Set aside 30 min and give it a shot. It reduce …
-1
votes

How can you validate the presence of a belongs to association with Rails?

Instead of validating the presence of the article's id you could validate the presence of the article. validates_presence_of :article Then when you are creating yo …