views:

54

answers:

2

I'm fairly new to Rails and am trying to figure out how to add a method to the String class and have the code in my partial know that the String class has been added to. I'm not sure where I should put the require statement.

+2  A: 

Having never worked with Rails, I'm not sure if there's a "better" way to do this, but you could do this via the respond_to? method, like this:

# extend String class to add new method
class String
  def some_new_func; end
end

# check to see if a String instance has
# that method available
if "test".respond_to? :some_new_func
  puts "Works!"
else
  puts "Doesn't work."
end

# => "Works!"
Josh Sandlin
+3  A: 

lib/monkeypatch.rb

class String
  def some_new_func
    ...
  end
end

app/controllers/application.rb:

require monkeypatch

(or, if you only want the monkeypatch for a specific controller, put the require in that controller).

See also: http://stackoverflow.com/questions/1073076/rails-lib-modules-and

Wayne Conrad