Created
June 20, 2011 18:05
-
-
Save shedd/1036149 to your computer and use it in GitHub Desktop.
Check asset encoding for valid UTF-8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This helped me out. Thank you.