colinsurprenant / redstorm

JRuby on Storm
Other
298 stars 56 forks source link

Gems should be vendored for spec tests #102

Open ismith opened 10 years ago

ismith commented 10 years ago

One way to do this would be to run redstorm bundle development, but probably better is to add .bundler/config with

BUNDLE_PATH: vendor
BUNDLE_DISABLE_SHARED_GEMS: "1"

and then you can just bundle install ; bundle exec rake spec as usual.

colinsurprenant commented 10 years ago

yes, that's what I personally do, add this ~/.bundler/config. we should document it.