From dfd7cd456bdbfc04b8c0ac81fa1f983250540066 Mon Sep 17 00:00:00 2001 From: Justin Ko Date: Mon, 24 Oct 2011 11:49:37 -0600 Subject: [PATCH] Move require to file that needs it. --- spec/support/samples/application_controller.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/spec/support/samples/application_controller.rb b/spec/support/samples/application_controller.rb index 006ca35..614096a 100644 --- a/spec/support/samples/application_controller.rb +++ b/spec/support/samples/application_controller.rb @@ -1,3 +1,5 @@ +require './spec/support/samples/application_helper' + module ActionController class Base @@before_filters = [] @@ -29,4 +31,4 @@ class ApplicationController < ActionController::Base end end -Draper::System.setup \ No newline at end of file +Draper::System.setup