blob: cf9d7b39aabca291c0bbd3f966c0ed4514720650 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Ruby stuff
## Bundler
### Install packages locally
bundle config set path vendor/bundle
bundle install
# Previously was like this, but apparently this is deprecated now:
# bundle install --path vendor/bundle
## Gemfile
### Basic
source 'https://rubygems.org'
gem 'gemname'
|