Skip to content

Instantly share code, notes, and snippets.

View bmneely's full-sized avatar

Ben Neely bmneely

  • Kount
  • Boise, ID
View GitHub Profile

OS X 10.10 Guide

Here's what I did to get things working.

1. Install Xcode 6

Yep, over at: https://developer.apple.com

2. Install the Command Line Tools (CLT)

- Install XCode from the app store.
- Install XCode command-line tools.
$ xcode-select --install
- Install home brew. http://brew.sh/
$ ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
- Install database development packages.
$ brew install postgresql
def self.update_espn_headlines
headlines = EspnRb.headlines.all.response
headlines["headlines"].each do |headline|
puts "XXXXXXX"
puts headline["title"]
puts "XXXXXXX"
end
nil
end