Fixing Broken `gem install` from Xcode update

Quick tip: upgrading to Xcode 8.0 on a Mac with existing dev tools installed results in compilation failures due to the build tool license. You need to agree to the new license before proceeding, which requires running with admin privileges.

So if you get something like this:
Error installing during `bundle install`

You can fix it by running the following:

$ sudo gcc

Hit ‘space’ repeatedly to get through the license, then type ‘agree’ and hit enter. You’ll get a generic error about no input files and that’s when you know you’re good to go. Re-run bundle or whatever you were doing previously.

 
1
Kudos
 
1
Kudos

Now read this

Quick Tip to Clean Up Rails Logs

Every few months I use this command to empty each and every one of my test.log and development.log files in the src folder of my laptop: find ~/src \ -maxdepth 6 \ -type f \ -mindepth 1 \ \( -name "test.log" -or -name "development.log" \... Continue →