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
for file in $(\ls -1 ${HOME}/.bash_profile_includes/*.sh); do | |
source $file; | |
done |
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
#!/usr/bin/env bash | |
# Copyright (c) 2011 Concurrent, Inc. | |
mt_path=`pwd` | |
content=`cat $0 | sed 's/^\s*#.*//g' | tr "\n" " " | sed 's/.*!#//'` | |
exec $mt_path/bin/multitool `eval echo $content` | |
!# | |
# set the source |
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
// Router.js 0.1.0 | |
// (c) 2011 Doc Ritezel | |
// Freely distributable under the MIT license. | |
// | |
// Load this before rails_routes.js (generated by routes_to_javascript.rb) | |
// Enables: | |
// var c = new Backbone.Controller({ routes: { Routes.root(): 'index' } }); | |
// $('a.delete').attr('href', Routes.delete_item(3)); | |
(function(){ |
NewerOlder