Install any gem binary on servers that forbid gem install

Our servers only have system-wide rubies, where gem install is verboten for normal users,
but there is a simple way around that:

  • make a ~/gems folder
  • add a Gemfile with all the gems you want
  • bundle --binstubs --path vendor/bundle
  • export PATH="~/gems/bin:$PATH"

For bonus points: automate it!

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s