class Sprockets::Context

def stub_asset(path)

in the bundle.
`path` must be an asset which may or may not already be included
`stub_asset` blacklists `path` from being included in the bundle.
def stub_asset(path)
  @_stubbed_assets << resolve(path, :content_type => :self).to_s
  nil
end