class FooController < ApplicationController def initialize arg puts "I got `#{arg}` as a constructor argument!" end def click_button move BarController, "Hello, Bar!" end end