Sha256: 7d0b0b2887cab5094a01d7032f11426d7dbf43f80fd8f8ca5f9452655868234c
Contents?: true
Size: 1.22 KB
Versions: 9
Compression:
Stored size: 1.22 KB
Contents
module Jekyll class ThemeAssetsReader attr_reader :site def initialize(site) @site = site end def read return unless site.theme && 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 private def read_theme_asset(path) base = site.theme.root dir = File.dirname(path.sub("#{site.theme.root}/", "")) name = File.basename(path) if Utils.has_yaml_header?(path) append_unless_exists site.pages, Jekyll::Page.new(site, base, dir, name) else append_unless_exists site.static_files, Jekyll::StaticFile.new(site, base, dir, name) end end def append_unless_exists(haystack, new_item) if haystack.any? { |file| file.relative_path == new_item.relative_path } Jekyll.logger.debug "Theme:", "Ignoring #{new_item.relative_path} in theme due to existing file " \ "with that path in site." return end haystack << new_item end end end
Version data entries
9 entries across 9 versions & 1 rubygems