Is there a way to find out from where a method was included in Ruby / Ruby on Rails?
For example, from searching the Rails API I know that:
link_to
comes fromActionView::Helpers::UrlHelper
, andpluralize
come fromActionView::Helpers::TextHelper
But is there a way to find out in Ruby itself? i.e. inirb
, or the Rails console?