ph (owner)
Fork Of
gist: 227361 by
defunkt
Reduce your carbon footprint
This gist is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are given this private URL.
Every gist with this icon (
) is private.
Every gist with this icon (
This gist is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
Vim
autocmd BufWritePre * :%s/\s\+$//e
Emacs
(add-hook 'before-save-hook 'delete-trailing-whitespace)
Textmate
http://blogobaggins.com/2009/03/31/waging-war-on-whitespace.html
In your existing codebase
find . -name '*.rb' | xargs perl -pi -e 's/ +$//'




