class Jekyll::StaticFile

Alteration to Jekyll StaticFile provides aliased methods to direct write to skip files excluded from localization

Public Instance Methods

exclude_from_localization?() click to toggle source
# File lib/jekyll/polyglot/patches/jekyll/static_file.rb, line 13
def exclude_from_localization?
  return false if @site.active_lang == @site.default_lang
  @site.exclude_from_localization.each do |e|
    return true if relative_path[1..-1].start_with?(e)
  end
  false
end
write(dest) click to toggle source
# File lib/jekyll/polyglot/patches/jekyll/static_file.rb, line 8
def write(dest)
  return false if exclude_from_localization?
  write_orig(dest)
end
Also aliased as: write_orig
write_orig(dest)
Alias for: write