For issues relating to developing in Ruby, version 1.8.

learn more… | top users | synonyms

99
votes
10answers
29k views

Ruby: require vs require_relative - best practice to workaround running in both Ruby <1.9.2 and >=1.9.2

What is the best practice if I want to require a relative file in Ruby and I want it to work in both 1.8.x and >=1.9.2? I see a few options: just do $LOAD_PATH << '.' and forget everything do ...
69
votes
3answers
25k views

What is the difference between Ruby 1.8 and Ruby 1.9

I'm not clear on the differences between the "current" version of Ruby (1.8) and the "new" version (1.9). Is there an "easy" or a "simple" explanation of the differences and why it is so different?
12
votes
5answers
8k views

(Ruby) Getting Net::SMTP working with Gmail…?

Does anyone have any quality (and up-to-date) information regarding sending mail via Gmail using Ruby's Net::SMTP? I've seen several examples -- most dating from 2007 to mid-2008 and none of them ...
4
votes
2answers
1k views

Supporting Ruby 1.9's hash syntax in Ruby 1.8

I'm writing a Ruby gem using the {key: 'value'} syntax for hashes throughout my code. My tests all pass in 1.9.x, but I (understandably) get syntax error, unexpected ':', expecting ')' in 1.8.7. Is ...
4
votes
2answers
295 views

Why is Symbol#to_proc slower in Ruby 1.8.7?

Relative Performance of Symbol#to_proc in Popular Ruby Implementations states that in MRI Ruby 1.8.7, Symbol#to_proc is slower than the alternative in their benchmark by 30% to 130%, but that this ...
4
votes
6answers
718 views

What's discouraging you from writing ruby 1.9-specific code?

So far, I've been merely using YARV (ruby 1.9) as merely a faster implementation of ruby than ruby 1.8, and ensured that all of my code is backwards-compatible with ruby 1.8.6. What circumstances, if ...
1
vote
2answers
1k views

How to dynamically create instance methods at runtime?

[ruby 1.8] Assume I have: dummy "string" do puts "thing" end Now, this is a call to a method which has as input arguments one string and one block. Nice. Now assume I can have a lot of ...
0
votes
1answer
555 views

Implementing auto complete for more than one field in Rails

I have an app, which implements a group feature. Each group has n members. Also, each group has a group specific profile pic to it. I have been able to implement auto complete for the group feature ...
4
votes
2answers
1k views

Spawning an independent thread or process in Ruby

I may be approaching this in the wrong direction, so any help would be appreciated. I have a Ruby script which, amongst other things, starts up an executable. I want to start this executable - ...
1
vote
2answers
538 views

Array#uniq with block equivalent in Ruby 1.8.7

Array#uniq has this behaviour in Ruby 1.9 c = [ "a:def", "a:xyz", "b:abc", "b:xyz", "c:jkl" ] c.uniq {|s| s[/^\w+/]} #=> [ "a:def", "b:abc", "c:jkl" ] It can take a block and give unique value ...
1
vote
1answer
292 views

Does Ruby 1.8.7 head support 1.9-style hash literals?

According to http://redmine.ruby-lang.org/issues/1183 , Ruby 1.9's {foo: 42} apparently was back-ported to Ruby 1.8. But I tried running ruby-1.8.7-head using RVM, and I got the standard syntax error: ...