Tagged Questions

1
vote
3answers
371 views

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

Hi All, 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 …
0
votes
2answers
78 views

Differences in instance_eval behaviour between Ruby 1.9.1 and 1.8.6 ?

I noticed that class variables @@my_class var are now looked up in the context of the instance_eval'd object in Ruby 1.9.1 whereas this was not the case in Ruby 1.8.6. What are some other …
0
votes
1answer
103 views

Unreproducible string comparison, forces elsif failure.

In answering this code golf question, I ran across a problem in my answer. I've been testing this and I cannot even get these two comparisons to work in the code, despite the fact that IRB has the …
1
vote
3answers
1k views

Ruby 1.8 and UTF-8 string case statment compare (Ruby on Rails 2.2)

Hello :) I have a rake task (in lib/tasks directory) that I run with cron on my shared web hosting. The problem is that I want to compare a UTF-8 string using case statment but my source code is not …