/diverso

collection of scripts and other tiny things I find useful

Primary LanguageRuby

#text mate 2 save on focus lost create file .tm_properties in home folder add saveOnBlur = true to it

mate $HOME/.tm_properties

add

saveOnBlur = true

useful scripts

  • loose collection of different scripts I find useful

sample rails 3 app skeleton with things I frequently end up using

  • remote content set up (js, and controller mixin)
  • jasmine config
  • database_cleaner setup

machine set up and aliases

alias bx="bundle exec"
alias gs="git status"
alias ga="git add -A"
alias gcm="git commit -mA"
alias sweet="script/suite/app"
alias gpr="git pull --rebase"
alias gl='git log --pretty=format:'\''%C(yellow)%h %Cred%ad %Cblue%an%Cgreen%d %Creset%s'\'' --date=short'

print line

p "#" * 30
p "(#{__FILE__}:#{__LINE__})"
p $END$
p "#" * 30