OSX with cocoa pods 0.39

OSX machine with xcode 7.2, cocoa pods 0.39 and ruby 2.2.5 setup.
Hopefully this will be helpful to others as well.

Gemfile:

source 'https://rubygems.org' gem 'cocoapods', '0.39.0'

circle.yml:

machine: pre: - echo "export PATH=\$HOME/.rbenv/shims:\$HOME/.rbenv/bin:\$PATH" >> .bash_profile - echo "export RBENV_SHELL=bash" >> .bash_profile xcode: version: "7.2" `` dependencies: cache_directories: - ~/.rbenv pre: - brew update - brew install rbenv - rbenv install 2.2.5 --skip-existing - rbenv global 2.2.5 - gem install bundler --no-ri --no-rdoc - rbenv rehash - bundle install --path vendor/bundle override: - bundle exec pod --version - bundle exec pod install