Class: Jekyll::ThemeAssetsReader

Inherits:
Object
  • Object
show all
Defined in:
lib/jekyll/readers/theme_assets_reader.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(site) ⇒ ThemeAssetsReader

Returns a new instance of ThemeAssetsReader.



7
8
9
# File 'lib/jekyll/readers/theme_assets_reader.rb', line 7

def initialize(site)
  @site = site
end

Instance Attribute Details

#siteObject (readonly)

Returns the value of attribute site.



5
6
7
# File 'lib/jekyll/readers/theme_assets_reader.rb', line 5

def site
  @site
end

Instance Method Details

#readObject



11
12
13
14
15
16
17
18
19
20
21
22
23
# File 'lib/jekyll/readers/theme_assets_reader.rb', line 11

def read
  return unless site.theme&.assets_path

  Find.find(site.theme.assets_path) do |path|
    next if File.directory?(path)

    if File.symlink?(path)
      Jekyll.logger.warn "Theme reader:", "Ignored symlinked asset: #{path}"
    else
      read_theme_asset(path)
    end
  end
end