Skip to content

Instantly share code, notes, and snippets.

@shedd
Created June 20, 2011 18:05
Show Gist options
  • Star 7 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save shedd/1036149 to your computer and use it in GitHub Desktop.
Save shedd/1036149 to your computer and use it in GitHub Desktop.
Check asset encoding for valid UTF-8
namespace :assets do
task :check => :environment do
paths = ["app/assets", "lib/assets", "vendor/assets"]
paths.each do |path|
dir_path = Rails.root + path
if File.exists?(dir_path)
dir_files = File.join(dir_path, "**")
Dir.glob(dir_files + "/**.{js,css}").each do |file|
# make sure we're not trying to process a directory
unless File.directory?(file)
# read the file and check its encoding
data = File.read(file)
unless data.valid_encoding?
puts "#{ file } does not have valid encoding!"
end
end
end # end Dir.glob
end #end File.exists
end # end paths.each
end
end
@coliver
Copy link

coliver commented Nov 17, 2011

This helped me out. Thank you.

@jourdein
Copy link

This helped me too.. Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment