00:00
huoxito has joined #rubygems
00:00
stevenharman has quit [Read error: Connection reset by peer]
00:01
stevenharman has joined #rubygems
00:01
<
indirect >
drbrain: oh. that is rather unfortunate
00:01
<
drbrain >
ha, one line fix
00:01
<
indirect >
this is the second or third time I have reported that
00:01
<
indirect >
evan fixed it once before
00:01
<
indirect >
at least
00:02
<
indirect >
maybe twice
00:02
<
drbrain >
but would evan write a test for it?
00:02
<
drbrain >
(probably not)
00:02
<
indirect >
no idea :)
00:02
<
evan >
it happens :/
00:02
<
indirect >
sadly swapping out gem install for Gem::Installer does break a bunch of other tests
00:02
<
indirect >
but is much faster :(
00:03
<
indirect >
I guess I'm reporting a regression in the minimal runtime of `gem install` with --ignore-dependencies, then :P
00:04
huoxito has quit [Ping timeout: 240 seconds]
00:04
<
drbrain >
with my patch, compared to rubygems 2.0.0: No difference proven at 95.0% confidence
00:04
<
indirect >
excellent
00:05
<
indirect >
feel free to release a 2.1 fix anytime :D
00:05
<
drbrain >
indirect: probably January, since I'm on vacation
00:09
<
drbrain >
hrm, my one line patch was wrong ☹
00:48
<
drbrain >
indirect: woo: 0.53379 seconds (with rubygems and my fix)
00:50
<
drbrain >
indirect: commit 381d2e1
00:52
<
indirect >
drbrain: thank you
00:55
<
drbrain >
indirect: I may have spoken too soon
01:00
<
drbrain >
indirect: d8f12e2
01:00
<
indirect >
thanks, again :)
01:00
<
drbrain >
the speed isn't as good as 2.0.0, but maybe evan has a better fix that does less work
01:01
<
drbrain >
evan: ignoring dependencies during resolution
01:01
stevenharman has quit [Quit: Leaving...]
01:02
<
drbrain >
evan: before 381d2e1 `gem install --ignore-dependencies` would go "ok, gonna resolve some dependencies!" then "ok, gonna ignore those dependencies!"
01:02
<
evan >
isn't that like not standing in water while you shower?
01:02
<
drbrain >
evan: yes, but for some reason people want to do this
01:02
<
indirect >
well specifically
01:03
<
indirect >
bundler wants to install gems without caring about dependencies
01:03
<
indirect >
I don't know about other people
01:03
<
drbrain >
I've used the option several times
01:03
<
indirect >
evan: I am distressed because the change slowed down bundler's spec suite from 12 minutes to 25 minutes
01:03
<
indirect >
which I would... like to undo, to say the least
01:04
<
drbrain >
indirect: I hope my change cut off maybe 7 of those minutes
01:04
<
evan >
sounds like drbrain got it down?
01:04
<
indirect >
for the record I personally don't care if rubygems resolves dependencies or not
01:04
<
drbrain >
evan: some, but since you have more knowledge of the resolver maybe you can reduce it more?
01:04
<
indirect >
I would just like it to not slow down significantly
01:05
<
drbrain >
evan: rubygems 2.0.0 runs `gem install rails --ignore-dependecnies` in about 1s, master in about 2s
01:05
<
evan >
indirect: what command are you running and what is the expected result?
01:05
<
evan >
if you write that up
01:05
<
indirect >
I did already for drbrain
01:05
<
indirect >
let me find the gist
01:05
<
drbrain >
evan: it's just `gem install`
01:05
<
evan >
drbrain's change should speed it up al ot.
01:06
<
evan >
i'd also like to know how many times you run the command inside the bundler test suite
01:06
<
evan >
ie, are we talking about 10k invocations?
01:06
<
indirect >
that single test cannot possibly be installing more than say a dozen gems
01:06
<
indirect >
and is likely only installing one or two
01:06
<
evan >
indirect: this gist is confusing
01:07
<
evan >
I thought you were running gem install
01:07
<
drbrain >
evan: the bundler specs do `gem install` many, many times in setup
01:07
<
evan >
I just see the output from bundler specs
01:07
seanlinsley has quit [Quit: seanlinsley]
01:07
<
indirect >
evan: drbrain says that some or all of the slowdown is from `gem install --ignore-dependencies`
01:07
<
drbrain >
well, once in the path spec mentioned
01:07
<
indirect >
which is run by the spec setup
01:07
<
evan >
whats the difference between these 2 runs?
01:08
<
indirect >
so that means that one run of `gem install --ignore-dependencies foo.gem` added 2.1s of execution time
01:08
<
indirect >
to a test that took 0.78 seconds in the first place
01:08
<
indirect >
test against rg master: 2.85 seconds
01:08
<
evan >
I'll just make it so --ignore-dependencies uses a fast path
01:08
<
indirect >
test against 2.0.0: 0.78 seconds
01:08
<
evan >
which is basically "fuck the resolver, fire the gems"
01:09
<
indirect >
not sure if you guys care that gem install slowed down so dramatically
01:09
<
indirect >
but I would basically just like the tests to not get any slower :)
01:09
seanlinsley has joined #rubygems
01:10
<
evan >
i'd suggest not doing gem install in the tests
01:10
<
evan >
instead just rotate a different GEM_PATH in and out
01:10
<
evan >
thats instant.
01:10
<
evan >
much faster than 0.78s
01:10
<
drbrain >
evan: I suggested the same, but it seems to have problems
01:10
<
drbrain >
for this one spec it brings the time down to ~0.5s, but other specs then fail ☹
01:10
<
indirect >
evan: in the integration tests, we install gems to system gems for certain tests
01:11
<
indirect >
so as mentioned, if we use Gem::Installer directly, some other tests fail
01:11
<
indirect >
specifically 91 specs
01:11
<
evan >
you should figure out why that is.
01:11
<
evan >
i'd love to know
01:12
<
indirect >
likely because we set ENV and then use system("gem install")
01:12
<
indirect >
rather than modifying Gem.whatever directly
01:12
<
evan >
because it sounds like you're dependent on some sideffects of installation that you don't expect
01:12
<
indirect >
we're installing gems to a place that isn't actuall GEM_HOME as far as the spec suite is concerned
01:12
<
evan >
drbrain: isn't there a command to modify the gem settings from ENV
01:12
<
evan >
if so, indirect could run that and then Gem::Installer
01:13
<
evan >
ok, I gotta run though.
01:13
<
indirect >
we would probably need to undo it after, but yeah
01:13
<
indirect >
that could also work
01:14
<
drbrain >
I'm going to watch some TV now
01:17
jfelchner has quit [Quit: zzzzzzzzzzzzz………]
01:19
bbrowning has quit [Quit: Leaving]
01:32
jonahR has quit [Quit: jonahR]
01:38
josh-k has joined #rubygems
01:39
josh-k_ has joined #rubygems
01:40
josh-k__ has joined #rubygems
01:41
josh-k___ has joined #rubygems
01:42
josh-____ has joined #rubygems
01:43
josh-k has quit [Ping timeout: 252 seconds]
01:43
josh-k_ has quit [Ping timeout: 250 seconds]
01:44
josh-k__ has quit [Ping timeout: 260 seconds]
01:45
josh-k has joined #rubygems
01:45
josh-k___ has quit [Ping timeout: 265 seconds]
01:47
josh-k has quit [Remote host closed the connection]
01:48
josh-____ has quit [Ping timeout: 272 seconds]
01:49
jfelchner has joined #rubygems
01:51
josh-k has joined #rubygems
01:54
ZachBeta has joined #rubygems
01:55
ZachBeta has quit [Client Quit]
02:02
josh-k has quit [Ping timeout: 272 seconds]
02:03
josh-k has joined #rubygems
02:31
lsegal has joined #rubygems
02:35
stevenharman has joined #rubygems
02:41
baburdick has quit [Quit: Leaving.]
02:47
havenwood has quit [Remote host closed the connection]
02:48
havenwood has joined #rubygems
03:09
havenwood has quit [Remote host closed the connection]
03:16
huoxito has joined #rubygems
03:28
josh-k has quit [Ping timeout: 246 seconds]
03:39
hakunin has quit []
03:45
hakunin has joined #rubygems
04:05
tjbiddle has quit [Quit: tjbiddle]
04:07
havenwood has joined #rubygems
04:14
niska has quit [Ping timeout: 248 seconds]
04:21
niska has joined #rubygems
04:25
ZachBeta has joined #rubygems
04:28
baburdick has joined #rubygems
04:30
huoxito has quit [Remote host closed the connection]
04:42
havenwood has quit [Remote host closed the connection]
04:53
alindeman has quit [Ping timeout: 240 seconds]
04:57
alindeman has joined #rubygems
05:03
tjbiddle has joined #rubygems
05:04
ZachBeta has quit [Quit: Computer has gone to sleep.]
05:08
arohner has quit [Remote host closed the connection]
05:08
arohner has joined #rubygems
05:10
havenwood has joined #rubygems
05:12
arohner has quit [Ping timeout: 246 seconds]
05:41
kentaro has joined #rubygems
05:43
flori_ has quit [Ping timeout: 246 seconds]
05:45
josh-k has joined #rubygems
05:46
flori has joined #rubygems
05:59
baburdick has quit [Quit: Leaving.]
06:02
jfelchner has quit [Quit: jfelchner]
06:04
tjbiddle has quit [Quit: tjbiddle]
06:22
dwradcliffe has quit [Ping timeout: 260 seconds]
06:26
josh-k has quit [Remote host closed the connection]
06:28
dwradcliffe has joined #rubygems
06:37
graphex has quit [Ping timeout: 248 seconds]
06:49
yanap has joined #rubygems
06:54
lsegal has quit [Quit: Quit: Quit: Quit: Stack Overflow.]
07:00
baburdick has joined #rubygems
07:01
lsegal has joined #rubygems
07:05
baburdick has quit [Ping timeout: 250 seconds]
07:11
Elhu has joined #rubygems
07:38
havenwood has quit [Remote host closed the connection]
07:39
graphex has joined #rubygems
07:42
yanap has quit [Remote host closed the connection]
07:53
graphex has quit [Ping timeout: 248 seconds]
08:01
baburdick has joined #rubygems
08:04
Elhu has quit [Quit: Computer has gone to sleep.]
08:06
baburdick has quit [Ping timeout: 260 seconds]
08:33
yanap has joined #rubygems
08:37
yanap has quit [Client Quit]
08:38
tbuehlmann has joined #rubygems
08:52
Elhu has joined #rubygems
08:53
Elhu has quit [Client Quit]
08:53
tbuehlmann has quit [Quit: Konversation terminated!]
08:54
Elhu has joined #rubygems
08:54
Elhu_ has joined #rubygems
08:56
tbuehlmann has joined #rubygems
09:10
tbuehlmann has quit [*.net *.split]
09:10
hakunin has quit [*.net *.split]
09:10
stevenharman has quit [*.net *.split]
09:10
Authenticator has quit [*.net *.split]
09:10
shtirlic has quit [*.net *.split]
09:11
nomadic_ has quit [*.net *.split]
09:11
headius has quit [*.net *.split]
09:11
danp has quit [*.net *.split]
09:11
alindeman has quit [*.net *.split]
09:11
Elhu has quit [*.net *.split]
09:11
Elhu_ has quit [*.net *.split]
09:11
flori has quit [*.net *.split]
09:11
kanobe has quit [*.net *.split]
09:11
csaunders has quit [*.net *.split]
09:11
marpaia3 has quit [*.net *.split]
09:11
_br_ has quit [*.net *.split]
09:11
foca has quit [*.net *.split]
09:11
jarib has quit [*.net *.split]
09:11
mjc_ has quit [*.net *.split]
09:11
nirix has quit [*.net *.split]
09:11
DanKnox has quit [*.net *.split]
09:11
Emily has quit [*.net *.split]
09:11
weeb1e has quit [*.net *.split]
09:11
mpapis has quit [*.net *.split]
09:11
sindork_ has quit [*.net *.split]
09:11
wizonesolutions has quit [*.net *.split]
09:11
lucas has quit [*.net *.split]
09:11
drbrain has quit [*.net *.split]
09:11
closer has quit [*.net *.split]
09:11
niska has quit [*.net *.split]
09:11
kallistec has quit [*.net *.split]
09:11
ged__ has quit [*.net *.split]
09:11
amateurhuman has quit [*.net *.split]
09:11
[reed] has quit [*.net *.split]
09:11
phantomcircuit has quit [*.net *.split]
09:11
indirect has quit [*.net *.split]
09:11
ckrailo has quit [*.net *.split]
09:11
adam12 has quit [*.net *.split]
09:11
slash_nick has quit [*.net *.split]
09:11
gazoombo has quit [*.net *.split]
09:11
jaimef has quit [*.net *.split]
09:11
RichardBronosky has quit [*.net *.split]
09:11
lsegal has quit [*.net *.split]
09:11
dwradcliffe has quit [*.net *.split]
09:11
brixen_ has quit [*.net *.split]
09:11
Gnubie_ has quit [*.net *.split]
09:11
morphis has quit [*.net *.split]
09:11
thegcat has quit [*.net *.split]
09:11
evan has quit [*.net *.split]
09:11
tmacedo has quit [*.net *.split]
09:11
brycek has quit [*.net *.split]
09:11
riddle has quit [*.net *.split]
09:11
bdrewery has quit [*.net *.split]
09:11
xerxas has quit [*.net *.split]
09:11
_blackjid has quit [*.net *.split]
09:11
ereslibre_laptop has quit [*.net *.split]
09:11
davidjrice has quit [*.net *.split]
09:11
johnmwilliams___ has quit [*.net *.split]
09:11
jgraichen has quit [*.net *.split]
09:11
z has quit [*.net *.split]
09:11
noxgirl has quit [*.net *.split]
09:11
xymox has quit [*.net *.split]
09:11
erichmenge has quit [*.net *.split]
09:11
clouder`grr has quit [*.net *.split]
09:11
dbussink has quit [*.net *.split]
09:11
imajes has quit [*.net *.split]
09:11
lmarburger has quit [*.net *.split]
09:11
tcopeland has quit [*.net *.split]
09:11
carols10cents has quit [*.net *.split]
09:11
shaiguitar has quit [*.net *.split]
09:11
avdi has quit [*.net *.split]
09:11
viranch_ has quit [*.net *.split]
09:11
wesgarrison_ has quit [*.net *.split]
09:11
samkottler has quit [*.net *.split]
09:11
TheMoonMaster has quit [*.net *.split]
09:11
seanlinsley has quit [*.net *.split]
09:11
ddd has quit [*.net *.split]
09:11
kentaro has quit [*.net *.split]
09:11
redmenace has quit [*.net *.split]
09:11
darix has quit [*.net *.split]
09:13
havenwood has joined #rubygems
09:13
Elhu has joined #rubygems
09:13
tbuehlmann has joined #rubygems
09:13
dwradcliffe has joined #rubygems
09:13
lsegal has joined #rubygems
09:13
flori has joined #rubygems
09:13
kentaro has joined #rubygems
09:13
niska has joined #rubygems
09:13
hakunin has joined #rubygems
09:13
stevenharman has joined #rubygems
09:13
alindeman has joined #rubygems
09:13
seanlinsley has joined #rubygems
09:13
indirect has joined #rubygems
09:13
lmarburger has joined #rubygems
09:13
nomadic_ has joined #rubygems
09:13
shtirlic has joined #rubygems
09:13
ddd has joined #rubygems
09:13
Emily has joined #rubygems
09:13
tcopeland has joined #rubygems
09:13
closer has joined #rubygems
09:13
marpaia3 has joined #rubygems
09:13
headius has joined #rubygems
09:13
kanobe has joined #rubygems
09:13
jarib has joined #rubygems
09:13
wizonesolutions has joined #rubygems
09:13
weeb1e has joined #rubygems
09:13
ckrailo has joined #rubygems
09:13
nirix has joined #rubygems
09:13
mpapis has joined #rubygems
09:13
ged__ has joined #rubygems
09:13
DanKnox has joined #rubygems
09:13
Authenticator has joined #rubygems
09:13
danp has joined #rubygems
09:13
redmenace has joined #rubygems
09:13
mjc_ has joined #rubygems
09:13
darix has joined #rubygems
09:13
foca has joined #rubygems
09:13
drbrain has joined #rubygems
09:13
slash_nick has joined #rubygems
09:13
xymox has joined #rubygems
09:13
bdrewery has joined #rubygems
09:13
amateurhuman has joined #rubygems
09:13
sindork_ has joined #rubygems
09:13
csaunders has joined #rubygems
09:13
gazoombo has joined #rubygems
09:13
[reed] has joined #rubygems
09:13
noxgirl has joined #rubygems
09:13
avdi has joined #rubygems
09:13
Gnubie_ has joined #rubygems
09:13
jaimef has joined #rubygems
09:13
clouder`grr has joined #rubygems
09:13
_br_ has joined #rubygems
09:13
wesgarrison_ has joined #rubygems
09:13
brixen_ has joined #rubygems
09:13
erichmenge has joined #rubygems
09:13
adam12 has joined #rubygems
09:13
_blackjid has joined #rubygems
09:13
morphis has joined #rubygems
09:13
phantomcircuit has joined #rubygems
09:13
lucas has joined #rubygems
09:13
samkottler has joined #rubygems
09:13
RichardBronosky has joined #rubygems
09:13
davidjrice has joined #rubygems
09:13
xerxas has joined #rubygems
09:13
viranch_ has joined #rubygems
09:13
thegcat has joined #rubygems
09:13
TheMoonMaster has joined #rubygems
09:13
ereslibre_laptop has joined #rubygems
09:13
riddle has joined #rubygems
09:13
johnmwilliams___ has joined #rubygems
09:13
imajes has joined #rubygems
09:13
kallistec has joined #rubygems
09:13
jgraichen has joined #rubygems
09:13
evan has joined #rubygems
09:13
dbussink has joined #rubygems
09:13
z has joined #rubygems
09:13
tmacedo has joined #rubygems
09:13
carols10cents has joined #rubygems
09:13
shaiguitar has joined #rubygems
09:13
brycek has joined #rubygems
09:13
havenwood has quit [Ping timeout: 272 seconds]
09:15
alindeman has quit [Ping timeout: 240 seconds]
09:16
tbuehlmann has quit [*.net *.split]
09:16
hakunin has quit [*.net *.split]
09:16
stevenharman has quit [*.net *.split]
09:16
Authenticator has quit [*.net *.split]
09:16
shtirlic has quit [*.net *.split]
09:16
nomadic_ has quit [*.net *.split]
09:16
headius has quit [*.net *.split]
09:16
danp has quit [*.net *.split]
09:16
Elhu has quit [*.net *.split]
09:16
flori has quit [*.net *.split]
09:16
kanobe has quit [*.net *.split]
09:16
csaunders has quit [*.net *.split]
09:16
marpaia3 has quit [*.net *.split]
09:16
_br_ has quit [*.net *.split]
09:16
foca has quit [*.net *.split]
09:16
jarib has quit [*.net *.split]
09:16
mjc_ has quit [*.net *.split]
09:16
nirix has quit [*.net *.split]
09:16
DanKnox has quit [*.net *.split]
09:16
Emily has quit [*.net *.split]
09:16
weeb1e has quit [*.net *.split]
09:16
mpapis has quit [*.net *.split]
09:16
sindork_ has quit [*.net *.split]
09:16
wizonesolutions has quit [*.net *.split]
09:16
lucas has quit [*.net *.split]
09:16
drbrain has quit [*.net *.split]
09:16
closer has quit [*.net *.split]
09:16
niska has quit [*.net *.split]
09:16
kallistec has quit [*.net *.split]
09:16
ged__ has quit [*.net *.split]
09:16
amateurhuman has quit [*.net *.split]
09:16
[reed] has quit [*.net *.split]
09:16
phantomcircuit has quit [*.net *.split]
09:16
indirect has quit [*.net *.split]
09:16
ckrailo has quit [*.net *.split]
09:16
adam12 has quit [*.net *.split]
09:16
slash_nick has quit [*.net *.split]
09:16
gazoombo has quit [*.net *.split]
09:16
jaimef has quit [*.net *.split]
09:16
RichardBronosky has quit [*.net *.split]
09:16
lsegal has quit [*.net *.split]
09:16
dwradcliffe has quit [*.net *.split]
09:16
brixen_ has quit [*.net *.split]
09:16
Gnubie_ has quit [*.net *.split]
09:16
morphis has quit [*.net *.split]
09:16
thegcat has quit [*.net *.split]
09:16
evan has quit [*.net *.split]
09:16
tmacedo has quit [*.net *.split]
09:16
brycek has quit [*.net *.split]
09:16
riddle has quit [*.net *.split]
09:16
bdrewery has quit [*.net *.split]
09:16
xerxas has quit [*.net *.split]
09:16
_blackjid has quit [*.net *.split]
09:16
ereslibre_laptop has quit [*.net *.split]
09:16
davidjrice has quit [*.net *.split]
09:16
johnmwilliams___ has quit [*.net *.split]
09:16
z has quit [*.net *.split]
09:16
jgraichen has quit [*.net *.split]
09:16
noxgirl has quit [*.net *.split]
09:16
xymox has quit [*.net *.split]
09:16
erichmenge has quit [*.net *.split]
09:16
clouder`grr has quit [*.net *.split]
09:16
dbussink has quit [*.net *.split]
09:16
imajes has quit [*.net *.split]
09:16
lmarburger has quit [*.net *.split]
09:16
tcopeland has quit [*.net *.split]
09:16
carols10cents has quit [*.net *.split]
09:16
shaiguitar has quit [*.net *.split]
09:16
avdi has quit [*.net *.split]
09:16
viranch_ has quit [*.net *.split]
09:16
wesgarrison_ has quit [*.net *.split]
09:16
samkottler has quit [*.net *.split]
09:16
TheMoonMaster has quit [*.net *.split]
09:16
seanlinsley has quit [*.net *.split]
09:16
ddd has quit [*.net *.split]
09:16
kentaro has quit [*.net *.split]
09:17
redmenace has quit [*.net *.split]
09:17
darix has quit [*.net *.split]
09:22
josh-k has joined #rubygems
09:22
kentaro has joined #rubygems
09:22
Elhu has joined #rubygems
09:22
flori has joined #rubygems
09:22
lsegal has joined #rubygems
09:22
seanlinsley has joined #rubygems
09:22
niska has joined #rubygems
09:22
alindeman has joined #rubygems
09:22
shtirlic has joined #rubygems
09:22
tbuehlmann has joined #rubygems
09:22
indirect has joined #rubygems
09:22
mjc_ has joined #rubygems
09:22
hakunin has joined #rubygems
09:22
dwradcliffe has joined #rubygems
09:22
closer has joined #rubygems
09:22
lmarburger has joined #rubygems
09:22
redmenace has joined #rubygems
09:22
Authenticator has joined #rubygems
09:22
stevenharman has joined #rubygems
09:22
ddd has joined #rubygems
09:22
csaunders has joined #rubygems
09:22
ckrailo has joined #rubygems
09:22
tcopeland has joined #rubygems
09:22
kanobe has joined #rubygems
09:22
_br_ has joined #rubygems
09:22
marpaia3 has joined #rubygems
09:22
bdrewery has joined #rubygems
09:22
jarib has joined #rubygems
09:22
foca has joined #rubygems
09:22
headius has joined #rubygems
09:22
danp has joined #rubygems
09:22
drbrain has joined #rubygems
09:22
lucas has joined #rubygems
09:22
wizonesolutions has joined #rubygems
09:22
sindork_ has joined #rubygems
09:22
mpapis has joined #rubygems
09:22
weeb1e has joined #rubygems
09:22
nomadic_ has joined #rubygems
09:22
Emily has joined #rubygems
09:22
DanKnox has joined #rubygems
09:22
nirix has joined #rubygems
09:22
darix has joined #rubygems
09:22
noxgirl has joined #rubygems
09:22
kallistec has joined #rubygems
09:22
adam12 has joined #rubygems
09:22
avdi has joined #rubygems
09:22
xymox has joined #rubygems
09:22
ged__ has joined #rubygems
09:22
slash_nick has joined #rubygems
09:22
viranch_ has joined #rubygems
09:22
amateurhuman has joined #rubygems
09:22
wesgarrison_ has joined #rubygems
09:22
[reed] has joined #rubygems
09:22
erichmenge has joined #rubygems
09:22
gazoombo has joined #rubygems
09:22
brixen_ has joined #rubygems
09:22
Gnubie_ has joined #rubygems
09:22
clouder`grr has joined #rubygems
09:22
jaimef has joined #rubygems
09:22
RichardBronosky has joined #rubygems
09:22
phantomcircuit has joined #rubygems
09:22
xerxas has joined #rubygems
09:22
_blackjid has joined #rubygems
09:22
ereslibre_laptop has joined #rubygems
09:22
morphis has joined #rubygems
09:22
davidjrice has joined #rubygems
09:22
samkottler has joined #rubygems
09:22
TheMoonMaster has joined #rubygems
09:22
thegcat has joined #rubygems
09:22
dbussink has joined #rubygems
09:22
riddle has joined #rubygems
09:22
johnmwilliams___ has joined #rubygems
09:22
jgraichen has joined #rubygems
09:22
imajes has joined #rubygems
09:22
z has joined #rubygems
09:22
evan has joined #rubygems
09:22
tmacedo has joined #rubygems
09:22
brycek has joined #rubygems
09:22
carols10cents has joined #rubygems
09:22
shaiguitar has joined #rubygems
09:24
lsegal has quit [Read error: Connection reset by peer]
09:24
lsegal has joined #rubygems
09:39
lsegal has quit [Read error: Connection reset by peer]
09:41
lsegal has joined #rubygems
09:50
workmad3 has joined #rubygems
09:58
alindeman has quit [Ping timeout: 240 seconds]
10:01
alindeman has joined #rubygems
10:14
lsegal has quit [Quit: Quit: Quit: Quit: Stack Overflow.]
10:20
jordia65 has joined #rubygems
11:01
baburdick has joined #rubygems
11:06
baburdick has quit [Ping timeout: 246 seconds]
11:15
josh-k has quit [Remote host closed the connection]
11:16
graphex has joined #rubygems
11:29
graphex has quit [Ping timeout: 248 seconds]
11:35
josh-k has joined #rubygems
11:44
josh-k has quit [Remote host closed the connection]
11:45
josh-k has joined #rubygems
11:47
josh-k has quit [Read error: Connection reset by peer]
12:02
baburdick has joined #rubygems
12:07
baburdick has quit [Ping timeout: 240 seconds]
12:29
Elhu has quit [Quit: Computer has gone to sleep.]
12:32
tcopeland has quit [Quit: Leaving.]
12:47
josh-k has joined #rubygems
12:58
josh-k has quit [Remote host closed the connection]
13:18
bbrowning has joined #rubygems
13:26
Elhu has joined #rubygems
13:38
josh-k has joined #rubygems
13:38
ZachBeta has joined #rubygems
13:48
alindeman has quit [Ping timeout: 240 seconds]
13:49
huoxito has joined #rubygems
13:49
alindeman has joined #rubygems
13:52
seanlinsley has quit [Quit: seanlinsley]
14:02
baburdick has joined #rubygems
14:04
<
tbuehlmann >
indirect, got something. don't know the origin but it's definitively the reason. setting up a repro repo now
14:07
baburdick has quit [Ping timeout: 264 seconds]
14:13
roidrage has joined #rubygems
14:18
tcopeland has joined #rubygems
14:22
ZachBeta has quit [Quit: Computer has gone to sleep.]
14:55
jordia65 has quit [Ping timeout: 272 seconds]
14:57
redmenace has quit [Quit: leaving]
15:02
ZachBeta has joined #rubygems
15:03
baburdick has joined #rubygems
15:05
zzak has quit [Quit: leaving]
15:07
zzak has joined #rubygems
15:07
baburdick has quit [Ping timeout: 246 seconds]
15:11
bf4 has joined #rubygems
15:14
bf4 has quit [Client Quit]
15:14
bf4 has joined #rubygems
15:33
baburdick has joined #rubygems
15:36
alindeman has quit [Ping timeout: 240 seconds]
15:36
alindeman has joined #rubygems
15:36
jordia65 has joined #rubygems
15:45
zzak has quit [Quit: leaving]
15:46
zzak has joined #rubygems
15:52
zzak has quit [Ping timeout: 240 seconds]
15:53
zzak has joined #rubygems
16:05
havenwood has joined #rubygems
16:06
xymox has quit [Ping timeout: 252 seconds]
16:09
xymox has joined #rubygems
16:17
roidrage_ has joined #rubygems
16:19
roidrag__ has joined #rubygems
16:21
alindeman has quit [Ping timeout: 240 seconds]
16:21
roidrage has quit [Ping timeout: 264 seconds]
16:22
almostwhitehat has joined #rubygems
16:22
alindeman has joined #rubygems
16:23
roidrage_ has quit [Ping timeout: 252 seconds]
16:23
tbuehlmann has quit [Ping timeout: 252 seconds]
16:24
tbuehlmann has joined #rubygems
16:43
graphex has joined #rubygems
16:50
graphex has quit [Ping timeout: 248 seconds]
16:56
jordia65 has quit [Remote host closed the connection]
16:58
jordia65 has joined #rubygems
17:00
tbuehlmann has quit [Quit: Konversation terminated!]
17:03
jordia65 has quit [Ping timeout: 272 seconds]
17:05
jhn has joined #rubygems
17:25
roidrag__ is now known as roidrage
17:26
roidrage has joined #rubygems
17:30
jordia65 has joined #rubygems
17:36
graphex has joined #rubygems
17:39
baburdick has quit [Quit: Leaving.]
17:39
Elhu has quit [Quit: Computer has gone to sleep.]
17:40
arohner has joined #rubygems
17:50
_whitelogger_ has joined #rubygems
17:54
_whitelogger has quit [Ping timeout: 252 seconds]
17:56
bf4 has quit [*.net *.split]
17:56
hakunin has quit [*.net *.split]
17:56
stevenharman has quit [*.net *.split]
17:56
Authenticator has quit [*.net *.split]
17:56
shtirlic has quit [*.net *.split]
17:56
nomadic_ has quit [*.net *.split]
17:56
headius has quit [*.net *.split]
17:56
danp has quit [*.net *.split]
17:56
alindeman has quit [*.net *.split]
17:56
josh-k has quit [*.net *.split]
17:56
huoxito has quit [*.net *.split]
17:56
flori has quit [*.net *.split]
17:56
kanobe has quit [*.net *.split]
17:56
csaunders has quit [*.net *.split]
17:56
marpaia3 has quit [*.net *.split]
17:56
_br_ has quit [*.net *.split]
17:56
foca has quit [*.net *.split]
17:56
jarib has quit [*.net *.split]
17:56
zzak has quit [*.net *.split]
17:56
mjc_ has quit [*.net *.split]
17:56
nirix has quit [*.net *.split]
17:56
DanKnox has quit [*.net *.split]
17:56
Emily has quit [*.net *.split]
17:56
weeb1e has quit [*.net *.split]
17:56
mpapis has quit [*.net *.split]
17:56
sindork_ has quit [*.net *.split]
17:56
wizonesolutions has quit [*.net *.split]
17:56
lucas has quit [*.net *.split]
17:56
drbrain has quit [*.net *.split]
17:56
closer has quit [*.net *.split]
17:56
niska has quit [*.net *.split]
17:57
kallistec has quit [*.net *.split]
17:57
ged__ has quit [*.net *.split]
17:57
amateurhuman has quit [*.net *.split]
17:57
[reed] has quit [*.net *.split]
17:57
phantomcircuit has quit [*.net *.split]
17:57
arohner has quit [*.net *.split]
17:57
indirect has quit [*.net *.split]
17:57
ckrailo has quit [*.net *.split]
17:57
adam12 has quit [*.net *.split]
17:57
slash_nick has quit [*.net *.split]
17:57
gazoombo has quit [*.net *.split]
17:57
jaimef has quit [*.net *.split]
17:57
RichardBronosky has quit [*.net *.split]
17:57
roidrage has quit [*.net *.split]
17:57
jhn has quit [*.net *.split]
17:57
dwradcliffe has quit [*.net *.split]
17:57
brixen_ has quit [*.net *.split]
17:57
Gnubie_ has quit [*.net *.split]
17:57
morphis has quit [*.net *.split]
17:57
thegcat has quit [*.net *.split]
17:57
evan has quit [*.net *.split]
17:57
tmacedo has quit [*.net *.split]
17:57
brycek has quit [*.net *.split]
17:57
riddle has quit [*.net *.split]
17:57
almostwhitehat has quit [*.net *.split]
17:57
xymox has quit [*.net *.split]
17:57
havenwood has quit [*.net *.split]
17:57
bdrewery has quit [*.net *.split]
17:57
xerxas has quit [*.net *.split]
17:57
_blackjid has quit [*.net *.split]
17:57
ereslibre_laptop has quit [*.net *.split]
17:57
davidjrice has quit [*.net *.split]
17:57
johnmwilliams___ has quit [*.net *.split]
17:57
z has quit [*.net *.split]
17:57
jgraichen has quit [*.net *.split]
17:57
noxgirl has quit [*.net *.split]
17:57
erichmenge has quit [*.net *.split]
17:57
clouder`grr has quit [*.net *.split]
17:57
dbussink has quit [*.net *.split]
17:57
imajes has quit [*.net *.split]
17:57
lmarburger has quit [*.net *.split]
17:57
carols10cents has quit [*.net *.split]
17:57
shaiguitar has quit [*.net *.split]
17:57
avdi has quit [*.net *.split]
17:57
viranch_ has quit [*.net *.split]
17:57
wesgarrison_ has quit [*.net *.split]
17:57
samkottler has quit [*.net *.split]
17:57
TheMoonMaster has quit [*.net *.split]
17:57
graphex has quit [*.net *.split]
17:57
ZachBeta has quit [*.net *.split]
17:57
bbrowning has quit [*.net *.split]
17:57
workmad3 has quit [*.net *.split]
17:57
ddd has quit [*.net *.split]
17:57
jordia65 has quit [*.net *.split]
17:57
tcopeland has quit [*.net *.split]
17:57
kentaro has quit [*.net *.split]
17:57
darix has quit [*.net *.split]
18:14
jonahR has joined #rubygems
18:14
huoxito has joined #rubygems
18:14
jordia65 has joined #rubygems
18:14
roidrage has joined #rubygems
18:14
alindeman has joined #rubygems
18:14
almostwhitehat has joined #rubygems
18:14
graphex has joined #rubygems
18:14
xymox has joined #rubygems
18:14
havenwood has joined #rubygems
18:14
ZachBeta has joined #rubygems
18:14
bf4 has joined #rubygems
18:14
bbrowning has joined #rubygems
18:14
closer has joined #rubygems
18:14
csaunders has joined #rubygems
18:14
jhn has joined #rubygems
18:14
zzak has joined #rubygems
18:14
indirect has joined #rubygems
18:14
tcopeland has joined #rubygems
18:14
bdrewery has joined #rubygems
18:14
shtirlic has joined #rubygems
18:14
headius has joined #rubygems
18:14
marpaia3 has joined #rubygems
18:14
stevenharman has joined #rubygems
18:14
foca has joined #rubygems
18:14
lmarburger has joined #rubygems
18:14
Authenticator has joined #rubygems
18:14
dwradcliffe has joined #rubygems
18:14
ckrailo has joined #rubygems
18:14
_br_ has joined #rubygems
18:14
drbrain has joined #rubygems
18:14
kentaro has joined #rubygems
18:14
kanobe has joined #rubygems
18:14
flori has joined #rubygems
18:14
mjc_ has joined #rubygems
18:14
ddd has joined #rubygems
18:14
mpapis has joined #rubygems
18:14
danp has joined #rubygems
18:14
lucas has joined #rubygems
18:14
weeb1e has joined #rubygems
18:14
wizonesolutions has joined #rubygems
18:14
workmad3 has joined #rubygems
18:14
josh-k has joined #rubygems
18:14
nomadic_ has joined #rubygems
18:14
niska has joined #rubygems
18:14
nirix has joined #rubygems
18:14
DanKnox has joined #rubygems
18:14
hakunin has joined #rubygems
18:14
Emily has joined #rubygems
18:14
jarib has joined #rubygems
18:14
sindork_ has joined #rubygems
18:14
noxgirl has joined #rubygems
18:14
kallistec has joined #rubygems
18:14
adam12 has joined #rubygems
18:14
avdi has joined #rubygems
18:14
ged__ has joined #rubygems
18:14
slash_nick has joined #rubygems
18:14
darix has joined #rubygems
18:14
viranch_ has joined #rubygems
18:14
amateurhuman has joined #rubygems
18:14
wesgarrison_ has joined #rubygems
18:14
gazoombo has joined #rubygems
18:14
[reed] has joined #rubygems
18:14
erichmenge has joined #rubygems
18:14
brixen_ has joined #rubygems
18:14
morphis has joined #rubygems
18:14
clouder`grr has joined #rubygems
18:14
phantomcircuit has joined #rubygems
18:14
RichardBronosky has joined #rubygems
18:14
jaimef has joined #rubygems
18:14
ereslibre_laptop has joined #rubygems
18:14
davidjrice has joined #rubygems
18:14
xerxas has joined #rubygems
18:14
_blackjid has joined #rubygems
18:14
dbussink has joined #rubygems
18:14
Gnubie_ has joined #rubygems
18:14
samkottler has joined #rubygems
18:14
TheMoonMaster has joined #rubygems
18:14
tmacedo has joined #rubygems
18:14
brycek has joined #rubygems
18:14
riddle has joined #rubygems
18:14
jgraichen has joined #rubygems
18:14
thegcat has joined #rubygems
18:14
z has joined #rubygems
18:14
carols10cents has joined #rubygems
18:14
imajes has joined #rubygems
18:14
evan has joined #rubygems
18:14
shaiguitar has joined #rubygems
18:14
johnmwilliams___ has joined #rubygems
18:14
tbuehlmann has joined #rubygems
18:14
cschneid has quit [Max SendQ exceeded]
18:15
josh-k has quit [Remote host closed the connection]
18:16
alindeman has quit [Ping timeout: 240 seconds]
18:16
cschneid has joined #rubygems
18:18
Elhu has joined #rubygems
18:18
alindeman has joined #rubygems
18:21
almostwhitehat has quit [Ping timeout: 246 seconds]
18:21
ZachBeta has quit [Quit: Computer has gone to sleep.]
18:21
almostwhitehat has joined #rubygems
18:24
Elhu has quit [Quit: Computer has gone to sleep.]
18:26
workmad3 has quit [Ping timeout: 248 seconds]
18:44
ZachBeta has joined #rubygems
18:46
arohner has joined #rubygems
18:50
khaase has quit [Ping timeout: 252 seconds]
18:52
khaase has joined #rubygems
18:52
arohner has quit [Remote host closed the connection]
18:52
arohner has joined #rubygems
18:52
khaase has quit [Changing host]
18:52
khaase has joined #rubygems
18:54
arohner has quit [Ping timeout: 240 seconds]
19:01
tbuehlmann has quit [Remote host closed the connection]
19:13
baburdick has joined #rubygems
19:14
havenwood has quit [Remote host closed the connection]
19:17
jordia65 has quit [Remote host closed the connection]
19:21
baburdick has left #rubygems [#rubygems]
19:25
seanlinsley has joined #rubygems
19:26
martinisoft has joined #rubygems
19:30
dvu has joined #rubygems
19:33
alindeman has quit [Ping timeout: 240 seconds]
19:33
arohner has joined #rubygems
19:35
alindeman has joined #rubygems
20:01
seanlinsley has quit [Ping timeout: 265 seconds]
20:07
seanlinsley has joined #rubygems
20:08
jhn has quit [Ping timeout: 272 seconds]
20:14
darix has quit [Ping timeout: 260 seconds]
20:14
darix has joined #rubygems
20:17
darix has quit [Client Quit]
20:18
darix has joined #rubygems
20:25
alindeman has quit [Ping timeout: 240 seconds]
20:28
alindeman has joined #rubygems
20:47
huoxito has quit [Remote host closed the connection]
20:56
huoxito has joined #rubygems
21:07
huoxito has quit [Remote host closed the connection]
21:09
alindeman has quit [Ping timeout: 240 seconds]
21:12
alindeman has joined #rubygems
21:22
workmad3 has joined #rubygems
21:38
ZachBeta has quit [Quit: Computer has gone to sleep.]
21:39
ZachBeta has joined #rubygems
21:50
tcopeland has quit [Quit: Leaving.]
21:52
havenwood has joined #rubygems
21:56
almostwhitehat has quit [Remote host closed the connection]
22:20
bbrowning is now known as bbrowning_away
22:45
huoxito has joined #rubygems
22:49
huoxito has quit [Ping timeout: 246 seconds]
22:52
lsegal has joined #rubygems
22:55
huoxito has joined #rubygems
23:00
josh-k has joined #rubygems
23:10
<
indirect >
evan: ping
23:13
martinisoft has quit [Quit: martinisoft]
23:13
luislavena has joined #rubygems
23:14
ZachBeta has quit [Quit: Computer has gone to sleep.]
23:15
<
indirect >
drbrain: ping
23:21
tcopeland has joined #rubygems
23:28
<
indirect >
evan: drbrain: the fix for slowness yesterday does not appear to have worked :\ bundler builds against master are still taking >30 minutes
23:28
<
indirect >
terence and I have just paired on a patch that fixes the speed issues, and the tests all pass
23:28
<
indirect >
so I'm committing it
23:29
dvu has quit [Remote host closed the connection]
23:29
huoxito has quit [Remote host closed the connection]
23:35
huoxito has joined #rubygems
23:42
josh-k has quit [Read error: Connection reset by peer]
23:42
workmad3 has quit [Ping timeout: 252 seconds]
23:47
huoxito_ has joined #rubygems
23:50
huoxito has quit [Ping timeout: 272 seconds]