asset_paths.rb 269 B

12345678910
  1. module AbstractController
  2. module AssetPaths
  3. extend ActiveSupport::Concern
  4. included do
  5. config_accessor :asset_host, :asset_path, :assets_dir, :javascripts_dir,
  6. :stylesheets_dir, :default_asset_host_protocol, :relative_url_root
  7. end
  8. end
  9. end