Setup for GitHub Pages on MacBook with OS X El Capitan https://help.github.com/articles/setting-up-your-github-pages-site-locally-with-jekyll/
http://railsapps.github.io/installrubyonrails-mac.html
works perfectly!
https://help.github.com/articles/creating-pages-with-the-automatic-generator/
https://help.github.com/articles/using-jekyll-as-a-static-site-generator-with-github-pages/
http://jekyllrb.com/docs/deployment-methods/
http://stackoverflow.com/questions/30625044/jekyll-post-not-generated
http://stackoverflow.com/questions/31972968/cant-install-gems-on-os-x-el-capitan
Did this method:
gem install fakes3 --user-install -n~/bin
echo "gem: --user-install -n~/bin" >> ~/.gemrc
$ cat .bashrc
source ~/.bashrc_steve_extras
export PATH=$PATH:/usr/local/share/python:/Users/kellys04/bin
$ cat .gemrc
gem: --user-install -n~/bin
$ ll bin/
total 16
drwxr-xr-x 5 kellys04 staff 170B Sep 30 13:57 .
drwxrwxrwx+ 128 kellys04 staff 4.3K Sep 30 13:54 ..
-rwxr-xr-x 1 kellys04 staff 511B Sep 30 13:47 bundle
-rwxr-xr-x 1 kellys04 staff 512B Sep 30 13:47 bundler
drwxr-xr-x 3 kellys04 staff 102B Sep 30 13:57 ruby
$ gem install bundler
$ bundle install --path ~/bin # breaks
$ gem install json -v '1.8.3' -n ~/bin # also broke because of this problem
http://stackoverflow.com/questions/26434642/yosemite-upgrade-broke-ruby-h
fatal error: 'ruby/config.h' file not found #include "ruby/config.h" ^ 1 error generated. make: *** [generator.o] Error 1
THIS WORKED
$ xcode-select --install
$ gem install json -v '1.8.3'
$ gem install nokogiri -v '1.6.8'
$ bundle install --path ~/bin
WAIT NOT IT DOESN"T WORK http://stackoverflow.com/questions/31567029/how-can-i-install-jekyll-on-osx-10-11
did this
brew doctor
sudo chown -R $(whoami) /usr/local/bin /usr/local/share /usr/local/share/man
brew install pcre # some random missing dependency
brew prune /usr/local/share/man/man1/brew-cask.1 # another thing brew wanted...
gem install jekyll # this worked...
ok.. check the docs.. http://jekyllrb.com/docs/troubleshooting/#jekyll-amp-mac-os-x-1011
$ brew install ruby
# brew dcotor until this is fixed
$ gem install jekyll
$ bundle config build.nokogiri --use-system-libraries