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
# Amy's Bash .profile or .bash_profile aliases | |
# Unix, Git, Memcached | |
alias cls='clear' | |
alias dir='ls -alF' | |
alias e='emacs -nw' | |
alias gitcp='git cherry-pick' | |
alias gitl='git log --pretty=oneline -3 --color --name-status | cat' | |
alias gitl25='git log --pretty=oneline -25 --color | cat' | |
alias gitlf='git log --pretty=full -5 --color --name-status | cat' |
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 file is used by Rack-based servers to start the application. | |
require ::File.expand_path('../config/environment', __FILE__) | |
class TestMiddleware | |
def initialize(app) | |
@app = app | |
end | |
def call(env) |
NewerOlder