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
| # .bashrc | |
| # Source global definitions | |
| if [ -f /etc/bashrc ]; then | |
| . /etc/bashrc | |
| fi | |
| # User specific aliases and functions | |
| function t { |
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
| while true;do inotifywait -e create,delete,modify,move -rq . && php artisan test;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
| Warbler::Config.new do |config| | |
| # | |
| # ...... snip ....... | |
| # | |
| # remove the bundled jruby jars, they will | |
| # need to be deployed in $CATALINA_HOME/lib | |
| config.java_libs.delete_if {|f| f =~ /jruby-stdlib/ || f =~ /jruby-core/ } |