Reputation: 50094
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.
Upvotes: 0
Views: 282
Reputation: 108259
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
Upvotes: 3
Reputation: 714
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!"
Upvotes: 2