Tagged Questions

8
votes
7answers
267 views

Has anyone successfully deployed a Rails project with Ruby 1.9.1?

Last week I successfully completed the transition of all our company applications from Ruby 1.8.6 to Ruby 1.8.7 including local and remote configurations. From now on, development won't need to ensure …
8
votes
14answers
428 views

Really cool features in Ruby 1.9

With the Ruby 1.9.2 release on the horizon, it's time to get developers exited about Ruby 1.9. What are some nice things you can do in ruby 1.9 but can't in ruby 1.8?
7
votes
1answer
153 views

autospec with multiple versions of Ruby

Hi, I've installed Ruby 1.9.1 alongside Ruby 1.8.6 on my Mac OS X Leopard using the prefix and program-suffix options so that I can run Ruby 1.9 stuff by issuing ruby19, irb19, gem19, etc. commands. …
4
votes
6answers
500 views

Ruby 1.9.1-p234, Passenger 2.2.5, Rails 2.3-stable closed stream on POST request

I've setup Ruby 1.9.1 (p234) on a Ubuntu server. I'm trying to deploy a Rails app which vendors Rails 2.3-stable on Apache 2.2/Passenger 2.3.5. GET requests work fine, POST requests break immediately …
3
votes
2answers
94 views

How to correctly uninstall Ruby 1.9.1 [closed]

Hi:) I have manually set Ruby 1.9.1. I have installed it via ./configure --prefix=/opt make make install The target 'uninstall' does not exist in generated Makefile ... How to do uninstallation …
3
votes
2answers
84 views

Is it possible to define a block with default arguments in Ruby?

This question deals with optional arguments passed to a Ruby block. I'm wondering if it's also possible to define arguments with default values, and what the syntax for that would be. At first …
2
votes
2answers
74 views

Can Ruby 1.9 used with Rails by a Ruby/Rails beginner?

About half a year ago, when I started to learn Ruby and Rails, I first tried Ruby 1.9 but I soon gave up, because at that time nothing worked out of the box and almost every helping blog or tutorial …
2
votes
2answers
192 views

Paper Clip failing to save attachment

Hi, I'm using Ruby 1.9 and Rails 2.3.4 with Paperclip gem to save attachments. and I followed tutorial by adding the proper migration, adding (has_attached_file :video) to the model, making the form …
2
votes
3answers
175 views

How do Enumerators work in Ruby 1.9.1?

This question is not about how to use Enumerators in Ruby 1.9.1 but rather im curious how they work. Here is some code: class Bunk def initialize @h = [*1..100] end def each …
2
votes
3answers
659 views

Anyone Try Running Rails 2.2 (or Edge) under Ruby 1.9.1 RC1

Ruby 1.9.1 RC1 was released today so I quickly moved to install it (a test version of course using a suffix of 19). I install Rails and Rack for the 1.9 RubyGems and then create a new Rails site using …
1
vote
2answers
42 views

making ruby 1.9 the default ruby on ubuntu

Is there any way, on Ubuntu 9.04, to install ruby 1.8 as ruby1.8 (or get rid of it altogether) and have ruby 1.9 be the default ruby?
1
vote
4answers
44 views

alternatives to Hash#index that works without warning in both Ruby 1.8 and 1.9

I've got some ruby code that I'm converting to Ruby 1.9. One warning I get is Hash#index is deprecated; use Hash#key But Hash#key is not defined in Ruby 1.8, so I can't use that directly. Does …
1
vote
1answer
49 views

Why isn’t the Ruby 1.9 lambda call possible without the dot in front of the parens?

I checked out the latest Ruby version, to play a bit with the latest changes. The first thing I tried to do was call a Ruby lambda/block/proc just like you'd do with a Python callable. a = lambda …
1
vote
2answers
71 views

Ruby 1.8 vs 1.9 - destructive reject! operator

Why does this work the way it does? I thought it had something to do with pass-by-reference/value, but that's not the case. Does it have something to do with the new block scopes? def …
1
vote
1answer
44 views

What is the difference between the different Ruby 1.9 builds?

Hello, There are quite a few versions of Ruby 1.9 floating around. There are a few Ruby 1.9 builds for the different operating systems at the official Ruby language site here: …

1 2 next
15 30 50 per page