Skip to content

Instantly share code, notes, and snippets.

@jcsalterego
Forked from nkallen/gist:28370
Created November 24, 2008 04:11
Show Gist options
  • Save jcsalterego/28374 to your computer and use it in GitHub Desktop.
Save jcsalterego/28374 to your computer and use it in GitHub Desktop.
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment