brew install cmake
brew install python
sudo easy_install pip
Add powerline bin to your path. In your zshrc file (or the paths files sourced in zshrc) add the following line
PATH="/usr/local/share/python/:$PATH"
| #!/usr/bin/env bash | |
| apt-get -y update | |
| apt-get install build-essential zlib1g-dev libssl-dev libreadline-dev libyaml-dev libxml2-dev libxslt1-dev libcurl4-openssl-dev python-software-properties libffi-dev -y | |
| cd /tmp | |
| wget ftp://ftp.ruby-lang.org/pub/ruby/2.3/ruby-2.3.0.tar.gz | |
| tar -xvzf ruby-2.3.0.tar.gz | |
| cd ruby-2.3.0/ | |
| ./configure --prefix=/usr/local | |
| make | |
| make install |
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
| #!/bin/bash | |
| # | |
| # DESCRIPTION: | |
| # | |
| # Set the bash prompt according to: | |
| # * the ruby version | |
| # * the branch/status of the current git repository | |
| # * the branch of the current subversion repository | |
| # * the return value of the previous command | |
| # |
#Mac OS X
| FIXME: | |
| WARNING: Nokogiri was built against LibXML version 2.7.3, but has dynamically loaded 2.9.0 | |
| or | |
| libxml_ruby.bundle: dlsym(0x10fde1900, Init_libxml_ruby): symbol not found | |
| gem uninstall nokogiri libxml-ruby | |
| brew update | |
| brew uninstall libxml2 |
This installs a patched ruby 1.9.3-p484 with the railsexpress patchsets: https://github.com/skaes/rvm-patchsets
You will also need a C Compiler. If you're on Linux, you probably already have one or know how to install one. On OS X, you should install XCode, and brew install autoconf using homebrew.
| # Please install the Engine Yard Capistrano gem | |
| # gem install engineyard-eycap --source=http://gems.github.com | |
| require "eycap/recipes" | |
| set :keep_releases, 5 | |
| set :application, 'ssbev6docs' | |
| set :repository, '[email protected]:absperf/ssbe6-docs.git' | |
| set :deploy_to, "/data/#{application}" | |
| set :deploy_via, :remote_cache | |
| set :monit_group, "#{application}" |