checked all .rb files in the project tree for missing magic comments, one was missing

Came with this one-liner for this:

    find . -name '*.rb' | \
    xargs chardet | \
    grep -v ascii | \
    cut -d: -f1 -s | \
    xargs -n1 ruby -0777 -ne 'puts $FILENAME if $_ !~ /#.*coding:\s*utf/i'

Welcome $_.
This commit is contained in:
Xavier Noria
2011-07-23 14:41:30 +02:00
parent 4d8aaff4ea
commit d352e0dff2
2 changed files with 3 additions and 1 deletions

View File

@@ -1,3 +1,5 @@
# encoding: utf-8
require 'active_support/core_ext/big_decimal/conversions'
require 'active_support/core_ext/float/rounding'
require 'active_support/core_ext/object/blank'

View File

@@ -1,4 +1,4 @@
# encoding: UTF-8
# encoding: utf-8
require 'abstract_unit'
require 'active_support/json'
require 'active_support/time'