Class: InlineSvg::WebpackAssetFinder

Inherits:
Object
  • Object
show all
Defined in:
lib/inline_svg/webpack_asset_finder.rb

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(filename) ⇒ WebpackAssetFinder

Returns a new instance of WebpackAssetFinder.



7
8
9
# File 'lib/inline_svg/webpack_asset_finder.rb', line 7

def initialize(filename)
  @filename = filename
end

Class Method Details

.find_asset(filename) ⇒ Object



3
4
5
# File 'lib/inline_svg/webpack_asset_finder.rb', line 3

def self.find_asset(filename)
  new(filename)
end

Instance Method Details

#pathnameObject



11
12
13
14
15
16
17
# File 'lib/inline_svg/webpack_asset_finder.rb', line 11

def pathname
  public_path = Webpacker.config.public_path
  file_path = Webpacker.instance.manifest.lookup(@filename)
  return unless public_path && file_path

  File.join(public_path, file_path)
end