vote up 2 vote down star

Let's say I want some instance of String behave differently from other, "normal" instances - for example cancel the effect of the "upcase" method. I do the following:

class String
  def foo
    def self.upcase
      self
    end
    self
  end
end

It seems to work fine, and the way I need it:

puts "bar".upcase #=> "BAR"
puts "bar".foo.upcase #=> "bar"

However, as soon as I use the tricked instance of the String as a key for a Hash, the behavior starts looking weird to me:

puts ({"bar".foo => "code"}).keys.first.upcase #=> "BAR", not "bar"!

... which is as if the foo method is ignored, and the original instance of String is used as the key.

Anyone can see what's going on here? Thanks a bunch!

flag
I have a strong feeling that there's a better solution to your real problem, whatever it is, than this. Why is it that you don't want this string to respond to upcase? – glenn mcdonald Jul 1 at 1:59
My problem may be specific enough to call for this solution, as I'm using Ruby to generate Javascript. In this particular case, I need to convert Hash's keys from underscore to camelcase, so that the resulting JS code reads natural. However, there are cases when I just want some keys to stay exactly as I specify them, so I added this "modifier" function ("foo" in the above example, "preserve" - below) that cancels the conversion, in hope to be able to do this: ({"converted_key" => 1, "passed_as_is".preserve => 1}).to_js #=> {"convertedKey" => 1, "passed_as_is" => 1}. I hope it makes sense. – Sergei Kozlov Jul 1 at 13:14
Hmm. So maybe you could keep a hash of Ruby keys to Javascript keys? You would then put your special-case logic in the creation of this hash, so "this_one" => "ThisOne" but "this_special_one" => "this_special_one". – glenn mcdonald Jul 1 at 17:04

3 Answers

vote up 5 vote down check

Ruby's Hash has a special case for using strings as a hash key -- it makes an internal copy of the string.

Basically it's to protect you from using a string (object) as a key and then altering that string object later in the code, which could lead to some confusing situations. Mutable keys get tricky.

Rather than hack method onto string that returns an altered string class, I would just create a new subclass of string that overrides upcase and then just set its value.

link|flag
I don't think making a subclass will work. The "def self.foo" is implemented with an anonymous subclass of the defining object's class, and that demonstrably doesn't work, so I think Ruby makes a copy of s if s.kind_of? String, not s.is_a? String. – David Seiler Jun 30 at 20:47
So if I add a function to an instance of an object, it changes that object into an anonymous subclass of whatever it was before? I didn't realize that. If that's the case, it seems you're left with only ugly solutions here (aside from, well, don't use hacked versions of String as a key) – Eli Jun 30 at 23:10
1  
Nope, Eli's suggestion works : gist.github.com/138566 (feel free to copy this code, Eli). David, def self.foo affects the object's metaclass, and doesn't change what the class is. – rampion Jul 1 at 3:08
vote up 0 vote down

Just because in Ruby you can reopen core classes and virtually re-define everything, it doesn't mean you should.

With great powers come great responsibilities and your responsability is to not redefine a core library method just because a couple of objects might need this. If your instance doesn't behave like a Sting, declare your own class and extend String.

link|flag
vote up 0 vote down

The usual way to extend a single object in Ruby is this:

s = "bar"
class<<s
  def self.upcase
    self
  end
end

...but that doesn't solve your problem. It seems that Ruby has special rules for hash keys that are strings, or subclasses of strings Maybe instead of a string, you can use an object with a meaningful definition of to_s?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.