← back to the blog
fousa tag
Current tag: tag
2010
10
JAN
Using multiple Ruby versions
I was working on a project that still on Ruby 1.8.5 and locally I was using 1.8.7. At first you'd think, no problem! But reality showed me I was wrong... The count method wasn't supported on Arrays in the older version but I used it in my code and it worked with the newer version... So this failed in production! That's why I looked for a w...