kfpratt has quit [Remote host closed the connection]
_ixti_ has quit [Quit: WeeChat 1.2]
ryba has joined #bundler
djbkd_ has joined #bundler
Pupeno has quit [Remote host closed the connection]
Pupeno has joined #bundler
Pupeno has quit [Ping timeout: 244 seconds]
kfpratt has joined #bundler
djbkd_ has quit [Remote host closed the connection]
djbkd_ has joined #bundler
djbkd_ has quit [Ping timeout: 240 seconds]
chouhoulis has joined #bundler
kfpratt has quit [Remote host closed the connection]
chouhoulis has quit [Remote host closed the connection]
Pupeno has joined #bundler
Pupeno has quit [Ping timeout: 246 seconds]
chouhoulis has joined #bundler
chouhoulis has quit [Ping timeout: 264 seconds]
huoxito has joined #bundler
chouhoulis has joined #bundler
huoxito has quit [Ping timeout: 244 seconds]
chouhoulis has quit [Ping timeout: 264 seconds]
huoxito has joined #bundler
Pupeno has joined #bundler
Pupeno has quit [Ping timeout: 244 seconds]
tubbo has joined #bundler
<tubbo>
hey guys, i see this warning when i `bundle` for gems in which i need a private gem server source: "Warning: this Gemfile contains multiple primary sources. Using `source` more than once without a block is a security risk, and may result in installing unexpected gems. To resolve this warning, use a block to indicate which gems should come from the secondary source. To upgrade this warning to an error, run
<tubbo>
is there any way to get rid of it? like can i specify a `source:` attribute in the gemspec and get rid of it in Gemfile or something?
wpp has joined #bundler
chouhoulis has joined #bundler
lele is now known as Guest24
jrafanie has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
jrafanie has joined #bundler
chouhoulis has quit [Ping timeout: 250 seconds]
jrafanie has quit [Client Quit]
jrafanie has joined #bundler
chouhoulis has joined #bundler
chouhoulis has quit [Ping timeout: 244 seconds]
Pupeno has joined #bundler
Pupeno has quit [Ping timeout: 244 seconds]
jrafanie has quit [Read error: Connection reset by peer]
<jhass>
tubbo: so you got a .gemspec which adds dependencies to gems from that private source as well as rubygems.org?
<tubbo>
jhass: yeah
<tubbo>
jhass: the Gemfile currently has two source declarations, in our apps we've mitigated the warning by surrounding the gems that come from our private gem server with a source block
<tubbo>
but i can't do that in a gemspec
<tubbo>
so i was wondering if there was any way to get rid of the warning in the gemspec, it's not a huge deal just seems like a little oversight..
<jhass>
mh, so you did try surrounding the gemspec call into a source block?
<tubbo>
jhass: how much of a bounty do i need to contribute to get `Bundler.i_know_multiple_sources_are_bad_but_i_need_them` in the project? ;)
Pupeno has joined #bundler
<tubbo>
yeah...unfortunately when i try to add what i think should be the right option, i get "Illformed requirement [{:source=>"https://gems.mycompany.com..."
<jhass>
if I could get a PR for optional groups in I'm sure you can get a bundle config option in
<tubbo>
heh, that did it
<tubbo>
just re-defined the requirement in my Gemfile, done.