aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/abstract_controller/asset_paths.rb
blob: 6d6f6ac6071294fea08c2fb8a489d533cdf49050 (plain) (blame)
1
2
3
4
5
6
7
8
9
module AbstractController
  module AssetPaths
    extend ActiveSupport::Concern

    included do
      config_accessor :assets_dir, :javascripts_dir, :stylesheets_dir
    end
  end
end