Flowdock
method

expand_javascript_sources

Importance_0
v3.0.9 - Show latest stable - 0 notes - Class: ActionView::Helpers::AssetTagHelper
expand_javascript_sources(sources, recursive = false) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionpack/lib/action_view/helpers/asset_tag_helper.rb, line 841
        def expand_javascript_sources(sources, recursive = false)
          if sources.include?(:all)
            all_javascript_files = (collect_asset_files(config.javascripts_dir, ('**' if recursive), '*.js') - ['application']) << 'application'
            ((determine_source(:defaults, @@javascript_expansions).dup & all_javascript_files) + all_javascript_files).uniq
          else
            expanded_sources = sources.collect do |source|
              determine_source(source, @@javascript_expansions)
            end.flatten
            expanded_sources << "application" if sources.include?(:defaults) && File.exist?(File.join(config.javascripts_dir, "application.js"))
            expanded_sources
          end
        end
Register or log in to add new notes.