Skip to content

Instantly share code, notes, and snippets.

# This is my Rails Envy mp3 tagger script because I'm too lazy to do it every week manually.
require 'rubygems'
require 'id3lib'
require 'optparse'
require 'pp'
app = Hash.new
opts = OptionParser.new do |opts|
@jseifer
jseifer / gist:38813
Created December 22, 2008 00:35 — forked from peterc/gist:33337
# SUPER DARING APP TEMPLATE 1.0
# Originally By Peter Cooper
# Modified by Jason Seifer
# Link to local copy of edge rails
inside('vendor') { run 'ln -s ~/Source/rails rails' }
# Delete unnecessary files
run "rm README"
run "rm public/index.html"
# ~/.inputrc
# Filename completion regardless of case
set show-all-if-ambiguous On
set completion-ignore-case on
# Search history backwards and forwards with Esc-p and up/down arrows
"\ep": history-search-backward
"\e[A": history-search-backward
"\e[B": history-search-forward