apeiros changed the topic of #ruby-lang to: Ruby 2.0.0-p353: http://ruby-lang.org (Ruby 1.9.3-p484) || Paste >3 lines of text on http://gist.github.com || RubyConf 2013 at http://www.justin.tv/confreaks
tkuchiki has joined #ruby-lang
bzalasky has quit [Remote host closed the connection]
bzalasky has joined #ruby-lang
sepp2k has quit [Quit: Leaving.]
bzalasky has quit [Ping timeout: 272 seconds]
AKASkip has quit [Ping timeout: 246 seconds]
sleepee has joined #ruby-lang
kek has joined #ruby-lang
sevvie has quit [Quit: Lost terminal]
unrealhoang has joined #ruby-lang
kek has quit [Ping timeout: 260 seconds]
Elico has joined #ruby-lang
bzalasky has joined #ruby-lang
unrealhoang has quit [Ping timeout: 260 seconds]
hogeo has joined #ruby-lang
relix has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
kurko_ has quit [Quit: Computer has gone to sleep.]
MrZYX is now known as MrZYX|off
bzalasky has quit [Remote host closed the connection]
bzalasky has joined #ruby-lang
houhoulis has joined #ruby-lang
bzalasky has quit [Ping timeout: 245 seconds]
kurko_ has joined #ruby-lang
mdedetrich has quit [Quit: Computer has gone to sleep.]
mbj has joined #ruby-lang
<dkorzhevin> havenwood: Thank you, i fixed problem with rvm help
vlad_starkov has quit [Remote host closed the connection]
<havenwood> dkorzhevin: nice :)
houhoulis has quit [Read error: Connection reset by peer]
vlad_starkov has joined #ruby-lang
ecnalyr has quit [Remote host closed the connection]
houhoulis has joined #ruby-lang
ecnalyr has joined #ruby-lang
huma has quit [Ping timeout: 272 seconds]
vlad_starkov has quit [Read error: Connection reset by peer]
bzalasky has joined #ruby-lang
ecnalyr has quit [Ping timeout: 245 seconds]
bzalasky has quit [Remote host closed the connection]
bzalasky has joined #ruby-lang
mannyt_ has joined #ruby-lang
mannyt has quit [Ping timeout: 245 seconds]
mannyt_ is now known as mannyt
bzalasky has quit [Ping timeout: 252 seconds]
mannyt_ has joined #ruby-lang
mannyt has quit [Ping timeout: 245 seconds]
mannyt_ is now known as mannyt
nisstyre has quit [Read error: Connection reset by peer]
nisstyre has joined #ruby-lang
hogeo has quit [Remote host closed the connection]
mannyt has quit [Ping timeout: 245 seconds]
mannyt has joined #ruby-lang
mdedetrich has joined #ruby-lang
anulman has quit [Quit: Leaving.]
marr has quit [Ping timeout: 252 seconds]
dseitz has joined #ruby-lang
kek has joined #ruby-lang
vlad_starkov has joined #ruby-lang
ecnalyr has joined #ruby-lang
sevvie has joined #ruby-lang
kek has quit [Ping timeout: 252 seconds]
vlad_starkov has quit [Read error: Connection reset by peer]
ecnalyr has quit [Ping timeout: 245 seconds]
kurko_ has quit [Quit: Computer has gone to sleep.]
houhouli_ has joined #ruby-lang
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
stardiviner has joined #ruby-lang
houhoulis has quit [Ping timeout: 264 seconds]
mucker has joined #ruby-lang
shinnya has joined #ruby-lang
slyphon has joined #ruby-lang
datanoise has quit [Ping timeout: 264 seconds]
havenwood has quit [Remote host closed the connection]
rwk1 has joined #ruby-lang
rwk1 has quit [Read error: Connection reset by peer]
chris2 has quit [Ping timeout: 245 seconds]
rwk1 has joined #ruby-lang
bzalasky has joined #ruby-lang
havenwood has joined #ruby-lang
bzalasky has quit [Remote host closed the connection]
bzalasky has joined #ruby-lang
rwk1 has quit [Ping timeout: 246 seconds]
bzalasky has quit [Ping timeout: 264 seconds]
jxie has quit [Read error: Connection reset by peer]
kitak has quit [Remote host closed the connection]
unrealhoang has joined #ruby-lang
ledestin has joined #ruby-lang
unrealhoang has quit [Ping timeout: 246 seconds]
bubonicpestilen has joined #ruby-lang
bubonicpestilen has left #ruby-lang [#ruby-lang]
dhruvasagar has joined #ruby-lang
mannyt has quit [Quit: mannyt]
bubonicpestilenc has joined #ruby-lang
<bubonicpestilenc> hey guys
<bubonicpestilenc> can somebody help me understand ORM-like shit? :)
kek has joined #ruby-lang
bzalasky has joined #ruby-lang
vlad_starkov has joined #ruby-lang
jxie has joined #ruby-lang
<bubonicpestilenc> example: order = Order::get(23); order.client.name;
<bubonicpestilenc> when you call order.client, it will run query e.g. S * FROM clients WHERE c.id = o.id; OR it was already fetched?
ecnalyr has joined #ruby-lang
hogeo has joined #ruby-lang
vlad_starkov has quit [Read error: Connection reset by peer]
<dseitz> Is this ActiveRecord?
<apeiros> bubonicpestilenc: depends on the implementation. it likely runs the query only when you call it.
<apeiros> AR would be Order.find, so I doubt that
<bubonicpestilenc> apeiros: yu're still here, o/
dhruvasagar has quit [Ping timeout: 272 seconds]
<bubonicpestilenc> ok...
<bubonicpestilenc> i ran benchmark
<bubonicpestilenc> i need to fetch 50 orders with 7 joins on each :)
kek has quit [Ping timeout: 260 seconds]
datanoise has joined #ruby-lang
dhruvasagar has joined #ruby-lang
<bubonicpestilenc> 8 query seperated = 110% slower than pure query "SELECT * FROM JOIN JOIN JOIN JOIN ..."
<bubonicpestilenc> in this case, ORM is not good, right?
<apeiros> ORM are rarely good for complex cases
ecnalyr has quit [Ping timeout: 245 seconds]
iliketurtles has quit [Quit: zzzzz…..]
<apeiros> create a view and put your model over that view
<bubonicpestilenc> awesome!
<apeiros> alternatively: most ORMs allow you to do more or less plain sql
<bubonicpestilenc> That what i was looking for in last 5+ years :)
<bubonicpestilenc> my point: i couldn't understand why people using ORM, if it fails hard with 10+ joins
julweber_ has joined #ruby-lang
priodev has quit [Ping timeout: 240 seconds]
guns has joined #ruby-lang
<apeiros> because people don't use ORM for such things
<apeiros> (usually)
<bubonicpestilenc> ok got it :)
<dseitz> ORM generally makes some things easier for the developers, such as constraints, validation, actual insertions and a few other things
julweber has quit [Ping timeout: 245 seconds]
<dseitz> you can drop down to SQL or whatever, but you then work in that environment only
bzalasky has quit [Remote host closed the connection]
bzalasky has joined #ruby-lang
its_only_me has joined #ruby-lang
<bubonicpestilenc> tyvm guys :)
Elico has quit [Ping timeout: 245 seconds]
datanoise has quit [Ping timeout: 265 seconds]
bzalasky has quit [Ping timeout: 240 seconds]
oh_its_only_me has quit [Ping timeout: 260 seconds]
Elico has joined #ruby-lang
nathanstitt has joined #ruby-lang
priodev has joined #ruby-lang
mbj has quit [Ping timeout: 246 seconds]
bzalasky has joined #ruby-lang
stardiviner has quit [Ping timeout: 246 seconds]
toretore has quit [Quit: Leaving]
bzalasky has quit [Remote host closed the connection]
amoli has quit [Ping timeout: 264 seconds]
bzalasky has joined #ruby-lang
bzalasky has quit [Read error: Connection reset by peer]
hogeo has quit [Remote host closed the connection]
bzalasky has joined #ruby-lang
stardiviner has joined #ruby-lang
bzalasky_ has joined #ruby-lang
bzalasky has quit [Read error: Connection reset by peer]
datanoise has joined #ruby-lang
unrealhoang has joined #ruby-lang
anulman has joined #ruby-lang
rwk1 has joined #ruby-lang
bzalasky_ has quit [Remote host closed the connection]
bzalasky has joined #ruby-lang
kurko_ has joined #ruby-lang
datanoise has quit [Ping timeout: 265 seconds]
kfpratt has quit [Remote host closed the connection]
rwk1 has quit [Ping timeout: 252 seconds]
bzalasky has quit [Ping timeout: 252 seconds]
vlad_starkov has joined #ruby-lang
vlad_starkov has quit [Read error: Connection reset by peer]
annalena has quit [Quit: Page closed]
dseitz has quit [Quit: Textual IRC Client: www.textualapp.com]
ddd has joined #ruby-lang
unrealhoang has quit [Remote host closed the connection]
unrealhoang has joined #ruby-lang
unrealhoang has quit [Ping timeout: 240 seconds]
dhruvasagar has quit [Ping timeout: 246 seconds]
kfpratt has joined #ruby-lang
vlad_starkov has joined #ruby-lang
kek has joined #ruby-lang
ecnalyr has joined #ruby-lang
vlad_starkov has quit [Read error: Connection reset by peer]
kek has quit [Ping timeout: 246 seconds]
ecnalyr has quit [Ping timeout: 245 seconds]
bzalasky has joined #ruby-lang
cnivolle has quit [Remote host closed the connection]
jsullivandigs has joined #ruby-lang
dhruvasagar has joined #ruby-lang
kurko_ has quit [Quit: Computer has gone to sleep.]
dhruvasagar has quit [Read error: Connection reset by peer]
mdedetrich has quit [Quit: Computer has gone to sleep.]
datanoise has joined #ruby-lang
bzalasky has quit [Remote host closed the connection]
bzalasky has joined #ruby-lang
bzalasky has quit [Ping timeout: 264 seconds]
datanoise has quit [Ping timeout: 246 seconds]
datanoise has joined #ruby-lang
datanoise has quit [Ping timeout: 260 seconds]
jxie_ has joined #ruby-lang
dseitz has joined #ruby-lang
tharindu has joined #ruby-lang
bzalasky has joined #ruby-lang
jxie has quit [Ping timeout: 272 seconds]
bzalasky has quit [Remote host closed the connection]
bzalasky has joined #ruby-lang
A124 has quit [Read error: Operation timed out]
rwk1 has joined #ruby-lang
bzalasky has quit [Ping timeout: 246 seconds]
rwk1 has quit [Read error: Connection reset by peer]
rwk1 has joined #ruby-lang
priodev has quit [Ping timeout: 240 seconds]
kurko_ has joined #ruby-lang
hogeo has joined #ruby-lang
sevvie has quit [Quit: leaving]
rwk1 has quit [Ping timeout: 265 seconds]
nathanstitt has quit [Quit: I growing sleepy]
kfpratt has quit [Remote host closed the connection]
priodev has joined #ruby-lang
bzalasky has joined #ruby-lang
kfpratt has joined #ruby-lang
itsraining has joined #ruby-lang
g12r has quit [Quit: Textual IRC Client: http://www.textualapp.com/]
kfpratt has quit [Ping timeout: 265 seconds]
priodev has quit [Ping timeout: 240 seconds]
priodev has joined #ruby-lang
zastern has joined #ruby-lang
iliketurtles has joined #ruby-lang
iliketurtles has quit [Excess Flood]
iliketurtles has joined #ruby-lang
zastern has quit [Quit: WeeChat 0.4.1]
zastern has joined #ruby-lang
iliketurtles has quit [Client Quit]
vlad_starkov has joined #ruby-lang
kfpratt has joined #ruby-lang
kitak has joined #ruby-lang
kek has joined #ruby-lang
vlad_starkov has quit [Read error: Connection reset by peer]
ecnalyr has joined #ruby-lang
kek has quit [Ping timeout: 252 seconds]
kitak has quit [Remote host closed the connection]
kitak has joined #ruby-lang
ecnalyr has quit [Ping timeout: 245 seconds]
iliketurtles has joined #ruby-lang
iliketurtles has quit [Excess Flood]
kfpratt has quit [Remote host closed the connection]
kfpratt has joined #ruby-lang
kitak has quit [Ping timeout: 246 seconds]
julweber_ has quit [Remote host closed the connection]
kfpratt has quit [Read error: Connection reset by peer]
_kfpratt has joined #ruby-lang
datanoise has joined #ruby-lang
kitak has joined #ruby-lang
kitak has quit [Remote host closed the connection]
datanoise has quit [Ping timeout: 265 seconds]
bzalasky has quit [Remote host closed the connection]
mdedetrich has joined #ruby-lang
bzalasky has joined #ruby-lang
datanoise has joined #ruby-lang
bzalasky_ has joined #ruby-lang
bzalasky has quit [Read error: Connection reset by peer]
mistym has joined #ruby-lang
hellome has quit [Read error: Connection reset by peer]
rwk1 has joined #ruby-lang
_kfpratt has quit [Remote host closed the connection]
kfpratt has joined #ruby-lang
rwk1 has quit [Ping timeout: 252 seconds]
kfpratt has quit [Ping timeout: 246 seconds]
kitak has joined #ruby-lang
kurko_ has quit [Quit: Computer has gone to sleep.]
bubonicpestilenc has quit [Quit: bubonicpestilenc]
julweber has joined #ruby-lang
itsraining has quit [Ping timeout: 246 seconds]
natevick has joined #ruby-lang
julweber has quit [Ping timeout: 272 seconds]
ddd has quit [Quit: OK, battery empty. Time for sleep]
vsorlov has joined #ruby-lang
vlad_starkov has joined #ruby-lang
natevick has quit [Quit: Colloquy for iPhone - http://colloquy.mobi]
kek has joined #ruby-lang
mucker has quit [Remote host closed the connection]
mucker has joined #ruby-lang
ecnalyr has joined #ruby-lang
kek has quit [Ping timeout: 240 seconds]
mucker has quit [Ping timeout: 245 seconds]
ecnalyr has quit [Ping timeout: 245 seconds]
kurko_ has joined #ruby-lang
jxie_ has quit [Read error: Connection reset by peer]
jxie has joined #ruby-lang
bzalasky_ has quit [Remote host closed the connection]
bzalasky has joined #ruby-lang
havenwood has quit [Remote host closed the connection]
bzalasky has quit [Ping timeout: 252 seconds]
kfpratt has joined #ruby-lang
kfpratt has quit [Remote host closed the connection]
kfpratt has joined #ruby-lang
kitak has quit [Remote host closed the connection]
kitak has joined #ruby-lang
kitak has quit [Remote host closed the connection]
kfpratt has quit [Ping timeout: 245 seconds]
kitak has joined #ruby-lang
vlad_starkov has quit [Read error: Connection reset by peer]
kitak has quit [Remote host closed the connection]
hogeo has quit [Remote host closed the connection]
bzalasky has joined #ruby-lang
rwk1 has joined #ruby-lang
kitak has joined #ruby-lang
rwk1 has quit [Ping timeout: 264 seconds]
vsorlov has quit [Ping timeout: 245 seconds]
jxie has quit [Ping timeout: 246 seconds]
havenwood has joined #ruby-lang
mistym_ has joined #ruby-lang
mistym has quit [Ping timeout: 246 seconds]
vlad_starkov has joined #ruby-lang
kek has joined #ruby-lang
ecnalyr has joined #ruby-lang
kek has quit [Ping timeout: 265 seconds]
ecnalyr has quit [Ping timeout: 245 seconds]
mucker has joined #ruby-lang
guns has quit [Quit: guns]
unrealhoang has joined #ruby-lang
caseeker has joined #ruby-lang
caseeker has left #ruby-lang [#ruby-lang]
vlad_starkov has quit [Read error: Connection reset by peer]
iliketurtles has joined #ruby-lang
iliketurtles has quit [Client Quit]
bzalasky has quit [Remote host closed the connection]
bzalasky has joined #ruby-lang
jxie has joined #ruby-lang
iliketurtles has joined #ruby-lang
iliketurtles has quit [Excess Flood]
hogeo has joined #ruby-lang
iliketurtles has joined #ruby-lang
rwk1 has joined #ruby-lang
yfeldblu_ has quit [Remote host closed the connection]
kfpratt has joined #ruby-lang
charliesome has joined #ruby-lang
hogeo_ has joined #ruby-lang
kurko_ has quit [Quit: Computer has gone to sleep.]
hogeo has quit [Read error: Connection reset by peer]
CaptainJet has quit []
bzalasky has quit [Ping timeout: 265 seconds]
hogeo_ has quit [Read error: Connection reset by peer]
hogeo has joined #ruby-lang
jsullivandigs has quit [Remote host closed the connection]
rwk1 has quit [Ping timeout: 265 seconds]
kfpratt has quit [Ping timeout: 240 seconds]
havenwood has quit [Remote host closed the connection]
hogeo has quit [Ping timeout: 264 seconds]
bzalasky has joined #ruby-lang
yfeldblum has joined #ruby-lang
chris2 has joined #ruby-lang
AKASkip has joined #ruby-lang
lsegal has quit [Read error: Connection reset by peer]
lsegal has joined #ruby-lang
caseeker has joined #ruby-lang
xcess_denied has joined #ruby-lang
vlad_starkov has joined #ruby-lang
chris2 has quit [Ping timeout: 245 seconds]
slyphon has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
kek has joined #ruby-lang
ecnalyr has joined #ruby-lang
kek has quit [Ping timeout: 246 seconds]
ecnalyr has quit [Ping timeout: 245 seconds]
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
unrealhoang has quit [Remote host closed the connection]
unrealhoang has joined #ruby-lang
datanoise has quit [Ping timeout: 272 seconds]
chris2 has joined #ruby-lang
vlad_starkov has quit [Read error: Connection reset by peer]
unrealhoang has quit [Ping timeout: 246 seconds]
rwk1 has joined #ruby-lang
hogeo has joined #ruby-lang
rwk1 has quit [Ping timeout: 246 seconds]
charliesome has joined #ruby-lang
h0rrorvacui has quit [Quit: Leaving]
hogeo has quit [Ping timeout: 245 seconds]
dseitz has quit [Quit: Textual IRC Client: www.textualapp.com]
kitak has quit [Remote host closed the connection]
mucker has quit [Remote host closed the connection]
arooni-mobile has joined #ruby-lang
mucker has joined #ruby-lang
mucker has quit [Read error: Connection reset by peer]
mucker has joined #ruby-lang
solars has joined #ruby-lang
A124 has joined #ruby-lang
datanoise has joined #ruby-lang
datanoise has quit [Ping timeout: 240 seconds]
kek has joined #ruby-lang
Forgetful_Lion has joined #ruby-lang
ecnalyr has joined #ruby-lang
kek has quit [Ping timeout: 245 seconds]
unrealhoang has joined #ruby-lang
ecnalyr has quit [Ping timeout: 245 seconds]
Forgetful_Lion has quit [Quit: ChatZilla 0.9.90.1 [Firefox 25.0.1/20131112160018]]
rwk1 has joined #ruby-lang
hhatch has joined #ruby-lang
julweber has joined #ruby-lang
arooni-mobile has quit [Ping timeout: 272 seconds]
bzalasky has quit [Remote host closed the connection]
bzalasky has joined #ruby-lang
datanoise has joined #ruby-lang
julweber has quit [Ping timeout: 252 seconds]
bzalasky has quit [Ping timeout: 265 seconds]
datanoise has quit [Ping timeout: 246 seconds]
iliketurtles has quit [Quit: zzzzz…..]
hogeo has joined #ruby-lang
houhouli_ has quit [Remote host closed the connection]
iliketurtles has joined #ruby-lang
iliketurtles has quit [Client Quit]
xcess_denied has quit [Quit: Leaving...]
hogeo has quit [Remote host closed the connection]
bastilian has quit [Read error: Connection reset by peer]
shiva_inu has joined #ruby-lang
A124 has quit [Remote host closed the connection]
A124 has joined #ruby-lang
datanoise has joined #ruby-lang
kitak has joined #ruby-lang
kitak has quit [Remote host closed the connection]
kitak has joined #ruby-lang
datanoise has quit [Ping timeout: 260 seconds]
hogeo has joined #ruby-lang
huma has joined #ruby-lang
xcess_denied has joined #ruby-lang
mistym_ has quit [Remote host closed the connection]
AKASkip has quit [Ping timeout: 264 seconds]
retro|cz has joined #ruby-lang
kek has joined #ruby-lang
julweber has joined #ruby-lang
anulman1 has joined #ruby-lang
anulman has quit [Read error: Connection reset by peer]
ecnalyr has joined #ruby-lang
kek has quit [Ping timeout: 264 seconds]
ecnalyr has quit [Ping timeout: 245 seconds]
datanoise has joined #ruby-lang
tharindu has quit [Ping timeout: 246 seconds]
yfeldblum has quit [Remote host closed the connection]
yfeldblum has joined #ruby-lang
datanoise has quit [Ping timeout: 252 seconds]
caseeker has quit [Quit: caseeker]
yfeldblum has quit [Ping timeout: 246 seconds]
wallerdev has quit [Quit: wallerdev]
ikrima has joined #ruby-lang
tbuehlmann has joined #ruby-lang
elia has joined #ruby-lang
MrZYX|off is now known as MrZYX
elia has quit [Client Quit]
marr has joined #ruby-lang
rwk1 has quit [Remote host closed the connection]
mbj has joined #ruby-lang
retro|cz has quit [Ping timeout: 240 seconds]
nisstyre has quit [Ping timeout: 260 seconds]
kek has joined #ruby-lang
solars has quit [Ping timeout: 264 seconds]
ecnalyr has joined #ruby-lang
kek has quit [Ping timeout: 245 seconds]
bastilian has joined #ruby-lang
ecnalyr has quit [Ping timeout: 245 seconds]
vlad_starkov has joined #ruby-lang
rwk1 has joined #ruby-lang
vlad_sta_ has joined #ruby-lang
vlad_starkov has quit [Ping timeout: 245 seconds]
huma has quit [Ping timeout: 260 seconds]
datanoise has joined #ruby-lang
unrealhoang has quit [Remote host closed the connection]
marr has quit [Ping timeout: 246 seconds]
datanoise has quit [Ping timeout: 240 seconds]
mucker has quit [Ping timeout: 264 seconds]
dhruvasagar has joined #ruby-lang
faces has quit [Ping timeout: 246 seconds]
ikrima has quit [Quit: Computer has gone to sleep.]
face has joined #ruby-lang
mucker has joined #ruby-lang
phus1on has joined #ruby-lang
rwk1 has quit [Remote host closed the connection]
MaddinXx_ has joined #ruby-lang
phus1on has quit [Client Quit]
symm- has quit [Ping timeout: 260 seconds]
vlad_sta_ has quit [Remote host closed the connection]
mbj has quit [Ping timeout: 240 seconds]
io_syl has quit []
julweber has quit [Remote host closed the connection]
julweber has joined #ruby-lang
nofxx has quit [Ping timeout: 245 seconds]
sepp2k has joined #ruby-lang
vlad_starkov has joined #ruby-lang
dhruvasagar has quit [Ping timeout: 246 seconds]
tylersmith has quit [Remote host closed the connection]
kek has joined #ruby-lang
retro|cz has joined #ruby-lang
ecnalyr has joined #ruby-lang
manoj has joined #ruby-lang
xcess_denied has quit [Read error: Connection reset by peer]
kek has quit [Ping timeout: 272 seconds]
ecnalyr has quit [Ping timeout: 245 seconds]
vlad_sta_ has joined #ruby-lang
vlad_starkov has quit [Ping timeout: 245 seconds]
vlad_starkov has joined #ruby-lang
vlad_sta_ has quit [Ping timeout: 246 seconds]
vlad_sta_ has joined #ruby-lang
manoj has quit [Read error: Connection reset by peer]
xcess_denied has joined #ruby-lang
jmeeuwen has joined #ruby-lang
vlad_starkov has quit [Ping timeout: 264 seconds]
vlad_starkov has joined #ruby-lang
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
elia has joined #ruby-lang
vlad_sta_ has quit [Ping timeout: 246 seconds]
charliesome has joined #ruby-lang
datanoise has joined #ruby-lang
relix has joined #ruby-lang
yfeldblum has joined #ruby-lang
elia has quit [Quit: Computer has gone to sleep.]
rriemann has joined #ruby-lang
datanoise has quit [Ping timeout: 245 seconds]
yfeldblum has quit [Ping timeout: 260 seconds]
realDAB has joined #ruby-lang
mbj has joined #ruby-lang
hogeo has quit [Remote host closed the connection]
Czupa has joined #ruby-lang
amoli has joined #ruby-lang
yfeldblum has joined #ruby-lang
Czupa has quit [Remote host closed the connection]
yfeldblum has quit [Ping timeout: 245 seconds]
julweber has quit [Remote host closed the connection]
kek has joined #ruby-lang
havenwood has joined #ruby-lang
ecnalyr has joined #ruby-lang
kek has quit [Ping timeout: 252 seconds]
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
ecnalyr has quit [Ping timeout: 245 seconds]
realDAB has quit [Quit: realDAB]
hogeo has joined #ruby-lang
hogeo has quit [Ping timeout: 245 seconds]
mdedetrich has quit [Quit: Computer has gone to sleep.]
datanoise has joined #ruby-lang
Czupa has joined #ruby-lang
<yorickpeterse> whitequark: ping
datanoise has quit [Ping timeout: 246 seconds]
<whitequark> pong
<yorickpeterse> any ETA on parser 2.1 stable?
tylersmith has joined #ruby-lang
heavyhorse has quit [Quit: Computer has gone to sleep]
toretore has joined #ruby-lang
<whitequark> yorickpeterse: same as ruby 2.1
<yorickpeterse> bah
<yorickpeterse> well, then I'll depend on 2.0 for another month
lsegal has quit [Quit: Quit: Quit: Quit: Stack Overflow.]
Mon_Ouie has quit [Ping timeout: 246 seconds]
julweber has joined #ruby-lang
<whitequark> wow, 105k downloads for parser
<whitequark> most of which is likely rubocop
<yorickpeterse> or bots
<whitequark> no, other gems don't get too much
tylersmith has quit [Ping timeout: 246 seconds]
<yorickpeterse> https://rubygems.org/gems/speedpwn <- 646 downloads, I don't think anybody ever actually noticed it
Hauleth has joined #ruby-lang
cnivolle has joined #ruby-lang
dhruvasagar has joined #ruby-lang
relix has quit [Quit: Textual IRC Client: www.textualapp.com]
Oloryn_lt2 has quit [Read error: Connection reset by peer]
Oloryn_lt2 has joined #ruby-lang
realDAB has joined #ruby-lang
Czupa has quit [Quit: Wychodzi]
Czupa has joined #ruby-lang
<whitequark> yorickpeterse: yes, that seems about right for background level
vlad_starkov has quit [Remote host closed the connection]
vlad_starkov has joined #ruby-lang
houhoulis has joined #ruby-lang
Czupa has quit [Remote host closed the connection]
vlad_starkov has quit [Read error: Connection reset by peer]
kek has joined #ruby-lang
ecnalyr has joined #ruby-lang
kek has quit [Ping timeout: 252 seconds]
ecnalyr has quit [Ping timeout: 245 seconds]
realDAB has quit [Quit: realDAB]
vlad_starkov has joined #ruby-lang
kitak has quit [Remote host closed the connection]
kitak has joined #ruby-lang
amoli has quit [Ping timeout: 252 seconds]
vsorlov has joined #ruby-lang
datanoise has joined #ruby-lang
xcess_denied has quit [Quit: Leaving...]
elia has joined #ruby-lang
datanoise has quit [Ping timeout: 264 seconds]
esad has joined #ruby-lang
hogeo has joined #ruby-lang
julweber has quit [Remote host closed the connection]
tylersmith has joined #ruby-lang
hogeo has quit [Ping timeout: 245 seconds]
julweber has joined #ruby-lang
realDAB has joined #ruby-lang
mannyt has joined #ruby-lang
mannyt has quit [Client Quit]
mannyt has joined #ruby-lang
tylersmith has quit [Ping timeout: 245 seconds]
mannyt has quit [Ping timeout: 245 seconds]
dhruvasagar has quit [Ping timeout: 252 seconds]
yfeldblum has joined #ruby-lang
xcess_denied has joined #ruby-lang
yfeldblum has quit [Ping timeout: 245 seconds]
julweber has quit [Remote host closed the connection]
manoj has joined #ruby-lang
xcess_denied has quit [Read error: Connection reset by peer]
manoj has quit [Read error: Connection reset by peer]
realDAB has quit [Quit: realDAB]
realDAB has joined #ruby-lang
kek has joined #ruby-lang
itsraining has joined #ruby-lang
ecnalyr has joined #ruby-lang
kek has quit [Ping timeout: 245 seconds]
elia has quit [Quit: Computer has gone to sleep.]
elia has joined #ruby-lang
ecnalyr has quit [Ping timeout: 245 seconds]
arooni-mobile has joined #ruby-lang
esad has quit [Quit: Computer has gone to sleep.]
Hauleth has quit [Ping timeout: 252 seconds]
<jds> I use XMLBuilder to generate rss feeds. It's slower than I'd like, is there anything I can do to speed it up, or any alternatives I should look at?
julweber has joined #ruby-lang
MaddinXx_ has quit [Remote host closed the connection]
mannyt has joined #ruby-lang
gokul has joined #ruby-lang
realDAB has quit [Quit: realDAB]
CoreData has joined #ruby-lang
<jds> hm, https://github.com/nikitug/xbuilder sounds interesting.
thmzlt has joined #ruby-lang
julweber has quit [Remote host closed the connection]
heavyhorse has joined #ruby-lang
heavyhorse has left #ruby-lang [#ruby-lang]
tylersmith has joined #ruby-lang
tharindu has joined #ruby-lang
tylersmith has quit [Ping timeout: 252 seconds]
relix has joined #ruby-lang
chaos_ has quit [Read error: Connection reset by peer]
yfeldblum has joined #ruby-lang
chaos_ has joined #ruby-lang
dhruvasagar has joined #ruby-lang
MaddinXx_ has joined #ruby-lang
yfeldblum has quit [Ping timeout: 264 seconds]
kek has joined #ruby-lang
esad has joined #ruby-lang
spike|spiegel has quit [Ping timeout: 260 seconds]
marr has joined #ruby-lang
ecnalyr has joined #ruby-lang
vlad_sta_ has joined #ruby-lang
vlad_starkov has quit [Read error: Connection reset by peer]
kek has quit [Ping timeout: 245 seconds]
spike|spiegel has joined #ruby-lang
ecnalyr has quit [Ping timeout: 245 seconds]
jxpx777 has joined #ruby-lang
jxpx777_ has joined #ruby-lang
datanoise has joined #ruby-lang
jxpx777- has joined #ruby-lang
arooni-mobile has quit [Ping timeout: 240 seconds]
ecnalyr has joined #ruby-lang
jxpx777 has quit [Ping timeout: 246 seconds]
julweber has joined #ruby-lang
jxpx777_ has quit [Ping timeout: 240 seconds]
ecnalyr has quit [Ping timeout: 245 seconds]
jxpx777_ has joined #ruby-lang
dhruvasagar has quit [Ping timeout: 272 seconds]
mbj has quit [Ping timeout: 246 seconds]
wallerdev has joined #ruby-lang
julweber has quit [Remote host closed the connection]
datanoise has quit [Ping timeout: 264 seconds]
jxpx777- has quit [Ping timeout: 264 seconds]
bruno- has joined #ruby-lang
jxpx777 has joined #ruby-lang
jxpx777- has joined #ruby-lang
hogeo has joined #ruby-lang
jxpx777_ has quit [Ping timeout: 240 seconds]
robbyoconnor has quit [Ping timeout: 246 seconds]
jxpx777 has quit [Ping timeout: 260 seconds]
ikrima has joined #ruby-lang
hogeo has quit [Ping timeout: 272 seconds]
jxpx777- has quit [Ping timeout: 252 seconds]
mbj has joined #ruby-lang
dblack_ has joined #ruby-lang
tylersmith has joined #ruby-lang
relix has quit [Quit: Textual IRC Client: www.textualapp.com]
wallerdev has quit [Quit: wallerdev]
[[johnonymous]] has joined #ruby-lang
tylersmith has quit [Ping timeout: 265 seconds]
datanoise has joined #ruby-lang
ddd has joined #ruby-lang
datanoise has quit [Ping timeout: 245 seconds]
dhruvasagar has joined #ruby-lang
yfeldblum has joined #ruby-lang
vlad_sta_ has quit [Remote host closed the connection]
MaddinXx_ has quit [Remote host closed the connection]
ddd has quit [Quit: to load something]
arooni-mobile has joined #ruby-lang
yfeldblum has quit [Ping timeout: 246 seconds]
ddd has joined #ruby-lang
nathanstitt has joined #ruby-lang
dblack_ has quit [Ping timeout: 246 seconds]
ecnalyr has joined #ruby-lang
dblack_ has joined #ruby-lang
gokul has quit [Quit: Leaving]
vsorlov has quit [Read error: Connection reset by peer]
kek has joined #ruby-lang
bzalasky has joined #ruby-lang
vsorlov has joined #ruby-lang
dhruvasagar has quit [Ping timeout: 240 seconds]
ddd has quit [Quit: once more]
Hauleth has joined #ruby-lang
kek has quit [Ping timeout: 246 seconds]
wallerdev has joined #ruby-lang
wallerdev has quit [Client Quit]
vsorlov has quit [Ping timeout: 245 seconds]
bzalasky has quit [Remote host closed the connection]
Hauleth has quit [Ping timeout: 240 seconds]
bzalasky has joined #ruby-lang
dblack_ has quit [Read error: Connection reset by peer]
bzalasky has quit [Ping timeout: 260 seconds]
Coincidental has joined #ruby-lang
vsorlov has joined #ruby-lang
rriemann has quit [Quit: Konversation terminated!]
itsraining has quit [Ping timeout: 246 seconds]
rriemann has joined #ruby-lang
hogeo has joined #ruby-lang
Oak has joined #ruby-lang
Oak has quit [Changing host]
Oak has joined #ruby-lang
Hauleth has joined #ruby-lang
retro|cz has quit [Ping timeout: 246 seconds]
r0bgleeson has quit [Ping timeout: 246 seconds]
hogeo has quit [Ping timeout: 245 seconds]
ddd has joined #ruby-lang
AKASkip has joined #ruby-lang
saarinen has joined #ruby-lang
[[johnonymous]] has quit [Quit: ["Textual IRC Client: www.textualapp.com"]]
bearlulz has joined #ruby-lang
tylersmith has joined #ruby-lang
yfeldblum has joined #ruby-lang
guns has joined #ruby-lang
shinnya has quit [Ping timeout: 245 seconds]
rriemann has quit [Ping timeout: 264 seconds]
saarinen has quit [Ping timeout: 245 seconds]
gianlucadv has joined #ruby-lang
datanoise has joined #ruby-lang
tylersmith has quit [Ping timeout: 252 seconds]
esad has quit [Quit: Computer has gone to sleep.]
saarinen has joined #ruby-lang
mbj has left #ruby-lang [#ruby-lang]
havenwood has quit [Remote host closed the connection]
houhoulis has quit []
huma has joined #ruby-lang
datanoise has quit [Ping timeout: 246 seconds]
datanoise has joined #ruby-lang
guns has quit [Ping timeout: 265 seconds]
io_syl has joined #ruby-lang
relix has joined #ruby-lang
kfpratt has joined #ruby-lang
Oak has quit [Ping timeout: 272 seconds]
datanoise has quit [Ping timeout: 246 seconds]
dhruvasagar has joined #ruby-lang
Oak has joined #ruby-lang
Oak has joined #ruby-lang
Oak has quit [Changing host]
vlad_starkov has joined #ruby-lang
kek has joined #ruby-lang
vlad_starkov has quit [Read error: Connection reset by peer]
vlad_starkov has joined #ruby-lang
vlad_starkov has quit [Remote host closed the connection]
vlad_starkov has joined #ruby-lang
kek has quit [Ping timeout: 260 seconds]
saarinen has quit [Quit: saarinen]
relix has quit [Quit: Textual IRC Client: www.textualapp.com]
datanoise has joined #ruby-lang
dhruvasagar has quit [Ping timeout: 264 seconds]
dhruvasagar has joined #ruby-lang
vlad_starkov has quit [Remote host closed the connection]
unrealhoang has joined #ruby-lang
Oak has quit [Remote host closed the connection]
datanoise has quit [Read error: Connection reset by peer]
Oak has joined #ruby-lang
Hauleth has quit [Ping timeout: 252 seconds]
hogeo has joined #ruby-lang
CaptainJet has joined #ruby-lang
hogeo has quit [Ping timeout: 264 seconds]
jsullivandigs has joined #ruby-lang
realDAB has joined #ruby-lang
tylersmith has joined #ruby-lang
realDAB has quit [Quit: realDAB]
tylersmith has quit [Ping timeout: 245 seconds]
mannyt has quit [Quit: mannyt]
Oak has quit [Quit: Later guys... :) (me liking http://hexchat.github.io/ very much)]
jsullivandigs has quit [Remote host closed the connection]
yfeldblum has quit [Remote host closed the connection]
retro|cz has joined #ruby-lang
yfeldblum has joined #ruby-lang
VTLob has joined #ruby-lang
jsullivandigs has joined #ruby-lang
yfeldblum has quit [Ping timeout: 260 seconds]
vlad_starkov has joined #ruby-lang
jsullivandigs has quit [Remote host closed the connection]
MrZYX is now known as MrZYX|off
elia has quit [Quit: Computer has gone to sleep.]
bjh13 has joined #ruby-lang
kek has joined #ruby-lang
tharindu has quit [Ping timeout: 272 seconds]
MrZYX|off is now known as MrZYX
kek has quit [Ping timeout: 246 seconds]
kfpratt has quit [Remote host closed the connection]
kurko__ has joined #ruby-lang
chad has joined #ruby-lang
jsullivandigs has joined #ruby-lang
saarinen has joined #ruby-lang
chad has left #ruby-lang [#ruby-lang]
unrealhoang has quit [Remote host closed the connection]
MaddinXx has joined #ruby-lang
guns has joined #ruby-lang
esad has joined #ruby-lang
kfpratt has joined #ruby-lang
yfeldblum has joined #ruby-lang
Hauleth has joined #ruby-lang
yfeldblu_ has joined #ruby-lang
kfpratt has quit [Ping timeout: 265 seconds]
Coincidental has quit [Remote host closed the connection]
yfeldblum has quit [Ping timeout: 240 seconds]
mbj_ has joined #ruby-lang
yfeldblu_ has quit [Ping timeout: 272 seconds]
hogeo has joined #ruby-lang
Barrin6 has joined #ruby-lang
closer has quit [Ping timeout: 252 seconds]
arooni-mobile has quit [Ping timeout: 246 seconds]
havenwood has joined #ruby-lang
closer has joined #ruby-lang
hogeo has quit [Ping timeout: 264 seconds]
kfpratt has joined #ruby-lang
mikestok has joined #ruby-lang
mikestok has quit [Client Quit]
Mon_Ouie has joined #ruby-lang
relix has joined #ruby-lang
saarinen has quit [Quit: saarinen]
mbj_ has quit [Quit: leaving]
kurko__ has quit [Quit: Computer has gone to sleep.]
yfeldblum has joined #ruby-lang
cored has joined #ruby-lang
cored has quit [Changing host]
cored has joined #ruby-lang
tylersmith has joined #ruby-lang
arooni-mobile has joined #ruby-lang
kfpratt has quit [Ping timeout: 240 seconds]
h0rrorvacui has joined #ruby-lang
bastilian has quit [Quit: Linkinus - http://linkinus.com]
esad has quit [Quit: Computer has gone to sleep.]
mistym has joined #ruby-lang
kek has joined #ruby-lang
lsegal has joined #ruby-lang
Coincidental has joined #ruby-lang
kek has quit [Ping timeout: 252 seconds]
CaptainJet has quit [Ping timeout: 245 seconds]
CaptainJet has joined #ruby-lang
mistym_ has joined #ruby-lang
mistym has quit [Ping timeout: 272 seconds]
julweber has joined #ruby-lang
kfpratt has joined #ruby-lang
ikrima has quit [Quit: Computer has gone to sleep.]
kfpratt has quit [Ping timeout: 264 seconds]
hogeo has joined #ruby-lang
kfpratt has joined #ruby-lang
hogeo has quit [Ping timeout: 246 seconds]
kfpratt has quit [Ping timeout: 260 seconds]
tylersmith has quit [Remote host closed the connection]
tylersmith has joined #ruby-lang
spike|spiegel has quit [Read error: Operation timed out]
jsullivandigs has quit [Ping timeout: 264 seconds]
robbyoconnor has joined #ruby-lang
tylersmith has quit [Ping timeout: 240 seconds]
r0bgleeson has joined #ruby-lang
spike|spiegel has joined #ruby-lang
julweber has quit [Remote host closed the connection]
iliketurtles has joined #ruby-lang
itsraining has joined #ruby-lang
nathanstitt has quit [Quit: I growing sleepy]
tbuehlmann has quit [Remote host closed the connection]
esad has joined #ruby-lang
ikrima has joined #ruby-lang
havenwood has quit [Remote host closed the connection]
havenwood has joined #ruby-lang
caseeker has joined #ruby-lang
iliketurtles has quit [Quit: zzzzz…..]
kek has joined #ruby-lang
Barrin6 has quit [Quit: Leaving]
mbj has joined #ruby-lang
rriemann has joined #ruby-lang
kek has quit [Ping timeout: 245 seconds]
ryez has quit [Ping timeout: 250 seconds]
Coincide_ has joined #ruby-lang
Coincid__ has joined #ruby-lang
schaary_ has joined #ruby-lang
MaddinXx has quit [Quit: Leaving...]
Coincidental has quit [Ping timeout: 272 seconds]
vlad_starkov has quit [Remote host closed the connection]
Coincide_ has quit [Ping timeout: 245 seconds]
Fushi has joined #ruby-lang
esad has quit [Quit: Computer has gone to sleep.]
CoreData has quit [Quit: CoreData]
brushbox has joined #ruby-lang
iliketurtles has joined #ruby-lang
iliketurtles has quit [Max SendQ exceeded]
ikrima has quit [Quit: Computer has gone to sleep.]
iliketurtles has joined #ruby-lang
hogeo has joined #ruby-lang
Fushi has left #ruby-lang [#ruby-lang]
nisstyre has joined #ruby-lang
kfpratt has joined #ruby-lang
hogeo has quit [Ping timeout: 265 seconds]
caseeker has quit [Quit: caseeker]
FiXato has quit [Max SendQ exceeded]
FiXato has joined #ruby-lang
kfpratt has quit [Ping timeout: 246 seconds]
DouweM has joined #ruby-lang
elia has joined #ruby-lang
sleepee has quit [Quit: Leaving]
gianlucadv has quit [Ping timeout: 260 seconds]
dhruvasagar has quit [Read error: Operation timed out]
vsorlov has quit [Ping timeout: 246 seconds]
iliketurtles has quit [Quit: zzzzz…..]
amoli has joined #ruby-lang
vlad_starkov has joined #ruby-lang
brushbox has quit [Quit: brushbox]
yfeldblum has quit [Remote host closed the connection]
tylersmith has joined #ruby-lang
bzalasky has joined #ruby-lang
yfeldblum has joined #ruby-lang
vlad_starkov has quit [Remote host closed the connection]
FiXato has quit [Quit: time for a reboot]
vlad_starkov has joined #ruby-lang
lfox has joined #ruby-lang
tylersmith has quit [Ping timeout: 246 seconds]
yfeldblum has quit [Ping timeout: 260 seconds]
FiXato has joined #ruby-lang
julweber has joined #ruby-lang
tylersmith has joined #ruby-lang
wallerdev has joined #ruby-lang
charliesome has joined #ruby-lang
gix- has joined #ruby-lang
gix has quit [Disconnected by services]
julweber has quit [Ping timeout: 240 seconds]
caseeker has joined #ruby-lang
sepp2k1 has joined #ruby-lang
sepp2k has quit [Ping timeout: 264 seconds]
kfpratt has joined #ruby-lang
kek has joined #ruby-lang
havenwood has quit [Remote host closed the connection]
kek has quit [Ping timeout: 246 seconds]
kfpratt has quit [Ping timeout: 246 seconds]
x0f_ has joined #ruby-lang
havenwood has joined #ruby-lang
x0f has quit [Ping timeout: 246 seconds]
mdedetrich has joined #ruby-lang
Barrin6 has joined #ruby-lang
retro|cz has quit [Ping timeout: 252 seconds]
hogeo has joined #ruby-lang
symm- has joined #ruby-lang
mistym_ is now known as mistym
hogeo has quit [Ping timeout: 240 seconds]
mbj has quit [Ping timeout: 252 seconds]
hahuang65 has joined #ruby-lang
kitak has quit [Remote host closed the connection]
woollyams has joined #ruby-lang
kitak has joined #ruby-lang
Coincidental has joined #ruby-lang
Barrin6 has quit [Quit: Leaving]
Coincid__ has quit [Ping timeout: 245 seconds]
Mon_Ouie has quit [Ping timeout: 246 seconds]
woollyams has quit [Ping timeout: 252 seconds]
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
bzalasky has quit [Remote host closed the connection]
lsegal has quit [Read error: Connection reset by peer]
lsegal has joined #ruby-lang
bzalasky has joined #ruby-lang
yfeldblum has joined #ruby-lang
kfpratt has joined #ruby-lang
kek has joined #ruby-lang
charliesome has joined #ruby-lang
bzalasky has quit [Ping timeout: 246 seconds]
iliketur_ has joined #ruby-lang
dkorzhevin has quit [Quit: WeeChat 0.4.2]
kek has quit [Ping timeout: 246 seconds]
kfpratt has quit [Ping timeout: 264 seconds]
slyphon has joined #ruby-lang
bzalasky has joined #ruby-lang
nathanstitt has joined #ruby-lang
kitak has quit [Remote host closed the connection]
lfox has quit [Quit: ZZZzzz…]
julweber has joined #ruby-lang
lfox has joined #ruby-lang
schaary_ has quit [Quit: I sleep ZZZzzz…]
vlad_starkov has quit [Remote host closed the connection]
caseeker has quit [Quit: caseeker]
relix has quit [Quit: Textual IRC Client: www.textualapp.com]
brushbox has joined #ruby-lang
havenwood has quit [Remote host closed the connection]
caseeker has joined #ruby-lang
rriemann has quit [Ping timeout: 245 seconds]
Coincidental has quit [Remote host closed the connection]
devn_ has left #ruby-lang [#ruby-lang]
bastilian has joined #ruby-lang
havenwood has joined #ruby-lang
mistym has quit [Remote host closed the connection]
bastilian has quit [Quit: Linkinus - http://linkinus.com]
amoli has quit [Ping timeout: 246 seconds]
kitak has joined #ruby-lang
bastilian has joined #ruby-lang
mistym has joined #ruby-lang
sepp2k1 has quit [Quit: Leaving.]
robbyoconnor has quit [Ping timeout: 260 seconds]
mistym has quit [Ping timeout: 240 seconds]
tharindu has joined #ruby-lang
relix has joined #ruby-lang
kfpratt has joined #ruby-lang
kfpratt has quit [Ping timeout: 260 seconds]
hahuang65 has quit [Ping timeout: 245 seconds]
caseeker has quit [Quit: caseeker]
kek has joined #ruby-lang
itsraining has quit [Ping timeout: 252 seconds]
bzalasky has quit [Remote host closed the connection]
kek has quit [Ping timeout: 246 seconds]
iliketur_ has quit [Quit: zzzzz…..]
bzalasky has joined #ruby-lang
lfox has quit [Quit: ZZZzzz…]
bzalasky has quit [Ping timeout: 240 seconds]
woollyams has joined #ruby-lang
ddd has quit [Quit: ok, classes in the morning. early to bed early to rise they say]
vlad_starkov has joined #ruby-lang