# File lib/premailer/premailer.rb, line 252 def load_css_from_local_file!(path) css_block = '' path.gsub!(/\Afile:/, '') begin File.open(path, "r") do |file| while line = file.gets css_block << line end end load_css_from_string(css_block) rescue; end end