Today I Learned

hashrocket A Hashrocket project

to_partial_path

Passing an active record instance to the render will look for a partial of the active record's name. This is because the active record implements to_partial_path.

This can be mimic'd by a non-active record object like so.

class Fruit
  def to_partial_path
    "fruit"
  end
end

Passing Fruit.new to render like so:

render Fruit.new

Will look for a partial name _fruit.html.erb

See More #ruby TILs
Looking for help? Each developer at Hashrocket has years of experience working with Ruby applications of all types and sizes. We're an active presence at Ruby conferences, have written some of the most popular gems, and have worked on many of the web's Ruby on Rails success stories. Contact us today to talk about your Ruby project.