bundle execを使わずに済む方法(rbenv編)

2013-04-07#ruby

$ cd
$ mkdir .rbenv/plugins
$ cd .rbenv/plugins
$ git clone git://github.com/ianheggie/rbenv-binstubs.git

Rails 3

$ cd path/to/project
$ bundle install --binstubs
$ rbenv rehash
$ rails s

Rails 4

$ cd path/to/project
$ bundle install --binstubs=bundle_bin
$ rbenv rehash
$ rails s