0

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.

Andrew Grimm
  • 74,534
  • 52
  • 194
  • 322
Alex Baranosky
  • 46,787
  • 42
  • 99
  • 147

2 Answers2

3

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: Rails /lib modules and

Community
  • 1
  • 1
Wayne Conrad
  • 96,708
  • 25
  • 150
  • 188
2

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
  • 714
  • 8
  • 21