This file contains hidden or 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 :britt do | |
desc 'Removes trailing whitespace and tabs' | |
task :space do | |
sh %{find . -name '*.rb' -exec sed -i '' -e 's/[`echo -ne "\t"` ]*$//g' {} \\;} | |
end | |
end |
NewerOlder