apeiros changed the topic of #ruby to: Ruby 2.0.0-p247: http://ruby-lang.org (Ruby 1.9.3-p448) || Paste >3 lines of text on http://gist.github.com
cburyta has joined #ruby
cjsarette has joined #ruby
cj3kim has joined #ruby
twoism has quit [Remote host closed the connection]
zarubin has quit [Ping timeout: 264 seconds]
c0rn has quit [Quit: Computer has gone to sleep.]
mansi has joined #ruby
viszu has quit [Quit: Leaving.]
mikepack has quit [Remote host closed the connection]
dEPy has quit [Remote host closed the connection]
brianpWins has quit [Quit: brianpWins]
rupee has quit [Quit: Leaving]
cjsarette has quit [Ping timeout: 276 seconds]
marr has quit [Ping timeout: 240 seconds]
tatsuya_o has joined #ruby
talntid2 is now known as talntid
rgreen_ has quit [Ping timeout: 250 seconds]
horofox_ has joined #ruby
mansi has quit [Ping timeout: 264 seconds]
kindjal has joined #ruby
vlad_starkov has joined #ruby
cj3kim has quit [Ping timeout: 252 seconds]
mahmoudimus has quit [Quit: Computer has gone to sleep.]
bzitzow has quit [Read error: Operation timed out]
KTMBoID has joined #ruby
nettoweb has joined #ruby
tatsuya_o has quit [Ping timeout: 240 seconds]
atmosx has joined #ruby
atmosx_ has quit [Ping timeout: 240 seconds]
pitzips has quit [Ping timeout: 248 seconds]
mahmoudimus has joined #ruby
jjbohn has quit [Quit: Leaving...]
cjsarette has joined #ruby
robscomp_ has quit [Remote host closed the connection]
robscomputer_ has joined #ruby
jonkri has quit [Quit: jonkri]
brennanMKE has quit [Remote host closed the connection]
DanKnox is now known as DanKnox_away
vlad_starkov has quit [Ping timeout: 240 seconds]
Targen has quit [Ping timeout: 264 seconds]
_seanc_ has quit [Ping timeout: 264 seconds]
cortexman has quit [Quit: Leaving.]
sergicles has quit [Quit: sergicles]
pitzips has joined #ruby
robscomputer_ has quit [Ping timeout: 276 seconds]
<nettoweb> guys, I'm creating a webapp to sell some videos, the visitor can choose the videos, and then buy (with paypal or another site). But I'm a bit confused with the logic, models… I never created this kind os webapp and in my caso I think it's simple, because I donk need to know the address of user neither quantity, because it dont make sense for videos… he pay for watch. so I'd like to know how to procced.
<nettoweb> Actually I have two controllers: Items and Cart, but I donk have Orders neither checkout…
<nettoweb> I'm thinking this is necessary
cjsarette has quit [Ping timeout: 245 seconds]
<MrZYX> #rubyonrails
<pontiki> also: spree
gnerol_ has quit [Read error: Operation timed out]
wmoxam has joined #ruby
jbueza has joined #ruby
<nettoweb> pontiki: the problem with spree is that i cant use a payment method that we use in my country, a specific case
jlast has quit [Remote host closed the connection]
<pontiki> i thought spree was payment gateway agnostic
<pontiki> we certainly weren't bound to any particular payment gateway
nbouscal has joined #ruby
<pontiki> but do pop over the #rubyonrails as one of the spree-ists is there
zastern has joined #ruby
blackmesa has quit [Quit: WeeChat 0.4.1]
zeade has quit [Quit: Leaving.]
nowthatsamatt has joined #ruby
ner0x has joined #ruby
cjsarette has joined #ruby
Xeago_ has joined #ruby
<blitz> so if I wanted to iterate through a hash sorted by keys in reverse order how would I go about that
<blitz> I assume h.sort.reverse sorts on keys
<blitz> in my original I wanted to sort on values**
<pontiki> so which do you actually want?
<blitz> I want to iterate through a hash by reverse sorted order values
aedorn has quit [Remote host closed the connection]
<pontiki> off the top of my head, i'd pass a block to sort to test the values, then chain it with reverse
<blitz> since I have repeated values I can't do reverse lookups after sorting those so I'm stumped
sambao21 has joined #ruby
mahmoudimus has quit [Quit: Computer has gone to sleep.]
<blitz> well I got it pontiki
lele has quit [Ping timeout: 268 seconds]
<blitz> h.sort{ |l,r| r[1]<=>l[1] }
<pontiki> ^
<blitz> ty google
S0da has joined #ruby
mahmoudimus has joined #ruby
kindjal has quit [Ping timeout: 276 seconds]
lele has joined #ruby
skasio_ has joined #ruby
skasio_ has quit [Client Quit]
skasio has quit [Quit: leaving]
skasio has joined #ruby
superscott[8] has joined #ruby
dillwithers has joined #ruby
airlok has joined #ruby
DonRichie has quit [Ping timeout: 256 seconds]
hogeo has joined #ruby
DonRichie has joined #ruby
zarubin has joined #ruby
jkline has quit [Quit: jkline]
jkline has joined #ruby
jarin has quit [Ping timeout: 246 seconds]
sambao21 has quit [Ping timeout: 240 seconds]
lele has quit [Ping timeout: 264 seconds]
jarin has joined #ruby
cpruitt has quit [Quit: cpruitt]
tommyvyo has joined #ruby
tkuchiki has joined #ruby
cburyta has quit [Remote host closed the connection]
fredjean has joined #ruby
nowthatsamatt has quit [Quit: nowthatsamatt]
reset has quit [Quit: Leaving...]
cburyta has joined #ruby
atno has joined #ruby
S0da has quit [Remote host closed the connection]
ebobby has quit [Quit: Lost terminal]
tommyvyo has quit [Quit:]
Notte has quit [Remote host closed the connection]
inimit has joined #ruby
asgardBSD has joined #ruby
ssvo has quit [Ping timeout: 246 seconds]
fredjean has quit [Quit: Computer has gone to sleep.]
Vivekananda has quit [Quit: Ex-Chat]
lele has joined #ruby
Vivekananda has joined #ruby
dsog_ has joined #ruby
sepp2k has quit [Quit: Leaving.]
marcdel has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
ColKurtz has quit [Quit: Textual IRC Client: www.textualapp.com]
dsog_ has left #ruby [#ruby]
wmoxam has quit [Ping timeout: 256 seconds]
v1n has quit [Read error: Operation timed out]
<Spooner> blitz, h.sort_by {|x| x[1] } is significantly more efficient.
<blitz> efficiency doesn't matter here luckily. hashes range from size 1 to 6
<blitz> I'll change it though, can you explain why it's more efficient spooner
niklasb has quit [Ping timeout: 246 seconds]
<Spooner> Because sort_by calculates x[1] once for each value. with the r/l comparison, it has to be called every time two elements must be compared.
<Spooner> No reason to use #sort any more. #sort_by is "just better"
<blitz> yes, will that reverse it though
inimit has quit [Quit: inimit]
DrShoggoth has quit [Ping timeout: 264 seconds]
<Spooner> Oh, do h.sort_by {|x| -x[1] } (if it is numeric) to reverse sort.
<Spooner> Alternatively, #reverse_each it...
BSaboia has quit [Ping timeout: 276 seconds]
<blitz> I assume it would be more efficient to sort it correctly to begin with
nanoxd has joined #ruby
<Spooner> Yeah, I was meaning if it is sorted alphabetically, then -x won't work to reverse it ;)
mansi has joined #ruby
djbkd has quit [Quit: Leaving]
jkline has quit [Quit: jkline]
Voodoofish430 has quit [Quit: Leaving.]
<Spooner> blitz, {a: 1, b: 2}.sort_by {|k, v| -v}.each {|k, v| } #=> [[:b, 2], [:a, 1]]
theRoUS has joined #ruby
theRoUS has quit [Changing host]
theRoUS has joined #ruby
<blitz> yeah, I already tested and implemented it
<blitz> thanks
<blitz> I'm brand new to ruby, I was hired because of my python experience. kind of learning on the job
sevenseacat has joined #ruby
tylersmith has joined #ruby
zastern has quit [Remote host closed the connection]
mansi has quit [Ping timeout: 246 seconds]
cofin has joined #ruby
cburyta has quit [Remote host closed the connection]
dillwithers has quit [Remote host closed the connection]
vlad_starkov has joined #ruby
nowthatsamatt has joined #ruby
syamajala has quit [Quit: leaving]
<Spooner> blitz, [x for x in sorted(dict(a=1,b=2).items(), key=lambda (k, v): -v)] :D
<Spooner> I went the other way though (Ruby->Python) recently.
Xeago_ has quit [Remote host closed the connection]
<Spooner> You'll notice that the sorted() key makes it the same as #sort_by
takezawa has joined #ruby
citizensinspace has joined #ruby
rsahae has quit [Quit: rsahae]
<citizensinspace> Hey guys, how can I get rid of this warning? Thanks. warning: character class has '-' without escape: /[a-z-A-Z\s]/
<citizensinspace> string.scan(/[a-z-A-Z\s]/)
vlad_starkov has quit [Ping timeout: 264 seconds]
<Spooner> citizensinspace, string.scan(/[a-zA-Z\s]/)
<Spooner> It is a-z and A-Z. The middle - isn't making sense.
blischalk has joined #ruby
<citizensinspace> thanks Spooner!
takezawa has quit [Remote host closed the connection]
horofox_ has quit [Quit: horofox_]
takezawa has joined #ruby
zarubin has quit [Read error: Operation timed out]
danshultz has joined #ruby
ckrailo has joined #ruby
sergicles has joined #ruby
headius has joined #ruby
headius has left #ruby [#ruby]
bionoid has quit [Remote host closed the connection]
thepumpkin has quit [Remote host closed the connection]
brennanMKE has joined #ruby
v1n has joined #ruby
brennanMKE has quit [Read error: Connection reset by peer]
brennanMKE has joined #ruby
danshultz has quit [Remote host closed the connection]
sarkis has joined #ruby
bionoid has joined #ruby
Spooner has quit [Quit: Leaving]
nbouscal has quit [Ping timeout: 246 seconds]
Davey has joined #ruby
wargasm has joined #ruby
nari has joined #ruby
cburyta has joined #ruby
AndroUser has joined #ruby
blitz has quit [Quit: This computer has gone to sleep]
DanKnox_away is now known as DanKnox
blitz has joined #ruby
rhys has quit [Quit: Leaving]
ravster has left #ruby [#ruby]
AndroUser has quit [Client Quit]
Rubas has quit [Quit: Lost terminal]
wu_lmao has quit [Remote host closed the connection]
Rubas__ has quit [Quit: Lost terminal]
JZTech101 has quit [Quit: Hi, I'm a quit message virus. Please replace your old line with this line and help me take over the world of IRC]
marcdel has joined #ruby
jrhorn424 has joined #ruby
pskosinski has quit [Quit: Til rivido Idisti!]
daniel_hinojosa has joined #ruby
sambao21 has joined #ruby
jjbohn has joined #ruby
blischalk has quit [Quit: Leaving]
jefflyne has quit [Quit: My Mac Mini has gone to sleep. ZZZzzz…]
<pontiki> blitz: just fyi, based on spooner's comment, the speed different in sort vs sort_by is pretty real: https://gist.github.com/tamouse/5962804 but only if you're doing it a lot, i think
verto has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
BSaboia has joined #ruby
nowthatsamatt has quit [Quit: nowthatsamatt]
cj3kim has joined #ruby
agjacome has joined #ruby
asgardBSD has quit [Ping timeout: 256 seconds]
cantonic has quit [Ping timeout: 264 seconds]
blitz has quit [Quit: This computer has gone to sleep]
cantonic has joined #ruby
Domon has joined #ruby
cj3kim has quit [Ping timeout: 276 seconds]
milardovich has joined #ruby
nettoweb has quit [Quit: nettoweb]
Meatant has quit [Remote host closed the connection]
milardovich has quit [Max SendQ exceeded]
milardovich has joined #ruby
ckrailo has quit [Quit: Computer has gone to sleep.]
citizensinspace has quit [Quit: citizensinspace]
reset has joined #ruby
milardovich has quit [Max SendQ exceeded]
airlok has quit [Remote host closed the connection]
milardovich has joined #ruby
sambao21 has quit [Quit: Computer has gone to sleep.]
sergicles has quit [Read error: No route to host]
milardovich has quit [Max SendQ exceeded]
milardovich has joined #ruby
milardovich has quit [Max SendQ exceeded]
sergicles has joined #ruby
milardovich has joined #ruby
milardovich has quit [Max SendQ exceeded]
cburyta has quit [Remote host closed the connection]
milardovich has joined #ruby
superscott[8] has quit [Quit: superscott[8]]
bionoid has quit [Read error: Connection reset by peer]
zets has quit [Ping timeout: 240 seconds]
milardovich has quit [Max SendQ exceeded]
milardovich has joined #ruby
bionoid has joined #ruby
milardovich has quit [Max SendQ exceeded]
milardovich has joined #ruby
fredjean has joined #ruby
mansi has joined #ruby
v1n has quit [Ping timeout: 248 seconds]
milardovich has quit [Max SendQ exceeded]
fredjean has quit [Client Quit]
subbyyy_ has joined #ruby
milardovich has joined #ruby
zets has joined #ruby
sergicles has quit [Read error: Connection reset by peer]
milardovich has quit [Max SendQ exceeded]
milardovich has joined #ruby
bradhe has quit [Remote host closed the connection]
sergicles has joined #ruby
bradhe has joined #ruby
ffranz has quit [Quit: Leaving]
slyv has joined #ruby
slyv has quit [Max SendQ exceeded]
bradhe has quit [Ping timeout: 264 seconds]
Vivekananda has quit [Read error: Operation timed out]
echevemaster has quit [Read error: Connection reset by peer]
echevemaster has joined #ruby
echevemaster has quit [Changing host]
echevemaster has joined #ruby
osvico has quit [Ping timeout: 246 seconds]
adeponte has quit [Remote host closed the connection]
vlad_starkov has joined #ruby
kenneth has quit [Quit: kenneth]
fuhgeddaboudit has joined #ruby
zeropx has quit [Quit: has left the room … Or did he?]
kofno_ has joined #ruby
osvico has joined #ruby
cburyta has joined #ruby
vlad_starkov has quit [Ping timeout: 264 seconds]
lys has quit [Quit: lys]
kasper has quit [Remote host closed the connection]
inimit has joined #ruby
robustus has quit [Ping timeout: 248 seconds]
DanKnox is now known as DanKnox_away
DanKnox_away is now known as DanKnox
robustus has joined #ruby
citizensinspace has joined #ruby
kofno_ has quit [Remote host closed the connection]
raposa has joined #ruby
cmhobbs has joined #ruby
io_syl has joined #ruby
raposa has left #ruby [#ruby]
raposa has joined #ruby
<cmhobbs> i'm building a library that will initially require manual interaction (for oauth verification). what's the most appropriate way to stop and warn a developer when they first call the method that will ask them for more input?
forced_request has quit [Read error: Connection reset by peer]
raposa has left #ruby [#ruby]
<cmhobbs> logging of somekind, i'd imagine?
BSaboia has quit [Ping timeout: 246 seconds]
raposa has joined #ruby
<cmhobbs> seems janky to just throw a puts out there
<cmhobbs> i guess i could just add a script to build a config for the developer, prompting them in the middle
diegoviola has joined #ruby
cj3kim has joined #ruby
NhiemBui has joined #ruby
kofno has joined #ruby
havenwood has joined #ruby
danshultz has joined #ruby
sarkis has quit [Ping timeout: 256 seconds]
<raposa> what would the required action be? like - set an environment variable?
ttt has joined #ruby
Tobarja has joined #ruby
cburyta has quit [Remote host closed the connection]
jefflyne has joined #ruby
danbeck has joined #ruby
arubin has quit [Quit: Textual IRC Client: www.textualapp.com]
danshultz has quit [Ping timeout: 240 seconds]
drejohnson_ has quit [Ping timeout: 264 seconds]
LucidDreamZzZ has joined #ruby
radic_ has joined #ruby
NhiemBui has quit [Quit: irc2go]
bionoid has quit [Remote host closed the connection]
seitensei has joined #ruby
machuga is now known as machuga|away
cofin has quit [Quit: cofin]
nowthatsamatt has joined #ruby
radic__ has quit [Ping timeout: 246 seconds]
kizzx2 has joined #ruby
<citizensinspace> cmhobbs: I don't know if this is a good way, but I've done something like this before..
<citizensinspace> def ask(question)
<citizensinspace> print question
<citizensinspace> return gets.chomp
<citizensinspace> end
_seanc_ has joined #ruby
<raposa> I'm getting a "fork() function is unimplemented" error. on a mac.
jmimi has left #ruby [#ruby]
<raposa> headscratcher.
jkline has joined #ruby
<cmhobbs> citizensinspace, yeah, i guess i could just build a script to do that
<cmhobbs> raposa, visit a url, authorize the application (click a button), then copy the verification code
BrianJ has quit [Quit: ["Textual IRC Client: www.textualapp.com"]]
<cmhobbs> raposa, that code needs to be added to continue the process
<cmhobbs> there's no real manual way to generate that
v0n has joined #ruby
fuhgeddaboudit has quit [Ping timeout: 240 seconds]
wmoxam has joined #ruby
<cmhobbs> but the first time the developer uses the library, it'll have to have a config generated and that requires manual interaction
momomomomo has joined #ruby
citizensinspace has quit [Quit: citizensinspace]
krz has joined #ruby
marcdel has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
Tobarja_laptop has joined #ruby
marcdel has joined #ruby
havenwood has quit [Remote host closed the connection]
mickeyd has joined #ruby
Tobarja_laptop has quit [Client Quit]
fenicks has quit [Remote host closed the connection]
GeissT has joined #ruby
nbouscal has joined #ruby
fwaokda has quit [Ping timeout: 264 seconds]
twoism has joined #ruby
nowthatsamatt has quit [Quit: nowthatsamatt]
nettoweb has joined #ruby
nowthatsamatt has joined #ruby
nowthatsamatt has quit [Client Quit]
reset has quit [Quit: Leaving...]
alvaro_o has quit [Quit: Ex-Chat]
atmosx has quit [Remote host closed the connection]
atmosx has joined #ruby
ntus1017 has joined #ruby
jonahR has quit [Ping timeout: 256 seconds]
Targen has joined #ruby
jjbohn has quit [Quit: Leaving...]
Domon has quit [Remote host closed the connection]
ehaliewicz has quit [Read error: No route to host]
Domon has joined #ruby
io_syl has quit [Ping timeout: 246 seconds]
fuhgeddaboudit has joined #ruby
wesside has joined #ruby
danbeck has quit [Quit: danbeck]
Vivekananda has joined #ruby
krainboltgreene has quit [Ping timeout: 264 seconds]
tommyvyo has joined #ruby
reset has joined #ruby
krainboltgreene has joined #ruby
bradhe has joined #ruby
fredjean has joined #ruby
fredjean has quit [Client Quit]
dhruvasagar has quit [Read error: Operation timed out]
jonahR has joined #ruby
jkline has quit [Quit: jkline]
vlad_starkov has joined #ruby
icco has quit [Ping timeout: 240 seconds]
Gooder has joined #ruby
axeman- has joined #ruby
wmoxam has quit [Ping timeout: 264 seconds]
Opettaja has joined #ruby
bradhe has quit [Ping timeout: 264 seconds]
mansi has quit [Remote host closed the connection]
icco has joined #ruby
jkline has joined #ruby
mansi has joined #ruby
Freeaqingme has quit [Read error: Operation timed out]
Freeaqingme has joined #ruby
blandflakes has quit [Ping timeout: 256 seconds]
vlad_starkov has quit [Ping timeout: 248 seconds]
tommyvyo has quit [Quit:]
Freeaqingme is now known as Guest29006
bradhe has joined #ruby
ssvo has joined #ruby
jorge has joined #ruby
hakunin_ is now known as hakunin
otherj has joined #ruby
haxrbyte has joined #ruby
haxrbyte has quit [Remote host closed the connection]
fredjean has joined #ruby
Bry8Star{T2 has quit [Ping timeout: 240 seconds]
adeponte has joined #ruby
haxrbyte has joined #ruby
mansi has quit [Ping timeout: 246 seconds]
Astralum has quit [Ping timeout: 264 seconds]
fredjean has quit [Client Quit]
axeman- has quit [Remote host closed the connection]
bradhe has quit [Ping timeout: 248 seconds]
bradhe has joined #ruby
fuhgeddaboudit has quit [Ping timeout: 276 seconds]
nlv has joined #ruby
Guga_ has quit [Quit: ~]
adeponte has quit [Ping timeout: 246 seconds]
nlv has quit [Remote host closed the connection]
nowthatsamatt has joined #ruby
tommyvyo has joined #ruby
doug_carmichael has joined #ruby
icco has quit [Ping timeout: 256 seconds]
kasper has joined #ruby
ILoveYou[ has joined #ruby
icco has joined #ruby
eldariof has joined #ruby
Bry8Star{T2 has joined #ruby
hydrozen has joined #ruby
bionoid has joined #ruby
ILoveYou has quit [Ping timeout: 268 seconds]
nowthatsamatt has quit [Client Quit]
kasper has quit [Ping timeout: 246 seconds]
corehook has quit [Ping timeout: 240 seconds]
fuhgeddaboudit has joined #ruby
reset has quit [Quit: Leaving...]
ILoveYou[ has quit [Read error: Connection reset by peer]
ILoveYou has joined #ruby
djbkd has joined #ruby
sambao21 has joined #ruby
cj3kim has quit [Read error: Connection reset by peer]
fredjean has joined #ruby
mahmoudimus has quit [Quit: Computer has gone to sleep.]
Vivekananda has quit [Ping timeout: 246 seconds]
cj3kim has joined #ruby
nettoweb has quit [Quit: nettoweb]
<voglster> newbie question here.. i keep seeing myself write code that looks like this: http://pastebin.com/ziuJgfxq trying to follow DRY.. is there a better way to build an array and return it?
otherj has quit []
io_syl has joined #ruby
<voglster> anyone alive?
<sevenseacat> voglster: sounds like you need map.
fredjean has quit [Client Quit]
<sevenseacat> arr_of_c.map(&:something)
tommyvyo has quit [Quit:]
<voglster> yup exactly what i needed thanks!
icco has quit [Ping timeout: 240 seconds]
<voglster> still not "thinking in ruby" yet...
fuhgeddaboudit has quit [Read error: Operation timed out]
icco has joined #ruby
sleetdrop has joined #ruby
tommyvyo has joined #ruby
rosario has joined #ruby
ILoveYou has quit [Read error: Connection reset by peer]
ILoveYou has joined #ruby
jorge has quit [Remote host closed the connection]
jorge has joined #ruby
browndawg has joined #ruby
danbeck has joined #ruby
kofno has quit [Remote host closed the connection]
ILoveYou has quit [Read error: Connection reset by peer]
danbeck has quit [Client Quit]
_seanc_ has quit [Quit: _seanc_]
Vivekananda has joined #ruby
ILoveYou has joined #ruby
leo_ has joined #ruby
gasbakid has joined #ruby
jorge has quit [Ping timeout: 240 seconds]
brennanMKE has quit [Remote host closed the connection]
ILoveYou has quit [Read error: Connection reset by peer]
momomomomo has quit [Quit: momomomomo]
raposa has quit [Quit: Leaving.]
c0rn has joined #ruby
ILoveYou has joined #ruby
icco has quit [Ping timeout: 252 seconds]
icco has joined #ruby
ILoveYou has quit [Read error: Connection reset by peer]
DanKnox is now known as DanKnox_away
ILoveYou has joined #ruby
cj3kim has quit [Read error: Connection reset by peer]
theRoUS has quit [Ping timeout: 248 seconds]
cj3kim has joined #ruby
superscott[8] has joined #ruby
Mattix has joined #ruby
finges has joined #ruby
fredjean has joined #ruby
ILoveYou has quit [Read error: Connection reset by peer]
adeponte has joined #ruby
ILoveYou has joined #ruby
mahmoudimus has joined #ruby
rosario has quit [Ping timeout: 240 seconds]
fuhgeddaboudit has joined #ruby
hydrozen has quit [Ping timeout: 248 seconds]
axeman- has joined #ruby
elentras has joined #ruby
ILoveYou has quit [Read error: Connection reset by peer]
tjbiddle_ has joined #ruby
Dekade has quit [Ping timeout: 246 seconds]
tjbiddle has quit [Ping timeout: 240 seconds]
tjbiddle_ is now known as tjbiddle
ILoveYou has joined #ruby
corehook has joined #ruby
DanKnox_away is now known as DanKnox
sambao21 has quit [Quit: Computer has gone to sleep.]
Mars^ has quit [Ping timeout: 246 seconds]
mnms has quit [Ping timeout: 268 seconds]
vlad_starkov has joined #ruby
sayan has joined #ruby
cjsarette has quit [Read error: Connection reset by peer]
Nisstyre has quit [Quit: Leaving]
jbueza has quit [Quit: Leaving.]
agjacome has quit [Quit: leaving]
buzzybron has joined #ruby
CaptainJet has quit []
CaptainJet has joined #ruby
vlad_starkov has quit [Ping timeout: 264 seconds]
ehaliewicz has joined #ruby
fuhgeddaboudit has quit [Ping timeout: 248 seconds]
sleetdrop has quit [Quit: Computer has gone to sleep.]
Inside has quit [Ping timeout: 264 seconds]
arya__ has quit [Ping timeout: 248 seconds]
momomomomo has joined #ruby
jbueza has joined #ruby
jbueza has quit [Client Quit]
jonahR has quit [Ping timeout: 240 seconds]
_seanc_ has joined #ruby
<alainus> An exit statement within a begin .. raise .. ensure .. end block, will always go to the ensure block before exiting ?
arya_ has joined #ruby
jonahR has joined #ruby
sindork has joined #ruby
<pontiki> yes
krainboltgreene has quit [Ping timeout: 264 seconds]
dash_ has joined #ruby
kizzx2 has quit [Quit: Leaving.]
banjara has joined #ruby
<alainus> thanks
goodgame has joined #ruby
ILoveYou has quit [Read error: Connection reset by peer]
jonahR has quit [Ping timeout: 264 seconds]
ILoveYou has joined #ruby
Vivekananda has quit [Read error: Operation timed out]
krainboltgreene has joined #ruby
eldariof has quit [Ping timeout: 264 seconds]
Domon has quit [Remote host closed the connection]
Deele has joined #ruby
jkline has quit [Quit: jkline]
daniel_hinojosa has quit [Quit: Leaving.]
wmoxam has joined #ruby
Mars^ has joined #ruby
yacks has quit [Read error: Connection reset by peer]
splittingred has quit [Quit: splittingred]
goodgame has quit [Remote host closed the connection]
Targen has quit [Ping timeout: 246 seconds]
DanKnox is now known as DanKnox_away
nbouscal has quit [Quit: Computer has commenced electric sheep tracking protocol.]
airlok has joined #ruby
syamajala has joined #ruby
wmoxam has quit [Ping timeout: 246 seconds]
syamajala has quit [Client Quit]
airlok has quit [Ping timeout: 276 seconds]
sleetdrop has joined #ruby
sleetdrop has quit [Max SendQ exceeded]
jonahR has joined #ruby
sleetdrop has joined #ruby
fwaokda has joined #ruby
wu_lmao has joined #ruby
citizensinspace has joined #ruby
mickeyd has quit [Ping timeout: 256 seconds]
Targen has joined #ruby
subbyyy_ has quit [Ping timeout: 264 seconds]
chriskk has quit [Quit: chriskk]
ILoveYou has quit [Read error: Connection reset by peer]
subbyyy_ has joined #ruby
yacks has joined #ruby
DrShoggoth has joined #ruby
dhruvasagar has joined #ruby
ILoveYou has joined #ruby
darth_chatri has joined #ruby
doug_carmichael has left #ruby ["Textual IRC Client: www.textualapp.com"]
leo_ has quit [Quit: Ex-Chat]
Bosox20051 has quit [Remote host closed the connection]
KTMBoID has quit [Remote host closed the connection]
locriani has joined #ruby
wudofyr___ has quit [Ping timeout: 264 seconds]
ILoveYou has quit [Read error: Connection reset by peer]
tonini has joined #ruby
gildo_ has quit [Ping timeout: 264 seconds]
Norrin has quit [Ping timeout: 260 seconds]
wookiehangover has quit [Ping timeout: 256 seconds]
ILoveYou has joined #ruby
yellow5 has quit [Ping timeout: 268 seconds]
kenneth has joined #ruby
momomomomo has quit [Quit: momomomomo]
Norrin has joined #ruby
yellow5 has joined #ruby
kizzx2 has joined #ruby
cha1tanya has joined #ruby
cha1tanya has joined #ruby
cha1tanya has quit [Changing host]
ILoveYou has quit [Read error: Connection reset by peer]
ILoveYou has joined #ruby
browndawg has quit [Read error: Operation timed out]
subbyyy_ has quit [Ping timeout: 276 seconds]
vlad_starkov has joined #ruby
ner0x has quit [Quit: Leaving]
wookiehangover has joined #ruby
Davey has quit [Quit: Computer has gone to sleep.]
wudofyr___ has joined #ruby
anay has joined #ruby
twoism has quit [Remote host closed the connection]
cads has quit [Read error: Operation timed out]
Kruppe has quit [Remote host closed the connection]
r0bgleeson has quit [Quit: WeeChat 0.3.8]
axeman- has quit [Remote host closed the connection]
axeman- has joined #ruby
vlad_starkov has quit [Ping timeout: 264 seconds]
rlb3 has quit [Ping timeout: 246 seconds]
filipe_ has joined #ruby
mnms has joined #ruby
DanKnox_away is now known as DanKnox
filipe has quit [Ping timeout: 246 seconds]
jefflyne has quit [Quit: My Mac Mini has gone to sleep. ZZZzzz…]
axeman- has quit [Remote host closed the connection]
<Paradox> any warnings against using em-synchrony for a new project?
<Paradox> (threaded eventmachine)
axeman- has joined #ruby
cads has joined #ruby
tvw has joined #ruby
ILoveYou has quit [Read error: Connection reset by peer]
Mars^ has quit [Ping timeout: 246 seconds]
ILoveYou has joined #ruby
Vivekananda has joined #ruby
inimit has quit [Quit: inimit]
cmhobbs has quit [Ping timeout: 246 seconds]
Domon has joined #ruby
nomenkun has joined #ruby
druonysus has joined #ruby
druonysus has joined #ruby
druonysus has quit [Changing host]
danslo has quit [Quit: danslo]
nomenkun has quit [Remote host closed the connection]
MrZYX is now known as MrZYX|off
wallerdev has quit [Quit: wallerdev]
ILoveYou has quit [Read error: Connection reset by peer]
wargasm has quit [Read error: Connection reset by peer]
djbkd has quit [Quit: Leaving]
ILoveYou has joined #ruby
jrhorn424 has quit [Quit: Textual IRC Client: www.textualapp.com]
browndawg has joined #ruby
twoism has joined #ruby
tagrudev has joined #ruby
<bnagy> what's the project?
<bnagy> I looked at synchrony, but ended up just threadpooling
codecop has joined #ruby
DanKnox is now known as DanKnox_away
bionoid has quit [Remote host closed the connection]
CaptainJet_ has joined #ruby
CaptainJet has quit [Disconnected by services]
airlok has joined #ruby
tylersmith has quit [Remote host closed the connection]
Targen has quit [Ping timeout: 240 seconds]
Es0teric has quit [Quit: Computer has gone to sleep.]
c0rn has quit [Quit: Computer has gone to sleep.]
ananthakumaran has joined #ruby
swordsmanz has joined #ruby
airlok has quit [Ping timeout: 264 seconds]
vlad_starkov has joined #ruby
Mars^ has joined #ruby
ILoveYou has quit [Read error: Connection reset by peer]
poseid has joined #ruby
ILoveYou has joined #ruby
<buzzybron> what's the best way to handle bulk inserts/updates in ruby? i'm doing a batch app, using sql statements, no ARs but i am concern with the amount of IDs i am loading, reading it from a file and loading to append it to sql statement, is there a better more efficient way?
<bnagy> doesn't sound like anything to do with ruby
<bnagy> it's going to depend on your DB and the ruby code driving it
saintcajetan has quit [Remote host closed the connection]
<bnagy> all the ones I have worked with support a bulk insert / set whatever
swordsmanz has quit [Quit: swordsmanz]
swordsmanz has joined #ruby
rezzack has quit [Quit: Leaving.]
JohnBat26 has joined #ruby
diegoviola has quit [Quit: WeeChat 0.4.1]
anay has quit [Remote host closed the connection]
nari has quit [Ping timeout: 245 seconds]
<pontiki> buzzybron: the best way to import a ton of data at once is with a import sql statement
<pontiki> the LOAD DATA statement specifically
<pontiki> and if you don't mind using a cli tool, there is mysqlimport
ILoveYou[ has joined #ruby
saintcajetan has joined #ruby
<buzzybron> hmm i'm actually using postgres
axeman- has quit [Remote host closed the connection]
anay has joined #ruby
<pontiki> i am sure pg has something similar
axeman- has joined #ruby
codeplay has joined #ruby
axeman- has quit [Remote host closed the connection]
matematikaadit has joined #ruby
kevinykchan has quit [Quit: Computer has gone to sleep.]
threesome has joined #ruby
ILoveYou has quit [Ping timeout: 276 seconds]
poseid has quit [Quit: poseid]
<buzzybron> pontiki : can you describe what you are saying? for the load data part, how does it work?
atno has quit [Ping timeout: 264 seconds]
axeman- has joined #ruby
axeman- has quit [Remote host closed the connection]
romockee has joined #ruby
<pontiki> can i jut spoint you at the documentation?
<pontiki> load data take data from a file and loads into a table
<buzzybron> pontiki: ah thanks! appreciate
noop has joined #ruby
<pontiki> mysqlimport is cli proggy the just implements load data
<pontiki> load data is ace at taking csv files and sucking them in
amh345 has joined #ruby
anay_ has joined #ruby
anay has quit [Read error: Connection reset by peer]
gasbakid has quit [Read error: Connection reset by peer]
<buzzybron> nice thanks! just about right for my tasks i thinks lol i'll go read up on what postgres has to offer
<amh345> I'm using CSV.open to write my csv file. works fine. but i'd like to encrypt it using open3 (Open3.popen3 "gpg….) is there a way to combine these two?
vlad_starkov has quit [Read error: Connection reset by peer]
nari has joined #ruby
vlad_starkov has joined #ruby
sayan has quit [Ping timeout: 264 seconds]
<amh345> i've done this elsewhere. but instead of using CSV I'm just writing it to an array and then using stdin.write some_array
<pontiki> um
<pontiki> yeah...
<pontiki> hmm
_seanc_ has quit [Quit: _seanc_]
<amh345> i understand they are very different things, as the options for CSV don't include something like this.
<amh345> so, I'm just curious.
<pontiki> yeah, you can us an IO object in CSV.open
<pontiki> which Open3 should deliver up for it's stdin
<pontiki> idk, i haven't done this, but i'm pretty sure it will work
CaptainJet_ has quit []
rosario has joined #ruby
<pontiki> so i think what you do is call Open3.popen3 first, and have it yield up the stdin, stdout, and stderr, and then call CSV.open with stdin to write to it
superscott[8] has quit [Quit: superscott[8]]
<amh345> hrm. just checked the docs. csv = CSV.new(io, options)
<pontiki> CSV.open takes an io as well
<amh345> I'm trying to figure out if i should figure this out.. or just do it the other way i know. heh. so tired.
<amh345> thanks for pointing me in the right direction
<pontiki> well, there's an easy way
<pontiki> two step operation, right?
<amh345> yeah. i could two step.
<pontiki> do what works first
<pontiki> then refactor
<amh345> but i prefer to just not have it written as plain txt at all.
<amh345> written to disk, i should say.
<amh345> if that's what you're referring to with 2 step
<alainus> I have a file with data that has this format: Value 1 : Value2 : Value3 \n
<alainus> Value4 : Value5 : Value6 \n
<alainus> etc.
anay_ has quit [Remote host closed the connection]
<alainus> What's the best function to read and write it?
ILoveYou[ has quit [Ping timeout: 276 seconds]
anay has joined #ruby
<amh345> csv?
<amh345> not a lot of info.
<amh345> is that literally how you want it to appear?
Mars^ has quit [Ping timeout: 240 seconds]
anay has quit [Remote host closed the connection]
cantonic has quit [Quit: cantonic]
<pontiki> yeah, amh345 -- write to disk with CSV.open, then gpg that with a system call
<pontiki> if you have time to investigate though
dodosan has quit [Remote host closed the connection]
<amh345> i see this. CSV { |csv_out| csv_out << %w{my data here} } # to $stdout in the docs.
nomenkun has joined #ruby
hamed_r has joined #ruby
sergicles has quit [Read error: Connection reset by peer]
<pontiki> the other option seems awesomer :)
ayaz has joined #ruby
<pontiki> shouldn't take much to see if it works, really
anay has joined #ruby
huoxito has quit [Quit: Leaving]
<amh345> yeah %w{} always messes with my syntax colours.
<amh345> i think i might be blind. but I'm not seeing anything in the docs for CSV.open and io
sergicles has joined #ruby
anay has quit [Read error: Connection reset by peer]
Opettaja has quit [Remote host closed the connection]
<pontiki> hmm
<pontiki> no, you're right
<pontiki> i says filename specifically
vlad_starkov has quit [Ping timeout: 240 seconds]
<pontiki> so , yeah, use CSV.new instead
twoism has quit [Remote host closed the connection]
apeiros has joined #ruby
twoism has joined #ruby
ssvo has quit [Ping timeout: 264 seconds]
anay has joined #ruby
poseid has joined #ruby
<amh345> this looks like it's a substantial rewrite.. if I'm reading this correctly.
Mon_Ouie has joined #ruby
krainbol_ has joined #ruby
CaptainJet has joined #ruby
<amh345> unless I'm nuts. i have to pass all the data to csv.new and i can no longer do things like csv << headers << csv_content etc
citizensinspace has quit [Quit: citizensinspace]
<amh345> oh. wait. hm
krainboltgreene has quit [Ping timeout: 276 seconds]
ayonix has quit [Quit: cya]
ayonix has joined #ruby
corehook has quit [Read error: Connection reset by peer]
milardovich has quit [Quit: Leaving]
postmodern has joined #ruby
obs has joined #ruby
pranny has joined #ruby
milardovich has joined #ruby
Gooder` has joined #ruby
saintcajetan has quit [Ping timeout: 240 seconds]
Rokko_11 has joined #ruby
airlok has joined #ruby
Rokko_11 has left #ruby [#ruby]
twoism has quit [Ping timeout: 240 seconds]
Gooder has quit [Ping timeout: 240 seconds]
andikr has joined #ruby
browndawg has quit [Ping timeout: 264 seconds]
<pontiki> i think you can still
zodiak has quit [Ping timeout: 248 seconds]
airlok has quit [Ping timeout: 276 seconds]
<pontiki> it doesn't look like CSV.new takes a block thouh
<pontiki> so you need to ensure it get closed properly
<apeiros> you can use CSV with a block. maybe not CSV.new, though
eldariof has joined #ruby
threesome has quit [Ping timeout: 248 seconds]
tylersmith has joined #ruby
tjbiddle has quit [Quit: tjbiddle]
madb055 has quit [Ping timeout: 264 seconds]
<pontiki> probably a better way to do it
mrfoo has joined #ruby
blaxter_ has joined #ruby
rdark has joined #ruby
tylersmith has quit [Ping timeout: 264 seconds]
dodosan has joined #ruby
ephemerian has joined #ruby
CaptainJet has quit [Ping timeout: 240 seconds]
nomenkun has quit [Remote host closed the connection]
persand has joined #ruby
relix has joined #ruby
<Paradox> bnagy, reddit bot
<Paradox> sorry for the delay
<Paradox> had to put out the cat
<Paradox> i have a dumb proceedural one
ffio has joined #ruby
mickeyd has joined #ruby
<Paradox> that i wrote one evening because i was fed up with spammers
<Paradox> and its grown too far
<Paradox> so i need to redo it properly
codecop has quit [Remote host closed the connection]
poseid has quit [Quit: poseid]
Iszak has joined #ruby
<apeiros> pontiki: `CSV.open("path/to/file.csv", "wb") do |csv|` straight from the `ri CSV` docs.
codecop has joined #ruby
fwaokda has quit [Ping timeout: 240 seconds]
<apeiros> hm, you want to write to an IO, not a file, I see
<apeiros> should work with the shortcut interface, though: `CSV($stderr) { |csv_err| csv_err << %w{my data here} }` from the same docs
adeponte has quit [Remote host closed the connection]
samuel02 has joined #ruby
<Paradox> bnagy, mainly i want threading because i want to have a pool, queue, and not have to worry about blocking
<Paradox> because reddit has api limits
<Paradox> so i figured pool that does work on results from requests, a queue that handles outgoing requests, and a periodic timer every 2 seconds that pops from the outgoing queue
<pontiki> apeiros: that writes to the file
m4rcu5 has joined #ruby
<apeiros> pontiki: see the second paste
<apeiros> $stderr is an IO, so it should work for any IO.
<pontiki> interestingg
vlad_starkov has joined #ruby
robbyoconnor has quit [Read error: Connection reset by peer]
<pontiki> yyes, that does it
pootler has quit [Ping timeout: 246 seconds]
<pontiki> amh345: https://gist.github.com/tamouse/5964037 as suggested by apeiros
sayan has joined #ruby
jprovazn has joined #ruby
peter has joined #ruby
<peter> hi
<peter> to all
peter is now known as Guest51446
ElderFain_ has joined #ruby
kpmjf has quit [Quit: leaving]
lele has quit [Ping timeout: 256 seconds]
sergicles has quit [Quit: sergicles]
lele has joined #ruby
<Guest51446> how to use devise can can for two models
banjara has quit [Quit: Leaving.]
<popl> Well you'd need a couple racy costumes.
<popl> Some music
daidoji70 has quit [Ping timeout: 264 seconds]
threesome has joined #ruby
<pontiki> crikey, someon s asking that same question on the mailing list
ElderFain has quit [Ping timeout: 260 seconds]
eldariof has quit [Ping timeout: 256 seconds]
<pontiki> don't
tonini has quit [Remote host closed the connection]
<pontiki> why do you need two completely different tables for authentication and authorization
jefflyne has joined #ruby
<pontiki> you're completely misunderstanding teh point of roles
<pontiki> which is exactly what cancan gives you
<pontiki> and it would be awfully hard for me to think of a reason to make users have completely different means of authorizing based on their type
matematikaadit has quit [Quit: Leaving]
<pontiki> sorry, no, not means of
leonid__ has joined #ruby
<pontiki> needing to be segregated
<pontiki> rethink your models
saintcajetan has joined #ruby
enherit has joined #ruby
vlad_starkov has quit [Remote host closed the connection]
robbyoconnor has joined #ruby
<Guest51446> @pontiki i have two tables emp(has 6 fields) and client(has 12 fields)
<Guest51446> how can i signin both of them
<pontiki> no
<Guest51446> either in single sign in or different
<pontiki> i'm not answering again
tonini has joined #ruby
<Guest51446> can u tell me about roles, i dont know how to use them
<pontiki> then why are you using CanCan at all?
druonysus has quit [Quit: Konversation terminated!]
<Guest51446> i'm new to rails
<pontiki> then go read
poseid has joined #ruby
popl has quit [Quit: We must make an idol of our fear, and call it God.]
<pontiki> the answers you seek cannot be had in one or two lines in an email or an irc convo
<pontiki> they are not simple
druonysus has joined #ruby
druonysus has quit [Changing host]
druonysus has joined #ruby
timonv has joined #ruby
pyrac has joined #ruby
marcdel has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
relix_ has joined #ruby
relix has quit [Read error: Connection reset by peer]
yashshah has joined #ruby
ybart has joined #ruby
timonv has quit [Ping timeout: 256 seconds]
Akuma has joined #ruby
marcgg has joined #ruby
<Akuma> hello, I'm having some issues installing gems on ubuntu 13.04 after installing ruby 2.0.0 with rvm
<Akuma> I'm trying to install rails
<krz> given #<URI::HTTPS:0x007ffabd74c268 URL:https://foobar.s3.amazonaws.com/uploads/users/160355/videos/1074/caqu_youtube.mp4?AWSAccessKeyId=AKOAJXDP153ZMQ7QVLUR&Expires=1373445713&Signature=AT4WsU7RQ7YcHdV65v3dpE9y%2B6c%3D> how do i get the URL part?
<amh345> oh wow. i was getting ready for bed. checked irc and saw your post pontiki . this is awesome. thank you for taking the time to look at it.
<Akuma> regular expressions
<sevenseacat> sudo for gems? really? :(
<pontiki> did you you install rvm at the system level, akuma?
<Akuma> it wasn't installing otherwise
<Akuma> no
<Akuma> user level
<krz> Akuma: was that for me?
<Akuma> krz: yes, regular expressions would help you getting the URK
<Akuma> URL
<pontiki> Akuma: do me a favour, go over to #rvm and talk to the folks over there; they're interested in the problems folks are having
<pontiki> (really)
<Guest51446> @ pontiki please help me in this regard just take a sample code in text where to add which part,please send me a text mail to hkrk123@gmail.com
<pontiki> no, Guest51446
<sevenseacat> lol
<Guest51446> let me clear yar
<sevenseacat> its been a while since i've seen a literal 'send me the codez'
marcgg_ has quit [Ping timeout: 264 seconds]
<krz> Akuma: what type does this belong to? http://docs.aws.amazon.com/AWSRubySDK/latest/AWS/S3/S3Object.html#url_for-instance_method just says (URI::HTTP, URI::HTTPS)
<Akuma> they don't seem too responsive in #rvm, I thought I'd try my chances here
<krz> it doesn't look like an array type
<Akuma> it's a string
<krz> i don't think so
<krz> i can't do a split on it
<krz> s3_interface.buckets[bucket_name].objects[encoded_file_key].url_for(:read, :expires => 5.minutes.from_now).split(' ') returns NoMethodError: undefined method `split' for #<URI::HTTPS:0x007ffaba892148>
<pontiki> that's correct
<pontiki> if you want a string out of a URI object, append .to_s
<pontiki> if there is actually any spaces in it though, i'll be greatly surprised
<apeiros> indeed, since it'd be an invalid url :)
<amh345> apeiros: thank you for the snippet.
<amh345> i reading back in the condo.
<apeiros> I provided a schnippet?
<amh345> well, from the docs.
<pontiki> you prived the inspiration if nothing else
<pontiki> provided
timonv has joined #ruby
ntus1017 has quit [Remote host closed the connection]
<apeiros> ok, you're welcome, I guess :D
atno has joined #ruby
<apeiros> ah, you mean the snippet by pontiki? well, thanks goes to him I'd say ;-)
<amh345> just take the friggin thank you ;)
<apeiros> lol
<apeiros> sure, sure. taken :-p
airlok has joined #ruby
yashshah has quit [Ping timeout: 264 seconds]
niceguyjames has joined #ruby
maxmanders has joined #ruby
Skelz0r has quit [Ping timeout: 256 seconds]
bionoid has joined #ruby
fphilipe has joined #ruby
philipe1 has joined #ruby
filipe_ has quit [Ping timeout: 264 seconds]
sergicles has joined #ruby
airlok has quit [Ping timeout: 264 seconds]
KRF_ has joined #ruby
jbpros has joined #ruby
zarubin has joined #ruby
DrCode has quit [Ping timeout: 240 seconds]
klaas has quit [Read error: Connection reset by peer]
klaas_ has joined #ruby
_br_ has quit [Ping timeout: 264 seconds]
atmosx has quit [Ping timeout: 240 seconds]
end_guy has quit [Ping timeout: 240 seconds]
Bry8Star{T2 has quit [Ping timeout: 240 seconds]
Kabaka has quit [Ping timeout: 240 seconds]
KRF has quit [Read error: Connection reset by peer]
telling has quit [Ping timeout: 264 seconds]
ccooke has quit [Ping timeout: 264 seconds]
Killerkeksdose_ has quit [Ping timeout: 264 seconds]
LucidDreamZzZ has quit [Ping timeout: 240 seconds]
telling has joined #ruby
telling has joined #ruby
telling has quit [Changing host]
Killerkeksdose has joined #ruby
ccooke_ has joined #ruby
goodgame has joined #ruby
<amh345> apeiros, pontiki. you samples worked with my encryption.
<amh345> your*
<pontiki> make sure it works the other way too
<amh345> it did :)
<amh345> first thing i checked.
<amh345> well, second.
ybart has quit [Ping timeout: 248 seconds]
<pontiki> one-way encryption is pretty secure tho....
<amh345> first would be the file is there.
end_guy has joined #ruby
<amh345> one way would be ideal.
Skelz0r has joined #ruby
<pontiki> almost as good as WOM
<amh345> unfortunately i did to read it again.
<amh345> need*
<amh345> ok. I'm falling asleep.
_br_ has joined #ruby
<amh345> I'm off. thanks guys
v0n has quit [Ping timeout: 276 seconds]
jarray52 has quit [Quit: Leaving.]
browndawg has joined #ruby
osvico has quit [Ping timeout: 240 seconds]
<Guest51446> hi can anyone plz let me know about can can roles belongs two tables
KazW has joined #ruby
Inside has joined #ruby
<buzzybron> what is rake used for and how can i use it for my own project?
jastix has joined #ruby
<pontiki> buzzybron: are you familiar with the unix make utility?
<buzzybron> heard of but i've never used it
<pontiki> it's similar, intended to collect commonly (or not so commanly) performed tasks
<pontiki> you can write your own tasks
<buzzybron> can you give me an example?
<buzzybron> like what kind of tasks in ruby?
<pontiki> don't you alreayd have rake files in front of you?
<buzzybron> hmm i am following zed shaw's tutorial, written some ruby automation utility apps and now i'm at rake
<buzzybron> lol
<buzzybron> so do you have rakes of your own?
<pontiki> common ones are to run database migrations, run tests
<buzzybron> oooh cool
<pontiki> i don't know this tutorial
tatsuya_o has joined #ruby
browndawg has quit [Ping timeout: 264 seconds]
bionoid has quit [Remote host closed the connection]
filipe_ has joined #ruby
julweber_ has quit [Remote host closed the connection]
<Guest51446> @pontiki let me know dude
<Guest51446> i am little bit confuse about devise can can
maxmanders has quit [Quit: Textual IRC Client: www.textualapp.com]
<pontiki> Guest51446: how many ways can i say "no" until you get it?
<pontiki> you need to study
<pontiki> no easy answers
<pontiki> no free code that you won't understand
<pontiki> no doing your work for you
<pontiki> unless you wish to pay me
jorge has joined #ruby
<pontiki> my hourly rate is $120/hr
<epitron> problem: i need to extract some bzip2 data from within a file, then pipe it to bunzip2 in ruby, then read its output (preferably straeming). unfortunately, i can't manage to make it work with popen or open3
byprdct has joined #ruby
<bnagy> pontiki: it's zshaw's 'the hard way' series ruby.learncodethehardway.com or something similar
vigintas has joined #ruby
<pontiki> epitron: would one of the pipline commands me better than popen?
<epitron> if i try writing the data to the bunzip2 process' standard input, bunzip2 receives the data, decompresses it, fills up its output buffer, then just stops
<epitron> pontiki: pipeline commands!
<epitron> that sounds like what i want :)
<pontiki> same package, Open3
end_guy has quit [Remote host closed the connection]
statarb3 has joined #ruby
statarb3 has joined #ruby
<Guest51446> @ how can you get the pay
<epitron> pontiki: hmm... all i actually need is to be able to let ruby write data into bunzip2, then read its output
<epitron> this seems to be for chaining commands
<epitron> neat, nonetheless :)
<pontiki> hmm
<epitron> maybe i want capture2
<pontiki> maybe?
<pontiki> i'm really actually unclear
<pontiki> bunzip2 | ruby myfilter ?
Maoko has joined #ruby
<pontiki> do you need to do it all from inside ruby?
<epitron> file.seek(weird offset); bz2_data = file.read(some amount)
<pontiki> or just create a filter?
<Maoko> Hmm. How can I get a new line using render?
DaniG2k has joined #ruby
<pontiki> oh
<epitron> popen("bunzip2 -c") { |i| i.write bz2_data }
MrZYX|off is now known as MrZYX
bakingbread has quit [Ping timeout: 264 seconds]
<Maoko> *using return
<epitron> capture2 looks good
tatsuya_o has quit [Ping timeout: 240 seconds]
<pontiki> ok
TIJ has joined #ruby
khushildep has joined #ruby
<bnagy> epitron: you might find it easier to understand if you use open3
<pontiki> does that work, epitron ? you can extract a segment from the middle of a compressed file?
nnww has quit [Ping timeout: 240 seconds]
<pontiki> capture2 is part of the open3 lib
maxmanders has joined #ruby
<waxjar> ruby extract_stuff.rb | bunzip2 and write bz2_data to STDOUT instead of to i ?
<bnagy> like you do Open3.popen3(something) {|s_in, s_out, s_err| do stuff
marr has joined #ruby
maxmanders has quit [Client Quit]
nnww has joined #ruby
<epitron> pontiki: it works because that's how the file is structured :)
<epitron> it's a pile of bz2's smashed together
<pontiki> s_out, st = Open3.capture2(cmd)
<pontiki> ah, ok :)
maxmanders has joined #ruby
<epitron> only downside here is that i'd like a streaming IO as the output
klaas_ is now known as klaas
<epitron> i guess it doesn't matter that much
timonv has quit [Remote host closed the connection]
<pontiki> that's where the popen's come in
<pontiki> well
<pontiki> yielding a block anywhay
poseid_ has joined #ruby
<epitron> bnagy: so the problem with that was that if i did "s_in.write bz2_data", write would never return, since bunzip2 would clog up its output buffer and block before it finished processing all of its standard input
monkegjinni has joined #ruby
<epitron> i guess i could use write_nonblock
bakingbread has joined #ruby
shaunbaker has joined #ruby
<epitron> i'd like to avoid having to do some crazy shenanigans to just pump data into a program :)
<epitron> maybe i should do a stream_copy from a StringIO
<bnagy> you can stream or thread
<epitron> is that how you'd do a stream?
<pontiki> actually, yeah, i'd go to a streamIO
<epitron> StringIO, you mean?
adeponte has joined #ruby
jorge has quit [Remote host closed the connection]
invsblduck is now known as invsblduck_zzz
jorge has joined #ruby
<epitron> oh nice!
<epitron> copy_stream has offset and length params
<bnagy> epitron: https://gist.github.com/5964423 you might be able to get some cut / paste from that
<bnagy> it's some streaming s3 stuff I wrote a while ago
<epitron> yikes :)
poseid_ has quit [Ping timeout: 264 seconds]
<epitron> how does arcfile work?
jefflyne has quit [Quit: My Mac Mini has gone to sleep. ZZZzzz…]
<epitron> you're passing it the stdout
<epitron> then you enumerate it
<epitron> is it a thread too?
cj3kim has quit [Remote host closed the connection]
tatsuya_o has joined #ruby
<bnagy> so those handle.reads and stuff are blocking
<bnagy> and they get fed by the gunzip output
<bnagy> so it's all nice and streamy
lusory_ has quit [Quit: leaving]
adeponte has quit [Ping timeout: 246 seconds]
jorge has quit [Ping timeout: 248 seconds]
<epitron> dear lord
cj3kim has joined #ruby
end_guy has joined #ruby
bradhe has quit [Remote host closed the connection]
cj3kim has quit [Remote host closed the connection]
ccooke_ is now known as ccooke
bradhe has joined #ruby
DrCode has joined #ruby
flaritycat has joined #ruby
<epitron> ah, i figured out my problem
<epitron> i wasn't closing stdin
<pontiki> ah
<bnagy> yeah you have to close it when you're done :)
<epitron> whee!
<epitron> today i learned that copy_stream takes offset and length, and that Open3 has pipeline and capture
<epitron> good day
camilasan has joined #ruby
elaptics`away is now known as elaptics
noname001 has joined #ruby
Inside has quit [Read error: Connection reset by peer]
bubblehead has quit [Read error: Connection reset by peer]
bubblehead has joined #ruby
Spooner has joined #ruby
milardovich has quit [Quit: Leaving]
binw has quit [Ping timeout: 248 seconds]
bradhe has quit [Ping timeout: 246 seconds]
<pontiki> and to close stdin when you're done with it :)
julweber has joined #ruby
<Guest51446> i need devise can can roles using two models
browndawg has joined #ruby
<Guest51446> suggest me the resources
goshakkk has joined #ruby
vlad_starkov has joined #ruby
bubblehead has quit [Read error: Connection reset by peer]
bubblehead has joined #ruby
maxmanders has quit [Quit: Textual IRC Client: www.textualapp.com]
arya_ has quit [Ping timeout: 248 seconds]
maxmanders has joined #ruby
nomenkun has joined #ruby
_veer has quit [Read error: Connection reset by peer]
ferdev has joined #ruby
bubblehead has quit [Read error: Connection reset by peer]
maxmanders has quit [Client Quit]
thepumpkin has joined #ruby
bubblehead has joined #ruby
maxmanders has joined #ruby
goshakkk has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Zai00 has joined #ruby
Kabaka has joined #ruby
timonv has joined #ruby
flaritycat has quit [Remote host closed the connection]
<pontiki> nini all
atmosx has joined #ruby
<MrZYX> Guest51446: your brain
gildo_ has joined #ruby
Vivekananda has quit [Read error: Operation timed out]
ferdev has quit [Ping timeout: 246 seconds]
goshakkk has joined #ruby
krainbol_ has quit [Quit: krainbol_]
<epitron> Guest51446: #rubyonrails is a good resource
<bnagy> or #anywherebuthere
bubblehead has quit [Read error: Connection reset by peer]
<MrZYX> bnagy: but that's mean for #anywherebuthere :(
io_syl has quit [Ping timeout: 264 seconds]
bubblehead has joined #ruby
banjara has joined #ruby
Matip has joined #ruby
lkba has quit [Ping timeout: 264 seconds]
io_syl has joined #ruby
monkegjinni has quit [Remote host closed the connection]
ferdev has joined #ruby
Kabaka has quit [Excess Flood]
tbn has joined #ruby
senayar has joined #ruby
Kabaka has joined #ruby
Mattix has quit [Ping timeout: 248 seconds]
cabotto has joined #ruby
enherit has quit [Ping timeout: 264 seconds]
Iszak has quit [Quit: Computer has gone to sleep.]
dodosan has quit [Remote host closed the connection]
cabotto has quit [Quit: cabotto]
fixl has joined #ruby
catphish has joined #ruby
<catphish> is it possible to have String#encode recover from encoding errors and continue with the rest of the string? i am already using :invalid => :replace, :undefined => :replace but invalid sequences abort the whole process
goshakkk has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
bradhe has joined #ruby
pwnfactory has joined #ruby
<MrZYX> it's :undef
<MrZYX> and maybe try setting :fallback too
MindSpark has joined #ruby
pyrac has quit [Quit: pyrac]
trepidaciousMBR has joined #ruby
<catphish> MrZYX: using :undef instead of :undefined fixed the problem! thanks!
<catphish> either i pasted a bad example or i'm just a moron, thanks :)
chxane has quit [Quit: Leaving]
dEPy has joined #ruby
ferdev has quit [Ping timeout: 264 seconds]
pyrac has joined #ruby
jmimi has joined #ruby
BizarreCake has joined #ruby
byprdct has quit [Max SendQ exceeded]
Maoko has quit [Read error: Connection reset by peer]
ferdev has joined #ruby
persand has quit [Quit: persand]
bradhe has quit [Ping timeout: 256 seconds]
persand has joined #ruby
gstamp has quit [Quit: Computer has gone to sleep.]
<Guest51446> is there any gem for automatic javascript in rails4
Giorgio has joined #ruby
<sevenseacat> automatic javascript? *raises eyebrow*
<MrZYX> ok, lets have some fun
<MrZYX> Guest51446: what is automatic javascript?
<sevenseacat> rails g automatic_javascript
<Guest51446> means with out reloading the entire page i need to load the body of the page
Spami has joined #ruby
Spami has joined #ruby
Spami has quit [Changing host]
<Guest51446> for that we are using external javascript
<sevenseacat> see: turbolinks
<Guest51446> but in rails 4 internal js is available
fwaokda has joined #ruby
sayan has quit [Quit: Leaving]
emergion has joined #ruby
mickeyd has quit [Ping timeout: 256 seconds]
Guest60400 has quit [Quit: leaving]
Hien has joined #ruby
<epitron> Guest51446: you're in the wrong place
<epitron> suggest you #rubyonrails
ffio has quit [Ping timeout: 264 seconds]
ffio has joined #ruby
Astralum has joined #ruby
atmosx has quit [Remote host closed the connection]
chxane has joined #ruby
atmosx has joined #ruby
sevenseacat has quit [Remote host closed the connection]
jorge has joined #ruby
bradhe has joined #ruby
emergion has quit [Quit: Computer has gone to sleep.]
monkegjinni has joined #ruby
blaxter_ is now known as blaxter
chichou has joined #ruby
gyre007 has joined #ruby
YaNakilon has joined #ruby
<Guest51446> i need devise login for two models one model has 6 fields and otherone has 12 fields
jorge has quit [Ping timeout: 264 seconds]
<MrZYX> Guest51446: sure, go ahead and implement!
bradhe has quit [Ping timeout: 246 seconds]
<Guest51446> how to sign in them by using two devises or any way
Gooder`` has joined #ruby
niklasb has joined #ruby
<MrZYX> did you make any research at all about that before coming here into the wrong channel for the question and asking about that?
lewix has joined #ruby
<Guest51446> i did some are telling use can can
<Guest51446> role
<Guest51446> s
agjacome has joined #ruby
emergion has joined #ruby
bubblehead has quit [Read error: Connection reset by peer]
bubblehead has joined #ruby
nari has quit [Ping timeout: 245 seconds]
<Guest51446> i want the good solution
Meatant has joined #ruby
Gooder` has quit [Ping timeout: 264 seconds]
<MrZYX> the good solution is the one that fits your needs best
bubblehead has quit [Read error: Connection reset by peer]
catphish has left #ruby ["Leaving"]
<MrZYX> there isn't _the_ solution to a problem
bubblehead has joined #ruby
lusory has joined #ruby
cj3kim has joined #ruby
didlix_ is now known as didlix
chichou has quit [Remote host closed the connection]
FDj_ has joined #ruby
sayan has joined #ruby
Guest51446 has left #ruby [#ruby]
m4dnificent has joined #ruby
fryguy- has joined #ruby
Iszak has joined #ruby
[Fudge] has quit [Ping timeout: 246 seconds]
jaredrhine_ has joined #ruby
airlok has joined #ruby
weeb1e_ has joined #ruby
phite has joined #ruby
Domon has quit [Ping timeout: 248 seconds]
postmodern has quit [Quit: Leaving]
Derander_ has joined #ruby
broquain1 has joined #ruby
brendan- has joined #ruby
nick_h_ has joined #ruby
mediko_ has joined #ruby
error404 has joined #ruby
xsdg_ has joined #ruby
rtl has joined #ruby
mosez_ has joined #ruby
framling_ has joined #ruby
asuka_ has joined #ruby
queequeg2 has joined #ruby
wereHams1er has joined #ruby
awwaiid has joined #ruby
firebury has joined #ruby
vaicine_ has joined #ruby
tdammers_ has joined #ruby
bklang_ has joined #ruby
ekarlso- has joined #ruby
dhoss_ has joined #ruby
jarin has quit [Quit: Textual IRC Client: http://www.textualapp.com/]
Domon has joined #ruby
hamed_r has quit [Quit: Leaving]
cj3kim has quit [Ping timeout: 246 seconds]
airlok has quit [Ping timeout: 264 seconds]
jibi has joined #ruby
Jalada_ has joined #ruby
Jalada_ has quit [Changing host]
Jalada_ has joined #ruby
paissad_ has joined #ruby
willrax_ has joined #ruby
Nakilon has joined #ruby
crazed- has joined #ruby
onewheelskyward_ has joined #ruby
SomeKitten has joined #ruby
fcoury_ has joined #ruby
DanKnoxz has joined #ruby
andr0m3da has joined #ruby
machuga has joined #ruby
natwelch has joined #ruby
machuga is now known as Guest98791
DanKnoxz is now known as DanKnox
tonini has quit [Remote host closed the connection]
preller_ has joined #ruby
YaNakilon has quit [*.net *.split]
Deele has quit [*.net *.split]
icco has quit [*.net *.split]
alexspeller has quit [*.net *.split]
soulcake has quit [*.net *.split]
lushious has quit [*.net *.split]
jokke has quit [*.net *.split]
Beoran__ has quit [*.net *.split]
queequeg1 has quit [*.net *.split]
paissad has quit [*.net *.split]
lsmola has quit [*.net *.split]
FDj has quit [*.net *.split]
avelldiroll has quit [*.net *.split]
wormwood has quit [*.net *.split]
77CAAJRGM has quit [*.net *.split]
firebury_ has quit [*.net *.split]
rtl_ has quit [*.net *.split]
Jalada has quit [*.net *.split]
crazedpsyc has quit [*.net *.split]
tehlers has quit [*.net *.split]
asuka has quit [*.net *.split]
jaredrhine has quit [*.net *.split]
Koshian__ has quit [*.net *.split]
awwaiid_ has quit [*.net *.split]
wereHamster has quit [*.net *.split]
broquaint has quit [*.net *.split]
DanKnox_away has quit [*.net *.split]
machuga|away has quit [*.net *.split]
deadalus has quit [*.net *.split]
emptynine has quit [*.net *.split]
fcoury has quit [*.net *.split]
onewheelskyward has quit [*.net *.split]
tehKitten has quit [*.net *.split]
preller has quit [*.net *.split]
willrax has quit [*.net *.split]
fryguy has quit [*.net *.split]
darkc0met has quit [*.net *.split]
gadgetoid has quit [*.net *.split]
framling has quit [*.net *.split]
weeb1e has quit [*.net *.split]
Derander has quit [*.net *.split]
mediko has quit [*.net *.split]
bklang has quit [*.net *.split]
timmow has quit [*.net *.split]
tdammers has quit [*.net *.split]
bmurt has quit [*.net *.split]
dhoss has quit [*.net *.split]
xsdg has quit [*.net *.split]
error404_ has quit [*.net *.split]
wyan has quit [*.net *.split]
vaicine has quit [*.net *.split]
mosez has quit [*.net *.split]
madnificent has quit [*.net *.split]
Caius has quit [*.net *.split]
nick_h has quit [*.net *.split]
ekarlso has quit [*.net *.split]
jeekl has quit [*.net *.split]
Jalada_ is now known as Jalada
emptyn1ne has joined #ruby
natwelch is now known as icco
onewheelskyward_ is now known as onewheelskyward
fcoury_ is now known as fcoury
wyan has joined #ruby
leonjo has joined #ruby
crazed- is now known as crazedpsyc
niceguyjames has quit [Quit: Computer has gone to sleep.]
Xeago_ has joined #ruby
psychouroboros has joined #ruby
hogeo_ has joined #ruby
WP_16815 has joined #ruby
SomeKitten is now known as tehKitten
seriously_random has joined #ruby
fphilipe has quit [Ping timeout: 256 seconds]
yashshah has joined #ruby
lkba has joined #ruby
hogeo has quit [Ping timeout: 276 seconds]
WP_16815 has quit [Quit: WP_16815]
philipe1 has quit [Ping timeout: 264 seconds]
Beoran__ has joined #ruby
Koshian__ has joined #ruby
Hanmac1 has joined #ruby
tehlers has joined #ruby
lsmola has joined #ruby
wormwood has joined #ruby
avelldiroll has joined #ruby
jokke has joined #ruby
dodosan has joined #ruby
<pcarrier> does ruby have a method f such that Set.new(f([1,2],[3,4])) == Set.new([[1,3],[1,4],[2,3],[2,4]])?
<pcarrier> a method on Array, I would guess
<pwnfactory> pcarrier: something like this? http://www.ruby-doc.org/core-2.0/Array.html#method-i-permutation
<pcarrier> no, mine does a cartesian product of 2 sets
tijmencc has joined #ruby
moura has joined #ruby
icco has quit [Ping timeout: 256 seconds]
<pcarrier> damn, I just named it. I'm looking for the cartesian product.
tijmencc has quit [Client Quit]
<pcarrier> and there's .product
zets has quit [Ping timeout: 246 seconds]
<pcarrier> Set.new([1,2].product([3,4])) == Set.new([[1,3],[1,4],[2,3],[2,4]])
<pcarrier> true
dodosan has quit [Ping timeout: 246 seconds]
<pcarrier> would be nice if the * operator just worked :)
<pcarrier> (I had tried just * and it failed)
razi has joined #ruby
icco has joined #ruby
<codeplay> pcarrier: you can do operator overloading for * on Array for your purpose.
fgo has joined #ruby
<pcarrier> codeplay: I'm not monkey patching, but thanks :)
hogeo_ has quit [Remote host closed the connection]
bubblehead has quit [Read error: Connection reset by peer]
Zai00 has quit [Read error: No route to host]
<codeplay> pcarrier: Apologies but seeing your doubt I though this direction would be helpful.
ryanjh has joined #ruby
bubblehead has joined #ruby
emergion has quit [Quit: Computer has gone to sleep.]
<pcarrier> codeplay: nah, I'd love that to be part of the standard library, but Array fits in the category of classes I wouldn't monkey-patch outside of a simple script (and this is for a chef recipe)
browndawg has quit [Ping timeout: 264 seconds]
redgirl has joined #ruby
obs has quit [Quit: Konversation terminated!]
Domon has quit [Ping timeout: 246 seconds]
<Hanmac1> imo its a bad habbit to monkeypatch the core classes … there are also some classes where the instances are frozen in newer ruby versions
Guest6063 has quit [Quit: Quit]
Guest98791 is now known as machuga_
<swistak35> could someone explain me, why following code: [["B",1,2],["A",2,3]].inject(Hash.new) {|hash, arr| hash.store(arr[0], arr[1..-1]) } isn't creating hash {"B": [1,2], "A": [2,3] } ? Because there is some magic involved
obs has joined #ruby
jokke has quit [Ping timeout: 270 seconds]
machuga_ is now known as machuga|away
machuga|away is now known as machuga_
Spami has quit [Quit: This computer has gone to sleep]
<Hanmac1> swistak35: because inject returns uses the result if the last iteration, you want each_with_object
icco has quit [Ping timeout: 240 seconds]
haxrbyte has quit [Ping timeout: 246 seconds]
niceguyjames has joined #ruby
icco has joined #ruby
moura has quit [Quit: Textual IRC Client: www.textualapp.com]
moura has joined #ruby
moura is now known as dirigente
machuga_ is now known as machuga
Meatant has quit [Ping timeout: 248 seconds]
jefflyne has joined #ruby
kasper has joined #ruby
<swistak35> hanmac1: well, thanks, I thought #store will return hash, but of course it's returning new value, that's why it didn't work
<pwnfactory> swistak35: what hanmac1 said, or if you'd like to continue with #inject, it'd be [["B",1,2],["A",2,3]].inject(Hash.new) {|hash, arr| hash.store(arr[0], arr[1..-1]); hash }
browndawg has joined #ruby
kizzx2 has quit [Quit: Leaving.]
<swistak35> pwnfactory: I will stick with each_with_object, "; hash" is a little bit ugly, but it's good to have these two "forms" of folding in ruby : )
lewix has quit [Remote host closed the connection]
Notte has joined #ruby
huttan has quit [Remote host closed the connection]
jokke has joined #ruby
bradhe has joined #ruby
snearch has joined #ruby
Zai00 has joined #ruby
anay has quit [Remote host closed the connection]
gregchapple has joined #ruby
anay has joined #ruby
icco has quit [Read error: Operation timed out]
bradhe has quit [Ping timeout: 256 seconds]
obs has quit [Quit: Konversation terminated!]
anay_ has joined #ruby
<apeiros> pwnfactory, swistak35: IMO abuse of inject. use each_with_object
obs has joined #ruby
<apeiros> then you don't need `; hash`
<pwnfactory> apeiros: agreed, just offering why swistak35's code wasn't working
<apeiros> alternatively use Hash[] + map
<apeiros> probably faster anyway
Hanmac1 has quit [Quit: Leaving.]
<apeiros> e.g. Hash[your_array.map { |key, *value| [key, value] }]
anay has quit [Read error: Connection reset by peer]
camilasan has quit [Remote host closed the connection]
yashshah has quit [Ping timeout: 246 seconds]
Zolo has joined #ruby
ryanjh is now known as RyanHirsch
MindSpark has quit [Quit: MindSpark]
joshu has quit [Ping timeout: 264 seconds]
persand has quit [Quit: persand]
alem0lars has joined #ruby
camilasan has joined #ruby
joshu has joined #ruby
echevemaster has quit [Remote host closed the connection]
camilasan has quit [Remote host closed the connection]
camilasan has joined #ruby
cj3kim has joined #ruby
jbpros has quit [Quit: jbpros]
pyrac has quit [Quit: pyrac]
gregchapple has quit [Quit: leaving]
MindSpark has joined #ruby
platzhirsch has joined #ruby
elentras has quit [Quit: Leaving...]
Hanmac1 has joined #ruby
echevemaster has joined #ruby
echevemaster has quit [Changing host]
echevemaster has joined #ruby
cj3kim has quit [Ping timeout: 276 seconds]
browndawg has left #ruby [#ruby]
camilasan has quit [Ping timeout: 256 seconds]
ghr has joined #ruby
Zolo has quit [Remote host closed the connection]
DaniG2k has quit [Read error: No route to host]
icco has joined #ruby
alexspeller has joined #ruby
77CAAKLE3 has joined #ruby
lushious has joined #ruby
Caius has joined #ruby
soulcake has joined #ruby
Deele has joined #ruby
gadgetoid has joined #ruby
Caius has quit [Changing host]
Caius has joined #ruby
soulcake has quit [Changing host]
soulcake has joined #ruby
yashshah has joined #ruby
timmow has joined #ruby
jeekl has joined #ruby
vlad_starkov has quit [Remote host closed the connection]
anay_ has quit [Ping timeout: 248 seconds]
atno has quit [Ping timeout: 256 seconds]
AlbireoX has quit [Remote host closed the connection]
persand has joined #ruby
Nakilon has quit [Ping timeout: 264 seconds]
nettoweb has joined #ruby
jibi has quit [Quit: .]
ehaliewicz has quit [Ping timeout: 256 seconds]
<buzzybron> elementary question here, i have a string and i need to pass in some var in a loop, how can i do that? like a placeholder
emergion has joined #ruby
emergion has quit [Max SendQ exceeded]
<hoelzro> buzzybron: what are you trying to do?
<hoelzro> I'm not sure I understand your question
emergion has joined #ruby
codesoda has joined #ruby
ILoveYou has joined #ruby
anay has joined #ruby
anay has quit [Remote host closed the connection]
<buzzybron> say i have this string "this is a '#{country}' string", how can i store this as a var and loop through replace the country
<MrZYX> loop through what?
<Hanmac1> buzzybron: "partofstring#{iterationvalue}" or "partofstring%d" % iterationvalue
banjara has quit [Max SendQ exceeded]
<hoelzro> oh, like a template?
<hoelzro> that's a good question
* hoelzro waits and listens
banjara has joined #ruby
<MrZYX> buzzybron: still not enough information? you have an array with values to interpolate and want an array with the result back or...?
<hoelzro> MrZYX: I assume buzzybron wants something like this:
camilasan has joined #ruby
<hoelzro> %w(Germany USA Netherlands).each { |country| do_something_with("this is a '#{country}'") }
<buzzybron> hoelzro : yes like a template
<hoelzro> but he/she wants to store that interpolated string in a varaible
<buzzybron> pardon me went away for a bit
<hoelzro> *variable
<hoelzro> and perform the interpolation later
<hoelzro> I'm curious for the answer myself
<hoelzro> I mean, you could use gsub
<hoelzro> that'd do it
<buzzybron> wow nice, i mean i am trying to avoid regex/gsub although i could really do that
<MrZYX> hanmac1: answered already but to make it clear: template = "this is a '%s'"; %w(Germany USA Netherlands).map { |country| template % country }
<hoelzro> that also works
<hoelzro> ;)
<Hanmac1> >> %w(Germany USA Netherlands).map("this is a '%s'".method(:%))
<eval-in> hanmac1 => wrong number of arguments (1 for 0) (ArgumentError) ... (https://eval.in/37174)
<Hanmac1> >> %w(Germany USA Netherlands).map(&"this is a '%s'".method(:%))
<eval-in> hanmac1 => ["this is a 'Germany'", "this is a 'USA'", "this is a 'Netherlands'"] (https://eval.in/37175)
<buzzybron> ok i'm confused
<MrZYX> yeah and that's the "what the hell is going on" way
BSaboia has joined #ruby
jonahR has quit [Quit: jonahR]
codeplay has quit [Ping timeout: 250 seconds]
kindjal has joined #ruby
echevemaster has quit [Ping timeout: 264 seconds]
<buzzybron> ah crap
<buzzybron> what the hell am i doing
alem0lars has quit [Ping timeout: 264 seconds]
jefflyne has quit [Quit: My Mac Mini has gone to sleep. ZZZzzz…]
sleetdrop has quit [Ping timeout: 264 seconds]
<buzzybron> damn, anyway i am doing a sql statement for my batch prog
cdnsteve has joined #ruby
<MrZYX> uh, oh, don't you have a client lib that can do the interpolation for you?
<buzzybron> hmm i am using pg gem so
smlgs has quit [Remote host closed the connection]
<hoelzro> wait, what?
<hoelzro> why don't you just use parameterized queries?
YaNakilon has joined #ruby
<MrZYX> yeah, seriously
elentras has joined #ruby
<buzzybron> er how do i do that
<MrZYX> doing it by hand will only go wrong
<buzzybron> i am very very new to this ruby thing
<buzzybron> like 3 weeks new
<tobiasvl> and to programming in general?
haxrbyte has joined #ruby
<buzzybron> hmm not really but yea usually i'd be using something like an active record util, i can't seem to locate pg gem resource
<buzzybron> as in the docs... i don't read them well
<buzzybron> any suggestions
haxrbyte_ has joined #ruby
<buzzybron> hmm?
bradhe has joined #ruby
niceguyjames has quit [Quit: Computer has gone to sleep.]
<MrZYX> well if you're looping the best way is to use a prepared statement
<buzzybron> hmm you are saying the pg method prepare_statement or storing the statement in a var first?
<ChristianS> is there a way to make String#downcase and friends work for arbitrary unicode letters?
<ChristianS> i know i can use UnicodeUtils.downcase but it feels a little clumsy
<MrZYX> buzzybron: connection.prepare("some_name", "INSERT INTO foo (a, b, c) VALUES ($1, $2, $3)") -> loop -> connection.exec_prepared("some_name", [a_var, b_var, c_var])
gildo_ has quit [Ping timeout: 256 seconds]
<MrZYX> if I got the examples through some quick googling right
lkba has quit [Ping timeout: 264 seconds]
<MrZYX> never used it directly yet
haxrbyte has quit [Ping timeout: 248 seconds]
<buzzybron> i've tried that... actually, can't seem to get it working
vinnyOcean has joined #ruby
cdnsteve has left #ruby [#ruby]
bradhe has quit [Ping timeout: 276 seconds]
pyrac has joined #ruby
<buzzybron> lemme try that again
buzzybron has quit [Quit: Leaving.]
flurick has left #ruby [#ruby]
nettoweb has quit [Quit: nettoweb]
anay has joined #ruby
dhruvasagar has quit [Ping timeout: 246 seconds]
anay has quit [Remote host closed the connection]
anay has joined #ruby
cmhobbs has joined #ruby
cmhobbs has quit [Changing host]
cmhobbs has joined #ruby
anay has quit [Read error: Connection reset by peer]
airlok has joined #ruby
cofin has joined #ruby
freerobby has joined #ruby
<pwnfactory> I'm looking at the new ways to call a proc
<pwnfactory> I see that it also works on a class if #call is defined
Mattix has joined #ruby
osvico has joined #ruby
jbpros has joined #ruby
iamjarvo has joined #ruby
<iamjarvo> is there a way to make a sha of content and limit it to a certain amount of characters?
Mattix has quit [Read error: Connection reset by peer]
kofno has joined #ruby
pranny has quit [Quit: Leaving.]
anay has joined #ruby
TIJ has quit [Ping timeout: 264 seconds]
airlok has quit [Ping timeout: 276 seconds]
ferdev has quit [Quit: ferdev]
TIJ has joined #ruby
Bauer1 has joined #ruby
takezawa has quit [Remote host closed the connection]
<Bauer1> guys, how to read this function?
<Bauer1> def api_request?
<Bauer1> %w(xml json).include? params[:format]
<Bauer1> end
<Bauer1> I am not ruby developer, but trying to adapt code to my needs
<MrZYX> %w(xml json) -> ["xml", "json"]
<tobiasvl> it checks if params[:format] is either the string 'xml' or 'json'
vlad_starkov has joined #ruby
vlad_starkov has quit [Remote host closed the connection]
Xeago has quit [Remote host closed the connection]
<MrZYX> also it's helpful to mention what languages you know so we can explain it in their syntax, if needed
osvico has quit [Ping timeout: 264 seconds]
<Bauer1> I mostly work with php, but familiar with python, perl, java mostly
iamjarvo has quit [Quit: Leaving.]
<Bauer1> MrZYX, tobiasvl: I still dont understand.. what is params[:format] then?
<MrZYX> python version: params['format'] in ['json', 'xml']
<Liothen> the extention added to the URL i.e. test.json test.xml
<MrZYX> well, that's the rails specific answer to that question ;)
krz has quit [Quit: krz]
<MrZYX> the general answer is that params is a hash, in python you call it dict, in php, uh, associative array?
persand_ has joined #ruby
persand has quit [Read error: Connection reset by peer]
persand_ is now known as persand
<Bauer1> huh, hmmm so it checks whether teh value of params['format'] is either 'json' or 'xml'
<Bauer1> ?
<Liothen> yes
<tobiasvl> Java: boolean api_request { return ["xml", "json"].contains(params.get("format"]; }
<Mon_Ouie> params[:format], not params["format"]
<tobiasvl> s/]/))/
<Mon_Ouie> :format is a Symbol (an interned string) while "format" is a String
<Bauer1> so, if my URL ends with ...../issues.xml, you saying this function should match?
brtdv has joined #ruby
<Liothen> it will return true
realDAB has joined #ruby
Guedes0 has quit [Ping timeout: 264 seconds]
rosario has quit [Ping timeout: 264 seconds]
<Bauer1> then why does this block not triggered? unless api_request?
<Bauer1> I have a line logger.info(" Is API Request: " + (api_request? ? "TRUE" : "FALSE")) if logger
Guedes0 has joined #ruby
<Bauer1> when its NOT api call, I get it in log saying FALSE
<Bauer1> but when its API call, there is no such line in log at all
<tobiasvl> logger is nil?
ldnunes has joined #ruby
<Bauer1> I dont think so, because other log lines I wrote show up during API call
<Bauer1> so the logger must not be nil
leonjo has left #ruby [#ruby]
gyre007 has quit [Remote host closed the connection]
niceguyjames has joined #ruby
brtdv has quit [Quit: brtdv]
<Liothen> how do you call logger in your other calls?
jprovazn has quit [Quit: Leaving]
<Bauer1> in the same way exactly Liothen, I just modify what I output to the logger
<Bauer1> I think my source of problem is in this call:
<Bauer1> authenticate_with_http_basic do |username, password|
browndawg has joined #ruby
vlad_starkov has joined #ruby
<Bauer1> logging line inside this block does not happen
<Bauer1> I cant figure out why, since I dont see how to go inside authenticate_with_http_basic as its built in function
brtdv has joined #ruby
cj3kim has joined #ruby
<MrZYX> this is really getting a #rubyonrails topic now...
iamjarvo has joined #ruby
<Bauer1> apologies, I am not familiar with both, so not sure how to tell what is what...
gyre007 has joined #ruby
dirigente has quit [Quit: Computer has gone to sleep.]
<Liothen> just curious is that inside of a class?
cachemoney has joined #ruby
<Liothen> have you tried assigning logger as a class variable @logger = logger
<Bauer1> apparently it is Liothen: class ApplicationController < ActionController::Base
cachemoney has left #ruby [#ruby]
fgo has quit [Remote host closed the connection]
persand has quit [Ping timeout: 256 seconds]
Dekade has joined #ruby
<Bauer1> after all the includes and stuff, Liothen?
kenneth has quit [Quit: kenneth]
dayepa has quit [Ping timeout: 264 seconds]
cj3kim has quit [Ping timeout: 245 seconds]
headius has joined #ruby
verto has joined #ruby
<Liothen> your using the standard rails logger right?
<ghr> Anyone familiar with building a 1.9.3 rpm from https://github.com/imeyer/ruby-1.9.3-rpm ?
<Bauer1> truthfully I have no idea, Liothen.. I just adapted the logger line I found in the code, to debug why the API login not working for me
<Liothen> Bauer1, change your like from logger.info to Rails.logger.info and try that
<Bauer1> Liothen, I tried @logger = logger and no change, try the Rails.logger.info still?
<Liothen> yes
<Bauer1> remove the @logger = logger line?
<Liothen> yup
tonini has joined #ruby
mmitchell has quit [Remote host closed the connection]
<Bauer1> ok Liothen, still the same behaviour (no log for that line in logfile)
geekbri has joined #ruby
mark_locklear has joined #ruby
arya_ has joined #ruby
subbyyy_ has joined #ruby
jonkri has joined #ruby
jonkri has quit [Changing host]
jonkri has joined #ruby
persand has joined #ruby
Beoran__ has quit [Read error: Connection reset by peer]
Beoran__ has joined #ruby
mljsimone|away is now known as mljsimone
wmoxam has joined #ruby
BSaboia has quit [Read error: Connection reset by peer]
alem0lars has joined #ruby
<Liothen> trying to create it in my rails application instance
cads has quit [Ping timeout: 246 seconds]
Spami has joined #ruby
Guga_ has joined #ruby
<Bauer1> Liothen: https://gist.github.com/anonymous/2a955adf669a28e4a58b is the whole file I am talking about, focus in on lines 77, and 98 where it doesnt execute line 99
anay has quit [Remote host closed the connection]
Bofu2U has joined #ruby
pyrac has quit [Quit: pyrac]
cads has joined #ruby
Akuma has quit [Ping timeout: 246 seconds]
wmoxam has quit [Ping timeout: 256 seconds]
persand has quit [Read error: Connection reset by peer]
iamjarvo has quit [Quit: Leaving.]
ttt has quit [Remote host closed the connection]
persand has joined #ruby
<Liothen> funny enough i inserted that bit of code into my own project and its logging fine, are you haveing other errors in your development.log?
Guest29006 is now known as Freeaqingme
kindjal has quit [Ping timeout: 248 seconds]
tonini has quit [Remote host closed the connection]
pyrac has joined #ruby
<Liothen> where is the api_request? defined?
bradhe has joined #ruby
<Liothen> if the method is missing it will not trigger that whoe block of code
danshultz has joined #ruby
breakingthings has joined #ruby
cantonic has joined #ruby
<Liothen> never mind i found it at line 520
paolooo has joined #ruby
<Bauer1> Liothen: the only clue I have is WARNING: Can't verify CSRF token authenticity which comes before the log of line 90, and that happens only during a POST api call which creates a new issue
carloslopes has joined #ruby
bradhe has quit [Ping timeout: 264 seconds]
<Bauer1> Liothen: I am not convinced the fact api_request block on line 77 is the blame, but something on line 98 authenticate_with_http_basic do |username, password|
goshakkk has joined #ruby
cantonic has quit [Ping timeout: 264 seconds]
goshakkk has quit [Client Quit]
theRoUS has joined #ruby
theRoUS has quit [Changing host]
theRoUS has joined #ruby
paolooo has quit [Ping timeout: 250 seconds]
ay has joined #ruby
jprovazn has joined #ruby
johnmilton has joined #ruby
cj3kim has joined #ruby
cantonic has joined #ruby
<Liothen> hmm
cj3kim has quit [Read error: Connection reset by peer]
D4T has joined #ruby
Giorgio has quit [Ping timeout: 256 seconds]
ephemerian has quit [Quit: Leaving.]
cads has quit [Ping timeout: 256 seconds]
<Liothen> comment out "protect_from_forgery"
binw has joined #ruby
<Liothen> do not do that for production but maybe its preventing the headers from being sent
camilasan has quit [Remote host closed the connection]
tk_ has joined #ruby
vlad_starkov has quit [Remote host closed the connection]
<Bauer1> Liothen: hmmm but the password is not in the headers, its coming like: http://user:passs@redmine.com/issues.xml
Giorgio has joined #ruby
<Liothen> Bauer1, rails normally filters out params[:password]
<apeiros> Bauer1: that form of url is strongly disadvised and non-standard
ay has quit [Quit: leaving]
vlad_starkov has joined #ruby
nnww has quit [Read error: Connection reset by peer]
sleetdrop has joined #ruby
vlad_starkov has quit [Remote host closed the connection]
pranny has joined #ruby
fgo has joined #ruby
pranny has quit [Client Quit]
Xeago_ has quit [Remote host closed the connection]
kindjal has joined #ruby
devoldmx has quit [Ping timeout: 248 seconds]
Liothen has quit [Quit: System of a down……]
huoxito has joined #ruby
kofno has quit [Remote host closed the connection]
nettoweb has joined #ruby
<Bauer1> well commenting out protect_from_forgery didnt change anything.. apeiros: how would you suggest I send the user/pass? I can modify the code which does this as well
freerobby has quit [Quit: Leaving.]
kindjal has quit [Ping timeout: 276 seconds]
mosez_ is now known as mosez
fixl has quit [Quit: KVIrc 4.3.1 Aria http://www.kvirc.net/]
alem0lars has quit [Ping timeout: 248 seconds]
angusiguess has joined #ruby
alem0lars has joined #ruby
ericmathison has quit [Remote host closed the connection]
krawchyk has joined #ruby
kasper has quit [Remote host closed the connection]
anonymuse has joined #ruby
jerius has joined #ruby
subbyyy_ has quit [Ping timeout: 240 seconds]
Gugster has joined #ruby
sambao21 has joined #ruby
sleetdrop has quit [Remote host closed the connection]
cofin has quit [Quit: cofin]
mikecmpbll has joined #ruby
brbcoding has joined #ruby
cofin has joined #ruby
realDAB has quit [Quit: realDAB]
Guga_ has quit [Ping timeout: 256 seconds]
realDAB has joined #ruby
Gugster has quit [Remote host closed the connection]
Guga_ has joined #ruby
wesside has quit [Quit: Computer has gone to sleep.]
fuhgeddaboudit has joined #ruby
denver has joined #ruby
LaPetiteFromage has joined #ruby
pedda has joined #ruby
danshultz has quit [Read error: Connection reset by peer]
sayan has quit [Ping timeout: 256 seconds]
freerobby has joined #ruby
danshultz has joined #ruby
cpruitt has joined #ruby
cj3kim has joined #ruby
Inoperable has quit [Quit: ZNC - http://znc.in]
pipework has joined #ruby
wmoxam has joined #ruby
_whitelogger_ has joined #ruby
JaTochNietDan_ has joined #ruby
mmitchell has joined #ruby
mmitchell has quit [Remote host closed the connection]
ferdev has joined #ruby
kennym_ has joined #ruby
flori_ has joined #ruby
justinmcp has joined #ruby
fumduq- has joined #ruby
statarb3 has quit [Quit: Leaving]
freerobby has quit [Quit: Leaving.]
mmitchell has joined #ruby
atno has joined #ruby
dr_Poggs has joined #ruby
kofno has quit [Remote host closed the connection]
Mekkis_ has joined #ruby
burlyscudd has joined #ruby
burlyscudd has quit [Client Quit]
WhereIsMySpoon_ has quit [Ping timeout: 264 seconds]
z_ has joined #ruby
foobArrrr has joined #ruby
burlyscudd has joined #ruby
krnflake_ has joined #ruby
bakingbread has quit [*.net *.split]
shaunbaker has quit [*.net *.split]
Hien has quit [*.net *.split]
platzhirsch has quit [*.net *.split]
kzrl has quit [*.net *.split]
mroth has quit [*.net *.split]
Trynemjoel has quit [*.net *.split]
heidar has quit [*.net *.split]
alup has quit [*.net *.split]
lunarjar has quit [*.net *.split]
kaichanvong has quit [*.net *.split]
riku has quit [*.net *.split]
anildigital has quit [*.net *.split]
kalleth has quit [*.net *.split]
z has quit [*.net *.split]
aaroncm_ has quit [*.net *.split]
arusso has quit [*.net *.split]
Taranis has quit [*.net *.split]
away_sondr3 has quit [*.net *.split]
Apocalypse has quit [*.net *.split]
s3m73x has quit [*.net *.split]
DylanJ has quit [*.net *.split]
krnflake has quit [*.net *.split]
G has quit [*.net *.split]
matrixis1 has quit [*.net *.split]
peterhel1berg has quit [*.net *.split]
angelixd has quit [*.net *.split]
Gate_ has quit [*.net *.split]
yo61 has quit [*.net *.split]
Nanuq has quit [*.net *.split]
ereslibre has quit [*.net *.split]
joast has quit [*.net *.split]
passcod has quit [*.net *.split]
aalmenar_ has quit [*.net *.split]
mvangala has quit [*.net *.split]
skogis has quit [*.net *.split]
nw has quit [*.net *.split]
Mekkis has quit [*.net *.split]
foobArrr has quit [*.net *.split]
_whitelogger has quit [*.net *.split]
drPoggs has quit [*.net *.split]
Paradox has quit [*.net *.split]
aetaric has quit [*.net *.split]
C0deMaver1ck has quit [*.net *.split]
hkal has quit [*.net *.split]
Weazy_ has quit [*.net *.split]
fasta has quit [*.net *.split]
PhilK has quit [*.net *.split]
lupine has quit [*.net *.split]
jimeh has quit [*.net *.split]
krishna_ has quit [*.net *.split]
hoelzro has quit [*.net *.split]
justinmcp_ has quit [*.net *.split]
jaybe has quit [*.net *.split]
prime has quit [*.net *.split]
nemesit|znc has quit [*.net *.split]
JaTochNietDan has quit [*.net *.split]
SirFunk has quit [*.net *.split]
Nightmare has quit [*.net *.split]
phantomcircuit has quit [*.net *.split]
ned has quit [*.net *.split]
flori has quit [*.net *.split]
fumduq has quit [*.net *.split]
sn0wb1rdz has quit [*.net *.split]
TheSpect1e has quit [*.net *.split]
kaichanvong___ is now known as kaichanvong
tris has quit [*.net *.split]
kennym has quit [*.net *.split]
riku- is now known as riku
prime_ is now known as prime
arusso- is now known as arusso
prime has quit [Changing host]
prime has joined #ruby
arusso has quit [Changing host]
arusso has joined #ruby
JaTochNietDan_ is now known as JaTochNietDan
passcod_ is now known as passcod
tris- has joined #ruby
jaybe has joined #ruby
lunarjar has joined #ruby
Nightmare has joined #ruby
SirFunk has joined #ruby
phantomcircuit has joined #ruby
aetaric has joined #ruby
lupine has joined #ruby
mroth has joined #ruby
icedp has joined #ruby
tris- is now known as tris
GeissT_ has joined #ruby
Columcil1e has joined #ruby
PhilK has joined #ruby
Apocalypse has joined #ruby
anildigital has joined #ruby
Nanuq has joined #ruby
Trynemjoel has joined #ruby
C0deMaver1ck has joined #ruby
DylanJ has joined #ruby
jefflyne has joined #ruby
fasta has joined #ruby
kzrl has joined #ruby
Nigel_ is now known as G
marcgg has quit [Write error: Connection reset by peer]
Columcille has quit [Write error: Connection reset by peer]
redgirl_ has joined #ruby
marcgg_ has joined #ruby
C0deMaver1ck is now known as Guest83022
hkal has joined #ruby
Kar- has joined #ruby
ntus1017 has joined #ruby
alup has joined #ruby
nemesit|znc has joined #ruby
sn0wb1rdz has joined #ruby
ILoveYou[ has joined #ruby
platzhirsch has joined #ruby
z_ is now known as z
ned has joined #ruby
<apeiros> Bauer1: usually via POST params
tvw has quit []
ned is now known as Guest19113
redgirl has quit [Read error: No buffer space available]
v0n has joined #ruby
Elgin has joined #ruby
<apeiros> if it's an API, basic auth via headers is fine too (over https, that is)
airlok has joined #ruby
<apeiros> #rubyonrails would be a better source for such questions, though
fuhgeddaboudit has quit [Remote host closed the connection]
angelixd has joined #ruby
angelixd_ has quit [Ping timeout: 262 seconds]
GeissT has quit [Ping timeout: 262 seconds]
lnemeth has joined #ruby
ILoveYou has quit [Ping timeout: 269 seconds]
s3m73x has joined #ruby
elentras has quit [Read error: Connection reset by peer]
Guest42634 has joined #ruby
Guest46529 has quit [Quit: w0ots...]
abstrusenick has joined #ruby
cofin has quit [Quit: cofin]
wsterling has joined #ruby
bradhe has joined #ruby
cofin has joined #ruby
anildigi- has joined #ruby
alup_ has joined #ruby
realDAB has quit [Quit: realDAB]
mklappstuhl has joined #ruby
ravster has joined #ruby
platzhirsch1 has joined #ruby
monkegjinni has quit [Read error: Connection reset by peer]
_whitelogger__ has joined #ruby
codeplay has quit [Quit: Page closed]
nemesit|- has joined #ruby
AllStruck_ has joined #ruby
kaichanvong___ has joined #ruby
jaybe_ has joined #ruby
nari has joined #ruby
awwaiid_ has joined #ruby
Nigel_ has joined #ruby
skogis has joined #ruby
supki_ has joined #ruby
flori has joined #ruby
onewheelskyward_ has joined #ruby
rtl_ has joined #ruby
nyuszika7h_ has joined #ruby
jefflyne_ has joined #ruby
Notte has quit [Remote host closed the connection]
[BNC]s3m73x has joined #ruby
ccooke_ has joined #ruby
Derander has joined #ruby
cmarques has joined #ruby
nemesit|- has quit [Client Quit]
angelixd_ has joined #ruby
dhoss has joined #ruby
alem0lars has quit [Quit: Leaving]
m_3_ has joined #ruby
drPoggs has joined #ruby
awc737_ has joined #ruby
Hien has joined #ruby
prime_ has joined #ruby
kpshek has quit []
nemesit|- has joined #ruby
jbpros has quit [Quit: jbpros]
bubblehe_ has joined #ruby
ttt has quit [Ping timeout: 256 seconds]
shadoi1 has joined #ruby
dallasm_ has joined #ruby
citizensinspace has joined #ruby
kasper has joined #ruby
hakunin_ has joined #ruby
riku- has joined #ruby
machuga_ has joined #ruby
<_br_> beetlejuice
fcoury_ has joined #ruby
Armand has joined #ruby
lupine_85 has joined #ruby
willrax has joined #ruby
DanKnox_away has joined #ruby
sayd_ has joined #ruby
PhilK_ has joined #ruby
jinief has joined #ruby
_main_ has joined #ruby
kennym_ is now known as kennym
saintcajetan_ has joined #ruby
arusso- has joined #ruby
tkuchiki has quit [Remote host closed the connection]
emptynine has joined #ruby
SirFunk_ has joined #ruby
swills` has joined #ruby
Guest__ has joined #ruby
sn0wb1rdz_ has joined #ruby
ntus1017_ has joined #ruby
lunarjar_ has joined #ruby
sailias has joined #ruby
cschneid_ has joined #ruby
paolooo has joined #ruby
bakingbread has joined #ruby
TheTFEF has joined #ruby
wallerdev has quit [Quit: wallerdev]
adeponte has joined #ruby
kzrl_ has joined #ruby
JZTech101 has joined #ruby
mengu has joined #ruby
xerxas_ has joined #ruby
dallasm_ has left #ruby [#ruby]
Targen has joined #ruby
platzhirsch1 has quit [*.net *.split]
anildigi- has quit [*.net *.split]
s3m73x has quit [*.net *.split]
angelixd has quit [*.net *.split]
Guest19113 has quit [*.net *.split]
marcgg_ has quit [*.net *.split]
ntus1017 has quit [*.net *.split]
nemesit|znc has quit [*.net *.split]
fasta has quit [*.net *.split]
jefflyne has quit [*.net *.split]
sn0wb1rdz has quit [*.net *.split]
DylanJ has quit [*.net *.split]
kzrl has quit [*.net *.split]
Apocalypse has quit [*.net *.split]
PhilK has quit [*.net *.split]
lupine has quit [*.net *.split]
SirFunk has quit [*.net *.split]
Nightmare has quit [*.net *.split]
lunarjar has quit [*.net *.split]
icedp has quit [*.net *.split]
jaybe has quit [*.net *.split]
dr_Poggs has quit [*.net *.split]
flori_ has quit [*.net *.split]
justinmcp has quit [*.net *.split]
_whitelogger_ has quit [*.net *.split]
kaichanvong has quit [*.net *.split]
Hien_ has quit [*.net *.split]
kalleth_ has quit [*.net *.split]
G has quit [*.net *.split]
aalmenar has quit [*.net *.split]
skogis_ has quit [*.net *.split]
trollface has quit [*.net *.split]
Taranis_ has quit [*.net *.split]
riku has quit [*.net *.split]
arusso has quit [*.net *.split]
prime has quit [*.net *.split]
shaunbak_ has quit [*.net *.split]
LaPetiteFromage has quit [*.net *.split]
brbcoding has quit [*.net *.split]
Elgin has quit [*.net *.split]
sambao21 has quit [*.net *.split]
D4T has quit [*.net *.split]
theRoUS has quit [*.net *.split]
geekbri has quit [*.net *.split]
verto has quit [*.net *.split]
banjara has quit [*.net *.split]
codesoda has quit [*.net *.split]
bubblehead has quit [*.net *.split]
lsmola has quit [*.net *.split]
emptyn1ne has quit [*.net *.split]
willrax_ has quit [*.net *.split]
onewheelskyward has quit [*.net *.split]
machuga has quit [*.net *.split]
dhoss_ has quit [*.net *.split]
fcoury has quit [*.net *.split]
DanKnox has quit [*.net *.split]
awwaiid has quit [*.net *.split]
rtl has quit [*.net *.split]
Derander_ has quit [*.net *.split]
weeb1e_ has quit [*.net *.split]
FDj_ has quit [*.net *.split]
fryguy- has quit [*.net *.split]
ffio has quit [*.net *.split]
senayar has quit [*.net *.split]
KazW has quit [*.net *.split]
ccooke has quit [*.net *.split]
robbyoconnor has quit [*.net *.split]
saintcajetan has quit [*.net *.split]
samuel02 has quit [*.net *.split]
noop has quit [*.net *.split]
JohnBat26 has quit [*.net *.split]
amh345 has quit [*.net *.split]
finges has quit [*.net *.split]
tbn has quit [*.net *.split]
DonRichie has quit [*.net *.split]
nopper has quit [*.net *.split]
supki has quit [*.net *.split]
predator217 has quit [*.net *.split]
awc737 has quit [*.net *.split]
asobrasil has quit [*.net *.split]
Brando753 has quit [*.net *.split]
m_3 has quit [*.net *.split]
hakunin has quit [*.net *.split]
xerxas has quit [*.net *.split]
guilleiguaran_ has quit [*.net *.split]
nyuszika7h has quit [*.net *.split]
eka has quit [*.net *.split]
__main__ has quit [*.net *.split]
matchaw_ has quit [*.net *.split]
AllStruck has quit [*.net *.split]
sayd has quit [*.net *.split]
shadoi has quit [*.net *.split]
swills has quit [*.net *.split]
cschneid has quit [*.net *.split]
zz_jinie has quit [*.net *.split]
[BNC]s3m73x is now known as s3m73x
AllStruck_ is now known as AllStruck
prime_ is now known as prime
Armand is now known as Apocalypse
kaichanvong___ is now known as kaichanvong
riku- is now known as riku
onewheelskyward_ is now known as onewheelskyward
fcoury_ is now known as fcoury
machuga_ is now known as machuga
DanKnox_away is now known as DanKnox
adeponte has quit [Remote host closed the connection]
arusso- is now known as arusso
xerxas_ is now known as xerxas
anildigital has joined #ruby
<Guest__> hi
Guest__ has left #ruby ["Textual IRC Client: www.textualapp.com"]
JohnBat26 has joined #ruby
Guest__ has joined #ruby
DonRichie has joined #ruby
finges has joined #ruby
lsmola has joined #ruby
citizensinspace_ has joined #ruby
geekbri has joined #ruby
Guest__ has left #ruby ["Textual IRC Client: www.textualapp.com"]
renderfu_ has joined #ruby
noop has joined #ruby
predator117 has joined #ruby
renderful has quit [Write error: Connection reset by peer]
platzhirsch has joined #ruby
theRoUS has joined #ruby
DylanJ has joined #ruby
jztech101_ has joined #ruby
NsOmNiAc has quit [Ping timeout: 268 seconds]
NsOmNiAc has joined #ruby
abstrusenick has quit [Quit: abstrusenick]
asobrasil has joined #ruby
asobrasil has quit [Max SendQ exceeded]
Elgin has joined #ruby
citizensinspace has quit [Ping timeout: 247 seconds]
geekbri_ has quit [Ping timeout: 247 seconds]
citizensinspace_ is now known as citizensinspace
krishna has quit [Ping timeout: 247 seconds]
mrfoo has quit [Ping timeout: 250 seconds]
asobrasil has joined #ruby
asobrasil has quit [Max SendQ exceeded]
binaryplease has joined #ruby
krishna has joined #ruby
asobrasil has joined #ruby
asobrasil has quit [Max SendQ exceeded]
JZTech101 has quit [Ping timeout: 273 seconds]
sayan has joined #ruby
<Bauer1> apeiros: I cant join #rubyonrails at the moment.. do you happen to know how to pass the user/pass via the POST params? as in, what name/value pairs to for authenticate_with_http_basic do |username, password| to work?
MrThePlague has joined #ruby
freerobby has joined #ruby
realDAB has joined #ruby
asobrasil has joined #ruby
asobrasil has quit [Max SendQ exceeded]
justinmcp has joined #ruby
asobrasil has joined #ruby
asobrasil has quit [Max SendQ exceeded]
asobrasil has joined #ruby
asobrasil has quit [Max SendQ exceeded]
asobrasil has joined #ruby
bubblehe_ has quit [Read error: Connection reset by peer]
asobrasil has quit [Max SendQ exceeded]
bubblehead has joined #ruby
asobrasil has joined #ruby
asobrasil has quit [Max SendQ exceeded]
asobrasil has joined #ruby
asobrasil has quit [Max SendQ exceeded]
ffranz has joined #ruby
mansi has joined #ruby
senayar has joined #ruby
zeromodu_ has joined #ruby
Adawerk_ has joined #ruby
fivethre1o has joined #ruby
browndawg has left #ruby [#ruby]
geekbri_ has joined #ruby
grn_ has joined #ruby
cmarques_ has joined #ruby
wsterlin_ has joined #ruby
BeLucid_ has joined #ruby
sarkis has joined #ruby
mikecmpb_ has joined #ruby
jinief has quit [Ping timeout: 245 seconds]
Niamkik_ has joined #ruby
julweber has quit [Remote host closed the connection]
nemesit|znc has joined #ruby
Guga_ has quit [Ping timeout: 240 seconds]
kindjal has joined #ruby
sarkis has quit [Client Quit]
dv__ has joined #ruby
fumduq has joined #ruby
mengu_ has joined #ruby
realDAB_ has joined #ruby
Coolhand_ has joined #ruby
Sp4rKy has quit [Ping timeout: 268 seconds]
camilasan has joined #ruby
epta_ has joined #ruby
crankyco1er has joined #ruby
pietr0_ has joined #ruby
Jb___ has joined #ruby
Notte has joined #ruby
PaulePan1er has joined #ruby
interactionjaxsn has quit []
NsOmNiAc_ has joined #ruby
Gate_ has joined #ruby
oddraisin has joined #ruby
monban_ has joined #ruby
matti_ has joined #ruby
alo1 has joined #ruby
sami has joined #ruby
twinkleH1od has joined #ruby
sarkis has joined #ruby
devoldmx has joined #ruby
cofin has quit [Quit: cofin]
cmarques_ has quit [Client Quit]
DonVitoC- has joined #ruby
Nahra_ has joined #ruby
asobrasil has joined #ruby
Brando753 has joined #ruby
fasta has joined #ruby
fasta has quit [Ping timeout: 264 seconds]
21WAA5PPA has joined #ruby
mnemon is now known as 36DAAXXWI
TheTFEF has quit [Changing host]
TheTFEF has joined #ruby
DestinyAwaits has joined #ruby
kobain has joined #ruby
DestinyAwaits has quit [Changing host]
kobain has quit [Changing host]
kobain has joined #ruby
DestinyAwaits has joined #ruby
prime has quit [Changing host]
prime has joined #ruby
bakingbread has joined #ruby
bakingbread has quit [Changing host]
Apocalypse has quit [Changing host]
Apocalypse has joined #ruby
MrThePlague has quit [Changing host]
MrThePlague has joined #ruby
arusso has joined #ruby
arusso has quit [Changing host]
wallerdev has joined #ruby
niceguyjames has joined #ruby
D4T has joined #ruby
soukihei_ has joined #ruby
eka has joined #ruby
jerius_ has joined #ruby
LaPetiteFromage has joined #ruby
andikr has quit [Remote host closed the connection]
realDAB_ has quit [Ping timeout: 245 seconds]
huoxito_ has joined #ruby
JohnBat26 has quit [Quit: KVIrc 4.3.1 Aria http://www.kvirc.net/]
JZTech101 has joined #ruby
yxhuvud2 has joined #ruby
companion_ has joined #ruby
patsToms_ has joined #ruby
huoxito_ has quit [Client Quit]
pcarrier has quit [Ping timeout: 241 seconds]
mburns_ has joined #ruby
chuk has quit [Read error: Operation timed out]
JZTech101 has quit [Read error: Connection reset by peer]
emptyn1ne has joined #ruby
SeySayux_ has joined #ruby
realDAB has quit [*.net *.split]
NsOmNiAc has quit [*.net *.split]
geekbri has quit [*.net *.split]
mengu has quit [*.net *.split]
sn0wb1rdz_ has quit [*.net *.split]
emptynine has quit [*.net *.split]
nemesit|- has quit [*.net *.split]
cmarques has quit [*.net *.split]
senayar_ has quit [*.net *.split]
wsterling has quit [*.net *.split]
hkal has quit [*.net *.split]
v0n has quit [*.net *.split]
fumduq- has quit [*.net *.split]
Gate has quit [*.net *.split]
yo61_ has quit [*.net *.split]
pedda has quit [*.net *.split]
mikecmpbll has quit [*.net *.split]
jerius has quit [*.net *.split]
mark_locklear has quit [*.net *.split]
jonkri has quit [*.net *.split]
crankycoder has quit [*.net *.split]
Coolhand has quit [*.net *.split]
SeySayux has quit [*.net *.split]
thesheff17 has quit [*.net *.split]
nomadic_ has quit [*.net *.split]
alo1_ has quit [*.net *.split]
fivethreeo has quit [*.net *.split]
zeromodulus has quit [*.net *.split]
waxjar has quit [*.net *.split]
Adawerk has quit [*.net *.split]
moted has quit [*.net *.split]
Emmanuel_Chanel has quit [*.net *.split]
defrag has quit [*.net *.split]
DonVitoCorleone has quit [*.net *.split]
patsToms has quit [*.net *.split]
Tobarja has quit [*.net *.split]
mumblerit has quit [*.net *.split]
[narcan] has quit [*.net *.split]
Nahra has quit [*.net *.split]
ArnaudR has quit [*.net *.split]
BeLucid has quit [*.net *.split]
epta has quit [*.net *.split]
Niamkik has quit [*.net *.split]
matti has quit [*.net *.split]
Kovensky has quit [*.net *.split]
voodoofish has quit [*.net *.split]
mburns has quit [*.net *.split]
pietr0 has quit [*.net *.split]
grn has quit [*.net *.split]
joschi has quit [*.net *.split]
PaulePanter has quit [*.net *.split]
dv_ has quit [*.net *.split]
36DAAXXWI has quit [*.net *.split]
oddraisi1 has quit [*.net *.split]
twinkleHood has quit [*.net *.split]
Randomage has quit [*.net *.split]
mlue has quit [*.net *.split]
bobbyz has quit [*.net *.split]
sami_ has quit [*.net *.split]
yxhuvud has quit [*.net *.split]
Jb_ has quit [*.net *.split]
ebouchut has quit [*.net *.split]
companion has quit [*.net *.split]
monban has quit [*.net *.split]
tulip_ has quit [*.net *.split]
samu has quit [*.net *.split]
RubyPanther has quit [*.net *.split]
defrag1 has joined #ruby
patsToms_ is now known as patsToms
mark_locklear has joined #ruby
nomadic has joined #ruby
dnyy has quit [Ping timeout: 256 seconds]
waxjar has joined #ruby
tulip has joined #ruby
sn0wb1rdz has joined #ruby
octarine has quit [Ping timeout: 246 seconds]
tk_ has quit [Quit: ばいばい]
ziyadb has quit [Ping timeout: 246 seconds]
jztech101_ has quit [Ping timeout: 266 seconds]
JZTech101 has joined #ruby
darth_chatri has quit [Ping timeout: 248 seconds]
kapowaz has quit [Ping timeout: 241 seconds]
Bauer2 has joined #ruby
mlue has joined #ruby
SeySayux_ has quit [Excess Flood]
Tobarja has joined #ruby
brennanMKE has joined #ruby
phasma has quit [Ping timeout: 264 seconds]
bobbyz has joined #ruby
SeySayux has joined #ruby
ebouchut has joined #ruby
cmarques has joined #ruby
thesheff17 has joined #ruby
JohnBat26 has joined #ruby
zodiak has joined #ruby
asteve has joined #ruby
ArnaudR has joined #ruby
banister`gym has joined #ruby
Bauer1 has quit [Ping timeout: 247 seconds]
RubyPanther has joined #ruby
Emmanuel_Chanel has joined #ruby
samu has joined #ruby
v0n has joined #ruby
fridim_ has quit [Quit: Leaving]
kapowaz has joined #ruby
voodoofish has joined #ruby
sayan has quit [Ping timeout: 264 seconds]
jonkri has joined #ruby
krawchyk_ has joined #ruby
Sp4rKy has joined #ruby
bubblehead has quit [Ping timeout: 240 seconds]
romockee has quit [Quit: romockee]
saturnflyer has joined #ruby
hkal has joined #ruby
dnyy has joined #ruby
interactionjaxsn has joined #ruby
romockee has joined #ruby
21WAA5PPA has quit [*.net *.split]
Brando753 has quit [*.net *.split]
cburyta has joined #ruby
cofin has joined #ruby
bondar has joined #ruby
bondar has quit [Excess Flood]
krawchyk has quit [Ping timeout: 256 seconds]
ziyadb has joined #ruby
chuk has joined #ruby
bondar has joined #ruby
bondar has quit [Excess Flood]
interactionjaxsn has quit [Quit: play time]
burlyscudd1 has joined #ruby
LaPetiteFromage has quit [Quit: LaPetiteFromage]
tagrudev has quit [Remote host closed the connection]
burlyscudd has quit [Ping timeout: 240 seconds]
bondar has joined #ruby
bondar has quit [Excess Flood]
interactionjaxsn has joined #ruby
swills` is now known as swills
bondar has joined #ruby
bondar has quit [Excess Flood]
withnale has quit [Ping timeout: 248 seconds]
platzhirsch has quit [Quit: Leaving.]
banister`gym has quit [Remote host closed the connection]
platzhirsch has joined #ruby
platzhirsch has left #ruby [#ruby]
platzhirsch has joined #ruby
C0deMave- is now known as C0deMaver1ck
johnnyfuchs has joined #ruby
ned has joined #ruby
jefflyne_ has quit [Quit: My Mac Mini has gone to sleep. ZZZzzz…]
wallerdev has quit [Quit: wallerdev]
sarkis has quit [Quit: leaving]
platzhirsch has quit [Client Quit]
withnale has joined #ruby
<Bauer2> apeiros: thanks! after testing auth using headers, it works!! question is how to make that authenticate_with_http_basic do |username, password| work with URL auth like user:pass@URL?
platzhirsch has joined #ruby
baordog has joined #ruby
lys has joined #ruby
pcarrier has joined #ruby
sarkis has joined #ruby
LaPetiteFromage has joined #ruby
zz_jinie has joined #ruby
colonolGron has joined #ruby
sarkis has quit [Client Quit]
pcarrier__ has quit [Remote host closed the connection]
phasma has joined #ruby
bradhe has joined #ruby
octarine has joined #ruby
nyuszika7h_ has left #ruby ["WeeChat 0.4.1"]
camilasan has quit [Remote host closed the connection]
mnemon has joined #ruby
wsterlin_ has quit [Remote host closed the connection]
burlyscudd1 has quit [Quit: Leaving.]
noop has quit [Ping timeout: 240 seconds]
lkba has joined #ruby
burlyscudd has joined #ruby
codesoda_ has quit [Read error: Connection reset by peer]
bradhe has quit [Ping timeout: 260 seconds]
codesoda has joined #ruby
freerobby1 has joined #ruby
zmike123 has joined #ruby
jastix has quit [Quit: Leaving]
freerobby has quit [Ping timeout: 264 seconds]
tommyvyo has quit [Quit:]
camilasan has joined #ruby
invsblduck_zzz is now known as invsblduck
julweber has joined #ruby
browndawg has joined #ruby
platzhirsch has left #ruby [#ruby]
hoelzro_ is now known as hoelzro
cmarques has quit [Ping timeout: 268 seconds]
relix_ has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
Alveric has joined #ruby
awarner has quit [Read error: No route to host]
codesoda has quit [Remote host closed the connection]
kofno has joined #ruby
awarner has joined #ruby
endzyme has joined #ruby
ayaz has quit [Quit: Textual IRC Client: www.textualapp.com]
endzyme has quit [Remote host closed the connection]
`p has quit [Quit: Leaving]
sarkis has joined #ruby
vigintas has quit [Read error: Connection reset by peer]
dhruvasagar has joined #ruby
redgirl_ has quit [Quit: This computer has gone to sleep]
acrussell has joined #ruby
<Veejay> Hello everyone, is there a way to have Float#round return no decimal places if they're all 0s?
<Veejay> i.e. I'm doing a .round(2) and it's returning 29.0, I'd rather it be 29 :)
vigintas has joined #ruby
awarner has quit [Read error: Connection reset by peer]
denver has quit [Ping timeout: 246 seconds]
awarner_ has joined #ruby
zarubin has quit [Ping timeout: 276 seconds]
Proshot has joined #ruby
WhereIsMySpoon has joined #ruby
allsystemsarego has joined #ruby
<MrZYX> but for .42 you want 29.42?
Guga_ has joined #ruby
mary5030 has joined #ruby
<elaptics> Veejay: then it would be an integer :) so do to_i
ffio has joined #ruby
<Veejay> MrZYX: Exactly
<elaptics> Veejay: there's no way to do it with any of ruby's methods afaik, you'd need to implement the logic you want
<_br_> Something like this ? a = 20.0 ; a.to_i if( (a % 1) == 0.0 )
v0n has quit [Ping timeout: 268 seconds]
codecop has joined #ruby
<Veejay> _br_: That would work indeed
<Veejay> I was looking for something more "baked in" but thanks a lot
mary5030_ has joined #ruby
cmarques has joined #ruby
RyanHirsch has quit [Quit: Computer has gone to sleep.]
darth_chatri has joined #ruby
RORgasm has joined #ruby
Giorgio has quit [Ping timeout: 240 seconds]
WhereIsMySpoon has quit [Ping timeout: 240 seconds]
<_br_> Ugly namespace pollutions. class Numeric; def weird_round; ( (self % 1) == 0.0 ) ? ( self.to_i ) : ( self ) ; end ; end ... You might want to use refinements here instead...
threesome has quit [Ping timeout: 246 seconds]
krawchyk has joined #ruby
citizensinspace has quit [Quit: citizensinspace]
kofno has quit [Remote host closed the connection]
<_br_> damn anyone here using vim with multiselect and knows how to call another plugin function from MSExecNormalCmd ?
mary5030 has quit [Ping timeout: 245 seconds]
elux has joined #ruby
mary5030_ has quit [Remote host closed the connection]
Brando753 has joined #ruby
mary5030 has joined #ruby
burlyscudd1 has joined #ruby
Paradox has joined #ruby
citizensinspace has joined #ruby
mansi has quit [Remote host closed the connection]
burlyscudd has quit [Ping timeout: 268 seconds]
samu has quit [Changing host]
samu has joined #ruby
SeySayux has quit [Changing host]
SeySayux has joined #ruby
cschneid_ is now known as cschneid
mumblerit has joined #ruby
Xeago has joined #ruby
krawchyk_ has quit [Ping timeout: 240 seconds]
carloslopes has quit [Remote host closed the connection]
tommyvyo has joined #ruby
C0deMaver1ck is now known as Guest30158
Hien is now known as Guest27407
dhruvasagar is now known as Guest70526
mnemon is now known as Guest14274
joast is now known as Guest1988
ned is now known as Guest66032
kennym is now known as Guest83029
machuga is now known as Guest41763
Nigel_ is now known as Guest37357
ferdev has quit [Read error: Connection reset by peer]
mumblerit is now known as Guest80508
pedda has joined #ruby
jztech101_ has joined #ruby
vlad_starkov has joined #ruby
ferdev has joined #ruby
poikon has joined #ruby
d2dchat has joined #ruby
ffio is now known as Guest47909
jztech101__ has joined #ruby
gnerol_ has joined #ruby
yashshah has quit [Read error: Connection reset by peer]
PaulePan1er is now known as PaulePanter
companion_ is now known as companion
companion has quit [Changing host]
companion has joined #ruby
yashshah has joined #ruby
cantonic_ has joined #ruby
kpshek has joined #ruby
msuszczy has quit [Ping timeout: 276 seconds]
lectrick has joined #ruby
lectrick has quit [Changing host]
lectrick has joined #ruby
msuszczy has joined #ruby
shadoi has joined #ruby
io_syl has quit [Quit: io_syl]
JZTech101 has quit [Ping timeout: 251 seconds]
Akuma has joined #ruby
jztech101__ has quit [Client Quit]
enebo has joined #ruby
cantonic has quit [Ping timeout: 264 seconds]
cantonic_ is now known as cantonic
JZTech101 has joined #ruby
shaunbaker has quit [Remote host closed the connection]
lectrick_ has joined #ruby
nbouscal has joined #ruby
v0n has joined #ruby
DestinyAwaits1 has joined #ruby
Uranio has joined #ruby
lectrick has quit [Client Quit]
cha1tanya has joined #ruby
Guest41763 is now known as machuga
vlad_starkov has quit [Ping timeout: 264 seconds]
lectrick_ has quit [Changing host]
lectrick_ has joined #ruby
jztech101_ has quit [Ping timeout: 276 seconds]
banister`gym has joined #ruby
shadoi1 has quit [Ping timeout: 245 seconds]
lectrick_ is now known as lectrick
_seanc_ has joined #ruby
<lectrick> So if I am just a train ride from Manhattan and was considering renting out my (nice) house as sort of a Ruby/Rails incubator-type space, or just hosting devs for networking reasons... Would that be unusual?
saturnflyer has left #ruby [#ruby]
<sarkis> very
<sarkis> j/k :)
Guest14274 is now known as mnemon
mnemon has quit [Changing host]
mnemon has joined #ruby
vlad_starkov has joined #ruby
DestinyAwaits has quit [Ping timeout: 240 seconds]
bondar has joined #ruby
bondar has quit [Excess Flood]
bondar has joined #ruby
bondar has quit [Client Quit]
camilasan has quit [Remote host closed the connection]
camilasan has joined #ruby
Guest80508 is now known as mumblerit
sambao21 has joined #ruby
binaryplease has quit [Ping timeout: 240 seconds]
vlad_sta_ has joined #ruby
rhys has joined #ruby
camilasan has quit [Remote host closed the connection]
camilasan has joined #ruby
ghr has quit [Ping timeout: 240 seconds]
zcreative has joined #ruby
burlyscudd1 has quit [Quit: Leaving.]
jmimi has quit [Quit: Leaving.]
vlad_st__ has joined #ruby
pyrac has quit [Quit: pyrac]
DestinyAwaits1 has quit [Read error: Connection reset by peer]
vlad_starkov has quit [Ping timeout: 245 seconds]
makoun has joined #ruby
Guest30158 has quit [Changing host]
C0deMaver1ck has joined #ruby
ananthakumaran has joined #ruby
bigoldrock has joined #ruby
geggam has joined #ruby
mickeyd has joined #ruby
Guest30158 is now known as C0deMaver1ck
Targen has quit [Remote host closed the connection]
fwaokda has quit [Ping timeout: 276 seconds]
DestinyAwaits has joined #ruby
emptyn1ne is now known as emptynine
vlad_sta_ has quit [Ping timeout: 264 seconds]
heidar has joined #ruby
m4dnificent is now known as madnificent
Coolhand_ is now known as Coolhand
shadoi1 has joined #ruby
WhereIsMySpoon has joined #ruby
sayan has joined #ruby
Iszak has quit [Quit: Textual IRC Client: www.textualapp.com]
mbinder has joined #ruby
nettoweb has quit [Quit: nettoweb]
cmarques has quit [Ping timeout: 260 seconds]
baroquebobcat has joined #ruby
sayan has quit [Read error: Connection reset by peer]
fwaokda has joined #ruby
makoun has quit []
bigoldrock has quit [Ping timeout: 264 seconds]
danshultz has quit [Remote host closed the connection]
camilasan has quit [Remote host closed the connection]
makoun has joined #ruby
apeiros has quit [Remote host closed the connection]
mickeyd has quit [Ping timeout: 260 seconds]
thecommongeek has joined #ruby
Solnse has joined #ruby
angusiguess has quit [Ping timeout: 240 seconds]
vlad_st__ has quit [Remote host closed the connection]
makoun has quit [Client Quit]
seriously_random has quit [Quit: Leaving]
ntus1017_ has quit [Remote host closed the connection]
jmimi has joined #ruby
cortexman1 has joined #ruby
takezawa has joined #ruby
fgo has quit [Remote host closed the connection]
terrellt has quit [Ping timeout: 256 seconds]
leonid__ has quit [Ping timeout: 248 seconds]
kenneth has joined #ruby
<kpwz> how can I refer to the class name of a particular instance which subclasses some other class?
tulip has quit [Ping timeout: 240 seconds]
<kpwz> e.g. right now I'm subclassing Sinatra::Base and then creating instances of that
shadoi has quit [*.net *.split]
Paradox has quit [*.net *.split]
Brando753 has quit [*.net *.split]
<kpwz> e.g. class MyApp < Sinatra::Base; end
<kpwz> MyApp.new.class => Sinatra::Wrapper
jztech101_ has joined #ruby
vigintas has quit [Read error: Connection reset by peer]
druonysus has quit [Quit: Konversation terminated!]
<kpwz> if I'm passing an instance of MyApp around, how can I refer to its own class name rather than that of the class it subclasses?
<kpwz> (so that I can for example call class methods of that class)
<MrZYX> .class is right, the issue here is that sinatra overwrites ::new https://github.com/sinatra/sinatra/blob/master/lib/sinatra/base.rb#L1433
<kpwz> ah.
<kpwz> I did think it seemed wrong…
<kpwz> so is there no way of referring to the class once you subclass Sinatra::Base?
<kpwz> (I'd ask on #sinatra but it's tumbleweed city in there)
vigintas has joined #ruby
JZTech101 has quit [Ping timeout: 276 seconds]
Mekkis_ has quit [Excess Flood]
vigintas has quit [Read error: Connection reset by peer]
pedda has quit [Quit: Textual IRC Client: www.textualapp.com]
Mekkis has joined #ruby
<kpwz> aha, thanks for that
tylersmith has joined #ruby
thecommongeek has quit [Quit: Leaving]
<kpwz> although I think that won't really help me
anonymuse has quit [Remote host closed the connection]
<kpwz> if all it ever returns is "Class" then I have no real reference to the original class
<MrZYX> it does port over the methods though
<kpwz> ah, so you can just call <myinstance>.settings.someclassmethod ?
threesome has joined #ruby
<MrZYX> yes, see the last two lines
<ericwood> halp, I'm trying to come up with a clever way to go from something like [1,2,3] => [[1],[1,2],[1,2,3]]
<MrZYX> well, 3
<ericwood> permutation doesn't preserve order :(
<kpwz> oh duh, sorry — I see now, that definition is a class method.
cortexman1 has quit [Quit: Leaving.]
<kpwz> great, that helps a lot, thanks :)
yashshah_ has joined #ruby
yashshah has quit [Read error: Connection reset by peer]
g0bl1n has joined #ruby
BillCriswell has joined #ruby
kasper has quit [Remote host closed the connection]
bigoldrock has joined #ruby
anonymus_ has joined #ruby
D4T has quit [Quit: Textual IRC Client: www.textualapp.com]
atyz has joined #ruby
terrellt_ has joined #ruby
burlyscudd has joined #ruby
goodgame has quit [Ping timeout: 276 seconds]
<MrZYX> ericwood: [3,7,5] => [[3], [3, 7], [3, 7, 5]] or is it always 1 1,2 1,2,3 ..., n-1, n ?
toastynerd has joined #ruby
<ericwood> the initial one you said
<ericwood> I'm basically doing this to a string kinda
<ericwood> >> (0..'inbox'.length).each { |i| puts 'inbox'.slice(0,i) }
<eval-in> ericwood => ... (https://eval.in/37223)
Alveric has quit [Quit: Leaving]
axl_ has joined #ruby
<ericwood> that's basically kinda what I came up with
<ericwood> need to convert that to an array
mbinder has quit [Quit: Leaving...]
<Xeago> just use map..
<MrZYX> yeah
<ericwood> >> a = []; (0..'inbox'.length).each { |i| a << 'inbox'.slice(0,i) }; a
<eval-in> ericwood => ["", "i", "in", "inb", "inbo", "inbox"] (https://eval.in/37224)
<MrZYX> I don't think you get that much shorter
<Xeago> >> (0..'inbox'.length).map { |i| 'inbox'.slice(0,i) }
<eval-in> Xeago => ["", "i", "in", "inb", "inbo", "inbox"] (https://eval.in/37225)
<ericwood> oh nice
burlyscudd has quit [Client Quit]
<ericwood> much better
<ericwood> thanks
<Xeago> probably start from 1.. instead tho
splittingred has joined #ruby
jonjo has left #ruby [#ruby]
jlast has joined #ruby
Alveric has joined #ruby
krawchyk_ has joined #ruby
<ericwood> ah yeah
<Hanmac1> ericwood:
<Hanmac1> >> [1,2,3,4].each_with_object([]) { |i,a| a << ((a.last || []) + [i]) }
<eval-in> hanmac1 => [[1], [1, 2], [1, 2, 3], [1, 2, 3, 4]] (https://eval.in/37226)
<ericwood> that's longer
<ericwood> gotta save bytes, yo :)
djbkd has joined #ruby
cantonic has quit [Ping timeout: 264 seconds]
terrellt_ is now known as terrellt
<Hanmac1> >> "word".each_char.each_with_object([]) { |i,a| a << ((a.last || []) + [i]) }
<eval-in> hanmac1 => [["w"], ["w", "o"], ["w", "o", "r"], ["w", "o", "r", "d"]] (https://eval.in/37227)
GeissT_ has quit [Quit: MillBroChat AdIRC User]
banachtarski has quit [Quit: Lost terminal]
krawchyk has quit [Ping timeout: 276 seconds]
carloslopes has joined #ruby
bzitzow has joined #ruby
jibi has joined #ruby
MindSpark has quit [Quit: MindSpark]
Guest70526 has quit [Ping timeout: 248 seconds]
wsterling has joined #ruby
Giorgio has joined #ruby
finges has quit [Quit: WeeChat 0.4.1]
finges has joined #ruby
romockee has quit [Quit: romockee]
romockee has joined #ruby
guilleiguaran_ has joined #ruby
sheeny has joined #ruby
mansi has joined #ruby
<sheeny> Is there a way in haml I can do every 2? so @items.each do |item| but get 2 at a time?
sambao21 has quit [Quit: Computer has gone to sleep.]
<MrZYX> sheeny: #each_slice
kasper has joined #ruby
krawchyk has joined #ruby
eldariof has joined #ruby
darth_chatri has quit [Quit: Leaving.]
codesoda has joined #ruby
bionoid has joined #ruby
ssvo has joined #ruby
<sheeny> MrZYX: how do i access the second one?
<MrZYX> it yields arrays
<sheeny> ahh
<MrZYX> and blocks autosplat: @items.each_slice(2) do |item1, item2|
ChanServ has joined #ruby
Brando753 has joined #ruby
jonahR has joined #ruby
krawchyk_ has quit [Ping timeout: 268 seconds]
LBRapid has quit [Ping timeout: 260 seconds]
ChanServ has left #ruby [#ruby]
robscomputer has joined #ruby
<sheeny> MrZYX: perfect! thank you!
robscomputer has quit [Remote host closed the connection]
robscomputer has joined #ruby
goodgame has joined #ruby
blaxter has quit [Ping timeout: 248 seconds]
codesoda has quit [Ping timeout: 245 seconds]
gnerol_ has quit [Ping timeout: 240 seconds]
jefflyne has joined #ruby
bradhe has joined #ruby
niceguyjames has quit [Ping timeout: 240 seconds]
sheeny has quit [Quit: Page closed]
timonv has quit [Remote host closed the connection]
burlyscudd has joined #ruby
mikecmpb_ has quit [Quit: ["Textual IRC Client: www.textualapp.com"]]
marcdel has joined #ruby
LBRapid has joined #ruby
BRMatt has joined #ruby
MrBoolean has joined #ruby
kindjal has quit [Quit: ["Textual IRC Client: www.textualapp.com"]]
bradhe has quit [Ping timeout: 268 seconds]
terrellt has quit [Ping timeout: 256 seconds]
LaPetiteFromage has quit [Quit: LaPetiteFromage]
nari has quit [Ping timeout: 264 seconds]
timonv has joined #ruby
jbpros has joined #ruby
JohnBat26 has quit [Quit: KVIrc 4.3.1 Aria http://www.kvirc.net/]
citizensinspace has quit [Quit: citizensinspace]
BlakeRG has joined #ruby
Brando753 has quit [*.net *.split]
ebouchut has quit [Read error: Connection reset by peer]
monkegjinni has quit [Remote host closed the connection]
BlakeRG has quit [Remote host closed the connection]
MrBoolean has quit [Ping timeout: 264 seconds]
<Eiam> If i want to group an array by attributes of objects in the array so long as those values also exist in a seperate array… nothing fancy in group_by for that right, I just need to write that logic into my group_by block?
_seanc_ has quit [Quit: _seanc_]
apeiros has joined #ruby
julweber has quit [Remote host closed the connection]
gustavn has joined #ruby
<MrZYX> so you want to arrays back, one that has the objects whose attributes are contained in that separate array and one that has all the others?
<MrZYX> *two
r0bgleeson has joined #ruby
gustavn has quit [Client Quit]
mikecmpbll has joined #ruby
poseid_ has joined #ruby
gustavn has joined #ruby
<Eiam> hmm no, for all others I think I'd rather group them by "TBD"
krawchyk_ has joined #ruby
<Eiam> this is all doable inside a group_by correct? just check if the object attribute exists inside the other array & return that, if not return "TBD" and I'm set
gustavn has quit [Client Quit]
airlok has quit [Remote host closed the connection]
citizensinspace has joined #ruby
<Eiam> for some reason it feels like there would be a fancy built in way to do something kind of like that, a weird intersection group_by, eh I dunno. I'll just write the boring block =)
<MrZYX> hm, yeah
gustavn has joined #ruby
krawchyk has quit [Ping timeout: 240 seconds]
BlakeRG has joined #ruby
<MrZYX> post it if you're done, maybe someone knows a smarter way anyway :P
<Eiam> MrZYX: yeah, no worries was just kind of rubberducking the channel
jorge___ has joined #ruby
Voodoofish430 has joined #ruby
<Eiam> MrZYX: sure, will do
BlakeRG has quit [Remote host closed the connection]
adeponte has joined #ruby
mengu_ has quit [Ping timeout: 276 seconds]
poseid_ has quit [Client Quit]
mikecmpbll has quit [Client Quit]
jorge___ has quit [Remote host closed the connection]
<pontiki> what is this verb "rubberducking" ?
<pontiki> floating in a tub looking cute?
jorge___ has joined #ruby
jonahR has quit [Ping timeout: 240 seconds]
brianpWins has joined #ruby
mikecmpbll has joined #ruby
jztech101_ has quit [Ping timeout: 276 seconds]
cofin has quit [Quit: cofin]
<Eiam> I actually do have a rubber duck sitting on top of my monitor, but I've found I tend to parse better with the problem written vs verbalized, sometimes
noname001 has quit [Ping timeout: 248 seconds]
<pontiki> oh crikey
<pontiki> now i know what you mean
<Zelest> lol
<pontiki> i forgot that
johchri has joined #ruby
viszu has joined #ruby
timonv has quit [Remote host closed the connection]
xardas has joined #ruby
Xeago has quit [Remote host closed the connection]
johchri has quit [Client Quit]
Columcil1e is now known as Columcille
jorge___ has quit [Ping timeout: 245 seconds]
mmitchell has quit [Ping timeout: 256 seconds]
mikecmpbll has quit [Client Quit]
moura has quit [Quit: Computer has gone to sleep.]
Ziarkaen has joined #ruby
goodgame has quit [Quit: Quitte]
<kpwz> what's the story with File paths inside gems?
<kpwz> are things like relative paths relative to the structure of the gem when the gem is a module you then include in another class?
Guga_ has quit [Remote host closed the connection]
<apeiros> kpwz: relative paths are always relative to the working directory
tylersmith has quit [Remote host closed the connection]
<apeiros> except for require/load
Guga_ has joined #ruby
Giorgio has quit [Quit: Ex-Chat]
<apeiros> those paths are relative to any of the dirs mentioned in $LOAD_PATH
Giorgio has joined #ruby
<apeiros> by requiring a file from a gem, that gem's lib dir will be added to $LOAD_PATH.
wolcanus has joined #ruby
* Hanmac1 still prefers require_relative
* apeiros still thinks require_relative is for people who don't understand $LOAD_PATH :-p
dhruvasagar has joined #ruby
<kpwz> apeiros: this isn't so much for the purposes of require so much as direct filepath stuff
poseid has quit [Quit: Leaving.]
<kpwz> I want to be able to load a YAML config file at a known location
morgz has joined #ruby
<Hanmac1> apeiros: you mean the same people that does not understand the difference between include "" and include <> ?
<apeiros> kpwz: as said, all except require/load are relative to working directory
tkuchiki has joined #ruby
<apeiros> totally unrelated to gems and other ruby stuff
<apeiros> hanmac1: that's actually quite similar, yes
angusiguess has joined #ruby
jhonnyboy has joined #ruby
<jhonnyboy> hey guys
zeropx has joined #ruby
<pontiki> kpwz: is this for a gem?
<pontiki> or for an app?
<kpwz> yes
<kpwz> ge
<kpwz> gem*
julweber has joined #ruby
<jhonnyboy> hi everyone
<pontiki> a gem you intend to publish for others to use?
<kpwz> you're about to tell me that the gem shouldn't rely on filepaths existing, I'm guessing?
<apeiros> if you want to store data in/with the gem, you can use Gem.datadir to get your gem's datadir
lupine_85 is now known as lupine
<kpwz> possibly for others; right now just for me.
<pontiki> not exactly, no
<pontiki> if it's just for you, do as ye will
<apeiros> you should only use that for read-only data, though
<kpwz> it will be read-only, yes
<pontiki> if it's for others, consider where others may wish to put things
<kpwz> oh, of course.
<pontiki> that is all
<pontiki> carry on
<kpwz> :)
Ziarkaen has quit [Quit: ERC Version 5.3 (IRC client for Emacs)]
darth_chatri has joined #ruby
<apeiros> an example for how to load data stored with your gem
pmros has joined #ruby
relix has joined #ruby
pipework has joined #ruby
pskosinski has joined #ruby
Es0teric has joined #ruby
Paradox has joined #ruby
Guga_ has quit [Remote host closed the connection]
jibi has quit [Ping timeout: 268 seconds]
Guga_ has joined #ruby
<pmros> hi
<Hanmac1> apeiros: i got an Mac laptop for work … i will use it for my evil plans (i build my C++ gems on them too)
<apeiros> ^^
<apeiros> nice
<pmros> did you know espresso web framework?
alup_ has quit [Quit: Leaving]
Vivekananda has joined #ruby
<Hanmac1> after some little changes both my rwx gem (wxWidgets) and my sfml gem (OpenGL window lib) works perfect on Linux and on OSX
anonymus_ has left #ruby [#ruby]
airlok has joined #ruby
banjara1 has quit [Read error: No route to host]
zeade has joined #ruby
poga has joined #ruby
<airlok> Using `` to run a system command, is there any way to suppress an error message?
banjara has joined #ruby
vjustov has joined #ruby
vjustov has left #ruby [#ruby]
zeade has quit [Client Quit]
<ericwood> 2&> /dev/null
<ericwood> I think that's the redirect for stderr
<ericwood> whoops
<airlok> Doesn't get much more obscure than that
<ericwood> `command 2> /dev/null`
<airlok> Thanks, ericwood
robert_ has joined #ruby
<ericwood> bash is archaic
<ericwood> what'd you expect? :)
codecop has quit [Quit: Išeinu]
senayar has quit [Remote host closed the connection]
jesly has joined #ruby
citizensinspace has quit [Quit: citizensinspace]
yashshah_ has quit [Ping timeout: 264 seconds]
<airlok> Worked like a charm
dhruvasagar has quit [Ping timeout: 245 seconds]
<pontiki> still use it a lot
trepidaciousMBR has quit [Quit: trepidaciousMBR]
gustavn has quit [Quit: Leaving]
airlok has quit [Remote host closed the connection]
awesomepossum has left #ruby [#ruby]
jibi has joined #ruby
zeade has joined #ruby
<Eiam> hanmac1: err, wasn't #include "" for non system libraries and #include <> was for system provided libraries?
<Eiam> hanmac1: we are takling c++ right? =0
<pontiki> or C
jesly has quit [Read error: Connection reset by peer]
<Eiam> brb installing 10.9
axl_ has quit [Quit: axl_]
mahmoudimus has quit [Quit: Computer has gone to sleep.]
timonv has joined #ruby
Eiam has quit [Quit: Textual IRC Client: http://www.textualapp.com/]
jesly has joined #ruby
mark_locklear has quit [Ping timeout: 240 seconds]
<Hanmac1> Eiam yeah, i use "" for internal and <> for external stuff
inimit has joined #ruby
d2dchat has quit [Remote host closed the connection]
bluenemo has joined #ruby
jesly has quit [Client Quit]
jbpros has quit [Quit: jbpros]
dodosan has joined #ruby
realDAB has joined #ruby
LaPetiteFromage has joined #ruby
mmitchell has joined #ruby
mansi has quit [Remote host closed the connection]
angusiguess has quit [Ping timeout: 245 seconds]
balves is now known as fryguy
realDAB has quit [Client Quit]
headius has quit [Quit: headius]
Spooner has quit [Remote host closed the connection]
ccooke_ is now known as ccooke
airlok has joined #ruby
vinnyOcean has quit [Quit: Textual IRC Client: www.textualapp.com]
adeponte has quit [Remote host closed the connection]
<Desert_eagle> hi!
banjara has quit [Read error: Connection reset by peer]
pwnfactory has quit [Quit: Leaving]
banjara has joined #ruby
<Desert_eagle> I have variable with this value https://dpaste.de/ZEwjx/
<Desert_eagle> how could i get ololo and variant
<Desert_eagle> in ruby?
<Desert_eagle> in fact i need string "ololo,value"
danslo has joined #ruby
<Desert_eagle> sorry, "ololo,variant"
<apeiros> you sure you pasted the right link?
<Desert_eagle> yeah
cortexman1 has joined #ruby
adeponte has joined #ruby
Mars^ has joined #ruby
mansi has joined #ruby
angusiguess has joined #ruby
<MrZYX> string.scan(/(?<=slicer_)[^_]+/).join(",")
morgz has quit [Remote host closed the connection]
pietr0_ is now known as pietr0
druonysus has joined #ruby
poga has quit [Remote host closed the connection]
danshultz has joined #ruby
amh345 has joined #ruby
anay has joined #ruby
maxmanders has quit [Quit: Computer has gone to sleep.]
eriktrautman has joined #ruby
Akuma has quit [Ping timeout: 240 seconds]
<_br_> If you had a module::class taking care of some payment api and now you have another bit which is generating html forms for that payment api, would you create the html generator bit as a Module::Module mixin (instance methods to be included in the main Module::Class) or what would you choose?
nbouscal has quit [Quit: Computer has commenced electric sheep tracking protocol.]
<MrZYX> those are separate classes
reset has joined #ruby
Kar- has quit [Remote host closed the connection]
jrendell has joined #ruby
<_br_> You would turn the html outputting into its own module::class? I see.
<MrZYX> yes
poikon has quit [Remote host closed the connection]
rupee has joined #ruby
airlok has quit [Remote host closed the connection]
<MrZYX> neither one needs the other to work
<MrZYX> no need to couple them
<_br_> very good point.
<_br_> thanks.
anay has quit [Remote host closed the connection]
poikon has joined #ruby
freerobby1 has quit [Quit: Leaving.]
anay has joined #ruby
tylersmith has joined #ruby
heftig has quit [Quit: Quitting]
obs has quit [Quit: Konversation terminated!]
jpun_ is now known as jpun
eriktrautman is now known as etcetera
etcetera has left #ruby [#ruby]
etcetera has joined #ruby
cmarques has joined #ruby
citizensinspace has joined #ruby
anay has quit [Ping timeout: 248 seconds]
relix has quit [Ping timeout: 245 seconds]
zcreative has quit [Quit: ["Textual IRC Client: www.textualapp.com"]]
lkba has quit [Ping timeout: 248 seconds]
realDAB has joined #ruby
mark_locklear has joined #ruby
rgreen_ has joined #ruby
c0rn has joined #ruby
amh345 is now known as amh
jesly has joined #ruby
cmhobbs has joined #ruby
TheTFEF is now known as Nightmare
<rgreen_> hey guys i am try to do array.map!{....} but array may have an element that is not able to be mapped and i need to just skip over it and continue onto the next ne. I was think ing i need to do womsthing with try, catch but im not sure
bionoid has quit [Remote host closed the connection]
jztech101_ has joined #ruby
<pontiki> hmm
<pontiki> do you mean begin-resuce?
pmros has quit [Quit: Konversation terminated!]
<pontiki> there's throw-catch, but that's a longjump thing
<rgreen_> should i do it in a loop like array[i].map?
voglster has quit [Ping timeout: 256 seconds]
adeponte has quit [Read error: Connection reset by peer]
jztech101_ has quit [Read error: Connection reset by peer]
<pontiki> probably not, unless the element at array[i] enumerable
adeponte has joined #ruby
<pontiki> what sort array contains an element that can't be part of an enumeration?
jesly has quit [Read error: Connection reset by peer]
<rgreen_> idk
mahmoudimus has joined #ruby
Akuma has joined #ruby
adeponte has quit [Read error: Connection reset by peer]
<pontiki> you've got one tho?
twoism has joined #ruby
headius has joined #ruby
adeponte has joined #ruby
hukl has joined #ruby
citizensinspace has quit [Ping timeout: 240 seconds]
iamjbecker has joined #ruby
<rgreen_> i have my array.map!{|s| s.sub(some text) {block replace}}
nomenkun has quit [Remote host closed the connection]
<rgreen_> and not every eelemt in the array has some text
<rgreen_> so it cant map
brtdv has quit [Read error: Operation timed out]
<ccooke> rgreen_: you can just handle that in the map block
<pontiki> sub without ! will simply return the current conten
<Hanmac1> rgeen_ use nil and then compact
<pontiki> unlike sub!
cmhobbs has quit [Ping timeout: 240 seconds]
jerius_ has quit [Ping timeout: 268 seconds]
<ccooke> rgreen_: what do you want to happen if there's an element of the array that isn't text?
<rgreen_> ccooke: i can put a begin rescue in the map block?
jesly has joined #ruby
blitz has joined #ruby
<pontiki> you can put them anywhere
<rgreen_> they are all text but one of them does contain what im looking for
heftig has joined #ruby
<ccooke> rgreen_: you could, but that may or may not be what you want. you need to decide that you want to do with non-text items in the array
<rgreen_> or rather some of them dont
<pontiki> rgreen_: what do you get if you remove the ! from the map?
ffio has joined #ruby
<ccooke> rgreen_: do you just want to do the substitution on any elements that have it?
<rgreen_> yea
iamjbecker has quit [Remote host closed the connection]
<ccooke> rgreen_: and you want to alter the items in the array?
<rgreen_> yes
Guest47909 has quit [Ping timeout: 276 seconds]
cmhobbs has joined #ruby
matti_ has quit [Quit: Reconnecting]
matti has joined #ruby
<ccooke> rgreen_: in that case, you don't need a map at all. Use an each. Inside the block, test to see if they'll support the sub! method, then call it.
<rgreen_> ok brb
<ccooke> rgreen_: something like array.each { |i| next unless i.respond_to? :sub! ; i.sub!(text) {block} }
<ccooke> (there are cleaner ways to write it, even)
LaPetiteFromage has quit [Quit: LaPetiteFromage]
<jesly> any rails-angular gurus here? :-D
<Hanmac1> jesly: #rubyonrails
kpshek has quit []
<jesly> hanmac: thnx buddy :)
<Hanmac1> jesly: we are all rails-agnostics, we do not believe in the existence of rails
cha1tanya has quit [Quit: cha1tanya]
timonv has quit [Remote host closed the connection]
<jesly> hanmac1: so am i, ;) (i don't know rails either, but am fine in ruby)
<jesly> i needed the help for a friend of mine.
Giorgio has quit [Ping timeout: 245 seconds]
wolcanus has quit [Remote host closed the connection]
<pontiki> ccooke: i don't think that's quite going to do what rgreen_ needs
<jesly> his question has been rotting in stackoverflow w/o an answer for some days..
<pontiki> sub! may still return nil
<ccooke> pontiki: but they said they just needed to replace the items in the array
freerobby has joined #ruby
<ccooke> pontiki: and it doesn't matter what an each returns
jorge__ has joined #ruby
Karpuragauram has joined #ruby
<pontiki> no, the each .. respond_to? is good
jesly has quit [Read error: Connection reset by peer]
<pontiki> i think they need to use sub instead of sub! there
<ccooke> If rgreen_ actually needs to return the altered block, then array.map { |i| if i.respond_to? :sub; i.sub(text) {block}; else i; end }
mmitchell has quit [Remote host closed the connection]
<ccooke> pontiki: that wouldn't do anything
<pontiki> or else use sub!, and catch it if it returns nil and return s at that point?
Vivekananda has quit [Ping timeout: 240 seconds]
<pontiki> hmm
<ccooke> pontiki: the point is that sub(){} will change the text if it's there, and not otherwise. sub! will alter the original object, sub will return the changed one
jesly has joined #ruby
poikon has quit [Remote host closed the connection]
<pontiki> yes, but sub! will also return nil if it can't change the original
<ccooke> in the each, sub() will do nothing, because each will return the original array.
<pontiki> won't it?
<ccooke> the return of sub! doesn't matter, though. it's being thrown away
<pontiki> then how does array get changed?
<apeiros> it doesn't
<apeiros> the values in the array get changed
<rgreen_> ok i am getting an error, here is the actual implemented line
<pontiki> i thought that's what he wanted?
<rgreen_> orig_introtext_strings.each{|i| next unless i.respond_to? :sub! ; i.sub!(/index.php\?option=com_attachments&amp;task=download_unsecure&amp;attachmentid=(\d+)/) {replacement_url.url[replacement_url.id.index(Integer($1))]}}
jesly has quit [Read error: Connection reset by peer]
<apeiros> the array itself stays identical with .each
rdark has quit [Quit: leaving]
<pontiki> apeiros: you are far too precise
<pontiki> i meant the contents of array
<amh> did free node take a dump earlier?
<rgreen_> the problem is that Integer($1) is no longer returning a valid id
<krawchyk_> amh: haha yes
<amh> well that explains it!
jorge__ has quit [Ping timeout: 276 seconds]
<apeiros> you can't be too precise in programming. being imprecise is precisely the source of "why the fuck won't it work?!?"
burlyscudd has left #ruby [#ruby]
<ccooke> pontiki: unfortunately precision is important here :-)
adeponte has quit [Read error: Connection reset by peer]
<apeiros> and it applies quite a bit for this very situation
adeponte has joined #ruby
Guedes0 has left #ruby ["Saindo"]
burlyscudd has joined #ruby
<pontiki> people often get hugely frustrated by my level of precision
poikon has joined #ruby
<pontiki> and here i am feeling their pain
JZTech101 has joined #ruby
<ccooke> Precision is why I asked what rgreen_ actually needed to do - it wasn't possible to help without knowing, and the code didn't make it clear enough
<rgreen_> sorry
jbpros has joined #ruby
<ccooke> (no criticism of rgreen_ here: Being imprecise is really easy when coding, because what you need is all in your head)
realDAB has quit [Quit: realDAB]
<pontiki> so then, if you use the each, and sub!, and sub! returns a nil, how is it that that particular array element is not going to be set to nil?
DestinyAwaits has quit [Quit: Leaving]
jbpros has quit [Client Quit]
<ccooke> pontiki: because sub!'s return has nothing to do with what it does
<pontiki> no?
woolite64 has joined #ruby
<ccooke> pontiki: sub! operates directly on the object you call it from, changing it (if need be)
<pontiki> it's setting the value of s at the point
<pontiki> which is pointing to the current element in the array
airlok has joined #ruby
<pontiki> so it will be setting the value of the current element of the array
<ccooke> pontiki: no, that's not quite precise enough (sorry!)
<pontiki> no?
<pontiki> i must go test this
<ccooke> sub! is a method *of* s, which is an object that happens to be one of the items in the array
<ccooke> when you call s.sub!, you're calling the sub! method on a String object (probably. Or anything else that has a sub! method)
<ccooke> that method, because it's a part of the object, can change the value of the object itself. It can then return anything it likes.
mansi has quit [Remote host closed the connection]
mansi has joined #ruby
ffio has quit [Quit: WeeChat 0.4.1]
<spike|spiegel> I'm sub! I'll return poop all the time, coz, I can.
mansi has quit [Read error: Connection reset by peer]
jibi has quit [Ping timeout: 240 seconds]
ffio has joined #ruby
<ccooke> pontiki: for an example, run this code: String.class_exec { def foo! ;self.replace('foo'); "bar"; end }
mansi has joined #ruby
sayd_ has left #ruby ["Textual IRC Client: www.textualapp.com"]
<ccooke> pontiki: then define a string variable and call the foo! method on it - see what the method returns, and then see what the value of the string is.
devoldmx has quit [Ping timeout: 268 seconds]
<rgreen_> i havnt been watchin all of your conversation, but im confused , |i| next unless i.respond_to? :sub! ; i.sub!(...) if all of the elements in the array are strings, wont they all respond to sub!? however some of them are the problem strings that dont behave with what sub tries to do
zets has joined #ruby
<ccooke> rgreen_: ah, in that case you can drop the next unless... line.
JZTech101 has quit [Ping timeout: 264 seconds]
<ccooke> rgreen_: when you said that not everything worked, I thought that you meant not everything in the array is a string
brendan- is now known as bmurt
robert_ has quit [Read error: Connection reset by peer]
tbrock has quit [Quit: Textual IRC Client: www.textualapp.com]
<rgreen_> ahh sorry yea here is what im actually doing
<rgreen_> orig_introtext_strings.each{|i| next unless i.respond_to? :sub! ; i.sub!(/index.php\?option=com_attachments&amp;task=download_unsecure&amp;attachmentid=(\d+)/) {replacement_url.url[replacement_url.id.index(Integer($1))]}}
robert_ has joined #ruby
<rgreen_> but orig_introtext_strings are all strings
<ccooke> rgreen_: yeah, you can just have the i.sub! statement in the block in that case
<rgreen_> but some of them contain the sub! regex and some dont
devoldmx has joined #ruby
mmitchell has joined #ruby
<rgreen_> so if sub! fails, will it move to the next one or will it throw an error?
<ccooke> rgreen_: right. that'll work fine in the each then
mmitchell has quit [Remote host closed the connection]
jbpros has joined #ruby
realDAB has joined #ruby
airlok has quit [Ping timeout: 240 seconds]
mmitchell has joined #ruby
<rgreen_> its still throwing an error :56:in `[]': no implicit conversion from nil to integer (TypeError) from sql_code.rb:56:in `block (2 levels) in <main>' from sql_code.rb:56:in `sub!' from sql_code.rb:56:in `block in <main>' from sql_code.rb:56:in `each' from sql_code.rb:56:in `<main>'
<rgreen_> which is the Integer($1) part
forrest has joined #ruby
thepumpkin has quit [Remote host closed the connection]
<rgreen_> but that is the same problem that i was having before
jesly has joined #ruby
ewag has quit [Ping timeout: 246 seconds]
<apeiros> pontiki: variables vs. objects
<pontiki> ccooke: i see what's happening https://gist.github.com/tamouse/5968490
<apeiros> x.sub! # sub! *can't* set x, it can only modify the object x refers to
<pontiki> i understand: what s.sub! *returns* doesn't matter, as you said
<pontiki> only what it does
<apeiros> and since objects can't *become* another object, i.e. a String can't *become* nil, x can never become nil by `x.sub!`
kevinykchan has joined #ruby
bionoid has joined #ruby
<apeiros> in the same way, ary.each { |x| x.sub!(…) }, sub can't change the array, because it doesn't know about it. neither does x.
r0bby has quit [Ping timeout: 256 seconds]
jbpros has quit [Client Quit]
cofin has joined #ruby
Mars^ has quit [Ping timeout: 268 seconds]
jhonnyboy has left #ruby [#ruby]
adeponte has quit [Read error: Connection reset by peer]
jmimi has quit [Quit: Leaving.]
jmimi has joined #ruby
adeponte has joined #ruby
dallasm_ has joined #ruby
Es0teric has quit [Read error: No buffer space available]
RORgasm has quit [Read error: Connection reset by peer]
zodiak has quit [Ping timeout: 240 seconds]
RORgasm has joined #ruby
baordog_ has joined #ruby
Es0teric has joined #ruby
atyz has quit [Quit: Leaving...]
<rgreen_> can i put a if statement in a block for sub i.e. sub!(...) {if statement}
<apeiros> rgreen_: yes
<apeiros> blocks are ordinary ruby code
lindenle has joined #ruby
<apeiros> you can put in whatever you want. sub! only cares about the block's return value.
zodiak has joined #ruby
<apeiros> you could even define classes in your sub's block
interactionjaxsn has quit [Remote host closed the connection]
<Hanmac1> i still wonder why Integer($1) fails
lindenle has quit [Remote host closed the connection]
monkegjinni has joined #ruby
anay has joined #ruby
interactionjaxsn has joined #ruby
baordog has quit [Ping timeout: 276 seconds]
<rgreen_> i dont know what is actually in $1
lindenle has joined #ruby
<realDAB> hanmac1: i missed that one. can you summarize or point me to a gist or something?
<rgreen_> i wish i could see what it is getting set to
Karpuragauram has quit [Quit: Ex-Chat]
germanstudent has quit [Ping timeout: 246 seconds]
Vivekananda has joined #ruby
Zai00 has quit [Quit: Zai00]
robscomputer_ has joined #ruby
robscomputer has quit [Read error: Connection reset by peer]
khushildep has quit [Ping timeout: 248 seconds]
gildo_ has joined #ruby
kenneth has quit [Quit: kenneth]
<Hanmac1> realDAB: from what i see the $1 should be (\d+) so it should be a number hm
tatsuya_o has quit [Remote host closed the connection]
Guest83029 is now known as kennym
<ccooke> It'll be a string, though
rezzack has joined #ruby
<ccooke> but it's easy to see what it does
interactionjaxsn has quit [Ping timeout: 240 seconds]
maxmanders has joined #ruby
jprovazn has quit [Quit: Odcházím]
dallasm_ has quit [Remote host closed the connection]
germanstudent has joined #ruby
jesly has quit [Read error: Connection reset by peer]
77CAAKLE3 is now known as [Fudge]
kenneth has joined #ruby
ciziar has joined #ruby
wolcanus has joined #ruby
kevinykchan has quit [Quit: Computer has gone to sleep.]
kindjal has joined #ruby
samuel02_ has quit [Ping timeout: 240 seconds]
atyz has joined #ruby
reset has quit [Quit: Leaving...]
xsdg_ has quit [Quit: Reconnecting]
xsdg has joined #ruby
adeponte has quit [Read error: Connection reset by peer]
JZTech101 has joined #ruby
<pontiki> rgreen_: see #tap
ciziar has quit [Client Quit]
adeponte has joined #ruby
<ccooke> pontiki: that won't quite do the job in this case
<ccooke> you need to see the values as generated.
ciziar has joined #ruby
realDAB has quit [Quit: realDAB]
<ccooke> the simplest one is to define a new method that calls Integer(), and replace the call to Integer() with that.
dallasm_ has joined #ruby
jesly has joined #ruby
ciziar has quit [Client Quit]
dallasm__ has joined #ruby
<ccooke> Or, if you're sick and don't want to edit your code, you *could* do: Kernel.class_exec { alias_method :Integer_copy, :Integer; def Integer(i); puts "Integer(#{i.inspect})"; Integer_copy(i); end }
jesly has quit [Read error: Connection reset by peer]
<ccooke> (or something like it)
danslo has quit [Quit: danslo]
mengu has joined #ruby
robscomputer_ has quit [Read error: Connection reset by peer]
tjbiddle has joined #ruby
dallasm_ has quit [Remote host closed the connection]
robscomputer has joined #ruby
jmimi has quit [Quit: Leaving.]
jmimi1 has joined #ruby
marcgg has quit [Read error: No route to host]
<rgreen_> thanks for your help guys, im finally making progress
marcgg_ has joined #ruby
adeponte has quit [Remote host closed the connection]
jesly has joined #ruby
predator117 has quit [Ping timeout: 268 seconds]
ntus1017 has joined #ruby
interactionjaxsn has joined #ruby
<pontiki> i was thinking actually of tapping the sub and seeing what $1 was set to
wolcanus has quit [Ping timeout: 276 seconds]
mengu has quit [Ping timeout: 248 seconds]
jmimi1 has quit [Client Quit]
<ccooke> pontiki: you can't do that, though. The sub isn't an iterator
jmimi has joined #ruby
<ccooke> more to the point, the tap will only get at what the sub returns
burlyscudd has quit [Quit: Leaving.]
<ccooke> which will be after $1 goes out of scope
citizensinspace has joined #ruby
tjbiddle has quit [Quit: tjbiddle]
<pontiki> does $1 go out of scope after the block?
<Hanmac1> maybe, thats one of the reasons why i do not trust $1
<pontiki> to the bat irb!
danslo has joined #ruby
g0bl1n has quit [Quit: Ex-Chat]
Notte has quit [Remote host closed the connection]
tjbiddle has joined #ruby
<rgreen_> i ended up doing a very simple function call def show(args) replacement_url=Build_replacement_links.new() puts args puts replacement_url.id.include? args end
ferdev has quit [Quit: ferdev]
lara-the-bell has joined #ruby
reset has joined #ruby
fernandoaleman has joined #ruby
JZTech101 has quit [Quit: Hi, I'm a quit message virus. Please replace your old line with this line and help me take over the world of IRC]
fernandoaleman has left #ruby [#ruby]
mansi has quit [Remote host closed the connection]
<pontiki> rgreen_: please use gist or something?
danslo has quit [Client Quit]
<rgreen_> haha ok sorry
JZTech101 has joined #ruby
lara-the-bell has left #ruby [#ruby]
<pontiki> it's just hard to read pasted in code
anildigital has quit [Ping timeout: 245 seconds]
nomenkun has joined #ruby
alvaro_o has joined #ruby
burlyscudd has joined #ruby
jmimi has quit [Quit: Leaving.]
jesly has quit [Read error: Connection reset by peer]
PhilK_ is now known as PhilK
anildigital has joined #ruby
atyz has quit [Quit: Leaving...]
finges has quit [Quit: WeeChat 0.4.1]
jesly has joined #ruby
finges has joined #ruby
Vivekananda has quit [Quit: Ex-Chat]
thelamest has quit [Quit: leaving]
Vivekananda has joined #ruby
Mars^ has joined #ruby
bradhe has joined #ruby
reset has quit [Ping timeout: 268 seconds]
JZTech101 has quit [Quit: Hi, I'm a quit message virus. Please replace your old line with this line and help me take over the world of IRC]
anay has quit [Remote host closed the connection]
atyz has joined #ruby
kenneth has quit [Quit: kenneth]
tkuchiki has quit [Remote host closed the connection]
havenwood has joined #ruby
anonymuse has joined #ruby
ehaliewicz has joined #ruby
anildigital has quit [Ping timeout: 264 seconds]
danslo has joined #ruby
ffranz1 has joined #ruby
ffranz has quit [Quit: Leaving]
jesly has quit [Read error: Connection reset by peer]
anildigital has joined #ruby
airlok has joined #ruby
cmhobbs has quit [Ping timeout: 260 seconds]
mary5030_ has joined #ruby
romockee has quit [Quit: romockee]
ffranz1 has quit [Remote host closed the connection]
jesly has joined #ruby
romockee has joined #ruby
adeponte has joined #ruby
fwaokda has quit []
anonymuse has quit [Ping timeout: 240 seconds]
JMcAfreak has quit [Quit: Dang it, Moon Moon!]
JMcAfreak has joined #ruby
airlok has quit [Remote host closed the connection]
jesly has quit [Read error: Connection reset by peer]
mary5030 has quit [Ping timeout: 276 seconds]
anonymuse has joined #ruby
<pontiki> more fun with $1: https://gist.github.com/tamouse/5968490
voglster has joined #ruby
acrussell has quit [Quit: Leaving.]
dodosan has quit [Remote host closed the connection]
xardas_ has joined #ruby
ffranz has joined #ruby
<pontiki> rgreen_: did that show you what you needed?
jesly has joined #ruby
kirun has joined #ruby
kasper has quit [Remote host closed the connection]
ananthakumaran has quit [Quit: Leaving.]
xardas has quit [Ping timeout: 240 seconds]
xardas_ is now known as xardas
adeponte has quit [Remote host closed the connection]
<rgreen_> yea it worked well
hamed_r has joined #ruby
<pontiki> do take a look at #tap, it's really useful for debuggin
<rgreen_> yea i will thanks
DrPete has joined #ruby
<Hanmac1> tap &:display is the best
havenwood has quit [Remote host closed the connection]
nemesit|znc has quit [Ping timeout: 264 seconds]
JZTech101 has joined #ruby
jesly has quit [Read error: Connection reset by peer]
echevemaster has joined #ruby
jesly has joined #ruby
lele has quit [Ping timeout: 260 seconds]
krawchyk_ has quit [Remote host closed the connection]
krawchyk has joined #ruby
paolooo has quit [Quit: Page closed]
cofin has quit [Quit: cofin]
JZTech101 has quit [Read error: Connection reset by peer]
jesly has quit [Read error: Connection reset by peer]
JZTech101 has joined #ruby
nomenkun has quit [Remote host closed the connection]
<darth_chatri> anyone used rspec/given?
dallasm__ has quit [Remote host closed the connection]
<darth_chatri> i'm having a problem where a Given block is executed multiple times
jesly has joined #ruby
monkegjinni has quit [Remote host closed the connection]
nemesit|znc has joined #ruby
dallasm_ has joined #ruby
bionoid has quit [Remote host closed the connection]
nomenkun has joined #ruby
predator117 has joined #ruby
bionoid has joined #ruby
bionoid has quit [Remote host closed the connection]
<rgreen_> lets say im doin array.each{|i| puts "text=#{other_array[i.index]}"} i know this syntax is wrong but what can i call instead of index to retrieve the index of i as it goes through the array?
havenwood has joined #ruby
<tobiasvl> each_with_index
jesly has quit [Read error: Connection reset by peer]
<tobiasvl> is what you want
<tobiasvl> instead of each
<rgreen_> ok thanks
kindjal has quit [Quit: Computer has gone to sleep.]
nemesit|znc has quit [Ping timeout: 260 seconds]
jesly has joined #ruby
<pontiki> darth_chatri: Given being gherkin in a cucumber feature?
philipe1 has joined #ruby
fphilipe has joined #ruby
<pontiki> you're having trouble with the step definition?
kindjal has joined #ruby
cburyta has quit [Remote host closed the connection]
bradhe has quit [Ping timeout: 240 seconds]
<pontiki> darth_chatri: is your feature suite on public repo? (github, etc)
kasper has joined #ruby
jesly has quit [Read error: Connection reset by peer]
LaPetiteFromage has joined #ruby
pskosinski has quit [Remote host closed the connection]
cofin has joined #ruby
adeponte has joined #ruby
jesly has joined #ruby
reset has joined #ruby
<darth_chatri> pontiki: not yet, i'll pastebin it
nemesit|znc has joined #ruby
adeponte has quit [Remote host closed the connection]
bradhe has joined #ruby
<citizensinspace> Could someone who knows ruby well take a look at this gist and tell me what they think about it quality-wise? I'm curious how it stacks up. https://gist.github.com/citizens/5962814
<pontiki> i guess that leaves me out
Skelz0r has quit [Quit: Lost terminal]
<citizensinspace> hah, or anyone I guess.
JZTech101 has quit [Quit: Hi, I'm a quit message virus. Please replace your old line with this line and help me take over the world of IRC]
BizarreCake has quit [Ping timeout: 240 seconds]
<darth_chatri> pontiki: http://pastebin.com/aqKf8btX
<darth_chatri> line 28: service gets created multiple times
hamed_r has quit [Quit: Leaving]
<havenwood> citizensinspace: No need to `require 'rubygems'`, 1.8 is dead.
<havenwood> citizensinspace: I'd highly recommend soft-tabs of 2-spaces (some may disagree, but Matz uses spaces and I think its more idiomatic.)
<citizensinspace> havenwood: thanks, I'll take that out.
<citizensinspace> havenwood: The formatting looks good in Sublime, but fell apart when I pasted it to Gist.
<havenwood> citizensinspace: might double check that you have soft-tabs set in Sublime, Gist doesn't play nice with 2-space tabs.
<havenwood> citizensinspace: Line 38, `parent()` should omit parens, unless there is a reason i'm not seeing.
daidoji70 has joined #ruby
bluenemo has quit [Quit: Verlassend]
finges has quit [Quit: WeeChat 0.4.1]
<havenwood> citizensinspace: Line 52, drop #nil? (unless you actually want to differentiate nil from false).
nemesit|znc has quit [Ping timeout: 240 seconds]
<havenwood> citizensinspace: Oh, line 52 if you drop .nil? if becomes unless**
finges has joined #ruby
<pontiki> long-form memoize :)
jesly has quit [Read error: Connection reset by peer]
<havenwood> citizensinspace: I'd use Ruby 1.9 style hash on line 67, personally.
<Hanmac1> also think about that that unless obj is faster than if !obj
<havenwood> citizensinspace: Code looks good. :)
nemesit|znc has joined #ruby
<darth_chatri> pontiki: did you see the pastie? anything obvious I'm missing?
<pontiki> whoa
<pontiki> i've never seen that
<pontiki> Given looks like it's doing the work of let
<pontiki> which gets run once per it
nazty has quit [Read error: Connection reset by peer]
lethan has joined #ruby
nazty has joined #ruby
<citizensinspace> havenwood: You're right, I don't need the () after parent. It was a habit from jQuery.
<pontiki> within the scope
anonymuse has quit [Remote host closed the connection]
<darth_chatri> thats if we write Given!
<pontiki> are you sure?
<darth_chatri> Given is supposed to be lazy and cached
bionoid has joined #ruby
<pontiki> i don't know
anonymuse has joined #ruby
JZTech101 has joined #ruby
<darth_chatri> yeah. at least as per https://github.com/jimweirich/rspec-given
<citizensinspace> (but I didn't realize)
jesly has joined #ruby
<pontiki> darth_chatri: i think you misunderstand what "lazy" means
<pontiki> in that sense, "lazy" means only execute if i need the value
<Morrolan> citizensinspace: You could replace the three lines in the 'attributes' function with a single-line inject. If you have a few thousand attributes then the performance hit from creating a new hash for each might be noticeable, though.
<darth_chatri> its also cached
<pontiki> but if you need the value in multiple tests, it will run that many times
lethan has quit [Remote host closed the connection]
rgreen_ has quit [Ping timeout: 250 seconds]
<citizensinspace> thanks havenwood, hanmac1. I appreciate it.
<darth_chatri> "The first reference to 'stack' in the specification will cause the code block to execute. Futher references to 'stack' will reuse the previously generated value."
jesly has quit [Read error: Connection reset by peer]
<pontiki> eh
<pontiki> i don't know this gem
dodosan has joined #ruby
<darth_chatri> wrt the github README example
<pontiki> forget whatever i said
<pontiki> i've never used it
devoldmx has quit [Ping timeout: 240 seconds]
anonymuse has quit [Ping timeout: 245 seconds]
tatsuya_o has joined #ruby
anonymuse has joined #ruby
lkba has joined #ruby
DrShoggoth has quit [Quit: Leaving]
morgz has joined #ruby
morgz has quit [Client Quit]
morgz_ has joined #ruby
kindjal has quit [Quit: Computer has gone to sleep.]
morgz_ has quit [Client Quit]
morgz has joined #ruby
JohnBat26 has joined #ruby
jesly has joined #ruby
jesly has quit [Read error: Connection reset by peer]
takezawa has quit [Remote host closed the connection]
milardovich has joined #ruby
takezawa has joined #ruby
milardovich has quit [Max SendQ exceeded]
Gue______ has joined #ruby
milardovich has joined #ruby
jesly has joined #ruby
danslo has quit [Quit: danslo]
bradhe has quit [Remote host closed the connection]
bradhe has joined #ruby
milardovich has quit [Max SendQ exceeded]
milardovich has joined #ruby
Gooder`` has quit [Read error: Connection reset by peer]
kindjal has joined #ruby
dallasm_ has quit [Remote host closed the connection]
jesly has quit [Read error: Connection reset by peer]
viszu has quit [Quit: Leaving.]
voglster has quit [Ping timeout: 240 seconds]
Astralum has joined #ruby
atmosx has quit [Remote host closed the connection]
milardovich has quit [Max SendQ exceeded]
cburyta has joined #ruby
milardovich has joined #ruby
takezawa has quit [Ping timeout: 264 seconds]
jesly has joined #ruby
milardovich has quit [Max SendQ exceeded]
milardovich has joined #ruby
bradhe has quit [Ping timeout: 260 seconds]
zmike123 has quit [Quit: ~]
voglster has joined #ruby
burlyscudd has quit [Quit: Leaving.]
jbpros has joined #ruby
milardovich has quit [Max SendQ exceeded]
devoldmx has joined #ruby
milardovich has joined #ruby
Hanmac1 has quit [Quit: Leaving.]
milardovich has quit [Max SendQ exceeded]
milardovich has joined #ruby
Appineer has joined #ruby
whowantstolivefo has joined #ruby
Appineer has left #ruby [#ruby]
milardovich has quit [Max SendQ exceeded]
milardovich has joined #ruby
<darth_chatri> pontiki: you were right. the cached values are used only across sibling contexts
popl has joined #ruby
<darth_chatri> so it was acting like a let
JZTech101 has quit [Quit: Hi, I'm a quit message virus. Please replace your old line with this line and help me take over the world of IRC]
fphilipe has quit [Ping timeout: 240 seconds]
danshultz has quit [Ping timeout: 260 seconds]
milardovich has quit [Max SendQ exceeded]
philipe1 has quit [Ping timeout: 245 seconds]
c0rn has quit [Quit: Computer has gone to sleep.]
milardovich has joined #ruby
morgz has quit [Quit: Leaving]
jesly has quit [Read error: Connection reset by peer]
danshultz has joined #ruby
havenwood has quit [Remote host closed the connection]
robscomputer_ has joined #ruby
robscomputer has quit [Ping timeout: 268 seconds]
milardovich has quit [Max SendQ exceeded]
milardovich has joined #ruby
madb055 has joined #ruby
jesly has joined #ruby
LaPetiteFromage has quit [Quit: LaPetiteFromage]
morgz has joined #ruby
milardovich has quit [Max SendQ exceeded]
CaptainJet has joined #ruby
milardovich has joined #ruby
milardovich has quit [Max SendQ exceeded]
jesly has quit [Read error: Connection reset by peer]
terrellt has joined #ruby
milardovich has joined #ruby
danshultz has quit [Ping timeout: 245 seconds]
browndawg has quit [Quit: Leaving.]
milardovich has quit [Max SendQ exceeded]
danbeck has joined #ruby
jesly has joined #ruby
julweber has quit [Remote host closed the connection]
danshultz has joined #ruby
milardovich has joined #ruby
milardovich has quit [Max SendQ exceeded]
workmad3 has joined #ruby
milardovich has joined #ruby
bradhe has joined #ruby
milardovich has quit [Max SendQ exceeded]
Speed has joined #ruby
milardovich has joined #ruby
TheNotary has quit [Ping timeout: 240 seconds]
rgreen has joined #ruby
milardovich has quit [Max SendQ exceeded]
<rgreen> does anyone here have any experience with the mysql2 gem?
JohnBat26 has quit [Quit: KVIrc 4.3.1 Aria http://www.kvirc.net/]
lele has joined #ruby
poikon has quit [Remote host closed the connection]
Vivekananda has quit [Ping timeout: 248 seconds]
Gue______ has quit [Quit: Textual IRC Client: www.textualapp.com]
bmurt has quit [Quit: bmurt]
burlyscudd has joined #ruby
jesly has quit [Read error: Connection reset by peer]
jmimi has joined #ruby
Zai00 has joined #ruby
sethetter has joined #ruby
mlr has joined #ruby
colonolGron has quit [Quit: leaving]
Zai00 has quit [Client Quit]
tatsuya_o has quit [Remote host closed the connection]
colonolGron has joined #ruby
bionoid has quit [Remote host closed the connection]
<sethetter> I'm trying to generate a 48 char alphanumeric encrypted string from another string and a salt. Is this possible and if so what module(s) should I be looking into?
terrellt is now known as bla
bla is now known as terrellt
jesly has joined #ruby
eldariof has quit [Ping timeout: 260 seconds]
deception has joined #ruby
banjara has quit [Quit: Leaving.]
JMcAfreak is now known as Guest96751
reset is now known as Guest78320
kennym is now known as Guest84800
c0rn has joined #ruby
Guga_ is now known as Guest93412
popl is now known as Guest76110
heftig is now known as Guest55410
robert_ is now known as Guest82982
Columcille is now known as Guest46949
ffio is now known as Guest33963
Speed is now known as Guest72609
Matip has quit [Quit: Leaving]
matematikaadit has joined #ruby
awarner has joined #ruby
cofin has quit [Quit: cofin]
Tobarja has quit [Ping timeout: 241 seconds]
jmimi has left #ruby [#ruby]
razi has quit [Quit: Leaving.]
jesly has quit [Read error: Connection reset by peer]
burlyscudd has quit [Changing host]
burlyscudd has joined #ruby
rezzack has quit [Changing host]
rezzack has joined #ruby
deception has quit [Client Quit]
momomomomo has joined #ruby
jmimi has joined #ruby
deception has joined #ruby
madb055 has quit [Remote host closed the connection]
Guest76110 has quit [Changing host]
Guest76110 has joined #ruby
madb055 has joined #ruby
awarner_ has quit [Ping timeout: 264 seconds]
Hanmac1 has joined #ruby
deception has quit [Changing host]
deception has joined #ruby
TheNotary has joined #ruby
tonini has joined #ruby
io_syl has joined #ruby
brendan- has joined #ruby
Xeago has joined #ruby
locriani has joined #ruby
cj3kim has joined #ruby
jerius has joined #ruby
jesly has joined #ruby
pskosinski has joined #ruby
workmad3 has quit [Ping timeout: 240 seconds]
rsahae has joined #ruby
moted has joined #ruby
Guest76110 has quit [Quit: We must make an idol of our fear, and call it God.]
Guest55410 is now known as heftig
heftig has quit [Changing host]
heftig has joined #ruby
havenwood has joined #ruby
vlad_starkov has joined #ruby
lnemeth has quit [Quit: Leaving]
mlr has quit [Quit: leaving]
havenwood has quit [Remote host closed the connection]
Niteside0351 has joined #ruby
<rgreen> does anyone here have any experience with the mysql2 gem?
dwirc has quit [Read error: Operation timed out]
DeanH_ has joined #ruby
<spike|spiegel> did it crash? that's expected.
dwirc has joined #ruby
<momomomomo> :/
relix has joined #ruby
DeanH_ has quit [Max SendQ exceeded]
kpshek has joined #ruby
airlok has joined #ruby
vlad_starkov has quit [Ping timeout: 260 seconds]
jesly has quit [Read error: Connection reset by peer]
<rgreen> haha why?
atmosx has joined #ruby
dribblingmachine has joined #ruby
DeanH has joined #ruby
DeanH has quit [Max SendQ exceeded]
jesly has joined #ruby
ryan has joined #ruby
krawchyk has quit [Remote host closed the connection]
DeanH has joined #ruby
dagen has joined #ruby
rgreen has quit [Quit: Page closed]
pkrnj has joined #ruby
relix has quit [Ping timeout: 240 seconds]
ryan is now known as Guest3668
Proshot has quit [Quit: Leaving]
<Guest3668> hello
Guest3668 is now known as rgreen
sepp2k has joined #ruby
Hanmac1 has quit [Ping timeout: 260 seconds]
julweber has joined #ruby
rgreen has quit [Client Quit]
northelks has joined #ruby
<dagen> where i can find RubyOnRails channel?
<momomomomo> #rubyonrails
dribblingmachine has left #ruby [#ruby]
relix has joined #ruby
joshu_ has joined #ruby
fredjean has joined #ruby
joshu_ has quit [Remote host closed the connection]
breaking_ has joined #ruby
cdelo has joined #ruby
joshu_ has joined #ruby
jesly has quit [Read error: Connection reset by peer]
breakingthings has quit [Ping timeout: 264 seconds]
mnaser has quit [Ping timeout: 264 seconds]
darth_chatri has quit [Quit: Leaving.]
Uranio has quit [Quit: while you reading this, a kitty dies]
joshu has quit [Ping timeout: 264 seconds]
DrCode has quit [Ping timeout: 240 seconds]
zeromodu_ has quit [Remote host closed the connection]
zeromodulus has joined #ruby
TheNotary has quit [Ping timeout: 260 seconds]
ntus1017 has quit [Remote host closed the connection]
dash_ has quit [Ping timeout: 264 seconds]
Guest57220 has quit [Ping timeout: 264 seconds]
Guest23778 has quit [Ping timeout: 264 seconds]
whowantstolivefo has quit [Ping timeout: 264 seconds]
haxrbyte_ has quit [Read error: Connection reset by peer]
haxrbyte has joined #ruby
deception has quit [Quit: Goodbye]
<dagen> momomomomo Cannot join channel (+r) - you need to be identified with services
postmodern has joined #ruby
jesly has joined #ruby
<MrZYX> dagen: /msg NickServ help
Guest57220 has joined #ruby
BlakeRG has joined #ruby
mnaser has joined #ruby
m8 has joined #ruby
<BlakeRG> what does the @ symbol before a method call do? does it just surpress errors?
jarin has joined #ruby
julweber has quit [Ping timeout: 240 seconds]
monkegjinni has joined #ruby
banister`gym has quit [Remote host closed the connection]
matematikaadit has left #ruby ["Leaving"]
<apeiros> BlakeRG: no, @foo is a variable, not a method call
<zeromodulus> :|
<apeiros> instance variables, they belong to an object.
<BlakeRG> what does @ do then?
<zeromodulus> nickserv is unavailable
JZTech101 has joined #ruby
morgz has quit [Quit: Leaving]
jesly has quit [Read error: Connection reset by peer]
<apeiros> BlakeRG: nothing. just like the $ for global variables does nothing. it's just part of the name.
morgz has joined #ruby
jesly has joined #ruby
<apeiros> local_variable, @instance_variable, @@class_variable, $global_variable, Constant, Namespaced::Constant
<apeiros> that's the types of variables in ruby.
<apeiros> and if you don't know these, then you should probably read a book about ruby (some are available online and for free)
Niteside0351 has quit [Remote host closed the connection]
Niteside0351 has joined #ruby
maxmanders has quit [Ping timeout: 240 seconds]
TheNotary has joined #ruby
Mars^ has quit [Quit: WeeChat 0.4.1]
voglster has quit [Ping timeout: 240 seconds]
redhat has joined #ruby
jesly has quit [Read error: Connection reset by peer]
romockee has quit [Quit: romockee]
maxmanders has joined #ruby
redhat has left #ruby [#ruby]
mark_locklear has quit [Ping timeout: 264 seconds]
jesly has joined #ruby
geekbri_ has quit [Remote host closed the connection]
havenwood has joined #ruby
m8 is now known as Guest66495
maxmanders has quit [Read error: Operation timed out]
terrellt has quit [Ping timeout: 240 seconds]
mnaser has quit [Changing host]
mnaser has joined #ruby
blitz has quit [Changing host]
blitz has joined #ruby
zeromodulus has quit [Changing host]
zeromodulus has joined #ruby
lupine has joined #ruby
lupine has quit [Changing host]
BlakeRG has quit [Quit: BlakeRG]
dash_ has joined #ruby
jonkri has quit [Changing host]
jonkri has joined #ruby
maxmanders has joined #ruby
goshakkk has joined #ruby
realDAB has joined #ruby
finges has quit [Quit: WeeChat 0.4.1]
finges has joined #ruby
RichardBaker has joined #ruby
Hanmac1 has joined #ruby
momomomomo has quit [Ping timeout: 248 seconds]
tatsuya_o has joined #ruby
morgz has quit [Quit: Leaving]
mjc_ has joined #ruby
jh00pla has joined #ruby
haxrbyte has quit [Remote host closed the connection]
Axsuul has joined #ruby
haxrbyte has joined #ruby
sambao21 has joined #ruby
havenwood has quit [Remote host closed the connection]
Ziarkaen has joined #ruby
jh00pla has quit [Client Quit]
AlSquirrel has joined #ruby
maxmanders has quit [Ping timeout: 240 seconds]
jh00pla has joined #ruby
BlakeRG has joined #ruby
Guest46949 is now known as Columcille
ssvo_ has joined #ruby
twoism_ has joined #ruby
sambao21 has quit [Client Quit]
<BlakeRG> is there something akin to Node.js's "forever" module for ruby?
jh00pla has quit [Client Quit]
georg_ehrke has joined #ruby
jh00pla has joined #ruby
interact_ has joined #ruby
havenwood has joined #ruby
gnerol_ has joined #ruby
withnale_ has joined #ruby
maxmanders has joined #ruby
Hanmac1 has quit [Ping timeout: 264 seconds]
Axsuul is now known as axsuul
jesly has quit [Read error: Connection reset by peer]
rpgsimmaster_ has joined #ruby
brennanM_ has joined #ruby
DeanH has quit [Quit: Textual IRC Client: www.textualapp.com]
iaj_ has joined #ruby
grn has joined #ruby
bakedb has joined #ruby
jh00pla has quit [Client Quit]
jh00pla has joined #ruby
heftig has quit [Ping timeout: 245 seconds]
hexbit_ has joined #ruby
diego_k has joined #ruby
Nahra has joined #ruby
daaaan_ has joined #ruby
sumark_ has joined #ruby
BeLucid has joined #ruby
bnagy_ has joined #ruby
DeanH has joined #ruby
effbiai_ has joined #ruby
`p has joined #ruby
<apeiros> BlakeRG: no idea what that does, but sounds like you want `loop do … end`
rblackwe_ has joined #ruby
fred has joined #ruby
_Andres has quit [Quit: jazz]
jesly has joined #ruby
<BlakeRG> apeiros: forever monitors a process and re-starts it if it happens to crash
franks2_ has joined #ruby
cmarques has quit [Ping timeout: 240 seconds]
jh00pla has quit [Client Quit]
jefflyne_ has joined #ruby
<apeiros> BlakeRG: god, probably others too
havenwood has quit [Ping timeout: 240 seconds]
wuest_ has joined #ruby
<apeiros> but you can use any watchdog process.
jh00pla has joined #ruby
wallerdev has joined #ruby
Elgin has quit [Quit: がんばってねー]
marcdel_ has joined #ruby
digifiv5e_ has joined #ruby
jesly has quit [Read error: Connection reset by peer]
vereteran has joined #ruby
SeySayux_ has joined #ruby
undert_ has joined #ruby
andredie` has joined #ruby
kirun has quit [*.net *.split]
Guest96751 has quit [*.net *.split]
interactionjaxsn has quit [*.net *.split]
twoism has quit [*.net *.split]
marcdel has quit [*.net *.split]
jefflyne has quit [*.net *.split]
ssvo has quit [*.net *.split]
toastynerd has quit [*.net *.split]
withnale has quit [*.net *.split]
BillCriswell has quit [*.net *.split]
SeySayux has quit [*.net *.split]
brennanMKE has quit [*.net *.split]
emptynine has quit [*.net *.split]
eka has quit [*.net *.split]
kobain has quit [*.net *.split]
Nahra_ has quit [*.net *.split]
BeLucid_ has quit [*.net *.split]
asobrasil has quit [*.net *.split]
grn_ has quit [*.net *.split]
MrThePlague has quit [*.net *.split]
DonRichie has quit [*.net *.split]
onewheelskyward has quit [*.net *.split]
fuzzyhorns has quit [*.net *.split]
diegok has quit [*.net *.split]
AlSquire has quit [*.net *.split]
[0x1a] has quit [*.net *.split]
elektronaut has quit [*.net *.split]
daaaan has quit [*.net *.split]
wuest has quit [*.net *.split]
rpgsimmaster has quit [*.net *.split]
malcolmva has quit [*.net *.split]
nezumi has quit [*.net *.split]
andredieb has quit [*.net *.split]
sumark has quit [*.net *.split]
bnagy has quit [*.net *.split]
freakazoid0223 has quit [*.net *.split]
digifiv5e has quit [*.net *.split]
rblackwe has quit [*.net *.split]
undert has quit [*.net *.split]
ThePicard has quit [*.net *.split]
blz37 has quit [*.net *.split]
hexbit has quit [*.net *.split]
naquad has quit [*.net *.split]
Schmidt has quit [*.net *.split]
franks2 has quit [*.net *.split]
Kudos has quit [*.net *.split]
Guest66930 has quit [*.net *.split]
bakedb_ has quit [*.net *.split]
iaj has quit [*.net *.split]
jacobw has quit [*.net *.split]
effbiai has quit [*.net *.split]
erichmenge has quit [*.net *.split]
billiam has quit [*.net *.split]
withnale_ is now known as withnale
digifiv5e_ is now known as digifiv5e
elektronaut_ has joined #ruby
fuzzyhor_ has joined #ruby
DonRichie has joined #ruby
elektronaut_ is now known as elektronaut
erichmenge_ has joined #ruby
kobain has joined #ruby
Niteside0351 has quit [Remote host closed the connection]
Niteside0351 has joined #ruby
jrendell has quit [Quit: jrendell]
kobain has quit [Changing host]
kobain has joined #ruby
SeySayux_ has quit [Changing host]
SeySayux_ has joined #ruby
digifiv5e is now known as Guest62990
fred is now known as Guest42633
onewheelskyward has joined #ruby
jh00pla has quit [Client Quit]
carloslopes has quit [Remote host closed the connection]
Kudos has joined #ruby
Kudos has joined #ruby
eka has joined #ruby
Kudos has quit [Excess Flood]
jh00pla has joined #ruby
sambao21 has joined #ruby
madb055 has quit [Remote host closed the connection]
jesly has joined #ruby
sambao21 has quit [Client Quit]
Kudos has joined #ruby
Kudos has quit [Changing host]
Kudos has joined #ruby
Kudos has quit [Excess Flood]
emptynine has joined #ruby
madb055 has joined #ruby
Kudos has joined #ruby
Kudos has quit [Changing host]
Kudos has joined #ruby
Kudos has quit [Excess Flood]
Kudos has joined #ruby
Kudos has joined #ruby
Kudos has quit [Changing host]
Kudos has quit [Excess Flood]
ismlages has quit [Ping timeout: 269 seconds]
Kudos has joined #ruby
Kudos has quit [Changing host]
Kudos has joined #ruby
jesly has quit [Read error: Connection reset by peer]
Kudos has quit [Excess Flood]
devoldmx has quit [Ping timeout: 260 seconds]
devoldmx has joined #ruby
Kudos has joined #ruby
Kudos has quit [Changing host]
Kudos has joined #ruby
allsystemsarego has quit [Quit: Leaving]
brtdv has joined #ruby
toastynerd has joined #ruby
jh00pla has quit [Remote host closed the connection]
DeanH has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
sambao21 has joined #ruby
billiam has joined #ruby
gildo_ has quit [Ping timeout: 260 seconds]
airlok has quit [Remote host closed the connection]
sumark_ has quit [Ping timeout: 260 seconds]
hoelzro has quit [Ping timeout: 260 seconds]
fredjean has quit [Ping timeout: 260 seconds]
jerius has quit [Read error: Connection reset by peer]
inimit has quit [Ping timeout: 260 seconds]
Guest93412 has quit [Remote host closed the connection]
guilleiguaran_ has quit [Ping timeout: 260 seconds]
devoldmx has quit [*.net *.split]
emptynine has quit [*.net *.split]
vereteran has quit [*.net *.split]
`p has quit [*.net *.split]
daaaan_ has quit [*.net *.split]
BeLucid has quit [*.net *.split]
grn has quit [*.net *.split]
axsuul has quit [*.net *.split]
io_syl has quit [*.net *.split]
awarner has quit [*.net *.split]
woolite64 has quit [*.net *.split]
hukl has quit [*.net *.split]
tylersmith has quit [*.net *.split]
rupee has quit [*.net *.split]
apeiros has quit [*.net *.split]
wsterling has quit [*.net *.split]
msuszczy has quit [*.net *.split]
mnemon has quit [*.net *.split]
voodoofish has quit [*.net *.split]
kapowaz has quit [*.net *.split]
samu has quit [*.net *.split]
ArnaudR has quit [*.net *.split]
RubyPanther has quit [*.net *.split]
bobbyz has quit [*.net *.split]
asteve has quit [*.net *.split]
toastynerd has quit [*.net *.split]
Niteside0351 has quit [*.net *.split]
twoism_ has quit [*.net *.split]
Guest62990 has quit [*.net *.split]
BlakeRG has quit [*.net *.split]
DonRichie has quit [*.net *.split]
iaj_ has quit [*.net *.split]
elektronaut has quit [*.net *.split]
colonolGron has quit [*.net *.split]
burlyscudd has quit [*.net *.split]
danshultz has quit [*.net *.split]
dodosan has quit [*.net *.split]
nazty has quit [*.net *.split]
echevemaster has quit [*.net *.split]
anildigital has quit [*.net *.split]
RORgasm has quit [*.net *.split]
Guest82982 has quit [*.net *.split]
Es0teric has quit [*.net *.split]
bigoldrock has quit [*.net *.split]
shadoi1 has quit [*.net *.split]
lectrick has quit [*.net *.split]
mumblerit has quit [*.net *.split]
elux has quit [*.net *.split]
pcarrier has quit [*.net *.split]
chuk has quit [*.net *.split]
SirFunk_ has quit [*.net *.split]
kzrl_ has quit [*.net *.split]
swills has quit [*.net *.split]
PhilK has quit [*.net *.split]
bakingbread has quit [*.net *.split]
lupine has quit [*.net *.split]
Apocalypse has quit [*.net *.split]
drPoggs has quit [*.net *.split]
Taranis has quit [*.net *.split]
kaichanvong has quit [*.net *.split]
KazW_ has quit [*.net *.split]
Trynemjoel has quit [*.net *.split]
Nanuq has quit [*.net *.split]
billiam has quit [*.net *.split]
franks2_ has quit [*.net *.split]
withnale has quit [*.net *.split]
brendan- has quit [*.net *.split]
dash_ has quit [*.net *.split]
Guest72609 has quit [*.net *.split]
dagen has quit [*.net *.split]
RichardBaker has quit [*.net *.split]
anonymuse has quit [*.net *.split]
cj3kim has quit [*.net *.split]
AlSquirrel has quit [*.net *.split]
Xeago has quit [*.net *.split]
sepp2k has quit [*.net *.split]
jarin has quit [*.net *.split]
matti has quit [*.net *.split]
Guest33963 has quit [*.net *.split]
Akuma has quit [*.net *.split]
amh has quit [*.net *.split]
angusiguess has quit [*.net *.split]
Voodoofish430 has quit [*.net *.split]
BRMatt has quit [*.net *.split]
sarkis has quit [*.net *.split]
rhys has quit [*.net *.split]
djbkd has quit [*.net *.split]
hkal has quit [*.net *.split]
Guest66032 has quit [*.net *.split]
fivethre1o has quit [*.net *.split]
oddraisin has quit [*.net *.split]
NsOmNiAc_ has quit [*.net *.split]
hakunin_ has quit [*.net *.split]
prime has quit [*.net *.split]
m_3_ has quit [*.net *.split]
angelixd_ has quit [*.net *.split]
ILoveYou[ has quit [*.net *.split]
Guest42634 has quit [*.net *.split]
nopper` has quit [*.net *.split]
Guest1988 has quit [*.net *.split]
fryguy has quit [*.net *.split]
TheSpectre has quit [*.net *.split]
timmow has quit [*.net *.split]
icco has quit [*.net *.split]
[Fudge] has quit [*.net *.split]
jonkri has quit [*.net *.split]
Caius has quit [*.net *.split]
dnyy has quit [*.net *.split]
soulcake has quit [*.net *.split]
soukihei_ has quit [*.net *.split]
lushious has quit [*.net *.split]
alexspeller has quit [*.net *.split]
gadgetoid has quit [*.net *.split]
Deele has quit [*.net *.split]
Coolhand has quit [*.net *.split]
Niamkik_ has quit [*.net *.split]
krishna has quit [*.net *.split]
rtl_ has quit [*.net *.split]
flori has quit [*.net *.split]
tbn` has quit [*.net *.split]
mklappstuhl has quit [*.net *.split]
foobArrrr has quit [*.net *.split]
peterhellberg has quit [*.net *.split]
Columcille has quit [*.net *.split]
wmoxam has quit [*.net *.split]
preller_ has quit [*.net *.split]
crazedpsyc has quit [*.net *.split]
ninegrid has quit [*.net *.split]
classix has quit [*.net *.split]
elaptics has quit [*.net *.split]
ayonix has quit [*.net *.split]
conceal_rs_____0 has quit [*.net *.split]
geoffw8_ has quit [*.net *.split]
Jalada has quit [*.net *.split]
NimeshNeema has quit [*.net *.split]
LiquidInsect has quit [*.net *.split]
drizz has quit [*.net *.split]
TheHodge has quit [*.net *.split]
spacebug_ has quit [*.net *.split]
sindork has quit [*.net *.split]
pdtpatrick has quit [*.net *.split]
ChristianS has quit [*.net *.split]
Muz_ has quit [*.net *.split]
araujo has quit [*.net *.split]
jonathanwallace1 has quit [*.net *.split]
ged has quit [*.net *.split]
Freeaqingme has quit [*.net *.split]
mediko_ has quit [*.net *.split]
paissad_ has quit [*.net *.split]
skasio has quit [*.net *.split]
homelinen has quit [*.net *.split]
tonini has quit [*.net *.split]
avelldiroll has quit [*.net *.split]
broquain1 has quit [*.net *.split]
erry has quit [*.net *.split]
dross has quit [*.net *.split]
jaredrhine_ has quit [*.net *.split]
andr0m3da has quit [*.net *.split]
Killerkeksdose has quit [*.net *.split]
arya_ has quit [*.net *.split]
KRF_ has quit [*.net *.split]
wyan has quit [*.net *.split]
eval-in has quit [*.net *.split]
jeekl has quit [*.net *.split]
tehKitten has quit [*.net *.split]
swordsmanz has quit [*.net *.split]
radic_ has quit [*.net *.split]
robustus has quit [*.net *.split]
felipe has quit [*.net *.split]
thomas` has quit [*.net *.split]
Rix has quit [*.net *.split]
Ortuna_ has quit [*.net *.split]
gkunno has quit [*.net *.split]
MrZYX has quit [*.net *.split]
stkowski has quit [*.net *.split]
Blue_Ice has quit [*.net *.split]
tomaw has quit [*.net *.split]
jpun has quit [*.net *.split]
wting has quit [*.net *.split]
drago777 has quit [*.net *.split]
Jedi_SCT1 has quit [*.net *.split]
ahuman has quit [*.net *.split]
jtperreault has quit [*.net *.split]
ddd__ has quit [*.net *.split]
bricker has quit [*.net *.split]
metallisto has quit [*.net *.split]
dominikh has quit [*.net *.split]
Alasdairrr has quit [*.net *.split]
KillerFox has quit [*.net *.split]
alainus has quit [*.net *.split]
mlue has quit [*.net *.split]
mame3 has quit [*.net *.split]
waxjar has quit [*.net *.split]
klipeto has quit [*.net *.split]
defrag1 has quit [*.net *.split]
parus has quit [*.net *.split]
DonVitoC- has quit [*.net *.split]
Sp4rKy has quit [*.net *.split]
Gate_ has quit [*.net *.split]
crankyco1er has quit [*.net *.split]
DylanJ has quit [*.net *.split]
Adawerk_ has quit [*.net *.split]
renderfu_ has quit [*.net *.split]
mroth has quit [*.net *.split]
ccooke has quit [*.net *.split]
weeb1e has quit [*.net *.split]
supki_ has quit [*.net *.split]
Derander has quit [*.net *.split]
sethetter has quit [*.net *.split]
huoxito has quit [*.net *.split]
Bofu2U has quit [*.net *.split]
ldnunes has quit [*.net *.split]
tehlers has quit [*.net *.split]
phite has quit [*.net *.split]
marr has quit [*.net *.split]
wudofyr___ has quit [*.net *.split]
xargoon has quit [*.net *.split]
ichilton has quit [*.net *.split]
enhance_ has quit [*.net *.split]
Schuy13r has quit [*.net *.split]
Cork has quit [*.net *.split]
k3rn3lit1 has quit [*.net *.split]
lump has quit [*.net *.split]
tr4656 has quit [*.net *.split]
foohey_ has quit [*.net *.split]
katherinem13 has quit [*.net *.split]
licorn54 has quit [*.net *.split]
ekarlso- has quit [*.net *.split]
Dekade has quit [*.net *.split]
psychouroboros has quit [*.net *.split]
nick_h_ has quit [*.net *.split]
lusory has quit [*.net *.split]
seitensei has quit [*.net *.split]
sergicles has quit [*.net *.split]
wookiehangover has quit [*.net *.split]
_br_ has quit [*.net *.split]
gtc has quit [*.net *.split]
s0ber has quit [*.net *.split]
Olipro has quit [*.net *.split]
wyrd1 has quit [*.net *.split]
Scient has quit [*.net *.split]
brjannc has quit [*.net *.split]
niftylettuce has quit [*.net *.split]
UltimateBlackMan has quit [*.net *.split]
chiel has quit [*.net *.split]
kevinfagan has quit [*.net *.split]
ericwood has quit [*.net *.split]
`MArceLL` has quit [*.net *.split]
sirecote has quit [*.net *.split]
notbrent___ has quit [*.net *.split]
Gnubie has quit [*.net *.split]
Elfix_113 has quit [*.net *.split]
krisfremen-home has quit [*.net *.split]
Sou|cutter has quit [*.net *.split]
dawkirst has quit [*.net *.split]
jetblack has quit [*.net *.split]
bubbajones has quit [*.net *.split]
paul_k has quit [*.net *.split]
flagg0204 has quit [*.net *.split]
Xuerian has quit [*.net *.split]
QKO has quit [*.net *.split]
jnix has quit [*.net *.split]
devyn has quit [*.net *.split]
WanderingGlitch has quit [*.net *.split]
jcarouth has quit [*.net *.split]
slightair has quit [*.net *.split]
Bish has quit [*.net *.split]
calmyournerves has quit [*.net *.split]
multi_io_ has quit [*.net *.split]
mcpierce has quit [*.net *.split]
adamholt has quit [*.net *.split]
sebastianb has quit [*.net *.split]
Morrolan has quit [*.net *.split]
Rennex has quit [*.net *.split]
alexwh has quit [*.net *.split]
tchebb has quit [*.net *.split]
brian` has quit [*.net *.split]
mahlon has quit [*.net *.split]
Nom- has quit [*.net *.split]
xybre has quit [*.net *.split]
Kov|abx has quit [*.net *.split]
sam113101 has quit [*.net *.split]
ping-pong has quit [*.net *.split]
dubios has quit [*.net *.split]
neektza1 has quit [*.net *.split]
Spitfire has quit [*.net *.split]
erichmenge_ has quit [*.net *.split]
georg_ehrke has quit [*.net *.split]
andredie` has quit [*.net *.split]
brtdv has quit [*.net *.split]
onewheelskyward has quit [*.net *.split]
SeySayux_ has quit [*.net *.split]
tekacs has quit [*.net *.split]
realDAB has quit [*.net *.split]
Guest66495 has quit [*.net *.split]
kpshek has quit [*.net *.split]
jmimi has quit [*.net *.split]
CaptainJet has quit [*.net *.split]
cburyta has quit [*.net *.split]
kindjal has quit [*.net *.split]
threesome has quit [*.net *.split]
Solnse has quit [*.net *.split]
zodiak has quit [*.net *.split]
v0n has quit [*.net *.split]
r0bgleeson has quit [*.net *.split]
lindenle has quit [*.net *.split]
splittingred has quit [*.net *.split]
mary5030_ has quit [*.net *.split]
lys has quit [*.net *.split]
mahmoudimus has quit [*.net *.split]
forrest has quit [*.net *.split]
johnnyfuchs has quit [*.net *.split]
Villadelfia has quit [*.net *.split]
fbernier has quit [*.net *.split]
karnowski has quit [*.net *.split]
spacemud has quit [*.net *.split]
hamakn has quit [*.net *.split]
DrForr has quit [*.net *.split]
blast_hardcheese has quit [*.net *.split]
cam`_ has quit [*.net *.split]
Alina-malina has quit [*.net *.split]
mogsy has quit [*.net *.split]
pentameter has quit [*.net *.split]
ryotarai_ has quit [*.net *.split]
test_a has quit [*.net *.split]
emdub has quit [*.net *.split]
nuck has quit [*.net *.split]
denken has quit [*.net *.split]
DefV has quit [*.net *.split]
thibauts_ has quit [*.net *.split]
slash_nick has quit [*.net *.split]
eliasp_ has quit [*.net *.split]
yebyen has quit [*.net *.split]
petru has quit [*.net *.split]
sahil has quit [*.net *.split]
samuelkadolph has quit [*.net *.split]
ejnahc has quit [*.net *.split]
madhatter has quit [*.net *.split]
DrPete has quit [*.net *.split]
msch has quit [*.net *.split]
crodas has quit [*.net *.split]
deavidsedice has quit [*.net *.split]
s_e has quit [*.net *.split]
xefi_ has quit [*.net *.split]
MissionCritical has quit [*.net *.split]
mosheee has quit [*.net *.split]
TheMoonMaster has quit [*.net *.split]
Sargun has quit [*.net *.split]
v2px has quit [*.net *.split]
crazysim has quit [*.net *.split]
thejoecarroll_ has quit [*.net *.split]
ozzloy has quit [*.net *.split]
kenichi has quit [*.net *.split]
FDj has quit [*.net *.split]
machuga has quit [*.net *.split]
cpruitt has quit [*.net *.split]
Jb___ has quit [*.net *.split]
willrax has quit [*.net *.split]
snearch has quit [*.net *.split]
_main_ has quit [*.net *.split]
dv__ has quit [*.net *.split]
Koshian__ has quit [*.net *.split]
phantomcircuit has quit [*.net *.split]
fcoury has quit [*.net *.split]
vaicine_ has quit [*.net *.split]
atno has quit [*.net *.split]
wereHams1er has quit [*.net *.split]
queequeg2 has quit [*.net *.split]
DanKnox has quit [*.net *.split]
error404 has quit [*.net *.split]
agjacome has quit [*.net *.split]
bmn has quit [*.net *.split]
choobie has quit [*.net *.split]
kloeri has quit [*.net *.split]
Azure has quit [*.net *.split]
blob has quit [*.net *.split]
banghouse has quit [*.net *.split]
talntid has quit [*.net *.split]
KarlHungus has quit [*.net *.split]
dmyers has quit [*.net *.split]
txdv_ has quit [*.net *.split]
moeSeth has quit [*.net *.split]
moshee has quit [*.net *.split]
kpwz has quit [*.net *.split]
Daemoen has quit [*.net *.split]
conner has quit [*.net *.split]
Quadlex has quit [*.net *.split]
micah` has quit [*.net *.split]
robwilliamsuk has quit [*.net *.split]
fuleo has quit [*.net *.split]
jmeeuwen has quit [*.net *.split]
sross has quit [*.net *.split]
BombStrike has quit [*.net *.split]
banzounet has quit [*.net *.split]
farn has quit [*.net *.split]
prsn has quit [*.net *.split]
faulkner has quit [*.net *.split]
Niichan has quit [*.net *.split]
yosafbridge has quit [*.net *.split]
vadeliusOFF has quit [*.net *.split]
JStoker has quit [*.net *.split]
tessi has quit [*.net *.split]
sonne has quit [*.net *.split]
Dwarf has quit [*.net *.split]
rayfinkle has quit [*.net *.split]
ohcibi has quit [*.net *.split]
ddv has quit [*.net *.split]
sn0wb1rdz has quit [*.net *.split]
Guest84800 has quit [*.net *.split]
twinkleH1od has quit [*.net *.split]
ravster has quit [*.net *.split]
epta_ has quit [*.net *.split]
monban_ has quit [*.net *.split]
sailias has quit [*.net *.split]
dhoss has quit [*.net *.split]
lsmola has quit [*.net *.split]
theRoUS has quit [*.net *.split]
klaas has quit [*.net *.split]
marienz has quit [*.net *.split]
yellow5 has quit [*.net *.split]
bw_ has quit [*.net *.split]
telling has quit [*.net *.split]
pitzips has quit [*.net *.split]
yacks has quit [*.net *.split]
cespare_ has quit [*.net *.split]
mosez has quit [*.net *.split]
destructure has quit [*.net *.split]
MarcWeber has quit [*.net *.split]
jaimef has quit [*.net *.split]
Raboo has quit [*.net *.split]
dormiens has quit [*.net *.split]
TTilus has quit [*.net *.split]
skinny_much_ has quit [*.net *.split]
three18ti has quit [*.net *.split]
halfie has quit [*.net *.split]
spike|spiegel has quit [*.net *.split]
atmosx has quit [*.net *.split]
yonahw_ has quit [*.net *.split]
Kabaka has quit [*.net *.split]
wuest_ has quit [*.net *.split]
jolleyjoe has quit [*.net *.split]
nomadic has quit [*.net *.split]
monomyth has quit [*.net *.split]
shaman42_ has quit [*.net *.split]
epitron has quit [*.net *.split]
pskosinski has quit [*.net *.split]
end_guy has quit [*.net *.split]
tacos1de has quit [*.net *.split]
optimusprimem has quit [*.net *.split]
willb1 has quit [*.net *.split]
madb055 has quit [*.net *.split]
undert_ has quit [*.net *.split]
Nahra has quit [*.net *.split]
interact_ has quit [*.net *.split]
tatsuya_o has quit [*.net *.split]
lancepantz has quit [*.net *.split]
eregon has quit [*.net *.split]
yeltzooo has quit [*.net *.split]
Guest82294 has quit [*.net *.split]
marcellu1 has quit [*.net *.split]
TMM has quit [*.net *.split]
phreax_ has quit [*.net *.split]
rotor has quit [*.net *.split]
nuba has quit [*.net *.split]
Tarential has quit [*.net *.split]
mljsimone has quit [*.net *.split]
Boohbah has quit [*.net *.split]
Guest60009 has quit [*.net *.split]
TheNotary has quit [*.net *.split]
JZTech101 has quit [*.net *.split]
monkegjinni has quit [*.net *.split]
Guest57220 has quit [*.net *.split]
mnaser has quit [*.net *.split]
joshu_ has quit [*.net *.split]
relix has quit [*.net *.split]
robscomputer_ has quit [*.net *.split]
lele has quit [*.net *.split]
cdelo has quit [*.net *.split]
Guest78320 has quit [*.net *.split]
rsahae has quit [*.net *.split]
kasper has quit [*.net *.split]
Astralum has quit [*.net *.split]
danbeck has quit [*.net *.split]
xardas has quit [*.net *.split]
ehaliewicz has quit [*.net *.split]
atyz has quit [*.net *.split]
germanstudent has quit [*.net *.split]
alvaro_o has quit [*.net *.split]
marcgg_ has quit [*.net *.split]
rezzack has quit [*.net *.split]
blitz has quit [*.net *.split]
citizensinspace has quit [*.net *.split]
druonysus has quit [*.net *.split]
cortexman1 has quit [*.net *.split]
Paradox has quit [*.net *.split]
pipework has quit [*.net *.split]
LBRapid has quit [*.net *.split]
jlast has quit [*.net *.split]
bzitzow has quit [*.net *.split]
baroquebobcat has quit [*.net *.split]
heidar has quit [*.net *.split]
enebo has quit [*.net *.split]
sondr34 has quit [*.net *.split]
daidoji70 has quit [*.net *.split]
thesheff17 has quit [*.net *.split]
Bauer2 has quit [*.net *.split]
mburns_ has quit [*.net *.split]
yxhuvud2 has quit [*.net *.split]
patsToms has quit [*.net *.split]
saintcajetan_ has quit [*.net *.split]
awwaiid_ has quit [*.net *.split]
pietr0 has quit [*.net *.split]
alo1 has quit [*.net *.split]
xerxas has quit [*.net *.split]
sami has quit [*.net *.split]
nw_ has quit [*.net *.split]
fumduq has quit [*.net *.split]
Weazy has quit [*.net *.split]
Spami has quit [*.net *.split]
binw has quit [*.net *.split]
Beoran__ has quit [*.net *.split]
wormwood has quit [*.net *.split]
tdammers_ has quit [*.net *.split]
bklang_ has quit [*.net *.split]
firebury has quit [*.net *.split]
asuka_ has quit [*.net *.split]
framling_ has quit [*.net *.split]
dEPy has quit [*.net *.split]
mnms has quit [*.net *.split]
musl has quit [*.net *.split]
supergiantrobot has quit [*.net *.split]
babinho_ has quit [*.net *.split]
ah9 has quit [*.net *.split]
davidcelis has quit [*.net *.split]
matled has quit [*.net *.split]
caveat- has quit [*.net *.split]
graft has quit [*.net *.split]
BeanDip__ has quit [*.net *.split]
Zelest has quit [*.net *.split]
joonty has quit [*.net *.split]
jericon has quit [*.net *.split]
tommylommykins has quit [*.net *.split]
[Neurotic] has quit [*.net *.split]
rismoney has quit [*.net *.split]
closer has quit [*.net *.split]
JoeTheGuest has quit [*.net *.split]
AntelopeSalad has quit [*.net *.split]
predator117 has quit [*.net *.split]
Alveric has quit [*.net *.split]
WhereIsMySpoon has quit [*.net *.split]
bhaak has quit [*.net *.split]
headius has quit [*.net *.split]
etcetera has quit [*.net *.split]
zets has quit [*.net *.split]
passcod has quit [*.net *.split]
geggam has quit [*.net *.split]
cibs has quit [*.net *.split]
tjbiddle has quit [*.net *.split]
yeban has quit [*.net *.split]
autumn has quit [*.net *.split]
devdazed has quit [*.net *.split]
brianpWins has quit [*.net *.split]
nomenkun has quit [*.net *.split]
PaulePanter has quit [*.net *.split]
Emmanuel_Chanel has quit [*.net *.split]
matchaw has quit [*.net *.split]
companion has quit [*.net *.split]
z has quit [*.net *.split]
skogis has quit [*.net *.split]
matrixise has quit [*.net *.split]
YaNakilon has quit [*.net *.split]
johnmilton has quit [*.net *.split]
TheRealPygo has quit [*.net *.split]
chxane has quit [*.net *.split]
madnificent has quit [*.net *.split]
Patteh has quit [*.net *.split]
wu_lmao has quit [*.net *.split]
jokke has quit [*.net *.split]
mjc_ has quit [*.net *.split]
niklasb has quit [*.net *.split]
Asher has quit [*.net *.split]
nanoxd has quit [*.net *.split]
filipe_ has quit [*.net *.split]
didlix has quit [*.net *.split]
SecretAg1nt has quit [*.net *.split]
wildcard0 has quit [*.net *.split]
prophile has quit [*.net *.split]
jeremy_c has quit [*.net *.split]
nfk has quit [*.net *.split]
Desert_eagle has quit [*.net *.split]
wchun has quit [*.net *.split]
yugui_zzz has quit [*.net *.split]
Anarch has quit [*.net *.split]
jayne has quit [*.net *.split]
deallocate has quit [*.net *.split]
ainame has quit [*.net *.split]
airtonix has quit [*.net *.split]
epochwolf has quit [*.net *.split]
s00pcan_ has quit [*.net *.split]
joelteon has quit [*.net *.split]
bier has quit [*.net *.split]
gf3 has quit [*.net *.split]
coaster has quit [*.net *.split]
idoru has quit [*.net *.split]
arusso has quit [*.net *.split]
ziyadb has quit [*.net *.split]
jaybe_ has quit [*.net *.split]
Guest37357 has quit [*.net *.split]
awc737_ has quit [*.net *.split]
jimeh has quit [*.net *.split]
mvangala_ has quit [*.net *.split]
tris has quit [*.net *.split]
krnflake_ has quit [*.net *.split]
aetaric has quit [*.net *.split]
aaroncm has quit [*.net *.split]
davidboy has quit [*.net *.split]
Guest85414__ has quit [*.net *.split]
dotemacs_ has quit [*.net *.split]
zavier has quit [*.net *.split]
is_null has quit [*.net *.split]
DandyPandy_ has quit [*.net *.split]
wykydtron has quit [*.net *.split]
Guest73681 has quit [*.net *.split]
m4rcu5 has quit [*.net *.split]
tethra has quit [*.net *.split]
SegFaultAX has quit [*.net *.split]
sweet_kid has quit [*.net *.split]
tommyblue has quit [*.net *.split]
e-dard has quit [*.net *.split]
swistak35 has quit [*.net *.split]
tobiasvl has quit [*.net *.split]
seich has quit [*.net *.split]
ShapeShifter499 has quit [*.net *.split]
DarkFoxDK has quit [*.net *.split]
oz has quit [*.net *.split]
chee has quit [*.net *.split]
shtirlic has quit [*.net *.split]
aboudreault has quit [*.net *.split]
GeekOnCoffee has quit [*.net *.split]
Catie has quit [*.net *.split]
fearoffish has quit [*.net *.split]
scrogson has quit [*.net *.split]
spacebug has quit [*.net *.split]
pontiki has quit [*.net *.split]
toddWork__ has quit [*.net *.split]
codex has quit [*.net *.split]
rgoodwin has quit [*.net *.split]
yasu has quit [*.net *.split]
Veejay has quit [*.net *.split]
zaargy has quit [*.net *.split]
ec_ has quit [*.net *.split]
zphobic has quit [*.net *.split]
sambao21 has quit [*.net *.split]
Kudos has quit [*.net *.split]
eka has quit [*.net *.split]
bradhe has quit [*.net *.split]
hexbit_ has quit [*.net *.split]
jefflyne_ has quit [*.net *.split]
jbpros has quit [*.net *.split]
lkba has quit [*.net *.split]
goshakkk has quit [*.net *.split]
Guest42633 has quit [*.net *.split]
bigkevmcd has quit [*.net *.split]
bakedb has quit [*.net *.split]
postmodern has quit [*.net *.split]
effbiai_ has quit [*.net *.split]
Hobogrammer_ has quit [*.net *.split]
breaking_ has quit [*.net *.split]
afd__ has quit [*.net *.split]
brennanM_ has quit [*.net *.split]
bnagy_ has quit [*.net *.split]
kkh has quit [*.net *.split]
pkrnj has quit [*.net *.split]
marcdel_ has quit [*.net *.split]
dwirc has quit [*.net *.split]
rpgsimmaster_ has quit [*.net *.split]
moted has quit [*.net *.split]
TheNumb_ has quit [*.net *.split]
gnerol_ has quit [*.net *.split]
billy_ran_away_ has quit [*.net *.split]
wallerdev has quit [*.net *.split]
Kelet has quit [*.net *.split]
gsvolt_ has quit [*.net *.split]
drfreeze has quit [*.net *.split]
Jefus has quit [*.net *.split]
Roa has quit [*.net *.split]
phutchins has quit [*.net *.split]
sixteneighty has quit [*.net *.split]
mist has quit [*.net *.split]
patronus_ has quit [*.net *.split]
zz_pinage404 has quit [*.net *.split]
martxel has quit [*.net *.split]
crazymykl has quit [*.net *.split]
kstephens has quit [*.net *.split]
stopbit has quit [*.net *.split]
uxp has quit [*.net *.split]
regedare1 has quit [*.net *.split]
hackeron_ has quit [*.net *.split]
MetaCosm has quit [*.net *.split]
gregorg has quit [*.net *.split]
linduxed has quit [*.net *.split]
kiela has quit [*.net *.split]
invsblduck has quit [*.net *.split]
udoprog has quit [*.net *.split]
reactormonk has quit [*.net *.split]
rcs has quit [*.net *.split]
kennyvb has quit [*.net *.split]
sgkim1261 has quit [*.net *.split]
cout has quit [*.net *.split]
Guest30040 has quit [*.net *.split]
jso has quit [*.net *.split]
epic has quit [*.net *.split]
maloik has quit [*.net *.split]
cjk101010 has quit [*.net *.split]
anekos has quit [*.net *.split]
Fraeon has quit [*.net *.split]
BBonifield has quit [*.net *.split]
jtcoon has quit [*.net *.split]
peteyg_ has quit [*.net *.split]
jsaak_ has quit [*.net *.split]
cschneid has quit [Max SendQ exceeded]
Nitrodex- has quit [Max SendQ exceeded]
lunarjar_ has quit [Max SendQ exceeded]
rblackwe_ has quit [Write error: Broken pipe]
maddog_ has quit [Write error: Broken pipe]
northelks has quit [Write error: Connection reset by peer]
xsdg has quit [Write error: Broken pipe]
baordog_ has quit [Write error: Connection reset by peer]
DarthGandalf has quit [Excess Flood]
Y_Ichiro has quit [Excess Flood]
ereslibre_laptop has quit [Excess Flood]
kalleth has quit [Excess Flood]
Drakevr has quit [Remote host closed the connection]
aalmenar_ has quit [Excess Flood]
C0deMaver1ck has quit [Excess Flood]
c0rn has quit [Ping timeout: 868 seconds]
maxmanders has quit [Ping timeout: 896 seconds]
fuzzyhor_ has quit [Ping timeout: 840 seconds]
Guest5415 has quit [Ping timeout: 868 seconds]
locriani has quit [Ping timeout: 896 seconds]
haxrbyte has quit [Ping timeout: 924 seconds]
moos3 has quit [Ping timeout: 896 seconds]
ffranz has quit [Ping timeout: 840 seconds]
diego_k has quit [Ping timeout: 924 seconds]
zeropx has quit [Ping timeout: 924 seconds]
freerobby has quit [Quit: Leaving.]
Ziarkaen has quit [Ping timeout: 840 seconds]
finges has quit [Ping timeout: 868 seconds]
baordog has joined #ruby
Drakevr has joined #ruby
keyvan has quit [Ping timeout: 261 seconds]
Spaceghost|cloud has quit [Ping timeout: 261 seconds]
Guest27407 has quit [Remote host closed the connection]
phasma has quit [Ping timeout: 261 seconds]
Norrin has quit [Ping timeout: 261 seconds]
kalleth has joined #ruby
aalmenar has joined #ruby
ereslibre has joined #ruby
kobain has quit [Ping timeout: 267 seconds]
ssvo_ has quit [Ping timeout: 267 seconds]
zeade has quit [Ping timeout: 267 seconds]
tommyvyo has quit [Ping timeout: 267 seconds]
ElderFain_ has quit [Ping timeout: 267 seconds]
zz_jinie has quit [Ping timeout: 267 seconds]
octarine has quit [Ping timeout: 267 seconds]
zendeavor has quit [Ping timeout: 267 seconds]
JaTochNietDan has quit [Ping timeout: 260 seconds]
Nitrodex has joined #ruby
ElderFain has joined #ruby
riku has quit [Ping timeout: 260 seconds]
AllStruck has quit [Ping timeout: 260 seconds]
nemesit|znc has quit [Ping timeout: 260 seconds]
Nitrodex has quit [Ping timeout: 260 seconds]
ElderFain has quit [Ping timeout: 260 seconds]
Nightmare has quit [Ping timeout: 260 seconds]
Norrin has joined #ruby
ElderFain has joined #ruby
Nitrodex has joined #ruby
heftig has joined #ruby
interactionjaxsn has joined #ruby
octarine has joined #ruby
phasma has joined #ruby
zarubin has joined #ruby
JaTochNietDan has joined #ruby
tommyvyo has joined #ruby
usr_ has joined #ruby
locriani has joined #ruby
blackmesa has joined #ruby
JMcAfreak has joined #ruby
Meatant has joined #ruby
momomomomo has joined #ruby
lunarjar has joined #ruby
apeiros has joined #ruby
diegok has joined #ruby
Gugster has joined #ruby
arya_ has joined #ruby
rblackwe has joined #ruby
Hien has joined #ruby
malcolmva has joined #ruby
C0deMaver1ck has joined #ruby
jrendell has joined #ruby
freerobby has joined #ruby
Schmidt has joined #ruby
fuzzyhorns has joined #ruby
hoelzro_ has joined #ruby
jerius_ has joined #ruby
madb055 has joined #ruby
Xeago__ has joined #ruby
Ziarkaen` has joined #ruby
cschneid has joined #ruby
undert_ has joined #ruby
fredjean_ has joined #ruby
finges has joined #ruby
SeySayux_ has joined #ruby
zendeavor has joined #ruby
effbiai_ has joined #ruby
Niteside0351 has joined #ruby
kirun has joined #ruby
brtdv has joined #ruby
erichmenge_ has joined #ruby
northelks has joined #ruby
wang has joined #ruby
zz_jinie has joined #ruby
voglster has joined #ruby
cads has joined #ruby
AllStruck has joined #ruby
saarinen has joined #ruby
nezumi has joined #ruby
toastynerd has joined #ruby
grn has joined #ruby
c0rn has joined #ruby
onewheelskyward has joined #ruby
AlSquirrel has joined #ruby
DarthGandalf has joined #ruby
freakazoid0223 has joined #ruby
daaaan has joined #ruby
BlakeRG has joined #ruby
jalcine has joined #ruby
cjsarette has joined #ruby
bnagy_ has joined #ruby
wolcanus has joined #ruby
ssvo has joined #ruby
Y_Ichiro has joined #ruby
BeLucid has joined #ruby
axsuul has joined #ruby
ben225 has joined #ruby
khushildep has joined #ruby
zeropx has joined #ruby
jefflyne_ has joined #ruby
Spooner has joined #ruby
devoldmx has joined #ruby
ffranz has joined #ruby
RichardBaker has joined #ruby
gnerol_ has joined #ruby
haxrbyte_ has joined #ruby
xsdg_ has joined #ruby
georg_ehrke has joined #ruby
eka has joined #ruby
iaj_ has joined #ruby
marcdel_ has joined #ruby
elektronaut has joined #ruby
franks2_ has joined #ruby
vereteran has joined #ruby
Spaceghost|cloud has joined #ruby
zeade has joined #ruby
goshakkk has joined #ruby
TheNotary has joined #ruby
bakedb has joined #ruby
`p has joined #ruby
riku has joined #ruby
moos3 has joined #ruby
wuest_ has joined #ruby
DeanH has joined #ruby
tatsuya_o has joined #ruby
obs has joined #ruby
Guest42633 has joined #ruby
Nahra has joined #ruby
sumark has joined #ruby
Guest62990 has joined #ruby
brennanM_ has joined #ruby
kobain has joined #ruby
maddog__ has joined #ruby
wallerdev has joined #ruby
terrellt has joined #ruby
andredie` has joined #ruby
redgirl has joined #ruby
emptynine has joined #ruby
Liothen has joined #ruby
ebobby has joined #ruby
mjc_ has joined #ruby
twoism_ has joined #ruby
DonRichie has joined #ruby
withnale has joined #ruby
rpgsimmaster_ has joined #ruby
postmodern has joined #ruby
awarner has joined #ruby
danshultz has joined #ruby
anildigital has joined #ruby
kpshek has joined #ruby
atmosx has joined #ruby
citizensinspace has joined #ruby
anonymuse has joined #ruby
jbpros has joined #ruby
cdelo has joined #ruby
pskosinski has joined #ruby
mary5030_ has joined #ruby
moted has joined #ruby
pkrnj has joined #ruby
mnaser has joined #ruby
amh has joined #ruby
alvaro_o has joined #ruby
cortexman1 has joined #ruby
cburyta has joined #ruby
blitz has joined #ruby
tjbiddle has joined #ruby
rupee has joined #ruby
ehaliewicz has joined #ruby
predator117 has joined #ruby
pipework has joined #ruby
dwirc has joined #ruby
druonysus has joined #ruby
joshu_ has joined #ruby
jarin has joined #ruby
nazty has joined #ruby
djbkd has joined #ruby
Guest33963 has joined #ruby
BRMatt has joined #ruby
rezzack has joined #ruby
Alveric has joined #ruby
germanstudent has joined #ruby
echevemaster has joined #ruby
headius has joined #ruby
zodiak has joined #ruby
bradhe has joined #ruby
baroquebobcat has joined #ruby
etcetera has joined #ruby
Solnse has joined #ruby
Paradox has joined #ruby
LBRapid has joined #ruby
threesome has joined #ruby
bzitzow has joined #ruby
jmimi has joined #ruby
Astralum has joined #ruby
Akuma has joined #ruby
matti has joined #ruby
cj3kim has joined #ruby
atyz has joined #ruby
Guest72609 has joined #ruby
brianpWins has joined #ruby
kasper has joined #ruby
r0bgleeson has joined #ruby
DrPete has joined #ruby
RORgasm has joined #ruby
hukl has joined #ruby
sepp2k has joined #ruby
zets has joined #ruby
splittingred has joined #ruby
robscomputer_ has joined #ruby
mahmoudimus has joined #ruby
Guest82982 has joined #ruby
Guest57220 has joined #ruby
marcgg_ has joined #ruby
CaptainJet has joined #ruby
relix has joined #ruby
bigoldrock has joined #ruby
tylersmith has joined #ruby
wsterling has joined #ruby
io_syl has joined #ruby
Voodoofish430 has joined #ruby
danbeck has joined #ruby
brendan- has joined #ruby
lindenle has joined #ruby
daidoji70 has joined #ruby
dodosan has joined #ruby
woolite64 has joined #ruby
heidar has joined #ruby
lele has joined #ruby
WhereIsMySpoon has joined #ruby
lkba has joined #ruby
jlast has joined #ruby
shadoi1 has joined #ruby
geggam has joined #ruby
sarkis has joined #ruby
johnnyfuchs has joined #ruby
rhys has joined #ruby
sn0wb1rdz has joined #ruby
nomadic has joined #ruby
jonkri has joined #ruby
mlue has joined #ruby
companion has joined #ruby
kapowaz has joined #ruby
mburns_ has joined #ruby
pietr0 has joined #ruby
enebo has joined #ruby
sailias has joined #ruby
supki_ has joined #ruby
swills has joined #ruby
machuga has joined #ruby
chuk has joined #ruby
theRoUS has joined #ruby
epta_ has joined #ruby
SirFunk_ has joined #ruby
defrag1 has joined #ruby
twinkleH1od has joined #ruby
Apocalypse has joined #ruby
sami has joined #ruby
crankyco1er has joined #ruby
PaulePanter has joined #ruby
arusso has joined #ruby
voodoofish has joined #ruby
drPoggs has joined #ruby
ccooke has joined #ruby
hakunin_ has joined #ruby
fcoury has joined #ruby
renderfu_ has joined #ruby
pcarrier has joined #ruby
DanKnox has joined #ruby
bakingbread has joined #ruby
rtl_ has joined #ruby
oddraisin has joined #ruby
dnyy has joined #ruby
skogis has joined #ruby
fumduq has joined #ruby
lupine has joined #ruby
thesheff17 has joined #ruby
m_3_ has joined #ruby
ziyadb has joined #ruby
xerxas has joined #ruby
mnemon has joined #ruby
bobbyz has joined #ruby
Niamkik_ has joined #ruby
angelixd_ has joined #ruby
lectrick has joined #ruby
mumblerit has joined #ruby
Adawerk_ has joined #ruby
Gate_ has joined #ruby
DylanJ has joined #ruby
yxhuvud2 has joined #ruby
msuszczy has joined #ruby
_main_ has joined #ruby
Guest66032 has joined #ruby
lsmola has joined #ruby
samu has joined #ruby
flori has joined #ruby
DonVitoC- has joined #ruby
Coolhand has joined #ruby
hkal has joined #ruby
RubyPanther has joined #ruby
soukihei_ has joined #ruby
dv__ has joined #ruby
Bauer2 has joined #ruby
saintcajetan_ has joined #ruby
Sp4rKy has joined #ruby
krishna has joined #ruby
kzrl_ has joined #ruby
patsToms has joined #ruby
willrax has joined #ruby
awc737_ has joined #ruby
fivethre1o has joined #ruby
Derander has joined #ruby
Emmanuel_Chanel has joined #ruby
PhilK has joined #ruby
Jb___ has joined #ruby
alo1 has joined #ruby
ArnaudR has joined #ruby
dhoss has joined #ruby
NsOmNiAc_ has joined #ruby
prime has joined #ruby
lys has joined #ruby
nopper` has joined #ruby
jaybe_ has joined #ruby
weeb1e has joined #ruby
KazW_ has joined #ruby
kaichanvong has joined #ruby
ravster has joined #ruby
awwaiid_ has joined #ruby
nw_ has joined #ruby
matrixise has joined #ruby
atno has joined #ruby
Guest37357 has joined #ruby
Guest1988 has joined #ruby
Weazy has joined #ruby
foobArrrr has joined #ruby
phantomcircuit has joined #ruby
tbn` has joined #ruby
matchaw has joined #ruby
Columcille has joined #ruby
Trynemjoel has joined #ruby
mklappstuhl has joined #ruby
mroth has joined #ruby
aaroncm has joined #ruby
fryguy has joined #ruby
Nanuq has joined #ruby
FDj has joined #ruby
peterhellberg has joined #ruby
Guest42634 has joined #ruby
z has joined #ruby
TheSpectre has joined #ruby
jimeh has joined #ruby
ILoveYou[ has joined #ruby
krnflake_ has joined #ruby
sondr34 has joined #ruby
Guest84800 has joined #ruby
aetaric has joined #ruby
tris has joined #ruby
Dekade has joined #ruby
mvangala_ has joined #ruby
Deele has joined #ruby
[Fudge] has joined #ruby
huoxito has joined #ruby
cpruitt has joined #ruby
avelldiroll has joined #ruby
soulcake has joined #ruby
YaNakilon has joined #ruby
binw has joined #ruby
firebury has joined #ruby
Koshian__ has joined #ruby
wyan has joined #ruby
paissad_ has joined #ruby
alexspeller has joined #ruby
queequeg2 has joined #ruby
tehlers has joined #ruby
snearch has joined #ruby
passcod has joined #ruby
Caius has joined #ruby
preller_ has joined #ruby
gadgetoid has joined #ruby
ekarlso- has joined #ruby
wereHams1er has joined #ruby
sergicles has joined #ruby
wmoxam has joined #ruby
broquain1 has joined #ruby
jaredrhine_ has joined #ruby
jokke has joined #ruby
telling has joined #ruby
icco has joined #ruby
Kabaka has joined #ruby
end_guy has joined #ruby
bklang_ has joined #ruby
andr0m3da has joined #ruby
framling_ has joined #ruby
error404 has joined #ruby
Jalada has joined #ruby
lushious has joined #ruby
marr has joined #ruby
mosez has joined #ruby
Spami has joined #ruby
asuka_ has joined #ruby
niklasb has joined #ruby
Killerkeksdose has joined #ruby
vaicine_ has joined #ruby
Bofu2U has joined #ruby
klaas has joined #ruby
timmow has joined #ruby
mediko_ has joined #ruby
phite has joined #ruby
madnificent has joined #ruby
tehKitten has joined #ruby
dEPy has joined #ruby
psychouroboros has joined #ruby
chxane has joined #ruby
KRF_ has joined #ruby
agjacome has joined #ruby
lusory has joined #ruby
jeekl has joined #ruby
crazedpsyc has joined #ruby
_br_ has joined #ruby
filipe_ has joined #ruby
wormwood has joined #ruby
Beoran__ has joined #ruby
nick_h_ has joined #ruby
tdammers_ has joined #ruby
kkh has joined #ruby
pitzips has joined #ruby
conner has joined #ruby
sindork has joined #ruby
felipe has joined #ruby
radic_ has joined #ruby
bigkevmcd has joined #ruby
wookiehangover has joined #ruby
TheRealPygo has joined #ruby
afd__ has joined #ruby
m4rcu5 has joined #ruby
mnms has joined #ruby
Patteh has joined #ruby
SecretAg1nt has joined #ruby
wyrd1 has joined #ruby
ayonix has joined #ruby
xargoon has joined #ruby
didlix has joined #ruby
musl has joined #ruby
Scient has joined #ruby
gtc has joined #ruby
matled has joined #ruby
tacos1de has joined #ruby
babinho_ has joined #ruby
yellow5 has joined #ruby
graft has joined #ruby
skasio has joined #ruby
wudofyr___ has joined #ruby
conceal_rs_____0 has joined #ruby
seitensei has joined #ruby
robustus has joined #ruby
TheNumb_ has joined #ruby
brjannc has joined #ruby
swordsmanz has joined #ruby
drizz has joined #ruby
Kelet has joined #ruby
nanoxd has joined #ruby
yacks has joined #ruby
Olipro has joined #ruby
wu_lmao has joined #ruby
Asher has joined #ruby
Hobogrammer_ has joined #ruby
elaptics`away has joined #ruby
Freeaqingme has joined #ruby
s0ber has joined #ruby
wildcard0 has joined #ruby
spacebug_ has joined #ruby
enhance_ has joined #ruby
talntid has joined #ruby
optimusprimem has joined #ruby
phutchins has joined #ruby
blast_hardcheese has joined #ruby
blob has joined #ruby
bmn has joined #ruby
billy_ran_away_ has joined #ruby
Villadelfia has joined #ruby
drfreeze has joined #ruby
cibs has joined #ruby
lancepantz has joined #ruby
davidcelis has joined #ruby
s00pcan_ has joined #ruby
dmyers has joined #ruby
ah9 has joined #ruby
Schuy13r has joined #ruby
jonathanwallace1 has joined #ruby
banghouse has joined #ruby
UltimateBlackMan has joined #ruby
joelteon has joined #ruby
marcellu1 has joined #ruby
ainame has joined #ruby
TMM has joined #ruby
rotor has joined #ruby
davidboy has joined #ruby
wchun has joined #ruby
Tarential has joined #ruby
joonty has joined #ruby
prophile has joined #ruby
supergiantrobot has joined #ruby
AntelopeSalad has joined #ruby
airtonix has joined #ruby
nfk has joined #ruby
nuba has joined #ruby
deallocate has joined #ruby
LiquidInsect has joined #ruby
choobie has joined #ruby
jericon has joined #ruby
Jefus has joined #ruby
kloeri has joined #ruby
gf3 has joined #ruby
Guest60009 has joined #ruby
Desert_eagle has joined #ruby
Guest82294 has joined #ruby
phreax_ has joined #ruby
caveat- has joined #ruby
devdazed has joined #ruby
mljsimone has joined #ruby
closer has joined #ruby
eregon has joined #ruby
[Neurotic] has joined #ruby
rismoney has joined #ruby
willb1 has joined #ruby
ichilton has joined #ruby
Anarch has joined #ruby
Guest85414__ has joined #ruby
epochwolf has joined #ruby
pdtpatrick has joined #ruby
jeremy_c has joined #ruby
tommylommykins has joined #ruby
bier has joined #ruby
stkowski has joined #ruby
Rix has joined #ruby
Boohbah has joined #ruby
yugui_zzz has joined #ruby
Ortuna_ has joined #ruby
yeltzooo has joined #ruby
coaster has joined #ruby
idoru has joined #ruby
gsvolt_ has joined #ruby
dotemacs_ has joined #ruby
k3rn3lit1 has joined #ruby
yeban has joined #ruby
sweet_kid has joined #ruby
toddWork__ has joined #ruby
chee has joined #ruby
yasu has joined #ruby
DarkFoxDK has joined #ruby
lump has joined #ruby
spacebug has joined #ruby
Zelest has joined #ruby
ShapeShifter499 has joined #ruby
classix has joined #ruby
ec_ has joined #ruby
JoeTheGuest has joined #ruby
SegFaultAX has joined #ruby
tommyblue has joined #ruby
licorn54 has joined #ruby
Cork has joined #ruby
ninegrid has joined #ruby
Azure has joined #ruby
Guest73681 has joined #ruby
tr4656 has joined #ruby
zaargy has joined #ruby
Catie has joined #ruby
swistak35 has joined #ruby
hamakn has joined #ruby
jayne has joined #ruby
katherinem13 has joined #ruby
DrForr has joined #ruby
pontiki has joined #ruby
KarlHungus has joined #ruby
Roa has joined #ruby
wykydtron has joined #ruby
dawkirst has joined #ruby
bhaak has joined #ruby
karnowski has joined #ruby
codex has joined #ruby
geoffw8_ has joined #ruby
shtirlic has joined #ruby
sixteneighty has joined #ruby
tobiasvl has joined #ruby
Muz_ has joined #ruby
notbrent___ has joined #ruby
moshee has joined #ruby
alainus has joined #ruby
zavier has joined #ruby
moeSeth has joined #ruby
bubbajones has joined #ruby
fbernier has joined #ruby
paul_k has joined #ruby
ged has joined #ruby
seich has joined #ruby
NimeshNeema has joined #ruby
rgoodwin has joined #ruby
krisfremen-home has joined #ruby
zphobic has joined #ruby
GeekOnCoffee has joined #ruby
BeanDip__ has joined #ruby
mist has joined #ruby
oz has joined #ruby
Veejay has joined #ruby
flagg0204 has joined #ruby
ChristianS has joined #ruby
fearoffish has joined #ruby
DandyPandy_ has joined #ruby
aboudreault has joined #ruby
niftylettuce has joined #ruby
scrogson has joined #ruby
TheHodge has joined #ruby
foohey_ has joined #ruby
spacemud has joined #ruby
e-dard has joined #ruby
epic has joined #ruby
is_null has joined #ruby
tethra has joined #ruby
txdv_ has joined #ruby
cam`_ has joined #ruby
erry has joined #ruby
dross has joined #ruby
eval-in has joined #ruby
mogsy has joined #ruby
DefV has joined #ruby
Quadlex has joined #ruby
Xuerian has joined #ruby
eliasp_ has joined #ruby
MrZYX has joined #ruby
test_a has joined #ruby
madhatter has joined #ruby
samuelkadolph has joined #ruby
AgileSanta has joined #ruby
crodas has joined #ruby
tomaw has joined #ruby
destructure has joined #ruby
homelinen has joined #ruby
thibauts_ has joined #ruby
jmeeuwen has joined #ruby
pentameter has joined #ruby
mame3 has joined #ruby
KillerFox has joined #ruby
BombStrike has joined #ruby
marienz has joined #ruby
araujo has joined #ruby
cespare_ has joined #ruby
msch has joined #ruby
kpwz has joined #ruby
banzounet has joined #ruby
ryotarai_ has joined #ruby
jtperreault has joined #ruby
Jedi_SCT1 has joined #ruby
nuck has joined #ruby
kstephens has joined #ruby
linduxed has joined #ruby
jpun has joined #ruby
dominikh has joined #ruby
gregorg has joined #ruby
hackeron_ has joined #ruby
emdub has joined #ruby
parus has joined #ruby
metallisto has joined #ruby
drago777 has joined #ruby
uxp has joined #ruby
slash_nick has joined #ruby
sross has joined #ruby
farn has joined #ruby
gkunno has joined #ruby
prsn has joined #ruby
zz_pinage404 has joined #ruby
MetaCosm has joined #ruby
Alina-malina has joined #ruby
micah` has joined #ruby
regedare1 has joined #ruby
deavidsedice has joined #ruby
denken has joined #ruby
yebyen has joined #ruby
martxel has joined #ruby
alexwh has joined #ruby
ahuman has joined #ruby
stopbit has joined #ruby
kiela has joined #ruby
fuleo has joined #ruby
thomas` has joined #ruby
crazymykl has joined #ruby
robwilliamsuk has joined #ruby
sahil has joined #ruby
klipeto has joined #ruby
Alasdairrr has joined #ruby
bricker has joined #ruby
ejnahc has joined #ruby
ddd__ has joined #ruby
Daemoen has joined #ruby
bw_ has joined #ruby
wting has joined #ruby
petru has joined #ruby
Blue_Ice has joined #ruby
patronus_ has joined #ruby
maloik has joined #ruby
reactormonk has joined #ruby
cout has joined #ruby
kennyvb has joined #ruby
peteyg_ has joined #ruby
jtcoon has joined #ruby
vadeliusOFF has joined #ruby
TTilus has joined #ruby
jolleyjoe has joined #ruby
rayfinkle has joined #ruby
cjk101010 has joined #ruby
halfie has joined #ruby
rcs has joined #ruby
jetblack has joined #ruby
Sargun has joined #ruby
ericwood has joined #ruby
jsaak_ has joined #ruby
udoprog has joined #ruby
WanderingGlitch has joined #ruby
JStoker has joined #ruby
jso has joined #ruby
BBonifield has joined #ruby
adamholt has joined #ruby
`MArceLL` has joined #ruby
ozzloy has joined #ruby
three18ti has joined #ruby
Gnubie has joined #ruby
Elfix_113 has joined #ruby
sirecote has joined #ruby
faulkner has joined #ruby
TheMoonMaster has joined #ruby
Niichan has joined #ruby
MarcWeber has joined #ruby
xybre has joined #ruby
dormiens has joined #ruby
Nom- has joined #ruby
Bish has joined #ruby
neektza1 has joined #ruby
brian` has joined #ruby
QKO has joined #ruby
anekos has joined #ruby
tchebb has joined #ruby
ohcibi has joined #ruby
jnix has joined #ruby
dubios has joined #ruby
MissionCritical has joined #ruby
chiel has joined #ruby
xefi_ has joined #ruby
yosafbridge has joined #ruby
kenichi has joined #ruby
sgkim1261 has joined #ruby
mahlon has joined #ruby
tessi has joined #ruby
sonne has joined #ruby
tekacs has joined #ruby
mosheee has joined #ruby
yonahw_ has joined #ruby
Kov|abx has joined #ruby
Fraeon has joined #ruby
ping-pong has joined #ruby
skinny_much_ has joined #ruby
devyn has joined #ruby
mcpierce has joined #ruby
Guest30040 has joined #ruby
Morrolan has joined #ruby
kevinfagan has joined #ruby
slightair has joined #ruby
jcarouth has joined #ruby
Raboo has joined #ruby
crazysim has joined #ruby
calmyournerves has joined #ruby
spike|spiegel has joined #ruby
multi_io_ has joined #ruby
jaimef has joined #ruby
epitron has joined #ruby
Dwarf has joined #ruby
s_e has joined #ruby
v2px has joined #ruby
monomyth has joined #ruby
sebastianb has joined #ruby
Spitfire has joined #ruby
Rennex has joined #ruby
Sou|cutter has joined #ruby
shaman42_ has joined #ruby
thejoecarroll_ has joined #ruby
sam113101 has joined #ruby
ddv has joined #ruby
heftig has quit [Read error: Connection reset by peer]
Spami has quit [Quit: This computer has gone to sleep]
nemesit|znc has joined #ruby
jesly has joined #ruby
jrendell has quit [Quit: jrendell]
Norrin has joined #ruby
Norrin has quit [Changing host]
sergicles has quit [Quit: sergicles]
Nitrodex is now known as Guest39520
interactionjaxsn has quit [Ping timeout: 245 seconds]
paolooo has joined #ruby
madb055 has quit [Read error: Connection reset by peer]
obs has quit [Quit: Konversation terminated!]
Spami has joined #ruby
mklappstuhl has quit [Remote host closed the connection]
jesly has quit [Read error: Connection reset by peer]
snearch has quit [Quit: Verlassend]
Hanmac1 has joined #ruby
cj3kim has quit [Remote host closed the connection]
jesly has joined #ruby
kindjal has joined #ruby
Hanmac1 has quit [Read error: Operation timed out]
AgileSanta has quit [Quit: WeeChat 0.3.7]
DeanH has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
kindjal has quit [Client Quit]
DrCode has joined #ruby
mmitchell has quit [Ping timeout: 260 seconds]
havenwood has joined #ruby
heftig has joined #ruby
robscomputer_ has quit [Read error: Connection reset by peer]
usr_ has quit [Quit: Leaving]
workmad3 has joined #ruby
robscomputer has joined #ruby
momomomomo has quit [Quit: momomomomo]
waxjar has joined #ruby
jesly has quit [Read error: Connection reset by peer]
c0rn has quit [Quit: Computer has gone to sleep.]
autumn has joined #ruby
paolooo has quit [Quit: Page closed]
brunoro has joined #ruby
jesly has joined #ruby
ehaliewicz has quit [Remote host closed the connection]
ehaliewicz has joined #ruby
ravster has quit [Quit: Leaving.]
zeropx has quit [Remote host closed the connection]
terrellt has quit [Ping timeout: 240 seconds]
georg_ehrke has quit [Remote host closed the connection]
hukl has quit [Ping timeout: 248 seconds]
TheRealPygo is now known as pygospa
Guest72609 has quit [Quit: When two people dream the same dream, it ceases to be an illusion.]
jesly has quit [Read error: Connection reset by peer]
Speed has joined #ruby
jmimi1 has joined #ruby
thelamest has joined #ruby
wolcanus has quit [Remote host closed the connection]
rouss has joined #ruby
jmimi has quit [Ping timeout: 264 seconds]
jesly has joined #ruby
jbpros has quit [Quit: jbpros]
arya_ has quit []
brtdv has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
jlast has quit [Ping timeout: 240 seconds]
arya_ has joined #ruby
airlok has joined #ruby
airlok has quit [Remote host closed the connection]
jlast has joined #ruby
druonysus has quit [Ping timeout: 240 seconds]
theRoUS has quit [Ping timeout: 264 seconds]
freerobby has quit [Quit: Leaving.]
wmoxam has quit [Ping timeout: 256 seconds]
baordog has quit [Remote host closed the connection]
druonysus has joined #ruby
andredie` is now known as andredieb
andredieb has quit [Changing host]
andredieb has joined #ruby
relix has quit [Read error: Connection reset by peer]
vlad_starkov has joined #ruby
cdelo has quit [Quit: Leaving]
arya_ has quit []
jmimi1 is now known as jmimi
rsahae has joined #ruby
khushildep has quit [Quit: khushildep]
DrShoggoth has joined #ruby
samuel02 has joined #ruby
vlad_starkov has quit [Ping timeout: 245 seconds]
nomenkun has joined #ruby
inimit has joined #ruby
jrendell has joined #ruby
brunoro has quit [Ping timeout: 245 seconds]
pkrnj has quit [Quit: Computer has gone to sleep.]
rhys_ has joined #ruby
voglster has quit [Quit: Leaving]
relix has joined #ruby
nomenkun has quit [Ping timeout: 240 seconds]
workmad3 has quit [Ping timeout: 245 seconds]
kpshek has quit []
Notte has joined #ruby
havenwood has quit [Remote host closed the connection]
bionoid has joined #ruby
rhys has quit [Ping timeout: 240 seconds]
jerius_ has quit [Read error: Operation timed out]
mljsimone is now known as mljsimone|away
mljsimone|away is now known as mljsimone
jlast has quit [Remote host closed the connection]
julweber has joined #ruby
momomomomo has joined #ruby
hakunin_ is now known as hakunin
<BlakeRG> question about bundler, i have gearman-ruby listed in my Gemfile but i need it to be required in my app as simply 'gearman' how i do that?
kirun has quit [Quit: Client exiting]
anonymuse has quit [Remote host closed the connection]
sambao21 has joined #ruby
anonymuse has joined #ruby
brunoro has joined #ruby
bionoid has quit [Remote host closed the connection]
sarkis has quit [Ping timeout: 240 seconds]
colonolGron has joined #ruby
bionoid has joined #ruby
osvico has joined #ruby
<MrZYX> create a folder in your app that is in your load path and add a file "gearman.rb" with the content 'require "gearman-ruby"'
Gugster has quit [Remote host closed the connection]
Guest93412 has joined #ruby
smlgs has joined #ruby
paolooo has joined #ruby
anonymuse has quit [Ping timeout: 240 seconds]
<Spooner> Or use: gem "gearman-ruby", require: "gearman"
<MrZYX> or just don't do anything at all: https://github.com/gearman-ruby/gearman-ruby/tree/master/lib
tbn` is now known as tbn
atyz has quit [Quit: Leaving...]
pkrnj has joined #ruby
c0rn has joined #ruby
citizensinspace has quit [Quit: citizensinspace]
niklasb has quit [Ping timeout: 276 seconds]
havenwood has joined #ruby
bigoldrock has quit [Ping timeout: 245 seconds]
niklasb has joined #ruby
rgreen has joined #ruby
mary5030_ has quit [Ping timeout: 264 seconds]
bionoid has quit [Remote host closed the connection]
<rgreen> does anyone here use the mysql api?
Synthead has joined #ruby
MrZYX is now known as MrZYX|off
bionoid has joined #ruby
fuzzyhorns has quit [Remote host closed the connection]
saarinen has quit [Quit: saarinen]
Hanmac1 has joined #ruby
samuel02 has quit [Remote host closed the connection]
atyz has joined #ruby
felixjet has joined #ruby
sambao21 has quit [Quit: Computer has gone to sleep.]
Hanmac1 has quit [Ping timeout: 245 seconds]
<havenwood> Ruby Hangout with Aaron Patterson in 10 min: https://plus.google.com/events/cmkbm5o6iva79jhr3mok97g7juc
<havenwood> ^ Public Service Announcement ^
<BlakeRG> what's a nice gem for logging to a file?
matematikaadit has joined #ruby
sambao21 has joined #ruby
sambao21 has quit [Client Quit]
<Spooner> BlakeRG, logger (std lib) or log4r (gem)
citizensinspace has joined #ruby
lindenle has quit [Quit: This computer has gone to sleep]
<BlakeRG> Spooner: can i set where logger sends log files to?
matematikaadit has left #ruby [#ruby]
<Spooner> You can give it any stream.
Rolenun has joined #ruby
jlast has joined #ruby
<havenwood> BlakeRG: Another gem is logging (based on log4j, dunno how it compares to log4r): https://github.com/TwP/logging
jlast has quit [Remote host closed the connection]
<Spooner> Well, that is based on log4j, which I assume log4r is doing.
pr0ggie has joined #ruby
mmitchell has joined #ruby
<havenwood> Log all the things! \o/
c0rn has quit [Quit: Computer has gone to sleep.]
phracker has joined #ruby
Deele has quit [Ping timeout: 240 seconds]
fredjean_ has quit [Quit: Computer has gone to sleep.]
pr0ggie has quit [Max SendQ exceeded]
pr0ggie has joined #ruby
blz37 has joined #ruby
bionoid has quit [Remote host closed the connection]
jacobw has joined #ruby
<rgreen> anyone know mysql for ruby?
[0x1a] has joined #ruby
ThePicard has joined #ruby
mljsimone is now known as mljsimone|away
mmitchell has quit [Ping timeout: 240 seconds]
<havenwood> rgreen: Whatcha mean?
<rgreen> im trying to use the mysql module
<havenwood> rgreen: The Sequel gem is great: http://sequel.rubyforge.org
<rgreen> i could use that to connect to my mysql database
pr0ggie has quit [Read error: Connection reset by peer]
pr0ggie has joined #ruby
<havenwood> Ruby hangout just started live: https://www.youtube.com/watch?v=fuiCtVchIW8
<havenwood> (Online Ruby meetup.)
<rgreen> someone could help me there? lol
Xeago__ has quit [Read error: Connection reset by peer]
<havenwood> rgreen: The sequel gem is great for connecting to and working with a MySQL DB. Pretty good documentation too.
Xeago has joined #ruby
pkrnj has quit [Quit: Computer has gone to sleep.]
<rgreen> ok, i will look into it
<havenwood> Ruby Hangout channel is #rubyhangout btw for anyone also watching.
danshultz has quit [Remote host closed the connection]
<rgreen> would it let me save data from my tables into arrays
baroquebobcat has quit [Quit: baroquebobcat]
danshultz has joined #ruby
agjacome has quit [Ping timeout: 256 seconds]
<havenwood> rgreen: yes
[0x1a] has quit [Quit: Connection closed for inactivity]
codesoda has joined #ruby
gstamp has joined #ruby
<rgreen> it seems that it saves data into an array of hashes, each hash is a row. how would i go about collecting a value from each hash with the same key?>
Proshot has joined #ruby
geggam has quit [Remote host closed the connection]
<havenwood> rgreen: Give an example input and expected output?
enebo has quit [Quit: enebo]
vlad_starkov has joined #ruby
<rgreen> well my table would contain a column called id and a column called text, and then there would be multiple rows for the columns, and then i would want to have build an array called id_array that just had the values for the ids and a text_array that had just strings from each text entry of the table
guilleiguaran_ has joined #ruby
renderfu_ has quit [Remote host closed the connection]
BlakeRG has quit [Quit: BlakeRG]
ebobby has quit [Quit: Lost terminal]
milardovich has joined #ruby
milardovich has quit [Max SendQ exceeded]
milardovich has joined #ruby
cj3kim has joined #ruby
Es0teric has joined #ruby
jonathanwallace1 has quit [Quit: WeeChat 0.4.0]
headius has quit [Quit: headius]
milardovich has quit [Max SendQ exceeded]
vlad_starkov has quit [Ping timeout: 240 seconds]
milardovich has joined #ruby
emergion has joined #ruby
Nahra has quit [Quit: leaving]
milardovich has quit [Max SendQ exceeded]
jonathanwallace has joined #ruby
Nahra has joined #ruby
doritostains has joined #ruby
milardovich has joined #ruby
paolooo has quit [Quit: Page closed]
nemesit|znc has quit [Ping timeout: 240 seconds]
milardovich has quit [Max SendQ exceeded]
TheNotary has quit [Ping timeout: 240 seconds]
milardovich has joined #ruby
wsterling has quit [Remote host closed the connection]
zeromodulus has quit [Remote host closed the connection]
milardovich has quit [Max SendQ exceeded]
zeromodulus has joined #ruby
milardovich has joined #ruby
nemesit|znc has joined #ruby
citizensinspace has quit [Quit: citizensinspace]
milardovich has quit [Max SendQ exceeded]
mikeg has joined #ruby
milardovich has joined #ruby
Guest93412 is now known as Guga_
johnnyfuchs has quit [Remote host closed the connection]
ehaliewicz has quit [Ping timeout: 245 seconds]
c0rn has joined #ruby
milardovich has quit [Max SendQ exceeded]
predator217 has joined #ruby
CaptainJet has quit []
milardovich has joined #ruby
danbeck has quit [Quit: danbeck]
ThePicard has quit [Ping timeout: 240 seconds]
stkowski has quit [Quit: stkowski]
milardovich has quit [Max SendQ exceeded]
ehaliewicz has joined #ruby
milardovich has joined #ruby
milardovich has quit [Max SendQ exceeded]
predator117 has quit [Ping timeout: 276 seconds]
milardovich has joined #ruby
tylersmith has quit [Remote host closed the connection]
CaptainJet has joined #ruby
ner0x has joined #ruby
milardovich has quit [Max SendQ exceeded]
terrellt has joined #ruby
milardovich has joined #ruby
Synthead has quit [Ping timeout: 245 seconds]
nari has joined #ruby
renderful has joined #ruby
milardovich has quit [Max SendQ exceeded]
keyvan has joined #ruby
rgreen has quit [Ping timeout: 264 seconds]
milardovich has joined #ruby
emergion has quit [Quit: Computer has gone to sleep.]
milardovich has quit [Max SendQ exceeded]
devoldmx has quit [Ping timeout: 248 seconds]
milardovich has joined #ruby
marcgg_ has quit [Read error: No route to host]
devoldmx has joined #ruby
milardovich has quit [Max SendQ exceeded]
nfk has quit [Quit: yawn]
milardovich has joined #ruby
marcgg has joined #ruby
gildo_ has joined #ruby
tatsuya_o has quit [Remote host closed the connection]
DeanH has joined #ruby
milardovich has quit [Max SendQ exceeded]
earthquake has joined #ruby
milardovich has joined #ruby
popl has joined #ruby
milardovich has quit [Max SendQ exceeded]
milardovich has joined #ruby
tjbiddle has quit [Quit: tjbiddle]
pkrnj has joined #ruby
bionoid has joined #ruby
Kruppe has joined #ruby
druonysus has quit [Remote host closed the connection]
JZTech101 has joined #ruby
druonysus has joined #ruby
milardovich has quit [Max SendQ exceeded]
erdos has joined #ruby
pipework has quit [Remote host closed the connection]
bionoid has quit [Remote host closed the connection]
<erdos> hey there, i have a capistrano question, is it ok to ask in here?
milardovich has joined #ruby
jalcine has quit [Excess Flood]
milardovich has quit [Max SendQ exceeded]
citizensinspace has joined #ruby
Ziarkaen` has quit [Remote host closed the connection]
milardovich has joined #ruby
rhys_ has quit [Quit: Leaving]
milardovich has quit [Max SendQ exceeded]
milardovich has joined #ruby
Speed has quit [Quit: When two people dream the same dream, it ceases to be an illusion.]
marcgg has quit [Read error: Connection reset by peer]
bradhe has quit [Remote host closed the connection]
wimplash has joined #ruby
marcgg has joined #ruby
citizensinspace has quit [Quit: citizensinspace]
bradhe has joined #ruby
Hanmac1 has joined #ruby
nemesit|znc has quit [Ping timeout: 240 seconds]
DeanH has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
bradhe_ has joined #ruby
bradhe has quit [Read error: Connection reset by peer]
Drakevr has quit [Changing host]
Drakevr has joined #ruby
zeade has quit [Quit: Leaving.]
Hanmac1 has quit [Ping timeout: 245 seconds]
tommyvyo has quit [Quit:]
jmimi has left #ruby [#ruby]
milardovich has quit [Quit: Leaving]
nemesit|znc has joined #ruby
viszu has joined #ruby
wimplash has quit [Quit: Leaving...]
matt-chars has joined #ruby
dEPy has quit [Remote host closed the connection]
pygospa has quit [Disconnected by services]
TheRealPygo has joined #ruby
BRMatt has quit [Quit: Leaving]
<matt-chars> I've got a project with a lot of static pages, but I'd like to share layouts across it. I'm considering using jekyll. but in the future I might want to have a user registration system. Should I just do it all in Rails?
mstksg has joined #ruby
Bry8Star{T2 has joined #ruby
jlast has joined #ruby
dayepa1 has joined #ruby
postmodern has quit [Quit: Leaving]
niklasb has quit [Ping timeout: 245 seconds]
postmodern has joined #ruby