Skip to content

Instantly share code, notes, and snippets.

@fawkesley
Last active December 16, 2016 14:48
Show Gist options
  • Save fawkesley/c3a8a1af5a19b764891f08b3e9d89314 to your computer and use it in GitHub Desktop.
Save fawkesley/c3a8a1af5a19b764891f08b3e9d89314 to your computer and use it in GitHub Desktop.
ruby, rbenv, ruby-build, bundler (Gemfile) install reminder
# For example, installing a library / app with a specific `.ruby-version` and dependencies in a `Gemfile`
# update list of available ruby versions
pushd ~/.rbenv/plugins/ruby-build/ && git pull && popd
# install a specific ruby version
rbenv install 2.3.1
# install bundler for new ruby version
gem install bundle
# install ruby dependencies using bundler from
bundle install
# install gulp (from Node)
npm install gulp
export PATH=${PATH}:.node_modules/bin
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment