Revisions
-
lmarburger renamed this gist
Mar 28, 2010 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
lmarburger renamed this gist
Mar 28, 2010 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
lmarburger revised this gist
Mar 28, 2010 . 3 changed files with 40 additions and 2 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,3 @@ exec_last_feature_or_test(){ history|sort -r|sed -s 's/^ [0-9]* //'|while read i;do if [[ "$i" =~ ^ruby || "$i" =~ ^cucumber ]];then echo $i|sh;exit;fi;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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,31 @@ $ exec_last_feature_or_test Loaded suite test/unit/item_test Started stty: stdin isn't a terminal Item . . . . . . . . . . . . . . . . . . . . . . . 23 tests: all passed 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,7 @@ $ ruby -Itest test/unit/item_test.rb Loaded suite test/unit/item_test Started Item ....................... 23 tests: all passed -
powellnathanj revised this gist
Mar 28, 2010 . 1 changed file with 1 addition and 2 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,3 @@ larry(){ history|sort -r|sed -s 's/^ [0-9]* //'|while read i;do if [[ "$i" =~ ^ruby || "$i" =~ ^cuc ]];then echo $i|sh;exit;fi;done } -
powellnathanj revised this gist
Mar 28, 2010 . 1 changed file with 2 additions and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,4 @@ larry(){ history | sort -r | sed -s 's/^ [0-9]* //' | while read i;do if [[ "$i" =~ ^ruby || "$i" =~ ^cucumber ]];then echo $i | sh ;exit;fi;done } -
powellnathanj created this gist
Mar 28, 2010 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,3 @@ larry(){ history | sort -r | while read i;do if [[ "$i" =~ "ruby" || "$i" =~ "cucumber" ]];then echo $(echo $i | sed 's/^[0-9]* //') | sh ;exit;fi;done }