Specify bundle install for travis.

* Thanks to @sikachu!

Travis will now runs `bundle install --deployment` if it detects that
the project has `Gemfile.lock`. However, there's a problem in Bundler
deployment install that cause it not installing `bundler` gem into
`vendor/bundle` directory, which causes `require 'bundler'` to fail.
This commit is contained in:
Jason Draper 2013-08-01 14:02:24 -04:00
parent fce5ee6777
commit 530303300b
1 changed files with 3 additions and 0 deletions

View File

@ -1,5 +1,8 @@
script: "bundle exec rake spec cucumber"
install:
"bundle install"
rvm:
- 1.9.2
- 1.9.3