indirect changed the topic of #bundler to: Docs! http://bundler.io | Problems? http://bit.ly/bundler-issues | How to help: http://bit.ly/bundler-development | API Dashboard http://cl.ly/SBoH | #bundler logs: http://bit.ly/bundler-logs | Questions will be answered eventually, so hang out for a while
x1337807x has joined #bundler
habitullence has joined #bundler
havenwood has joined #bundler
habitullence has quit [Quit: habitullence]
x1337807x has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
JSharp_ is now known as JSharp
JSharp is now known as JSharp_
JSharp_ is now known as JSharp
chouhoulis has quit [Remote host closed the connection]
chouhoulis has joined #bundler
flowerhack has joined #bundler
robbyoconnor has quit [Quit: Konversation terminated!]
robbyoconnor has joined #bundler
robbyoconnor has quit [Quit: Konversation terminated!]
r0bby_ has joined #bundler
r0bby_ has quit [Client Quit]
x1337807x has joined #bundler
x1337807x has quit [Max SendQ exceeded]
x1337807x has joined #bundler
x1337807x has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
x1337807x has joined #bundler
x1337807x has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
x1337807x has joined #bundler
x1337807x has quit [Ping timeout: 246 seconds]
x1337807x has joined #bundler
x1337807x has quit [Ping timeout: 245 seconds]
bffff_ has quit [Quit: Connection closed for inactivity]
newcos has joined #bundler
<newcos> trying to install redmine which needs gems but getting an error on gem install bundler
<newcos> Unable to download data from https://rubygems.org/ - Errno::ECONNREFUSED: No connection could be made because the target machine actively refused it. - connect(2) (https://rubygems.org/latest_specs.4.8.gz)
<newcos> any clues ?
x1337807x has joined #bundler
x1337807x has quit [Ping timeout: 240 seconds]
ohwhoa has joined #bundler
<newcos> any clues ?
tbuehlmann has joined #bundler
x1337807x has joined #bundler
havenwood has quit [Remote host closed the connection]
x1337807x has quit [Ping timeout: 250 seconds]
ohwhoa has quit [Quit: woah!]
adac has joined #bundler
jacobat has joined #bundler
<jacobat> Let's say I have a Gemfile with 3 gems. 2 are already installed in the default rubygems path. Is there some way to install just the third in another path with bundler?
<jacobat> It seems that if I set BUNDLE_PATH all 3 gems will be installed in BUNDLE_PATH
flowerhack has quit [Remote host closed the connection]
<newcos> any clues ?
x1337807x has joined #bundler
robbyoconnor has joined #bundler
robbyoconnor has quit [Changing host]
robbyoconnor has joined #bundler
robbyoconnor has quit [Client Quit]
robbyoconnor has joined #bundler
x1337807x has quit [Ping timeout: 260 seconds]
<jacobat> If I set GEM_HOME instead of BUNDLE_PATH bundler behaves as desired
havenwood has joined #bundler
havenwood has quit [Ping timeout: 264 seconds]
newcos has quit [Quit: Page closed]
x1337807x has joined #bundler
x1337807x has quit [Ping timeout: 255 seconds]
havenwood has joined #bundler
havenwood has quit [Ping timeout: 264 seconds]
x1337807x has joined #bundler
x1337807x has quit [Ping timeout: 240 seconds]
havenwood has joined #bundler
havenwood has quit [Ping timeout: 264 seconds]
jacobat has quit [Ping timeout: 250 seconds]
jacobat has joined #bundler
havenwood has joined #bundler
havenwood has quit [Ping timeout: 264 seconds]
adac has quit [Ping timeout: 250 seconds]
adac has joined #bundler
havenwood has joined #bundler
havenwood has quit [Ping timeout: 264 seconds]
livingstn has joined #bundler
habitullence has joined #bundler
livingstn has quit []
havenwood has joined #bundler
livingstn has joined #bundler
x1337807x has joined #bundler
x1337807x has quit [Max SendQ exceeded]
x1337807x has joined #bundler
axl_ has joined #bundler
livingstn has quit []
havenwood has quit [Remote host closed the connection]
jacobat has quit [Ping timeout: 240 seconds]
brixen has quit [Excess Flood]
brixen has joined #bundler
x1337807_ has joined #bundler
x1337807_ has quit [Max SendQ exceeded]
x1337807_ has joined #bundler
x1337807_ has quit [Max SendQ exceeded]
x1337807_ has joined #bundler
x1337807x has quit [Ping timeout: 240 seconds]
x1337807_ has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
livingstn has joined #bundler
tbuehlmann has quit [Quit: Leaving]
Pupeno_ is now known as Pupeno
havenwood has joined #bundler
habitullence has quit [Quit: habitullence]
x1337807x has joined #bundler
havenwood has quit [Remote host closed the connection]
havenwood has joined #bundler
havenwood has quit [Remote host closed the connection]
adac has quit [Ping timeout: 245 seconds]
x1337807x has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
wdperson has joined #bundler
adac has joined #bundler
wdperson has quit [Client Quit]
wdperson has joined #bundler
havenwood has joined #bundler
x1337807x has joined #bundler
deric_skibotn has joined #bundler
<deric_skibotn> I have some gem stmts in my Gemfile that only run in :test, like this:
<deric_skibotn> gem 'fakefs', '0.5.2', :groups => [:test], :require => "fakes/safe"
<deric_skibotn> How do I activate this line in 'bundle install'? And do I need to do something with 'bundle exec' too?
<deric_skibotn> The command-line will be 'bundle exec rspec <tests>', so no rails or rack is in place
<deric_skibotn> After I run bundle/install, the fakefs gem isn't installed
<deric_skibotn> Is there a config file that bundle would pick up a --without=test option from? None of my :test gems are getting installed
<deric_skibotn> Reading the docs.... How do I turn off the remembered '--without' option?
<dwradcliffe> deric_skibotn: http://bundler.io/v1.7/groups.html
<dwradcliffe> (APP_ROOT/.bundle/config)
<deric_skibotn> "APP_ROOT"?
<dwradcliffe> just a placeholder
<deric_skibotn> Found it
<deric_skibotn> Thanks
<dwradcliffe> np
<deric_skibotn> The remembered-option thing is non-obvious
<dwradcliffe> yeah it is at first, though you'll remember now :)
<deric_skibotn> Especially given that I'm working on a pre-built VM, where I suppose --without ... was given initially
<deric_skibotn> Doesn't work well when you jump into a VM where someone else ran the command previously
<deric_skibotn> Just saying...
x1337807x has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
jeff_r has joined #bundler
r0bby_ has joined #bundler
robbyoconnor has quit [Read error: No route to host]
Pupeno has quit [Quit: Leaving...]
adac has quit [Ping timeout: 264 seconds]
wdperson has quit [Quit: Linkinus - http://linkinus.com]
livingstn has quit []
adac has joined #bundler
brixen has quit [Excess Flood]
brixen has joined #bundler
adac has quit [Ping timeout: 260 seconds]
jeff_r has quit [Remote host closed the connection]
axl_ has left #bundler [#bundler]
havenwood has quit [Remote host closed the connection]
jamooo_ has quit [Ping timeout: 244 seconds]
jamooo has joined #bundler