rails--rails/railties/lib/rails/console/helpers.rb

12 lines
194 B
Ruby

module Rails
module ConsoleMethods
def helper
@helper ||= ApplicationController.helpers
end
def controller
@controller ||= ApplicationController.new
end
end
end