Setting up development vagrant box for Rails

199 Views Asked by At

I'm setting up a development Rails box in Vagrant using Ansible. It's all set up and i've used Rbenv to facilitate installation of Ruby. I installed Ruby 2.1.2

When I run rbenv global I get 2.1.2. When I navigate to my app directory and run rbenv local I get 2.1.2 and when I run ruby -v I get 2.1.2. My gemfile also states 2.1.2

However, when I run bundle install, I get:

Your Ruby version is 1.8.7, but your Gemfile specified 2.1.2

Any ideas how to solve this?

1

There are 1 best solutions below

7
On

you need to install the bundle gem using the rbenv gem command:

rbenv global 2.1.2

# ensure all shims for current ruby version are there
rbenv rehash

gem install bundler

# rehash again to make sure you get the `bundler` command from `rbenv`
rbenv rehash

bundle install

Hope this helps