class Jekyll::StaticFile
Alteration to Jekyll
StaticFile
provides aliased methods to direct write to skip files excluded from localization
Public Instance Methods
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..].start_with?(e) end false end
Source
# File lib/jekyll/polyglot/patches/jekyll/static_file.rb, line 7 def write(dest) return false if exclude_from_localization? write_orig(dest) end
Also aliased as: write_orig