this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add info about requirements

+10 -1
+2 -1
dir_colors
··· 255 255 256 256 # Templates 257 257 .erb 01;38;5;6 258 + .curly 01;38;5;6 258 259 .haml 01;38;5;6 259 - .jbuilder 01;38;5;6 260 + .builder 01;38;5;6
+8
install
··· 42 42 JQ="$(which jq)" 43 43 PACKAGES="$(cat packages.json)" 44 44 45 + if [ -e "$JQ" ]; then 46 + echo 'Install jq before running' 47 + echo 'http://stedolan.github.io/jq/' 48 + echo '' 49 + echo 'In future installer will fetch it for you, but for now it is only requirement' 50 + exit 1 51 + fi 52 + 45 53 for path in $($JQ -r '. | keys[]' <<< "$PACKAGES") 46 54 do 47 55 current=$($JQ ".[\"$path\"]" <<< "$PACKAGES")