You are integrating with a 3rd party application that contains statistics on the most popular baby names for a given year. You have both high-level stats and per-name information you’d like to display. It’d be nice if you could write the code like this: class NamesController < ApplicationController def index @names = Names::Client.all_names end def show @name = Names::Client.find_name(params[:name
