Skip to content

Instantly share code, notes, and snippets.

View santoshbt's full-sized avatar

santosh santoshbt

  • Redhill, UK
View GitHub Profile
namespace :load do
ZIP_CODE_DATA_URL = 'http://www.census.gov/tiger/tms/gazetteer/zips.txt'
# Swiped from ActiveRecord migrations.rb
def announce(message)
length = [0, 75 - message.length].max
puts "== %s %s" % [message, "=" * length]
end