Skip to content

Instantly share code, notes, and snippets.

View wrozka's full-sized avatar

Paweł Pierzchała wrozka

View GitHub Profile
@wrozka
wrozka / img_convert.rb
Created April 19, 2012 14:10 — forked from shedd/img_convert.rb
convert html img tags to rails image_tag calls
#!/usr/bin/env ruby -Ku
require "nokogiri"
require "iconv"
# opens every file in the given dir tree and converts any html img tags to rails image_tag calls
#
# example usage:
# ruby convert.rb ~/my_rails_app/app/views
#
# ***be careful and backup before using this***