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
[ | |
{ "keys": ["super+b"], "command": "run_single_ruby_test", | |
"context": [ { "key": "selector", "operator": "equal", | |
"operand": "source.ruby, source.rspec, text.gherkin.feature" | |
} ] | |
}, | |
{ "keys": ["super+shift+b"], "command": "run_all_ruby_test", | |
"context": [ { "key": "selector", "operator": "equal", | |
"operand": "source.ruby, source.rspec, text.gherkin.feature" | |
} ] |
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
[:year, :month, :day].each { |m| delegate m, to: :child_model } | |
def_each :failure, :error do |method_name| | |
self.state = method_name | |
end |
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
# data | |
gem 'carrierwave' | |
gem 'fog' | |
gem 'mini_magick' | |
gem 'resque' | |
gem 'mysql', group: :development | |
gem 'pg', group: :production | |
# controllers and views | |
gem 'haml-rails' |
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
export CLICOLOR=1 | |
export LSCOLORS=gxBxhxDxfxhxhxhxhxcxcx | |
export EDITOR="subl -w" | |
if [ -f `brew --prefix`/etc/bash_completion ]; then | |
. `brew --prefix`/etc/bash_completion | |
export PS1='\[\033[0;35m\]$(rbenv version-name)\[\033[0;32m\] \w\[\033[00m\] \[\033[00m\]at\[\033[0;32m\]$(__git_ps1)\[\033[00m\] $ ' | |
fi | |
# History Handling |
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
#!/bin/sh | |
echo 'Refreshing local files' | |
cd /var/www/devinwadsworth.com | |
git --git-dir='/var/www/devinwadsworth.com/.git' pull |