aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/sprockets/helpers/isolated_helper.rb
blob: 3adb928c451abb194e80b8c6ada4c434d5e3e9df (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
module Sprockets
  module Helpers
    module IsolatedHelper
      def controller
        nil
      end

      def config
        Rails.application.config.action_controller
      end
    end
  end
end