If I'm using //=require_tree . in application.css, is there a way to exclude particular files other than resorting to //=require_directory and tree organization?

Perhaps something like //= require_tree ., {except: 'something'}

link|improve this question

67% accept rate
feedback

3 Answers

up vote 2 down vote accepted

NB: This answer is now out of date, with an update to Sprockets having this feature.

===

This is not possible with current Sprockets directives, but it seems like a handy feature.

The other way to to manually list each file you want.

Perhaps you could file this as a feature request over on the Sprockets repo? :-)

link|improve this answer
2  
That would be a handy feature. – Tyler Rick Oct 17 '11 at 23:25
But it doesn't look like it's going to be added. See github.com/sstephenson/sprockets/pull/86 – Tyler Rick Oct 17 '11 at 23:31
1  
This is now possible, see my answer. – AnomalousThought Mar 8 at 0:30
Great news, but the answer was correct when I wrote it, so not really fair to down vote it now. :-) – Richard Hulse Mar 9 at 7:39
feedback

This is now possible with the stub directive:

//= require jquery
//= require_tree .
//= stub unwanted_js

stub directives can not be overridden by subsequent require or include directives.

link|improve this answer
The current release of Rails (3.2.2) relies on Sprockets 2.1.2 which does NOT have this feature! – Richard Hulse Mar 9 at 7:52
This doesn't appear to work at all for CSS files. – Scott Greenfield Apr 11 at 23:22
feedback

The following monkey patch solves this for me:

module Sprockets
  class DirectiveProcessor
    # support for: require_tree . exclude: "", "some_other"
    def process_require_tree_directive(path = ".", *args)
      if relative?(path)
        root = pathname.dirname.join(path).expand_path

        unless (stats = stat(root)) && stats.directory?
          raise ArgumentError, "require_tree argument must be a directory"
        end

        exclude = args.shift == 'exclude:' ? args.map {|arg| arg[/['"]?([^'"]+)['"]?,?/, 1]} : []

        context.depend_on(root)

        each_entry(root) do |pathname|
          if pathname.to_s == self.file or pathname.basename(pathname.extname).to_s.in?(exclude)
            next
          elsif stat(pathname).directory?
            context.depend_on(pathname)
          elsif context.asset_requirable?(pathname)
            context.require_asset(pathname)
          end
        end
      else
        # The path must be relative and start with a `./`.
        raise ArgumentError, "require_tree argument must be a relative path"
      end
    end
  end

end
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.