This file contains 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
#!/bin/bash | |
bundle outdated | awk '{print($2)}' | while read line | |
do | |
if grep -q "gem '$line'" Gemfile; then | |
echo $line | |
fi | |
done |
This file contains 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
ec2-describe-instances --region us-west-2 | grep INSTANCE | awk {'print $5'} | awk -F"." '{print $1}' |
This file contains 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
PROMPT='%3~$(git_prompt_info)%# ' | |
ZSH_THEME_GIT_PROMPT_PREFIX="[" | |
ZSH_THEME_GIT_PROMPT_SUFFIX="]" |
This file contains 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
namespace :image_compression do | |
desc 'Optimize images with pngcrush and jpegoptim' | |
task :process do | |
# Check for pngcrush | |
if (!`which pngcrush`.empty? rescue false) # rescue on environments without `which` (windows) | |
# Crush all .png files | |
run "find #{shared_path}/assets/ -type f -name '*.png' -print0 | xargs -0 pngcrush -q -e .crushed" |
NewerOlder