> Is there a way to get bundler to pull that already built gem from
> system gems instead of trying to recompile it, like it did with 0.9?
As of 1.0, Bundler can either install to system gems or install to a specific path. If you use system gems (via `bundle install --system`), then it will not try to recompile. If you don't use system gems (via --deployment or --path), you will not be able to use the already-installed system gem. If you need to pass compilation options to bundler, you can do that using the new `bundle config` command.
— Andre
I was able to solve my problem by copying the gemspec and the
installed gem from my system gems into their appropriate location in
shared/bundler. It's a pretty hacky solution to the problem, but it
works.
Was it a conscious decision to not use already installed system gems
when installing gems elsewhere? I wouldn't mind taking a stab at
making bundler copy over system gems instead of reinstalling if it
would be helpful to others, as long as there's not a good reason that
bundler doesn't operate this way.
- Brandon
> --
> You received this message because you are subscribed to the Google Groups "ruby-bundler" group.
> To post to this group, send email to ruby-b...@googlegroups.com.
> To unsubscribe from this group, send email to ruby-bundler...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/ruby-bundler?hl=en.
>
>