I am trying to obtain access to Object#try in ruby.

I thought that just including activesupport would do the trick, but it doesn't.

irb(main):001:0> require 'rubygems'
=> true
irb(main):002:0> require 'active_support'
=> true
irb(main):003:0> o = Object.new
=> #<Object:0x15d45d9>
irb(main):004:0> o.respond_to? :try
=> false
irb(main):005:0> 

How do I get access to Object#try?

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

To get try all you need to do is require "active_support/core_ext/object/try". The source is here and because the NilClass is opened and try is defined to return nil, you get the chaining ability.

link|improve this answer
@Christopher Maujean Your point? try isn't supposed to gobble up NoMethodErrors, it's meant to stop you from calling any method on a NilClass. – Samuel Apr 1 '11 at 1:50
apparently I misread the documentation. – Christopher Maujean Apr 1 '11 at 2:41
feedback

Your Answer

 
or
required, but never shown

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