ともあれBundlerをインストール。
$ rbenv exec gem install bundler
$ rbenv rehash
Gemfileを作成する。
$ rbenv exec bundle init
Gemfileを編集する。
source "https://rubygems.org"
gem "sinatra"
gem "pry"
gemをインストールする。
$ rbenv exec bundle install --path vendor/bundle
インストールされたgemを確認する。
$ bundle list
Gems included by the bundle:
* bundler (1.7.2)
* rack (1.5.2)
* rack-protection (1.5.3)
* sinatra (1.4.5)
* tilt (1.4.1)
コマンドを実行する。
$ rbenv exec bundle exec pry