mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Is wrong use ProcessedAsset#to_s since it returns the content of the file.
This commit is contained in:
parent
cd7fbcbba8
commit
7a7e87d5aa
1 changed files with 3 additions and 3 deletions
|
@ -26,7 +26,7 @@ module Sprockets
|
|||
sources.collect do |source|
|
||||
if debug && asset = asset_paths.asset_for(source, 'js')
|
||||
asset.to_a.map { |dep|
|
||||
super(dep.to_s, { :src => path_to_asset(dep, :ext => 'js', :body => true, :digest => digest) }.merge!(options))
|
||||
super(dep.pathname.to_s, { :src => path_to_asset(dep, :ext => 'js', :body => true, :digest => digest) }.merge!(options))
|
||||
}
|
||||
else
|
||||
super(source.to_s, { :src => path_to_asset(source, :ext => 'js', :body => body, :digest => digest) }.merge!(options))
|
||||
|
@ -43,7 +43,7 @@ module Sprockets
|
|||
sources.collect do |source|
|
||||
if debug && asset = asset_paths.asset_for(source, 'css')
|
||||
asset.to_a.map { |dep|
|
||||
super(dep.to_s, { :href => path_to_asset(dep, :ext => 'css', :body => true, :protocol => :request, :digest => digest) }.merge!(options))
|
||||
super(dep.pathname.to_s, { :href => path_to_asset(dep, :ext => 'css', :body => true, :protocol => :request, :digest => digest) }.merge!(options))
|
||||
}
|
||||
else
|
||||
super(source.to_s, { :href => path_to_asset(source, :ext => 'css', :body => body, :protocol => :request, :digest => digest) }.merge!(options))
|
||||
|
@ -57,7 +57,7 @@ module Sprockets
|
|||
options[:body] ? "#{path}?body=1" : path
|
||||
end
|
||||
alias_method :path_to_asset, :asset_path # aliased to avoid conflicts with an asset_path named route
|
||||
|
||||
|
||||
def image_path(source)
|
||||
path_to_asset(source)
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue