On Thu, Mar 12, 2009 at 2:12 PM, Edward Heil <[email protected]> wrote: > I ended up doing this, using Kyle's suggestion: > > Gem.sources = ['http://gems.github.com/', 'http://gems.rubyforge.org/'] > > and it worked great. > > Could I have added both sources using the technique you describe?
Yeah, it would work like this: Shoes.setup do gem "something-from-rubyforge" gem "more-rubyforge" gem "anything-will-come-from-rubyforge-by-default" source "http://gems.github.com" gem "now-pulling-from-github" gem "etc-and-so-forth" end -- Seth Thomas Rasmussen http://greatseth.com
