This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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| |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ~/.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 |
NewerOlder