apeiros_ changed the topic of #ruby to: Ruby 1.9.3-p362: http://ruby-lang.org (ruby-2.0.0-rc1) || Paste >3 lines of text on http://gist.github.com
<Eiam> I saw one of the videos and thought certainly some of the concepts applied to me, but some of the mechanisms (like Maybe) I hestitate to enter into a production code base
<Eiam> not because its production, I should have said "multiple team members"
horofox has quit [Quit: horofox]
workmad3 has quit [Ping timeout: 276 seconds]
dmiller1 has quit [Ping timeout: 256 seconds]
pavilionXP has joined #ruby
jonahR has quit [Quit: jonahR]
SCommette has joined #ruby
doktrin has joined #ruby
jblack has joined #ruby
tethra has quit [Ping timeout: 245 seconds]
jfl0wers has joined #ruby
afarazit|atno is now known as afarazit
otters has quit [Ping timeout: 252 seconds]
robotmay_ has quit [Ping timeout: 248 seconds]
nateberkopec has quit [Ping timeout: 276 seconds]
sepp2k1 has quit [Remote host closed the connection]
xsarin has quit [Read error: Connection reset by peer]
SCommette has quit [Client Quit]
robacarp has quit [Ping timeout: 240 seconds]
nwertman_ has quit [Remote host closed the connection]
emocakes has quit [Quit: emocakes]
emocakes has joined #ruby
piotr__ has quit [Read error: Operation timed out]
ben______ has quit [Quit: ben______]
jblack has quit [Ping timeout: 276 seconds]
froy has joined #ruby
robacarp has joined #ruby
horofox has joined #ruby
Kingy_ has joined #ruby
miskander has joined #ruby
tethra has joined #ruby
Kingy has quit [Ping timeout: 244 seconds]
tatsuya_o has quit [Remote host closed the connection]
otters has joined #ruby
dr_neek has joined #ruby
main has joined #ruby
chaosis has quit [Ping timeout: 260 seconds]
ckrailo has quit [Ping timeout: 276 seconds]
kiyoura has joined #ruby
ckrailo has joined #ruby
dr_neek has quit [Read error: No route to host]
dr_neek has joined #ruby
Ontolog has joined #ruby
SCommette has joined #ruby
<Ontolog> It seems that require 'some/path' and require './some/path' are different? in my case, even though i'm adding the current directory to $:, require 'some/path' gives me a LoadError
etcetera has quit []
baroquebobcat has quit [Quit: baroquebobcat]
<Eiam> kind of wish array.zip when given a block would return the result instead of nil
karasawa has joined #ruby
<havenn> Ontolog: In 1.9, '.' is no longer in LOAD_PATH by default.
baroquebobcat has joined #ruby
<havenn> Ontolog: If you add '.' to $: you still have the issue?
<Ontolog> havenn: I'm explicitly adding the current directory and doing it by getting the fully qualified path and adding that to $:
tethra has quit [Remote host closed the connection]
<havenn> Ontolog: and its in $: when you check?
<Ontolog> yes
<havenn> Ontolog: how odd
<Eiam> when doing a zip is there a more simple way to make it fill with something other than nil when their is a size mismatch?
emmanuelux has quit [Quit: emmanuelux]
<Eiam> right now I've got the block doing a check in the zip and pushing into another array outside the chain
<Ontolog> even if I just do $:.unshift '.' i still get the same problem
slainer68 has quit [Remote host closed the connection]
<Eiam> i could check the arrays before hand and 0 fill them before the zip i guess
aaronmacy has quit [Quit: Leaving.]
skcin7 has joined #ruby
spathi has left #ruby [#ruby]
ner0x has quit [Quit: Leaving]
dmiller1 has joined #ruby
baphled has joined #ruby
emmanuelux has joined #ruby
r3nrut has joined #ruby
Michae___ has joined #ruby
<havenn> Ontolog: Does?: __FILE__ == $0
<Ontolog> no
<Ontolog> __FILE__ is Rakefile and I'm running rake
miskander has quit [Quit: miskander]
DatumDrop has joined #ruby
karasawa has quit [Ping timeout: 276 seconds]
RagingDave has quit [Quit: Ex-Chat]
marr has quit [Ping timeout: 248 seconds]
karupanerura has quit [Excess Flood]
karupanerura has joined #ruby
Fuzai has quit [Ping timeout: 245 seconds]
DatumDrop has quit [Ping timeout: 256 seconds]
apeiros has joined #ruby
jonathancutrell has joined #ruby
<jonathancutrell> Hey folks! I've encountered a very strange problem while using make with a ruby executable
gyre007 has joined #ruby
<jonathancutrell> For some reason, I can't open and read from a file.
<jonathancutrell> I can read the argument being passed to the script (the file name) and even extrapolate a full path from that name.
jblack has joined #ruby
<jonathancutrell> However, when I run any of the File.read(path) options, none of them are working.
<jonathancutrell> Note, this works when running the file on its own, but doesn't work when it is executed by make.
<jonathancutrell> Has anyone experienced something like this?
volk_ has quit [Quit: volk_]
MattRb has quit [Quit: This computer has gone to sleep]
andresama has joined #ruby
<jonathancutrell> This is the script
<andresama> Hi, hope you can help me
jrajav has quit [Quit: I tend to be neutral about apples]
<jonathancutrell> When I put a "puts css" in there, it doesn't work either.
lkba has quit [Ping timeout: 252 seconds]
<andresama> i have some xml files that contains the XSD files to validate it inside a schemaLocation node inside the XML is there a way to validate it against those XSD files URLs ?
<havenn> jonathancutrell: Is it maybe a file ownership or permissions issue, or that ruled out?
Cicloid has quit [Remote host closed the connection]
baroquebobcat has quit [Quit: baroquebobcat]
moos3 has quit [Quit: Computer has gone to sleep.]
<jonathancutrell> havenn: I would only need read permissions, correct?
Kingy_ has quit [Ping timeout: 244 seconds]
<jonathancutrell> havenn: Also - if I can run the script as a user, wouldn't Make be running as that same user?
theRoUS has joined #ruby
theRoUS has joined #ruby
<Eiam> Is there a way to cut/slice an array on a specific element? like x = [1,2,3,4,5]; x.slice(3…) and note I don't mean slice on the 3rd element, I mean slice on the element in the array that is 3, so from it onward
<Eiam> without knowing the actual position of 3
<Eiam> I suppose I'm going to hear "just get the index, and slice on that"
<jonathancutrell> Eiam: there is a way
<Eiam> x.slice(x.index(3))
jgrevich has quit [Remote host closed the connection]
TheFuzzball has quit [Quit: Computer has gone to sleep.]
jgrevich has joined #ruby
afarazit is now known as afarazit|atno
miskander has joined #ruby
<jonathancutrell> Eh perhaps there isn't a way.
pac1 has joined #ruby
<jonathancutrell> you could always extend array. :)
<Eiam> meh ill just do as I mentioned above =)
horofox has quit [Quit: horofox]
apeiros has quit [Ping timeout: 255 seconds]
nga4 has quit [Ping timeout: 256 seconds]
<havenn> Eiam: would it work to: x.slice 3..-1
<Eiam> i don't care about extending array its just functionality I needed once; just wanted to know if there was some mojo in slice, or something like 'cut' that would do it
<Eiam> havenn: that slices on the index 3
TheFuzzball has joined #ruby
TheFuzzball has quit [Remote host closed the connection]
<Eiam> not the element with the value of 3
SCommette has quit [Quit: SCommette]
marxarelli has quit [Quit: Textual IRC Client: www.textualapp.com]
<havenn> Eiam: where do you want to slice?
<havenn> Eiam: Guess I don't understand >.>
Monie has quit [Quit: Quit]
<jonathancutrell> Could it be an escaping issue havenn ?
<jonathancutrell> havenn: although the file.expand_path should circumvent that...
<Eiam> havenn: say the array is instead x=["a","b","c","d"] and i want to slice on "c" without saying x.slice(2..-1) but instead x.slice("c"..-1)
<havenn> jonathancutrell: I don't know. I haven't run into this one. Hrm...
jrist is now known as jrist-afk
<Eiam> havenn: thats not a valid range object
codezombie is now known as codezombie|away
Fuzai has joined #ruby
main has quit [Ping timeout: 276 seconds]
<havenn> Eiam: ahhh, get it now :)
<Eiam> and I posted a solution, I was just curious if there was something that felt less 'meh' to e
<Eiam> me
opettaja has joined #ruby
kenneth has quit [Quit: kenneth]
<havenn> Eiam: 'c'.till(last)
dormiens has joined #ruby
<havenn> Eiam: But alas...
reppard has quit [Quit: Lost terminal]
pavilionXP has quit [Read error: Connection reset by peer]
havenn has quit [Remote host closed the connection]
<Eiam> not sure I follow that one..
Michae___ has quit [Remote host closed the connection]
reppard has joined #ruby
<Eiam> that assumes the data is an ordered set like a,b,c,d,e, or 1,2,3,4,5, but its really just a set of strings that have no order except the order within the array
Virunga has quit [Remote host closed the connection]
ckrailo has quit [Quit: Computer has gone to sleep.]
<reppard> if someone in here is familar with mocks and stubs using rspec-mocks i would appreciate some help
<Eiam> granted thats kind of the example i gave, but i guess its really x = ["banana","apple", "orange","peach"]; x.split("apple"..-1)
<reppard> for some reason my should_receives are blowing up and i dont know if i am implementing this correctly
<Eiam> sorry ;)
<Eiam> err slice not split!
<Eiam> anyway going to stick with slice on index
kenneth has joined #ruby
Michael_ has joined #ruby
syamajala has quit [Ping timeout: 252 seconds]
<reppard> in the last test @search.results returns the mock object that the mock method sent but somehow i get expect:1 received:0
adamjleonard has quit [Read error: Connection reset by peer]
tommyvyo has quit [Quit: http://twitter.com/tommyvyo]
Automorphism is now known as BlubProgrammer
eka has quit [Quit: Computer has gone to sleep.]
hasse_ has joined #ruby
doktrin has quit [Ping timeout: 252 seconds]
brianpWins has quit [Quit: brianpWins]
ryanf has joined #ruby
yshh has joined #ruby
stkowski has quit [Quit: stkowski]
mikepack has quit [Remote host closed the connection]
aeontech has quit [Ping timeout: 245 seconds]
nateberkopec has joined #ruby
dougireton has quit [Remote host closed the connection]
blazes816 has quit [Quit: blazes816]
reppard has quit [Quit: leaving]
ephemerian has quit [Quit: Leaving.]
rwalker has joined #ruby
rwalker is now known as reppard
DuoSRX has quit [Remote host closed the connection]
NemesisD has quit [Ping timeout: 252 seconds]
emocakes has quit [Quit: emocakes]
cpruitt has quit [Ping timeout: 256 seconds]
lolmaus has quit [Read error: Connection reset by peer]
<hasse_> How can I add the define_singleton_method() to my basic object?
lolmaus has joined #ruby
Michael_ has quit [Remote host closed the connection]
<hasse_> basic object = a BasicObject instance
woolite64 has quit [Quit: Leaving]
Michael_ has joined #ruby
dormiens has quit [Ping timeout: 264 seconds]
alvaro_o_ has quit [Quit: Ex-Chat]
tommyvyo has joined #ruby
jgrevich_ has joined #ruby
nwertman has joined #ruby
v0n has quit [Ping timeout: 240 seconds]
codezombie|away is now known as codezombie
Chryson has joined #ruby
dormiens has joined #ruby
<Spooner> reppard, The stub will probably get overwritten by the should_receive. You need to have an and_return for that too.
generali_ has joined #ruby
dcope has quit [Changing host]
dcope has joined #ruby
hbpoison has quit [Ping timeout: 240 seconds]
jgrevich has quit [Ping timeout: 276 seconds]
jgrevich_ is now known as jgrevich
apeiros has joined #ruby
<Spooner> reppard, And I think you need to should_receive(:get).with(...).and_return(...)
wargasm has joined #ruby
<Spooner> But since this is the actual spec, I can't tell whether you are doing it right ;)
swex_ has quit [Read error: Connection reset by peer]
swex_ has joined #ruby
MattRb has joined #ruby
havenn has joined #ruby
taoru has joined #ruby
syamajala has joined #ruby
andresama has quit [Remote host closed the connection]
Dreamer3 has quit [Ping timeout: 256 seconds]
Dreamer3 has joined #ruby
aeontech has joined #ruby
DatumDrop has joined #ruby
doktrin has joined #ruby
etcetera has joined #ruby
nathancahill has joined #ruby
jaequery has quit [Quit: Computer has gone to sleep.]
codeFiend has joined #ruby
taoru has quit [Remote host closed the connection]
Michael_ has quit [Remote host closed the connection]
Michael_ has joined #ruby
djones_ has joined #ruby
bjeanes has quit [Quit: quitting]
apeiros has quit [Ping timeout: 240 seconds]
bjeanes has joined #ruby
mrsolo has quit [Quit: Leaving]
jonahR has joined #ruby
aeontech has quit [Ping timeout: 248 seconds]
codeFiend is now known as aeontech
jenrzzz has joined #ruby
nathancahill has quit [Client Quit]
nateberkopec has quit [Quit: Linkinus - http://linkinus.com]
ner0x has joined #ruby
hbpoison has joined #ruby
kil0byte has joined #ruby
doktrin has quit [Quit: leaving]
karasawa has joined #ruby
yakko has joined #ruby
speakingcode has quit [Ping timeout: 248 seconds]
jeffreybaird has joined #ruby
slainer68 has joined #ruby
jjang has quit [Remote host closed the connection]
generali_ has quit [Remote host closed the connection]
bitcrave has quit [Ping timeout: 272 seconds]
<reppard> Spooner: I couldn't see your responce as i am experiencing some tmux issues =\
hbpoison has quit [Ping timeout: 260 seconds]
<reppard> if you care to take a look again, ill paste the code and the output of the test
karasawa has quit [Ping timeout: 264 seconds]
<reppard> id scroll up the buffer and look at your previous input if i could but my tmux is being crazy
mmitchell has joined #ruby
slainer68 has quit [Ping timeout: 276 seconds]
atmosx has quit [Read error: Connection reset by peer]
tcurdt has joined #ruby
xemu2 has quit [Quit: Nettalk6 - www.ntalk.de]
<xybre> reppard: pageup?
atmosx has joined #ruby
freeayu has joined #ruby
hbpoison has joined #ruby
toekutr has quit [Quit: ERC Version 5.3 (IRC client for Emacs)]
syamajala has quit [Ping timeout: 246 seconds]
<reppard> xybre: i just got it, pageup wasn't working
drago757 has joined #ruby
<reppard> had to kill my iterm and reattach
tcurdt has quit [Quit: bye bye]
tcurdt has joined #ruby
mmitchell has quit [Remote host closed the connection]
syamajala has joined #ruby
tcurdt has quit [Client Quit]
TomyLobo has quit [Quit: Standby mode...]
cyong has joined #ruby
samuel02 has quit [Remote host closed the connection]
mkillebrew2 has quit [Quit: leaving]
Guest19481 is now known as verto|off
codezombie is now known as codezombie|away
pskosinski has quit [Quit: Learn Life's Little Lessons]
c0rn has quit [Quit: Computer has gone to sleep.]
artOfWar has quit [Remote host closed the connection]
<xybre> Weird O_o
apeiros has joined #ruby
djones_ has quit [Quit: djones_]
mockra has quit [Remote host closed the connection]
r3nrut__ has joined #ruby
dmerrick has quit [Quit: dmerrick]
jgrevich_ has joined #ruby
Michael_ has quit [Remote host closed the connection]
Michael_ has joined #ruby
jgrevich has quit [Ping timeout: 248 seconds]
jgrevich_ is now known as jgrevich
chaosis has joined #ruby
hadees has quit [Quit: hadees]
ryanh has joined #ruby
karasawa has joined #ruby
theRoUS has quit [Ping timeout: 245 seconds]
joeycarmello has quit [Remote host closed the connection]
breakingthings has joined #ruby
zph has quit [Quit: Computer has gone to sleep.]
bricker is now known as bricker`work
icole has quit [Remote host closed the connection]
b1rkh0ff has quit [Ping timeout: 244 seconds]
shorts has joined #ruby
karasawa has quit [Ping timeout: 252 seconds]
karasawa has joined #ruby
apeiros has quit [Ping timeout: 244 seconds]
opettaja has quit [Remote host closed the connection]
samphippen has quit [Quit: Computer has gone to sleep.]
visionary has joined #ruby
<visionary> how would I convert "name DESC, type ASC"  to["name", "DESC"], ["type", "ASC"]?
havenn has quit [Remote host closed the connection]
hasse_ has quit [Quit: Page closed]
ttt_ has joined #ruby
BadLarry has quit [Ping timeout: 256 seconds]
tps_ has joined #ruby
ryanh has quit [Quit: Computer has gone to sleep.]
karasawa has quit [Ping timeout: 246 seconds]
jjbohn has joined #ruby
BadLarry has joined #ruby
<Spooner> "name DESC, type ASC".split(", ").map {|s| s.split " " }
karasawa has joined #ruby
<Spooner> Though why you'd want to is anyone's guess ;) Do people really work in raw SQL any more?
<Spooner> reppard, I reposted in a PM.
<reppard> just saw that thanks
<reppard> i gotta put the kids to bed and i'll read it =)
tjbiddle has quit [Ping timeout: 248 seconds]
codezombie|away is now known as codezombie
<Spooner> reppard, Hope it is useful. Time for bed here ;)
Spooner has quit [Quit: Leaving]
matchaw has quit [Quit: No Ping reply in 180 seconds.]
matchaw has joined #ruby
cakeboss has joined #ruby
joeycarmello has joined #ruby
hadees has joined #ruby
tommyvyo has quit [Quit: http://twitter.com/tommyvyo]
<carlzulauf> i wish i could completely avoid raw SQL. even with something awesome like Squeel though, raw sql always ends up being a necessity at some point
mahmoudimus has joined #ruby
codezombie has quit [Quit: Linkinus - http://linkinus.com]
r3nrut__ has quit [Ping timeout: 248 seconds]
tommyvyo has joined #ruby
opettaja has joined #ruby
jaimef has quit [Quit: Emacs must have died]
dhruvasagar has joined #ruby
twoism has quit [Remote host closed the connection]
jaimef has joined #ruby
zehrizzatti has joined #ruby
yakko has quit [Remote host closed the connection]
nfk has quit [Quit: yawn]
AndChat| has quit [Ping timeout: 245 seconds]
baphled has quit [Ping timeout: 244 seconds]
cyong has quit [Quit: Leaving.]
bean_ has joined #ruby
baroquebobcat has joined #ruby
bean_ has quit [Client Quit]
apeiros has joined #ruby
syamajala has quit [Quit: leaving]
slainer68 has joined #ruby
aeontech has quit [Quit: aeontech]
gyre007 has quit [Remote host closed the connection]
pencilcheck has quit [Remote host closed the connection]
jds_ has quit [Remote host closed the connection]
theRoUS has joined #ruby
gyre007 has joined #ruby
gyre007 has quit [Read error: Connection reset by peer]
opettaja has quit [Remote host closed the connection]
gyre007 has joined #ruby
gyre007 has quit [Read error: Connection reset by peer]
gyre007 has joined #ruby
gyre007 has quit [Read error: Connection reset by peer]
gyre007 has joined #ruby
gyre007 has quit [Read error: Connection reset by peer]
slainer68 has quit [Ping timeout: 276 seconds]
BlubProgrammer has quit [Quit: When I come back, please tell me in what new ways you have decided to be completely wrong.]
gyre007 has joined #ruby
gyre007 has quit [Read error: Connection reset by peer]
rakl has quit [Quit: sleeping]
jonathanwallace has quit [Read error: Connection reset by peer]
gyre007 has joined #ruby
Playground has joined #ruby
pac1 has quit [Quit: I got it one line of code at a time]
gyre007 has quit [Read error: Connection reset by peer]
SCommette has joined #ruby
SCommette has quit [Client Quit]
gyre007 has joined #ruby
gyre007 has quit [Read error: Connection reset by peer]
gyre007 has joined #ruby
gyre007 has quit [Read error: Connection reset by peer]
jonathanwallace has joined #ruby
gyre007 has joined #ruby
gyre007 has quit [Read error: Connection reset by peer]
yugui_zzz is now known as yugui
seich- is now known as Seich
gyre007 has joined #ruby
apeiros has quit [Ping timeout: 240 seconds]
gyre007 has quit [Read error: Connection reset by peer]
gyre007 has joined #ruby
gyre007 has quit [Read error: Connection reset by peer]
MattRb has quit [Quit: This computer has gone to sleep]
visionary has quit [Quit: Leaving.]
gyre007 has joined #ruby
gyre007 has quit [Read error: Connection reset by peer]
gyre007 has joined #ruby
gyre007 has quit [Read error: Connection reset by peer]
<unstable> Is there a source of rspecs for large programs anywhere? So for writing a command line chess, or for writing different command line programs.
Asym has quit [Ping timeout: 255 seconds]
gyre007 has joined #ruby
gyre007 has quit [Read error: Connection reset by peer]
melisaa has joined #ruby
gyre007 has joined #ruby
gyre007 has quit [Read error: Connection reset by peer]
gyre007 has joined #ruby
gyre007 has quit [Read error: Connection reset by peer]
reset has quit [Ping timeout: 245 seconds]
MattRb has joined #ruby
gyre007 has joined #ruby
gyre007 has quit [Read error: Connection reset by peer]
aaronmacy has joined #ruby
gyre007 has joined #ruby
gyre007 has quit [Read error: Connection reset by peer]
jbw has quit [Ping timeout: 256 seconds]
entrenador has joined #ruby
gyre007 has joined #ruby
gyre007 has quit [Read error: Connection reset by peer]
nathancahill has joined #ruby
benlieb has joined #ruby
gyre007 has joined #ruby
aaronmacy has quit [Client Quit]
gyre007 has quit [Read error: Connection reset by peer]
gyre007 has joined #ruby
pencilcheck has joined #ruby
MattRb has quit [Client Quit]
gyre007 has quit [Read error: Connection reset by peer]
gyre007 has joined #ruby
gyre007 has quit [Read error: Connection reset by peer]
bricker`1A is now known as bricker
toekutr has joined #ruby
gyre007 has joined #ruby
baphled has joined #ruby
gyre007 has quit [Read error: Connection reset by peer]
benlieb has quit [Ping timeout: 252 seconds]
gyre007 has joined #ruby
aaronmacy has joined #ruby
gyre007 has quit [Read error: Connection reset by peer]
gyre007 has joined #ruby
gyre007 has quit [Read error: Connection reset by peer]
melisaa has quit [Remote host closed the connection]
gyre008 has quit [Remote host closed the connection]
gyre007 has joined #ruby
opettaja has joined #ruby
gyre007 has quit [Read error: Connection reset by peer]
Targen has quit [Ping timeout: 248 seconds]
gyre007 has joined #ruby
gyre007 has quit [Read error: Connection reset by peer]
melisaa has joined #ruby
frem has quit [Ping timeout: 246 seconds]
gyre007 has joined #ruby
gyre007 has quit [Read error: Connection reset by peer]
f03lipe has joined #ruby
nathancahill has quit [Ping timeout: 248 seconds]
miskander has quit [Quit: miskander]
gyre007 has joined #ruby
gyre007 has quit [Read error: Connection reset by peer]
entrenador has quit [Quit: Colloquy for iPad - http://colloquy.mobi]
__BigO__ has joined #ruby
connor_ has quit [Remote host closed the connection]
eka has joined #ruby
gyre008 has joined #ruby
gyre008 has quit [Read error: Connection reset by peer]
fermion has quit [Quit: Textual IRC Client: http://www.textualapp.com/]
gyre007 has joined #ruby
gyre007 has quit [Read error: Connection reset by peer]
tommyvyo has quit [Quit: http://twitter.com/tommyvyo]
theRoUS has quit [Ping timeout: 276 seconds]
Hanmac1 has joined #ruby
jbw has joined #ruby
gyre007 has joined #ruby
__BigO__ has quit [Read error: Connection reset by peer]
gyre007 has quit [Read error: Connection reset by peer]
cobragoat has quit [Remote host closed the connection]
SCommette has joined #ruby
Hanmac has quit [Ping timeout: 276 seconds]
icole has joined #ruby
rezzack has quit [Quit: Leaving.]
aaronmacy has quit [Quit: Leaving.]
chendo_ has quit [Ping timeout: 245 seconds]
apeiros has joined #ruby
artOfWar has joined #ruby
io_syl has quit [Ping timeout: 260 seconds]
hackerdude has quit [Remote host closed the connection]
jeffreybaird has quit [Quit: jeffreybaird]
jeffreybaird has joined #ruby
chendo_ has joined #ruby
Seich is now known as seich
_alejandro has joined #ruby
zehrizzatti has quit [Quit: Linkinus - http://linkinus.com]
sn0wb1rd has quit [Quit: sn0wb1rd]
Asym has joined #ruby
opettaja has quit [Remote host closed the connection]
AsgardBSD has joined #ruby
cakeboss has quit [Excess Flood]
Liothen has joined #ruby
Liothen has joined #ruby
cakeboss has joined #ruby
az7ar has quit [Remote host closed the connection]
<shevy2> hmm if I have a project called "foobar", which has 50 classes, and one class has a dependency on another project, will my project "foobar" thus depend on this other project?
cakeboss has quit [Disconnected by services]
ducktator has joined #ruby
<shevy2> I mean via ruby-gem addons
<shevy2> the .gemspec dependency listing will get huge in this case ... :(
Michael_ has quit [Read error: Connection reset by peer]
chendo_ has quit [Ping timeout: 248 seconds]
Michael_ has joined #ruby
MattRb has joined #ruby
chendo_ has joined #ruby
artOfWar has quit [Remote host closed the connection]
artOfWar has joined #ruby
opettaja has joined #ruby
hadees has quit [Quit: hadees]
f03lipe has quit [Read error: Connection reset by peer]
locriani_ has quit [Read error: Connection reset by peer]
apeiros has quit [Ping timeout: 252 seconds]
Asym has quit [Ping timeout: 255 seconds]
aaronmacy has joined #ruby
aaronmacy has left #ruby [#ruby]
locriani has joined #ruby
ducktator has quit []
banisterfiend has quit [Ping timeout: 260 seconds]
baphled has quit [Ping timeout: 256 seconds]
dankest has joined #ruby
rohit has joined #ruby
fivetwentysix_ has joined #ruby
x82_nicole has quit [Quit: Computer has gone to sleep.]
templaedhel has joined #ruby
<Quadlex> Ugh
<Quadlex> Want to add a method to a class to avoid an error
<Quadlex> Don't want to wait until it's accepted up the chain
<Quadlex> But it needs to be there at require tiem
<Quadlex> time
<reppard> anyone have a suggestion on how to mock a class and stub its constructor?
<Quadlex> So I either require a bunch of crap BEFORE calling Bundler.require
<Quadlex> OR... something
<shevy2> Quadlex how can you modify something if you did not require it
aeontech has joined #ruby
ilyam has quit [Quit: ilyam]
<Quadlex> shevy2: Because that makes the require an extention of the existing code
<Quadlex> I know it's a hack
mneorr has joined #ruby
<mneorr> hey guys, has anybody used amazon_flex_pay gem?
syamajala has joined #ruby
<mneorr> i'm interested if there's any way of getting notified when the user cancels authorization on Amazon's website
sn0wb1rd has joined #ruby
iamjarvo has joined #ruby
fivetwentysix has quit [Ping timeout: 252 seconds]
fivetwentysix_ is now known as fivetwentysix
mockra has joined #ruby
pu22l3r has joined #ruby
nathancahill has joined #ruby
<Quadlex> I must be fucking stupid
<Quadlex> I'm clobbering the actual implementation with my extra method and I've no idea why
<sn0wb1rd> Quadlex: Don't be like that :)
<reppard> man, i think i have been completely misunderstanding should_receive
slainer68 has joined #ruby
<reppard> i was looking at that like it was an assertion and not the actually stubbing of the method
<reppard> WTF!!
<sn0wb1rd> on rspec-mock?
gyre007 has joined #ruby
<reppard> sn0wb1rd: yes
<Quadlex> sn0wb1rd: Oh, I'm just frustrated I can't think today
<reppard> you've got to be kidding me..i'm an idiot
MattRb has quit [Quit: This computer has gone to sleep]
slainer68 has quit [Ping timeout: 260 seconds]
Michael_ has quit [Remote host closed the connection]
<sn0wb1rd> should_receive is not just an assertion and you also have to specify whatever calls you make to the mock object. that is my understanding.
shevy2 is now known as shevy
mikeg has quit [Ping timeout: 276 seconds]
pu22l3r has quit [Read error: Connection reset by peer]
pu22l3r has joined #ruby
<reppard> right
<shevy> left!
<reppard> I am trying to Mock the Soundcloud api so as not to require network connection to run my test
<reppard> finally got what i wanted with a before block and Soundcloud.should_receive(:new).at_least(:once).and_return(client)
ilyam has joined #ruby
forced_request has quit [Read error: Connection reset by peer]
gyre007 has quit [Ping timeout: 246 seconds]
<reppard> i was putting that in my test case thinking it was the assertion when i had Soundcloud.stub(:new).blah blah in my before block
<Quadlex> DOOOOOOP
<reppard> so i was effectively overwritting my Mock
rohit has quit [Ping timeout: 255 seconds]
crackfu has joined #ruby
generalissimo has joined #ruby
yacks has joined #ruby
JumpMast3r has quit [Quit: JumpMast3r]
apeiros has joined #ruby
AsgardBSD_ has joined #ruby
dustint_ has joined #ruby
niklasb has quit [Read error: Operation timed out]
dustint has quit [Ping timeout: 260 seconds]
jonathancutrell has quit [Quit: jonathancutrell]
AsgardBSD has quit [Ping timeout: 256 seconds]
Targen has joined #ruby
jeffreybaird has quit [Quit: jeffreybaird]
DatumDrop has quit [Remote host closed the connection]
krz has joined #ruby
pu22l3r has quit [Remote host closed the connection]
uris has quit [Quit: Leaving]
pu22l3r has joined #ruby
reppard has quit [Ping timeout: 244 seconds]
hackerdude has joined #ruby
yakko has joined #ruby
baroquebobcat has quit [Quit: baroquebobcat]
apeiros has quit [Ping timeout: 244 seconds]
rohit has joined #ruby
ryanf has quit [Quit: leaving]
ryanh has joined #ruby
ryanh has quit [Max SendQ exceeded]
templaedhel has quit [Quit: Leaving...]
jblack has quit [Ping timeout: 260 seconds]
dustint has joined #ruby
dankest has quit [Quit: Leaving...]
aeontech has left #ruby [#ruby]
nwertman has quit [Read error: Connection reset by peer]
nwertman_ has joined #ruby
r3nrut has quit [Remote host closed the connection]
adeponte has quit [Remote host closed the connection]
connor_ has joined #ruby
connor_ has quit [Remote host closed the connection]
dr_neek has quit [Read error: No route to host]
dr_neek has joined #ruby
x82_nicole has joined #ruby
haxrbyte_ has joined #ruby
jblack has joined #ruby
aaronmacy has joined #ruby
cobragoat has joined #ruby
linguini has quit [Quit: ERC Version 5.3 (IRC client for Emacs)]
jekotia has quit [Quit: sleeeeeeeeeeeeep]
nwertman_ has quit [Read error: Connection reset by peer]
haxrbyte has quit [Ping timeout: 256 seconds]
kil0byte has quit [Remote host closed the connection]
krz has quit [Quit: krz]
karasawa has quit [Remote host closed the connection]
MattRb has joined #ruby
karasawa has joined #ruby
cobragoat has quit [Ping timeout: 252 seconds]
hackerdude has quit [Remote host closed the connection]
dwu1 has joined #ruby
nwertman has joined #ruby
brianpWins has joined #ruby
jjbohn has quit [Quit: Leaving...]
joeycarmello has quit [Remote host closed the connection]
breakingthings has quit []
krz has joined #ruby
joeycarmello has joined #ruby
MattRb has quit [Quit: This computer has gone to sleep]
apeiros has joined #ruby
dukedave has quit [Quit: Leaving.]
bigthyme has joined #ruby
blazes816 has joined #ruby
joeycarmello has quit [Ping timeout: 276 seconds]
kenneth has quit [Quit: kenneth]
cobragoat has joined #ruby
niklasb has joined #ruby
matthias_ has joined #ruby
dustint has quit [Quit: Leaving]
zastern has joined #ruby
a_a_g has joined #ruby
hackerdude has joined #ruby
etcetera has quit []
SCommette has quit [Quit: SCommette]
jlast has quit [Remote host closed the connection]
etcetera has joined #ruby
apeiros has quit [Ping timeout: 255 seconds]
tjbiddle has joined #ruby
banisterfiend has joined #ruby
radic has joined #ruby
jduan1981 has quit [Ping timeout: 260 seconds]
dougireton has joined #ruby
JohnBat26 has joined #ruby
maycon has quit [Quit: Saindo]
S1kx has joined #ruby
S1kx has joined #ruby
S1kx has quit [Changing host]
drago757 has quit [Quit: drago757]
radic_ has quit [Ping timeout: 255 seconds]
aaronmacy has quit [Quit: Leaving.]
MattRb has joined #ruby
wallerdev has quit [Quit: wallerdev]
mrsolo has joined #ruby
wallerdev has joined #ruby
yoshie902a has joined #ruby
hbpoison has quit [Ping timeout: 256 seconds]
joeycarmello has joined #ruby
<yoshie902a> does Nokogiri have any function to grab the opening tag and closing tag? For example, node.text strips the tags, I was hoping for something like node.open_tag to get the opening tag and node.closing_tag to get the closing tag
otherj has joined #ruby
JohnBat26 has quit [Quit: KVIrc 4.3.1 Aria http://www.kvirc.net/]
hbpoison has joined #ruby
JohnBat26 has joined #ruby
adeponte has joined #ruby
Hanmac1 is now known as Hanmac
benlieb has joined #ruby
<Hanmac> yoshie902a Node#inner_html
jarjar_prime has joined #ruby
<yoshie902a> namac, I believe that gives the innerhtml, the tags and all content. I was hoping for just the opening tag and just the closing tag
dankest has joined #ruby
<Hanmac> you could access directly the children method
<yoshie902a> hanmac, which method?
Kovensky has quit [Ping timeout: 240 seconds]
Hanmac has quit [Read error: Connection reset by peer]
<yoshie902a> the children method gives all children nodes, but not separate tags
Hanmac has joined #ruby
reppard has joined #ruby
nwertman has quit [Remote host closed the connection]
sandGorgon has joined #ruby
x82_nicole has quit [Quit: Computer has gone to sleep.]
mrsolo has quit [Ping timeout: 245 seconds]
DatumDrop has joined #ruby
apeiros has joined #ruby
jimmyy has quit [Read error: Operation timed out]
jimmyy has joined #ruby
reuven has quit [Ping timeout: 255 seconds]
reppard has quit [Ping timeout: 276 seconds]
Playground has quit [Quit: When I come back, please tell me in what new ways you have decided to be completely wrong.]
hackerdude has quit [Remote host closed the connection]
DatumDrop has quit [Ping timeout: 252 seconds]
kil0byte has joined #ruby
jaequery has joined #ruby
Monie has joined #ruby
<bigthyme> Anyone have some experience saving external json from GET call (using HTTParty) directly to DB?
hackerdude has joined #ruby
rohit has quit [Quit: Leaving]
<jblack> sure. mixing json and datamapper is easy
hackerdude has quit [Remote host closed the connection]
SCommette has joined #ruby
dougireton has quit [Quit: Leaving.]
JumpMast3r has joined #ruby
dankest is now known as dankest|away
apeiros has quit [Ping timeout: 240 seconds]
dankest|away has quit [Quit: Leaving...]
dankest has joined #ruby
mrsolo has joined #ruby
arkiver has joined #ruby
zph has joined #ruby
dougireton has joined #ruby
zastern has quit [Remote host closed the connection]
arkiver has quit [Client Quit]
zastern has joined #ruby
hbpoison has quit [Ping timeout: 256 seconds]
thufir_ has joined #ruby
SCommette has quit [Quit: SCommette]
res0nat0r has joined #ruby
jduan1981 has joined #ruby
eka has quit [Ping timeout: 252 seconds]
crackfu has quit [Remote host closed the connection]
pencilcheck has quit [Read error: Connection reset by peer]
crackfu has joined #ruby
pencilcheck has joined #ruby
Zolrath has quit []
jenrzzz has quit [Ping timeout: 248 seconds]
zastern has quit [Ping timeout: 248 seconds]
ner0x has quit [Quit: Leaving]
cha1tanya has joined #ruby
cha1tanya has quit [Changing host]
cha1tanya has joined #ruby
JumpMast3r has quit [Quit: JumpMast3r]
eka has joined #ruby
crackfu has quit [Ping timeout: 248 seconds]
firefux has left #ruby [#ruby]
jenrzzz has joined #ruby
noyb has joined #ruby
healpay has quit [Ping timeout: 272 seconds]
hbpoison has joined #ruby
zph has quit [Quit: Computer has gone to sleep.]
gen0cide has joined #ruby
opettaja has quit [Remote host closed the connection]
zph has joined #ruby
brianpWins has quit [Quit: brianpWins]
<gen0cide> Im trying to set up redmine on apache using passenger and Im getting ruby errors, here is a screenshot: http://oi46.tinypic.com/35hjuqv.jpg
yacks has quit [Ping timeout: 246 seconds]
<gen0cide> What could be wrong?
dhruvasagar has quit [Ping timeout: 244 seconds]
sandGorgon has quit [Remote host closed the connection]
philips_ has quit [Excess Flood]
<dawkirst> Hi, is the something equivalent to http://php.net/manual/en/function.http-build-query.php in Ruby?
<davidcelis> gen0cide: you realize how impossible that is to read, right?
<Nuck> gen0cide: I doubt I can help you much beyond saying: UPLOAD A BIGGER ONE
<Nuck> Srsly cannot read
<gen0cide> Heh sorry, Ill take a bigger one
philips_ has joined #ruby
otherj has quit [Quit: otherj]
<gen0cide> Here is a bigger one, tinypic decreased the sized when I uploaded it: http://bayimg.com/MAINeAaEK
skcin7 has quit []
<dawkirst> Or rather: what is the de facto way of building query strings in Ruby?
apeiros has joined #ruby
osaut has joined #ruby
Chryson has quit [Quit: Leaving]
<gen0cide> davidcelis Nuck: Im guessing an enviroment path somewhere is messing
<gen0cide> missing*
Ontolog has quit [Quit: Ontolog]
syamajala has quit [Quit: leaving]
jlast has joined #ruby
hemanth_ has joined #ruby
zastern has joined #ruby
dustint_ has quit [Quit: Leaving]
dougireton has quit [Quit: Leaving.]
zph has quit [Quit: Computer has gone to sleep.]
jlast has quit [Ping timeout: 248 seconds]
hotovson has joined #ruby
yoshie902a has quit [Quit: yoshie902a]
tps_ has quit [Read error: Connection reset by peer]
tps__ has joined #ruby
yacks has joined #ruby
vlad_starkov has joined #ruby
matchaw__ has joined #ruby
nathancahill has quit [Read error: Connection reset by peer]
nathancahill_ has joined #ruby
benlieb has quit [Quit: benlieb]
apeiros has quit [Ping timeout: 255 seconds]
matchaw has quit [Ping timeout: 248 seconds]
hotovson has quit [Read error: No route to host]
n1x has quit [Ping timeout: 272 seconds]
vlad_starkov has quit [Ping timeout: 260 seconds]
mossplix has joined #ruby
theta44 has joined #ruby
melisaa has quit [K-Lined]
kenneth has joined #ruby
thufir_ has quit [Remote host closed the connection]
philips_ has quit [Excess Flood]
EPIK has quit [Ping timeout: 252 seconds]
dmiller1 has quit [Ping timeout: 248 seconds]
kil0byte_ has joined #ruby
pu22l3r_ has joined #ruby
kenneth has quit [Read error: Connection reset by peer]
karasawa has quit [Ping timeout: 252 seconds]
pu22l3r has quit [Ping timeout: 256 seconds]
r0bby has joined #ruby
robbyoconnor has quit [Ping timeout: 256 seconds]
kil0byte has quit [Ping timeout: 264 seconds]
rakl has joined #ruby
fyolnish has joined #ruby
wallerdev has quit [Quit: wallerdev]
hadees has joined #ruby
jean-louis has joined #ruby
gnarmis has quit [Remote host closed the connection]
etcetera has quit []
res0nat0r has left #ruby [#ruby]
DrCode has quit [Remote host closed the connection]
theta44 has left #ruby ["Leaving"]
rakl has quit [Quit: sleeping]
hemanth_ is now known as hemanth
DrCode has joined #ruby
iamjarvo has quit [Quit: Leaving.]
fyolnish has quit [Remote host closed the connection]
visionary1 has joined #ruby
kiyoura has quit [Quit: Leaving]
fyolnish has joined #ruby
fyolnish has quit [Remote host closed the connection]
etcetera has joined #ruby
ebobby has quit [Quit: Lost terminal]
guns has joined #ruby
jenrzzz has quit [Ping timeout: 246 seconds]
philips_ has joined #ruby
jrowe has joined #ruby
chriskk has joined #ruby
apeiros has joined #ruby
guns has quit [Client Quit]
jrowe has quit [Client Quit]
jaequery has quit [Quit: Computer has gone to sleep.]
fyolnish has joined #ruby
osaut has quit [Quit: osaut]
zwevans has joined #ruby
pyro111 has joined #ruby
crackfu has joined #ruby
dmiller1 has joined #ruby
sayan has joined #ruby
jaequery has joined #ruby
sayan has quit [Read error: Connection reset by peer]
Zolo has joined #ruby
jenrzzz has joined #ruby
icole has quit [Remote host closed the connection]
apeiros has quit [Ping timeout: 264 seconds]
karasawa has joined #ruby
wallerdev has joined #ruby
djones_ has joined #ruby
crackfu has quit [Remote host closed the connection]
matthias_ has quit [Remote host closed the connection]
osaut has joined #ruby
crackfu has joined #ruby
browndawg has joined #ruby
visionary1 has quit [Quit: Leaving.]
aloshkarev has joined #ruby
dmiller1 has quit [Ping timeout: 244 seconds]
kil0byte has joined #ruby
nomenkun has joined #ruby
hbpoison has quit [Ping timeout: 255 seconds]
crackfu has quit [Ping timeout: 255 seconds]
mockra has quit [Remote host closed the connection]
kil0byte_ has quit [Ping timeout: 256 seconds]
bigthyme has quit [Quit: bigthyme]
pkrnj has quit [Quit: Textual IRC Client: www.textualapp.com]
tagrudev has joined #ruby
jduan1981 has quit [Read error: Connection reset by peer]
mockra has joined #ruby
mockra has quit [Remote host closed the connection]
jduan1981 has joined #ruby
piotr_ has joined #ruby
daniel_- has joined #ruby
fschuindt has joined #ruby
bigthyme has joined #ruby
djones___ has joined #ruby
<fschuindt> Somebody can help me here with permutation combinations? Its all commented here: https://gist.github.com/4554168
etcetera has quit []
solitude88 has joined #ruby
djones_ has quit [Ping timeout: 255 seconds]
Zolo has quit [Remote host closed the connection]
dormiens has quit [Quit: ThrashIRC v2.8 sic populo comunicated]
locriani has quit [Read error: Connection reset by peer]
icole has joined #ruby
djones___ has quit [Quit: djones___]
generalissimo has quit [Remote host closed the connection]
zwevans has quit [Quit: Computer has gone to sleep.]
locriani has joined #ruby
daniel_- has quit [Ping timeout: 252 seconds]
dankest is now known as dankest|away
wallerdev has quit [Quit: wallerdev]
dankest|away has quit [Quit: Leaving...]
x82_nicole has joined #ruby
icole has quit [Remote host closed the connection]
pu22l3r_ has quit [Remote host closed the connection]
dawkirst has quit [Remote host closed the connection]
v0n has joined #ruby
mockra has joined #ruby
locriani has quit [Read error: Connection reset by peer]
browndawg has quit [Ping timeout: 252 seconds]
locriani has joined #ruby
wallerdev has joined #ruby
browndawg has joined #ruby
dhruvasagar has joined #ruby
goraxe has joined #ruby
emmanuelux has quit [Quit: emmanuelux]
chendo_ has quit [Ping timeout: 244 seconds]
jenrzzz has quit [Ping timeout: 255 seconds]
dawkirst_ has joined #ruby
io_syl has joined #ruby
apeiros has joined #ruby
chendo_ has joined #ruby
nomenkun has quit [Remote host closed the connection]
hbpoison has joined #ruby
<TTilus> dawkirst_: CGI?
dawkirst_ has quit [Quit: Nettalk6 - www.ntalk.de]
dmiller1 has joined #ruby
osaut has quit [Quit: osaut]
apeiros has quit [Remote host closed the connection]
timonv has joined #ruby
hemanth has quit [Read error: Connection reset by peer]
r0bby has quit [Read error: Connection reset by peer]
hemanth has joined #ruby
visionary has joined #ruby
visionary has quit [Client Quit]
r0bby has joined #ruby
yakko has quit [Read error: Connection reset by peer]
cb0ss- has joined #ruby
hemanth has quit [Read error: Connection reset by peer]
hemanth has joined #ruby
yakko has joined #ruby
dmiller1 has quit [Ping timeout: 248 seconds]
tps__ has quit [Quit: tps__]
samuel02 has joined #ruby
cb0ss has quit [Ping timeout: 256 seconds]
visionary1 has joined #ruby
visionary1 has left #ruby [#ruby]
sayan has joined #ruby
samuel02 has quit [Remote host closed the connection]
advorak has joined #ruby
maletor has quit [Quit: Computer has gone to sleep.]
clocKwize has joined #ruby
fschuindt has quit [Remote host closed the connection]
jean-louis has quit [Read error: Connection reset by peer]
jean-lou` has joined #ruby
scrr has joined #ruby
guns has joined #ruby
robustus has quit [Ping timeout: 248 seconds]
pyro111 has quit [Remote host closed the connection]
Kakera has joined #ruby
kil0byte_ has joined #ruby
robustus has joined #ruby
mrsolo has quit [Quit: Leaving]
hakunin has quit [Remote host closed the connection]
hakunin has joined #ruby
x82_nicole has quit [Quit: Computer has gone to sleep.]
kil0byte has quit [Ping timeout: 264 seconds]
kil0byte has joined #ruby
jean-lou` has quit [Ping timeout: 252 seconds]
v0n has quit [Ping timeout: 252 seconds]
r0bby is now known as robbyoconnor
Elhu has joined #ruby
hakunin has quit [Ping timeout: 240 seconds]
kil0byte_ has quit [Ping timeout: 276 seconds]
lledet has joined #ruby
wallerdev has quit [Quit: wallerdev]
<lledet> hi, is there a fast way to get the first and last elements of an array into separate variables? i want something like last, first = array[-1..1] but that of course doesn't work
yisun has joined #ruby
DrShoggoth has quit [Quit: Leaving]
tonini has joined #ruby
emergion has joined #ruby
burgestrand has quit [Quit: Leaving.]
slainer68 has joined #ruby
whowantstolivefo has quit [Quit: who wants to live forever ?]
mahmoudimus has quit [Quit: Computer has gone to sleep.]
diego has joined #ruby
diegoviola is now known as Guest19972
diego is now known as diegoviola
Guest19972 has quit [Ping timeout: 264 seconds]
arturaz has joined #ruby
whowantstolivefo has joined #ruby
emergion has quit [Quit: Computer has gone to sleep.]
slainer68 has quit [Ping timeout: 260 seconds]
ilyam has quit [Quit: ilyam]
ChampS666 has joined #ruby
mockra has quit [Remote host closed the connection]
noyb has quit [Ping timeout: 276 seconds]
fivetwentysix has quit [Quit: fivetwentysix]
workmad3 has joined #ruby
cha1tanya has quit [Quit: Leaving]
reuven has joined #ruby
pskosinski has joined #ruby
jimeh has joined #ruby
main has joined #ruby
browndawg has quit [Read error: No route to host]
<krz> any difference with 1.day.to_i or 24.hours.to_i ?
Morkel has joined #ruby
browndawg has joined #ruby
kil0byte_ has joined #ruby
jonahR has quit [Quit: jonahR]
yisun has quit [Quit: leaving]
zommi has joined #ruby
hotovson has joined #ruby
kil0byte has quit [Ping timeout: 252 seconds]
Morkel_ has joined #ruby
filipe has joined #ruby
jgrevich has quit [Remote host closed the connection]
Morkel has quit [Ping timeout: 248 seconds]
Morkel_ is now known as Morkel
guns has quit [Quit: guns]
brianpWins has joined #ruby
icole has joined #ruby
aganov has joined #ruby
<shevy> both seems non-standard ruby
<shevy> I suppose there are some days not equal 100% to 24 hours
dmiller1 has joined #ruby
reuven` has joined #ruby
mafolz has joined #ruby
Elhu has quit [Quit: Computer has gone to sleep.]
reuven has quit [Ping timeout: 244 seconds]
icole has quit [Ping timeout: 252 seconds]
friskd has joined #ruby
timonv has quit [Remote host closed the connection]
timonv has joined #ruby
emergion has joined #ruby
dmiller1 has quit [Ping timeout: 252 seconds]
jprovazn has joined #ruby
mossplix has quit [Read error: Connection reset by peer]
MattRb has quit [Quit: This computer has gone to sleep]
wargasm has quit [Ping timeout: 252 seconds]
razibog has joined #ruby
guns has joined #ruby
mossplix has joined #ruby
emergion has quit [Client Quit]
Mon_Ouie has joined #ruby
timonv has quit [Ping timeout: 256 seconds]
haxrbyte has joined #ruby
zigomir has joined #ruby
Kakera has quit [Ping timeout: 276 seconds]
browndawg has quit [Quit: Leaving.]
apeiros has joined #ruby
az7ar has joined #ruby
haxrbyte_ has quit [Ping timeout: 248 seconds]
headius has joined #ruby
headius has quit [Client Quit]
<gen0cide> I figured it out it was a phusion problem, I compiled a new verstion and told apache to load the new version.
chussenot has joined #ruby
robert___ has joined #ruby
karasawa has quit [Ping timeout: 255 seconds]
robert___ has quit [Changing host]
robert___ has joined #ruby
swingha has quit [Quit: WeeChat 0.3.9.2]
karasawa has joined #ruby
blaxter has joined #ruby
djones_ has joined #ruby
main has quit [Ping timeout: 276 seconds]
jduan1981 has quit [Quit: jduan1981]
djones_ has quit [Client Quit]
wargasm has joined #ruby
robert__ has quit [Ping timeout: 245 seconds]
workmad3 has quit [Ping timeout: 256 seconds]
haxrbyte_ has joined #ruby
blaxter has quit [Ping timeout: 246 seconds]
tjbiddle has quit [Quit: tjbiddle]
haxrbyte has quit [Ping timeout: 248 seconds]
ephemerian has joined #ruby
osaut has joined #ruby
aaronmacy has joined #ruby
chendo_ has quit [Quit: Computer has gone to sleep.]
lledet has left #ruby [#ruby]
chendo_ has joined #ruby
timonv has joined #ruby
jds_ has joined #ruby
BizarreCake has joined #ruby
aaronmacy has quit [Client Quit]
dawkirst has joined #ruby
robotmay has joined #ruby
a_a_g1 has joined #ruby
a_a_g has quit [Ping timeout: 252 seconds]
blaxter has joined #ruby
chendo_ has quit [Quit: Leaving...]
marr has joined #ruby
aaronmacy has joined #ruby
slainer68 has joined #ruby
yakko has quit [Remote host closed the connection]
greenarrow has joined #ruby
DuoSRX has joined #ruby
ikolito has quit [Ping timeout: 252 seconds]
DuoSRX has quit [Remote host closed the connection]
ikolito has joined #ruby
slainer68 has quit [Ping timeout: 248 seconds]
Hanmac_ has joined #ruby
Criztian has joined #ruby
odyssey4me has joined #ruby
odyssey4me has quit [Client Quit]
apeiros changed the topic of #ruby to: Ruby 1.9.3-p362: http://ruby-lang.org (ruby-2.0.0-rc1) || Paste >3 lines of text on http://gist.github.com
apeiros changed the topic of #ruby to: Ruby 1.9.3-p374: http://ruby-lang.org (ruby-2.0.0-rc1) || Paste >3 lines of text on http://gist.github.com
pencilcheck has quit [Remote host closed the connection]
<apeiros> Hanmac_: thanks!
hamed_r has joined #ruby
<apeiros> lol, "Windows 8 support (maybe, hopefully)"
kil0byte has joined #ruby
odyssey4me has joined #ruby
crank_ has quit [Remote host closed the connection]
timonv has quit [Remote host closed the connection]
gyre007 has joined #ruby
gyre008 has joined #ruby
timonv has joined #ruby
kil0byte_ has quit [Ping timeout: 240 seconds]
aloshkarev has quit [Quit: aloshkarev]
mockra has joined #ruby
tatsuya_o has joined #ruby
fschuindt has joined #ruby
gen0cide has quit [Quit: Page closed]
charliesome has joined #ruby
matthias_ has joined #ruby
cobragoat has quit [Remote host closed the connection]
nomenkun has joined #ruby
aaronmacy has quit [Quit: Leaving.]
foofoobar has joined #ruby
gyre007 has quit [Ping timeout: 248 seconds]
LouisGB has joined #ruby
nomenkun has quit [Remote host closed the connection]
timonv has quit [Ping timeout: 264 seconds]
nomenkun has joined #ruby
osaut has quit [Quit: osaut]
<foofoobar> Hi. I have a list of ID's (int) e.g. [1,4,6,8,12]. The size/length of this list is variable. The id's in the list are something like an "shopping cart". If the user checks out, the should get an unique generated number where the item list should be reproduced with. The simplest would be to generate him the number 1-4-6-8-12 so you can easy reproduce the items of the list
nomenkun has quit [Read error: Connection reset by peer]
nomenkun has joined #ruby
mockra has quit [Ping timeout: 276 seconds]
<foofoobar> It would be nice if this list could be "compressed" so that e.g. I can give him something like "e6b1" which can be calculated to 1-4-6-8-12
io_syl has quit [Quit: Computer has gone to sleep.]
<foofoobar> I don't want to create a table with a "items" => "generated hash", I want to calculate this
<foofoobar> Does someone has an idea how I can do this?
<carlzulauf> you might want to try and find a way to binary pack the ids and then maybe base64 encode the result
<carlzulauf> but i haven't actually done that, so I don't know how good the results would be
<carlzulauf> you could also actually compress the ids, maybe with gzip or similar, and base64 encode that
<Hanmac_> >> p Marshal.dump([1,4,6,8,12])
<eval-in> Hanmac_: Output: "\"\\x04\\b[\\ni\\x06i\\ti\\vi\\ri\\x11\"\n" (http://eval.in/6898)
Zolrath has joined #ruby
<carlzulauf> i know binary can be tough to pass in a cookie, which is why i say base64 encoding
mboro has joined #ruby
jaequery has quit [Quit: Computer has gone to sleep.]
Elhu has joined #ruby
toekutr has quit [Read error: Connection reset by peer]
dmiller1 has joined #ruby
daniel_- has joined #ruby
gyre008 has quit [Remote host closed the connection]
<Hanmac_> >> require "base64"; p Base64.encode64(Marshal.dump([1,4,6,8,12]))
<eval-in> Hanmac_: Output: "\"BAhbCmkGaQlpC2kNaRE=\\n\"\n" (http://eval.in/6901)
timonv has joined #ruby
dmiller1 has quit [Ping timeout: 246 seconds]
ExxKA has joined #ruby
<carlzulauf> looks like even using GZip wouldn't save you much
tPl0ch has joined #ruby
<carlzulauf> took 100 normal looking ids from a local database and got this:
<carlzulauf> Base64.encode64(Zlib::Deflate.deflate(ids.join(","))).length #=> 472
<carlzulauf> ids.join(",").length #=> 692
<carlzulauf> only saved a bit
hoelzro|away is now known as hoelzro
<apeiros> carlzulauf: that will depend on the amount of numbers
<apeiros> with 100 numbers you likely only have little repetition
<apeiros> (also the size of the numbers)
<apeiros> if your numbers are all 16bit, pack is probably better than zip/gzip (also much faster)
<carlzulauf> indeed, but 100 is high even for anything reasonable to have in a shopping cart and passing around through cookies or params
blacktulip has joined #ruby
matthia__ has joined #ruby
<apeiros> anyway, passing that in the cookie is a bad idea
<apeiros> cookies have limited size
<carlzulauf> 16bit only gets you to 65k
lkba has joined #ruby
<carlzulauf> yeah, i know, but that's not the question foofoobar asked
az7ar has quit [Quit: Leaving]
<apeiros> sure. but we're free to comment on ideas being good/bad :)
reinaldob has joined #ruby
<foofoobar> I think there will be around 10-25 numbers
<foofoobar> *ids in the shopping cart
browndawg has joined #ruby
jds_ has quit [Remote host closed the connection]
<apeiros> .join(','), .split(',')
<apeiros> enjoy
<carlzulauf> indeed
<apeiros> if you use rails, you don't even need to convert to int
<carlzulauf> with the need for 32bit pack saves you less than GZip does
matthias_ has quit [Ping timeout: 248 seconds]
<apeiros> carlzulauf: try v* instead of a fixed size pack
<foofoobar> maybe I have to put it in a database with a hash, because using a number like 1-4--8-11-13-15-17-19-22-15-33-45-66-22 etc is too long
cha1tanya has joined #ruby
<carlzulauf> ah
<foofoobar> (and 1,4,5,6,12,… is also not human friendly)
brianpWins has quit [Quit: brianpWins]
<apeiros> Zlib::Deflate.deflate(ary.join(",")).bytesize # => 260
<apeiros> ary.pack("v*").bytesize # => 200
<apeiros> 23% less space :)
<carlzulauf> but why is ary.pack("v*") and ary.pack("S*") the same size for me?
<apeiros> (or 30% more - depending from where to where you look)
<apeiros> coincidence
asobrasil has quit [Read error: Operation timed out]
<apeiros> ary = Array.new(100) { case rand(4) when 0 then rand(100); when 1 then rand(1000); when 2 then rand(100000); when 3 then rand(10_000_000) end }
cha1tanya has quit [Read error: Connection reset by peer]
<apeiros> this is what I used to generate differently sized numbers
matthia__ is now known as matthias_
main has joined #ruby
matthias_ is now known as mgeorgi
<apeiros> the smaller your numbers are on average, the better v will become. also, isn't S 16bit?
<apeiros> you'd need N I think
<carlzulauf> yeah
asobrasil has joined #ruby
pavilionXP has joined #ruby
<apeiros> uh oh, I think v was the wrong one…
<apeiros> aaah, w, not v
<carlzulauf> oh
<apeiros> ary.pack("w*").bytesize # => 227
<apeiros> v is 16bit too
<apeiros> w is arbitrary size
<carlzulauf> yeah, w saves a little space for me
<apeiros> sadly, not the most efficient
<apeiros> +15% / -13% for my sample set
az7ar has joined #ruby
emergion has joined #ruby
<Hanmac_> on my test array w is a littble bit bigger than v ...
browndawg has quit [Ping timeout: 255 seconds]
fschuindt has quit [Remote host closed the connection]
* Hanmac_ thinks he should take a look on an xz compressor :D
<apeiros> Hanmac_: of course
<apeiros> it's hard to beat 2 bytes with variable size
<apeiros> but v will not work for any number > 65535
DuoSRX has joined #ruby
<carlzulauf> i learned something new today. thanks apeiros.
cha1tanya has joined #ruby
<Hanmac_> ary.pack(ary.max > 65535 ? "w" : "v" + "*")
<apeiros> and how do you know how to decode?
<Hanmac_> oh shit ary.pack((ary.max > 65535 ? "w" : "v" )+ "*")
<apeiros> you need a marker byte at the start
<carlzulauf> GZip still outperforms packing even on my 100 id array
Criztian has quit [Remote host closed the connection]
<Hanmac_> apeiros fu you are right :/
joshwines has joined #ruby
<carlzulauf> but pack+Zlib procudes an even smaller result yet
<Hanmac_> carlzulauf you could loook at xz-lzma comressing :D
timonv_ has joined #ruby
bigthyme has quit [Quit: bigthyme]
nathancahill_ has quit [Quit: nathancahill_]
tatsuya_o has quit [Remote host closed the connection]
RagingDave has joined #ruby
hamed_r has quit [Quit: Leaving]
timonv has quit [Read error: Connection reset by peer]
Vainoharhainen has joined #ruby
tatsuya_o has joined #ruby
Criztian has joined #ruby
<carlzulauf> is it good at compressing integers?
mgeorgi has quit []
Dreamer3 has quit [Ping timeout: 252 seconds]
<carlzulauf> oh. reading now. guess its good at compressing pretty much anything
osaut has joined #ruby
artOfWar has quit [Ping timeout: 255 seconds]
Dreamer3 has joined #ruby
<apeiros> carlzulauf: in your test, make sure your numbers aren't all short numbers
robert___ is now known as robert_
<apeiros> for me, w* is more efficient than zip
diegoviola has quit [Quit: WeeChat 0.3.9.2]
hbpoison has quit [Ping timeout: 244 seconds]
<carlzulauf> they are mostly 6 digit numbers
tatsuya_o has quit [Remote host closed the connection]
vlad_starkov has joined #ruby
arkiver has joined #ruby
timmow has joined #ruby
cdt has joined #ruby
aaronmacy has joined #ruby
Xeago has joined #ruby
solars has joined #ruby
browndawg has joined #ruby
<solars> hey, is there any way to check if a range includes a range? e.g. a=1..4; b=2..3; a === b -> false
<robert_> the and keyword?
lkba has quit [Ping timeout: 256 seconds]
<dawkirst> Ok, *very* silly question here (but bear with me, I'm new to all this): I want to use AWS, and I have a access key pair. But obviously I can't include that in my main file, since that would be then be public when I push it to a public git repo. What is the convention? Do I put it in a config file and add that to .gitignore? This is a Sinatra app, if that's going to help (with something product-specific). Any advice regarding bes
<dawkirst> t practice?
<robert_> solars: a=1..4 and b=2..3 and a==b
<robert_> ?
JonnieCache has quit [Ping timeout: 260 seconds]
apeiros has quit [Ping timeout: 256 seconds]
rdark has joined #ruby
diego has joined #ruby
diego is now known as diegoviola
jwang has quit [Ping timeout: 264 seconds]
elaptics`away is now known as elaptics
<carlzulauf> heh. xz ended up performing almost as bad as ids.join
Criztian has quit [Remote host closed the connection]
malte_ has joined #ruby
<solars> robert_, that returns false..
<carlzulauf> my fun with packing and compressing is probably over for the nigh
<carlzulauf> t
malte_ has quit [Client Quit]
beiter has joined #ruby
aloshkarev has joined #ruby
Kovensky has joined #ruby
francisfish has joined #ruby
vlad_starkov has quit [Remote host closed the connection]
fermion has joined #ruby
blazes816 has quit [Quit: blazes816]
cobragoat has joined #ruby
slainer68 has joined #ruby
swingha has joined #ruby
<mpfundstein> win 7
emergion has quit [Quit: Computer has gone to sleep.]
alup has joined #ruby
horofox has joined #ruby
vlad_starkov has joined #ruby
end_guy has quit [Remote host closed the connection]
nomenkun has quit [Remote host closed the connection]
workmad3 has joined #ruby
timonv_ has quit [Read error: Connection reset by peer]
end_guy has joined #ruby
timonv has joined #ruby
mikecmpbll has joined #ruby
JonnieCache has joined #ruby
ABK has joined #ruby
cobragoat has quit [Ping timeout: 240 seconds]
Virunga has joined #ruby
zz_chrismcg is now known as chrismcg
cha1tanya has quit [Read error: Connection reset by peer]
cha1tanya has joined #ruby
djones_ has joined #ruby
hbpoison has joined #ruby
adeponte has quit [Remote host closed the connection]
cha1tanya has quit [Read error: Connection reset by peer]
aloshkarev has quit [Quit: aloshkarev]
yacks has quit [Ping timeout: 248 seconds]
cha1tanya has joined #ruby
nari has quit [Ping timeout: 248 seconds]
xpen has joined #ruby
osaut has quit [Quit: osaut]
yshh has quit [Remote host closed the connection]
horofox has quit [Quit: horofox]
apeiros has joined #ruby
kil0byte has quit [Ping timeout: 256 seconds]
kil0byte has joined #ruby
karasawa has quit [Ping timeout: 248 seconds]
emergion has joined #ruby
karasawa has joined #ruby
nkr has joined #ruby
sayan has quit [Quit: Leaving]
razibog1 has joined #ruby
fyolnish has quit [Ping timeout: 264 seconds]
viario has joined #ruby
razibog has quit [Read error: Connection reset by peer]
timonv_ has joined #ruby
timonv_ has quit [Read error: Connection reset by peer]
jds_ has joined #ruby
timonv_ has joined #ruby
rdark_ has joined #ruby
emocakes has joined #ruby
timonv has quit [Ping timeout: 248 seconds]
blaxter has quit [Quit: foo]
djones__ has joined #ruby
horofox has joined #ruby
rdark has quit [Ping timeout: 252 seconds]
pyreal has quit [Read error: Connection reset by peer]
jds_ has quit [Ping timeout: 244 seconds]
blaxter has joined #ruby
swingha has quit [Quit: WeeChat 0.3.9.2]
berserkr has joined #ruby
pyreal has joined #ruby
mahmoudimus has joined #ruby
cobragoat has joined #ruby
djones__ has quit [Client Quit]
djones_ has quit [Ping timeout: 260 seconds]
tatsuya_o has joined #ruby
moshee has quit [Ping timeout: 245 seconds]
moshee has joined #ruby
moshee has quit [Changing host]
moshee has joined #ruby
yacks has joined #ruby
daniel_- has quit [Ping timeout: 252 seconds]
rdark has joined #ruby
nomenkun has joined #ruby
aaronmacy has quit [Quit: Leaving.]
rdark_ has quit [Ping timeout: 240 seconds]
az7ar has quit [Quit: Leaving]
tonini has quit [Remote host closed the connection]
cobragoat has quit [Ping timeout: 240 seconds]
kil0byte_ has joined #ruby
emergion has quit [Quit: Computer has gone to sleep.]
pen has joined #ruby
malte_ has joined #ruby
yugui is now known as yugui_zzz
daniel_- has joined #ruby
vlad_starkov has quit [Read error: Connection reset by peer]
razibog1 has quit [Ping timeout: 276 seconds]
joran has joined #ruby
kil0byte has quit [Ping timeout: 276 seconds]
robotmay has quit [Ping timeout: 252 seconds]
vlad_starkov has joined #ruby
timonv_ has quit [Remote host closed the connection]
nomenkun has quit [Ping timeout: 256 seconds]
timonv has joined #ruby
<joran> Hi all, I'm trying to replicate an existing setup but having issues - to ensure there are no bugs created by upgrading to latest rails2 on a legacy system I need to ensure that the app works locally first on the same versions of the gems etc that are on the live server, and it appears impossible to do so...
nkts has joined #ruby
<joran> the main issue is that several gems (sanitize_email, authlogic and hoptoad_notifier) seem to depend on multi_json which will not install on rubygems 1.3.5 (which is what is running live) even though the version is the same as on live
<joran> colour me confused but I can't see a route forward :(
<Hanmac_> joran: #rubyonrails
<Xeago> you could always manually isntall the gem
<Xeago> and bypass rubygems
postmodern has quit [Quit: Leaving]
razibog has joined #ruby
<joran> Xeago: sounds like a plan, I'm concerned though - it appears in gem list on the server, would that normally be so if it has been done that way?
timonv has quit [Ping timeout: 256 seconds]
b1rkh0ff has joined #ruby
<joran> Hanmac_: sorry, I'm not quite sure where the line lies between ruby, gems and rails - I thought gem was part of ruby (which is why you gem install rails)?
RagingDave has quit [Quit: Ex-Chat]
Kakera has joined #ruby
<Hanmac_> gem is part of ruby, but i thoughts that your problems are rails related?
<Hanmac_> (or to old ruby versions)
<JonnieCache> you could try running rake gems:freeze or whatever it is in your current production environment and then copying that down to local
<JonnieCache> but that would be kind of perverse
mahmoudimus has quit [Quit: Computer has gone to sleep.]
<JonnieCache> :)
timonv has joined #ruby
<JonnieCache> it would probably work quite well though
<dagobah> best way of turning a hash of nodes and parents to a nested tree? e.g {:node1 => [:parent], :node2 =>[:parent]} #=> {:parent=>[:node1=>{},:node2=>{}]}
<joran> Hanmac_ : not rails related per se as far as I can tell, more environment setuo
<Hanmac_> jonan you should update your ruby version ... there was an new one publisched today ... and/or your rubygems version is WAY to old .. i have 1.8.23
<joran> JonnieCache: the "or whatever it is" bit is kinda beyond me - ruby is not my first language (kinda in the 20s)
<joran> Hanmac_: the whole point is to do so but I can't just go "oh, update live" without having a dev environment that matches live first
hbpoison has quit [Ping timeout: 255 seconds]
robotmay has joined #ruby
gyre007 has joined #ruby
<JonnieCache> joran: its actually called unpack. there is a rake (like make) task you can run in rails 2 called "gems:unpack" which extracts all the depdendencies of your app into the vendor directory so they can live with the source code
<JonnieCache> joran: its designed for going the other way, youre supposed to run it on your dev machine to set your deps in stone before you go to produciton
<JonnieCache> joran: but theres no reason you couldnt use it the other way around
<JonnieCache> so basically go to your app dir and run "rake gems:unpack" then copy the vendor dir down to the same place on your dev box
hemanth has quit [Quit: Leaving]
<joran> JonnieCache: I don't want the deps copying to the app, that would make the problem of outdated things worse because a. that would be making changes on live and b. they're then not updated at a system level
<joran> also, there is no Gemfile in the app (yet)
<JonnieCache> joran: i wouldnt suggest your left the deps there, you could remove the dir after youd copied it
<JonnieCache> its just a convenient way of getting a rails 2 app to spit out the exact gems its using
<Hanmac_> dagobah: Hash[h.group_by {|k,v| v[0]}.map{|k,v| [k,Hash[v.map{|o,*|[o,{}]}]]}]
<dagobah> Excellent thanks Hanmac_
yoshie902a has joined #ruby
rdark_ has joined #ruby
<joran> JonnieCache: does it do that when it doesn't contain a Gemfile?
<joran> (yes, this app is horrid and needs sorting out)
rdark has quit [Read error: Operation timed out]
samuel02 has joined #ruby
dmiller1 has joined #ruby
* Hanmac_ images what would happen when ruby1.8 is droped from the packages list :D
<JonnieCache> joran: gemfiles didnt exist in rails2 days
hbpoison has joined #ruby
a_a_g1 has quit [Quit: Leaving.]
<JonnieCache> joran: its possible to add bundler (which is the thing that uses gemfiles) into a rails2 project but they dont expect to have them
razibog has quit [Quit: Leaving.]
razibog1 has joined #ruby
whowantstolivef1 has joined #ruby
nari has joined #ruby
<JonnieCache> here, gems:unpack is kind of a way to go backwards to a gemfile
whowantstolivefo has quit [Disconnected by services]
nomenkun_ has joined #ruby
* Hanmac_ prefers rake more over bundler ... i only write gemspec files and no Gemfiles ...
whowantstolivef1 has quit [Client Quit]
<JonnieCache> because you could look at what it produces and use it to write a gemfile
whowantstolivef1 has joined #ruby
gyre007 has quit [Read error: Connection reset by peer]
whowantstolivef1 is now known as whowantstolivefo
<JonnieCache> joran: actually im being an absolute idiot
gyre007 has joined #ruby
<JonnieCache> joran: just run "rake gems" and it spits out a list of the gems in the rails2 project onto stdout
<JonnieCache> joran: then take that info and write a gemfile, and add bundler to your project like this http://gembundler.com/rails23.html
dmiller1 has quit [Ping timeout: 240 seconds]
<joran> JonnieCache: that's great, but "gem install --version 2.1.3 authlogic" refuses to work because of outdated gems, surely that will apply to bundler too?
<JonnieCache> refuses to work? because of unresolved dependencies?
<JonnieCache> what error do you get
<joran> #ERROR: Error installing authlogic:
<joran> #multi_json requires RubyGems version >= 1.3.6
<JonnieCache> oh shit. hmm cant you upgrade rubygems
malte_ has quit [Remote host closed the connection]
cobragoat has joined #ruby
<joran> exactly because I want the same version as is on live
razibog1 has quit [Ping timeout: 264 seconds]
<joran> which is 1.3.5
<JonnieCache> well youre going to run into no end of problems with that
malte_ has joined #ruby
<JonnieCache> i dont think bundler will work either
<Xeago> it is only a minor version bump, read the changelog of 1.3.5 to 1.3.6
<Xeago> and otherwise do what JonnieCache first thought what was stupid
<Xeago> imo it is not :)
<joran> Xeago: I'm not willing to start any upgrades before having a dev platform. end of.
<Xeago> still, you should be aware of the differences
<joran> minor bump or not, the system is running live with a particular set of dependencies, before upgrading I want it running locally with the same set of deps - otherwise there is no guarantee that breakage is not due to differences in environment
nomenkun_ has quit [Read error: Connection reset by peer]
<JonnieCache> joran: find which old version of multi_xml is installed on your production box and install that first
<joran> JonnieCache: there isn't one, hence the problem
<JonnieCache> that will satisfy authlogic and it wont try and install a newer one
nomenkun has joined #ruby
<joran> not according to gem list
<JonnieCache> there must be one
malte__ has joined #ruby
emergion has joined #ruby
<Xeago> how did we get to multi-xml?
<Xeago> it was multi_json that was throwing up rubygems>=1.3.6
nomenkun_ has joined #ruby
<joran> yeah, that's a typo I assume
jrabbit has quit [Ping timeout: 252 seconds]
nomenkun has quit [Read error: Connection reset by peer]
<JonnieCache> yep
<JonnieCache> maybe you didnt run gem list --local
jrabbit has joined #ruby
<JonnieCache> gem list on its own queries rubygems.org
<JonnieCache> i think
<JonnieCache> oh no its the other way round isnt it
malte_ has quit [Ping timeout: 264 seconds]
malte__ is now known as malte_
rohit has joined #ruby
Michae___ has joined #ruby
dwu1 has quit [Quit: Leaving.]
malte_ has quit [Read error: Connection reset by peer]
<joran> seems to be
gyre007 has quit [Remote host closed the connection]
malte_ has joined #ruby
cobragoat has quit [Ping timeout: 244 seconds]
gyre007 has joined #ruby
_br_ has quit [Excess Flood]
hbpoison has quit [Ping timeout: 260 seconds]
<joran> doing a "locate multi_json" on the server only yields .gemspec files, nothing else :(
catphish has joined #ruby
<catphish> is there any way to return a hash with a value removed?
<JonnieCache> that file should be in the gem dir
malte_ has quit [Remote host closed the connection]
<joran> it's in /root/.gem/specs/gems.rubyforge.org%80/quick/Marshal.4.8/ along with a whole load of other gemspec files
rohit has quit [Ping timeout: 248 seconds]
malte_ has joined #ruby
_br_ has joined #ruby
Donkeycoder has joined #ruby
krz has quit [Ping timeout: 246 seconds]
<joran> I suspect I'm going to have to start with --ignore-dependencies
<joran> :(
<JonnieCache> did you try gems:unpack
<catphish> i think hash#reject will work for me
_br_ has quit [Excess Flood]
xpen has quit [Ping timeout: 255 seconds]
<joran> JonnieCache: I'm not willing to do anything on live that will create files inside the source dir - that's contrary to good practice.
carloslopes has joined #ruby
_br_ has joined #ruby
<JonnieCache> well try rake gems to get the list of gems used by the app
<joran> I'm fighting a battle here to get time to build a dev environment because best practice requires it, I'm not going to do anything that could be seen as sidestepping it
<JonnieCache> then install them all one by one with --ignore-dependencies
niklasb has quit [Ping timeout: 246 seconds]
<joran> it's only those three that I don't already have, so I'll just install them with it
aflynn has joined #ruby
<JonnieCache> the first thing you should do after fixing it is get bundler into your project
<JonnieCache> this is the exact nightmare that bundler was created to solve
<joran> JonnieCache: yep
mossplix has quit [Ping timeout: 248 seconds]
<JonnieCache> and it does it well
dhruvasagar has quit [Ping timeout: 244 seconds]
reppard has joined #ruby
<Xeago> joran: you can modify the output location
<JonnieCache> of the unpack command? that makes sense. try that
dhruvasagar has joined #ruby
<Xeago> and let it write to /var/dump/gems f.ex
Shrink has quit [Read error: Connection reset by peer]
Michae___ has quit [Remote host closed the connection]
fyolnish has joined #ruby
kil0byte has joined #ruby
darkskiez has joined #ruby
verto|off is now known as verto
verto is now known as Guest61118
<darkskiez> I'm a little confused about the parameters to http://guides.rubygems.org/specification-reference/#add_runtime_dependency what are the multiple parameters for?
_br_ has quit [Excess Flood]
rohit has joined #ruby
Michae___ has joined #ruby
Shrink has joined #ruby
Shrink has quit [Changing host]
Shrink has joined #ruby
kil0byte_ has quit [Ping timeout: 256 seconds]
atmosx has quit [Ping timeout: 256 seconds]
tvw has joined #ruby
b1rkh0ff has quit [Quit: Leaving]
jonahR has joined #ruby
<Hanmac_> darkskiez: name, min,max version
tommyvyo has joined #ruby
<Hanmac_> or similar
<darkskiez> max version? how come the example says >= for a max version
_br_- has joined #ruby
jonahR has quit [Client Quit]
himsin has joined #ruby
beiter has quit [Ping timeout: 244 seconds]
<darkskiez> oh, is it just a list of equally applicable rules, ie, this is specifying 1.1.4 as minimum and 1.99... as maximum
baphled has joined #ruby
guns has quit [Ping timeout: 248 seconds]
catphish has left #ruby ["Leaving"]
Michae___ has quit [Remote host closed the connection]
_br_- has quit [Excess Flood]
gyre008 has joined #ruby
rohit has quit [Quit: Leaving]
gyre007 has quit [Read error: Connection reset by peer]
Michae___ has joined #ruby
moos3 has joined #ruby
Neomex has joined #ruby
gyre007 has joined #ruby
Spooner has joined #ruby
Michae___ has quit [Remote host closed the connection]
jfl0wers has quit [Ping timeout: 248 seconds]
<Hanmac_> darkskiez i think they are both used with an and connection ... so the first one says that all 1.1.* are allowed and the second says that it does only allows >1.1.14 so 1.1.99 is allowed but 1.2 is not (or similar)
cobragoat has joined #ruby
_br_ has joined #ruby
koderde has quit [Quit: Leaving]
slainer68 has quit [Remote host closed the connection]
gyre008 has quit [Ping timeout: 260 seconds]
pcarrier has joined #ruby
TomyLobo has joined #ruby
horofox has quit [Quit: horofox]
reppard has quit [Ping timeout: 276 seconds]
ikolito is now known as iko1
iko1 has quit [Quit: Changing server]
alex_ has joined #ruby
alex_ is now known as iko1
baphled has quit [Ping timeout: 260 seconds]
zmo_ has quit [Ping timeout: 252 seconds]
main has quit [Ping timeout: 255 seconds]
clocKwize has quit [Quit: clocKwize]
reuven`` has joined #ruby
gyre007 has quit [Ping timeout: 248 seconds]
reuven` has quit [Remote host closed the connection]
francisfish has quit [Remote host closed the connection]
<joran> Xeago, JonnieCache : sorry, got busy fixing passenger so it will compile with recent gcc...
reppard has joined #ruby
<yoshie902a> is there a function like string.index that gives the boundaries? not just the starting point?
conorwade has joined #ruby
[Neurotic] has quit [Remote host closed the connection]
cobragoat has quit [Ping timeout: 264 seconds]
krz has joined #ruby
mikecmpbll has quit [Quit: ["Textual IRC Client: www.textualapp.com"]]
<shevy> boundaries of what?
baphled has joined #ruby
<hoelzro> shevy: probably the starting and ending index
<hoelzro> yoshie902a: why not just locate the starting index, and calculate the ending index from the length of the substring?
<shevy> well, return value + size of the query
<hoelzro> shevy: exactly my thoughts
<shevy> :)
cb0ss- is now known as cb0ss
Mon_Ouie has quit [Ping timeout: 244 seconds]
fyolnish has quit [Remote host closed the connection]
<yoshie902a> shevy: yes, starting and ending index
<shevy> you could modify class String
<yoshie902a> hoelzro: the index will be finding a complicated regex, which will find strings of different lengths
dmiller1 has joined #ruby
<yoshie902a> not sure how to figure out the size of each find
mikecmpbll has joined #ruby
conorwade has quit [Ping timeout: 252 seconds]
reppard has quit [Ping timeout: 255 seconds]
<hoelzro> yoshie902a: then ask the match object
reppard has joined #ruby
joshwines has quit [Remote host closed the connection]
iko1 has quit [Quit: leaving]
emocakes has quit [Quit: emocakes]
kil0byte_ has joined #ruby
<yoshie902a> that makes since, I was just a little concerned that match and index would not match up exactly for some unknown reason
dmiller1 has quit [Ping timeout: 256 seconds]
<yoshie902a> s/since/sense
jjbohn has joined #ruby
jwang has joined #ruby
jlebrech_ has joined #ruby
nfk has joined #ruby
afarazit|atno has quit [Read error: Connection reset by peer]
jlebrech_ has quit [Client Quit]
jlebrech has joined #ruby
<jlebrech> does anyone know anything about typus?
doctorbh has joined #ruby
afarazit|atno has joined #ruby
kil0byte has quit [Ping timeout: 276 seconds]
sepp2k has joined #ruby
fyolnish has joined #ruby
pyreal has quit [Ping timeout: 260 seconds]
doctorbh is now known as pyreal
<nfk> jlebrech, sounds like typhus but it's probably just bad naming
fermion has quit [Ping timeout: 255 seconds]
pyreal has quit [Client Quit]
<jlebrech> i'd rather have typhus than use typus
Neomex has quit [Quit: Neomex]
viario has quit [Remote host closed the connection]
browndawg has quit [Ping timeout: 264 seconds]
beiter has joined #ruby
Fradin has joined #ruby
samuel02 has quit [Remote host closed the connection]
clocKwize has joined #ruby
wallerdev has joined #ruby
razibog has joined #ruby
<shevy> lol
browndawg has joined #ruby
<jlebrech> is there no advanced demo of typus? when I look at rails_admin having all the features I need it makes me want to switch. but not my decision.
moos3 has quit [Quit: Computer has gone to sleep.]
hybris has joined #ruby
chussenot has quit [Quit: chussenot]
reppard has quit [Ping timeout: 260 seconds]
razibog has quit [Ping timeout: 256 seconds]
foofoobar has quit [Quit: Computer has gone to sleep.]
<JonnieCache> thoughts?
tommyvyo has quit [Quit: http://twitter.com/tommyvyo]
cobragoat has joined #ruby
<yoshie902a> I've been trying to use match, but the index and match methods don't match each other
emocakes has joined #ruby
<yoshie902a> for example, "This is a test. Of the longest string ever, test, atest".match(/[tes]/i) I would have expected an array of t,e,s
<yoshie902a> instead, I just got length of 1 and <match data "T">
<hoelzro> yoshie902a: gmatch?
Virunga has quit [Remote host closed the connection]
ToTo has joined #ruby
<hoelzro> er, wrong language.
reppard has joined #ruby
<hoelzro> probably scan
foofoobar has joined #ruby
<nfk> "effort".match(/[tes]/i).methods
<nfk> for a change not that many
joran has quit [Quit: Leaving]
<nfk> yes, not ordered by default
<Spooner> yoshie902a, Yes, you want #scan, not #match.
ryanh has joined #ruby
ryanh has quit [Max SendQ exceeded]
<yoshie902a> Spooner: thanks! yes, ,much better!
<Spooner> yoshie902a, But no, since you seem to want tes when it is together, not just those letters.
ryanh has joined #ruby
<Spooner> yoshie902a, Oops, ignore me correcting myself. I was right the first time :D as was hoelzro
ryanh has quit [Client Quit]
<yoshie902a> hoelzro: thanks Hoelzro!
<hoelzro> np
wallerdev has quit [Quit: wallerdev]
jlebrech has quit [Quit: Page closed]
vlad_starkov has quit [Read error: Connection reset by peer]
krz has quit [Quit: krz]
baphled has quit [Ping timeout: 256 seconds]
kil0byte has joined #ruby
cobragoat has quit [Ping timeout: 276 seconds]
osaut has joined #ruby
ToTo has quit [Ping timeout: 248 seconds]
gyre007 has joined #ruby
<yoshie902a> index seems to have the same problem. only returning the first find
kil0byte_ has quit [Ping timeout: 256 seconds]
<yoshie902a> is there a scan version of index?
jjbohn has quit [Quit: Leaving...]
karasawa has quit [Ping timeout: 264 seconds]
karasawa has joined #ruby
<yoshie902a> any recommendations on the correct way to do this? https://gist.github.com/4555682
fermion has joined #ruby
EPIK has joined #ruby
baphled has joined #ruby
lkba has joined #ruby
az7ar has joined #ruby
cha1tanya has quit [Read error: Connection reset by peer]
jlast has joined #ruby
gyre008 has joined #ruby
cha1tanya has joined #ruby
gyre007 has quit [Read error: Connection reset by peer]
haxrbyte_ has quit [Ping timeout: 248 seconds]
cha1tanya has quit [Read error: Connection reset by peer]
dhruvasagar has quit [Ping timeout: 244 seconds]
cha1tanya has joined #ruby
advorak has quit [Ping timeout: 255 seconds]
ChampS666 has quit [Read error: Connection reset by peer]
ToTo has joined #ruby
slainer68 has joined #ruby
dhruvasagar has joined #ruby
<shevy> boundaries 'abcdef','e' # => [0, 1]
<shevy> does not seem to be correct at all
charliesome_ has joined #ruby
bricker`1ork has joined #ruby
charliesome has quit [Ping timeout: 252 seconds]
charliesome_ is now known as charliesome
fermion has quit [Quit: Computer has gone to sleep.]
krisfremen has quit [Read error: Connection reset by peer]
<yoshie902a> shevy, yup, that was my problem. however,I found a great solution. thanks for all the feedback!
krisfremen has joined #ruby
ilyam has joined #ruby
cha1tanya has quit [Read error: Connection reset by peer]
<yoshie902a> for those interested.. https://gist.github.com/4555724
cha1tanya has joined #ruby
bricker`work has quit [Ping timeout: 252 seconds]
slainer68 has quit [Ping timeout: 248 seconds]
cha1tanya has quit [Read error: Connection reset by peer]
F1skr has joined #ruby
cha1tanya has joined #ruby
krz has joined #ruby
chriskk has quit [Quit: chriskk]
ilyam has quit [Client Quit]
Kuifje has joined #ruby
Kuifje has joined #ruby
Kuifje has quit [Changing host]
adkron has joined #ruby
ndrei has joined #ruby
cha1tanya has quit [Read error: Connection reset by peer]
cha1tanya has joined #ruby
slainer68 has joined #ruby
lolmaus has quit []
cha1tanya has quit [Read error: Connection reset by peer]
cha1tanya has joined #ruby
fermion has joined #ruby
EPIK has quit [Ping timeout: 256 seconds]
`brendan has joined #ruby
tommyvyo has joined #ruby
arkiver has quit [Ping timeout: 248 seconds]
cha1tanya has quit [Read error: Connection reset by peer]
Hanmac_ has quit [Ping timeout: 245 seconds]
cha1tanya has joined #ruby
dmiller1 has joined #ruby
mengu has joined #ruby
emocakes has quit [Quit: emocakes]
cobragoat has joined #ruby
Hanmac_ has joined #ruby
samphippen has joined #ruby
cha1tanya has quit [Read error: Connection reset by peer]
cha1tanya has joined #ruby
Udom0 has joined #ruby
<Hanmac_> shevy who was the guy with bounty problems?
pskosinski has quit [Quit: Learn Life's Little Lessons]
<Hanmac_> >> p "effort".to_enum(:scan,/[tes]/i).map { [$`.size, $`.size + $&.size] }
<eval-in> Hanmac_: Output: "[[0, 1], [5, 6]]\n" (http://eval.in/6920)
chussenot has joined #ruby
dmiller1 has quit [Ping timeout: 276 seconds]
<yoshie902a> Hanmac: yup, figured it out thanks!
pen has quit [Read error: Connection reset by peer]
pen has joined #ruby
az7ar has quit [Quit: Leaving]
griffindy has joined #ruby
freeayu has quit [Read error: Connection reset by peer]
willob has joined #ruby
tommyvyo has quit [Quit: http://twitter.com/tommyvyo]
wf2f has quit [Ping timeout: 252 seconds]
daniel_- has quit [Ping timeout: 252 seconds]
horofox has joined #ruby
yewton has quit [Excess Flood]
timonv_ has joined #ruby
timonv has quit [Read error: Connection reset by peer]
cobragoat has quit [Ping timeout: 246 seconds]
yewton has joined #ruby
Donkeycoder has quit [Ping timeout: 252 seconds]
baphled has quit [Ping timeout: 255 seconds]
mikecmpbll has quit [Quit: Computer has gone to sleep.]
invisime has joined #ruby
haxrbyte has joined #ruby
Banistergalaxy has joined #ruby
bluOxigen has joined #ruby
<Hanmac_> yoshie902a or a little bit better: "effort".to_enum(:scan,/[tes]/i).map { $~.offset(0) }
baphled has joined #ruby
krawchyk has joined #ruby
invisime has left #ruby [#ruby]
mark_locklear has joined #ruby
<yoshie902a> hanmac:better in what way? faster?
iamjarvo has joined #ruby
<Hanmac_> it may a little bit, and its a bit better looking
<Hanmac_> but it still uses one semi global variable :/
reppard has quit [Ping timeout: 255 seconds]
<yoshie902a> true, but I'm not sure how to resolve that
<hoelzro> I assume most of you have already seen this: https://gist.github.com/c8188956cd66c38feb1f
stoffus has joined #ruby
stoffus has left #ruby [#ruby]
x0F has quit [Disconnected by services]
x0F_ has joined #ruby
<Hanmac_> hoelzro what is against of using "Using blocks for looping and callbacks" ? oO
x0F_ is now known as x0F
daniel_- has joined #ruby
<yoshie902a> hoelzro: no, I have not, what is it?
<yoshie902a> I'll have to read up on the mistakes
<hoelzro> I don't agree with (all) of it, I just found it interesting
<hoelzro> Hanmac_: I think the author doesn't care for the semantics of next/return/etc in blocks
emergion has quit [Quit: Computer has gone to sleep.]
<hoelzro> or maybe the overhead of a block?
* hoelzro shrugs
<hoelzro> he's a bitter Python programmer
<shevy> hehehe
<shevy> Hanmac_ your code really scares me
<Hanmac_> hoelzro i use blocks for: object.bind(:button_clicked) {|event| ... }
baphled has quit [Ping timeout: 244 seconds]
francisfish has joined #ruby
bananastalktome has joined #ruby
<hoelzro> the author's probably just lashing out at the world because Python doesn't have proper anonymous functions
<hoelzro> that and its scope is fucked up.
deadalus has quit [Ping timeout: 248 seconds]
deadalus has joined #ruby
thillux has joined #ruby
Vert has quit [Read error: Connection reset by peer]
<yoshie902a> thanks, everyone! I'm got to get ready for work
thillux has quit [Remote host closed the connection]
ejnahc has quit [Quit: leaving]
yoshie902a has left #ruby [#ruby]
ejnahc has joined #ruby
adkron has quit [Ping timeout: 256 seconds]
advorak has joined #ruby
jrist-afk is now known as jrist
baphled has joined #ruby
clocKwize has quit [Read error: Connection reset by peer]
bhavesh_a_p has joined #ruby
clocKwize has joined #ruby
reinaldob has quit [Remote host closed the connection]
tatsuya_o has quit [Remote host closed the connection]
enroxorz-work has joined #ruby
tommyvyo has joined #ruby
yewton has quit [Excess Flood]
cobragoat has joined #ruby
yewton has joined #ruby
dhruvasagar has quit [Ping timeout: 252 seconds]
<apeiros> Hanmac_: I added your $= comment to mine and credited you (since my comment is higher up and not all people read all the way down)
<apeiros> I hope that's fine with you :)
pepijndevos has joined #ruby
* Hanmac_ is fine with every thing ... today is a good day because of an new "more stable" ruby version :D
<apeiros> today is a bad day :(
vlad_starkov has joined #ruby
dawkirst has quit [Ping timeout: 264 seconds]
* apeiros has to fix his superwheel jquery plugin thanks to newer firefox
bananastalktome has left #ruby [#ruby]
<pepijndevos> What is this syntax? gem 'jekyll', '=0.12.0' It's not a valid gem command. Some sort of config file?
<apeiros> and of course mousewheel events still aren't standardized. there are as little as 5 events…
<apeiros> pepijndevos: Gemfile ?
<apeiros> if so -> bundler
<pepijndevos> apeiros: ok thanks. /me is not a ruby dev
robotmay has quit [Ping timeout: 256 seconds]
cha1tanya has quit [Quit: Leaving]
reppard has joined #ruby
<Hanmac_> apeiros: no inside an the progamm you could use the gem command to specify what version you want (its wotkngi without gemfile or bundler)
jwang has quit [Ping timeout: 255 seconds]
<apeiros> Hanmac_: arr, yes, of course. I got off-tracked by "not a valid gem command"
<apeiros> of course he meant in the shell
<apeiros> pepijndevos: it tells ruby to load a specific version of a gem
ffranz has joined #ruby
<apeiros> and Gemfile is a sort of config file (as said, see bundler), but it also works in ordinary code
<pepijndevos> apeiros: I see. My Jekyll site on github stopped building. They told me to use that and look at the stracktrace.
haxrbyte has quit [Ping timeout: 255 seconds]
vlad_starkov has quit [Ping timeout: 252 seconds]
krawchyk has quit [Remote host closed the connection]
bananastalktome has joined #ruby
haxrbyte has joined #ruby
zph has joined #ruby
jlast has quit [Remote host closed the connection]
bananastalktome has left #ruby [#ruby]
jlast has joined #ruby
Jackneill has joined #ruby
Jackneill has quit [Changing host]
Jackneill has joined #ruby
moos3 has joined #ruby
fourq has joined #ruby
robotmay has joined #ruby
tatsuya__ has joined #ruby
mikecmpbll has joined #ruby
jacktrick has joined #ruby
cobragoat has quit [Ping timeout: 256 seconds]
miskander has joined #ruby
reppard has quit [Ping timeout: 256 seconds]
v0n has joined #ruby
fourq has quit [Client Quit]
<shevy> Hanmac_ do you use bundler finally
jtharris has joined #ruby
jlast has quit [Ping timeout: 248 seconds]
dustint has joined #ruby
<Hanmac_> i do not but some projects i am in support them
s1n4 has joined #ruby
biff_tannen has joined #ruby
geekbri has joined #ruby
<ericwood> bundler is really nice :D
<ericwood> embrace it
haxrbyte_ has joined #ruby
krawchyk has joined #ruby
s1n4 has quit [Client Quit]
<ericwood> >> p 0 == false
<eval-in> ericwood: Output: "false\n" (http://eval.in/6923)
romaint has joined #ruby
<romaint> Hi
<ericwood> >> p 1 == true
<eval-in> ericwood: Output: "false\n" (http://eval.in/6924)
<ericwood> >> p 1 == True
<eval-in> ericwood: Output: "/tmp/execpad-e4d4724bf359/source-e4d4724bf359:1:in `<main>': uninitialized constant True (NameError)\n" (http://eval.in/6925)
<romaint> Do you know if a tool exists to check if two ruby hashes are equals (including order of keys) ?
banisterfiend has quit [Remote host closed the connection]
dmiller1 has joined #ruby
haxrbyte has quit [Ping timeout: 240 seconds]
dawkirst has joined #ruby
<JonnieCache> the keys in a ruby hash arent ordered
<tobiasvl> are they in any language?
<JonnieCache> they happen to be ordered in 1.9 but thats an implementation detail, not part of the spec
<JonnieCache> there is such a thing as an OrderedHash in activesupport
dmiller1 has quit [Ping timeout: 240 seconds]
joofsh has joined #ruby
blaxter has quit [Quit: foo]
jerius has joined #ruby
<romaint> Hm
<Hanmac_> romaint you could look after rbTree
joofsh has quit [Remote host closed the connection]
BizarreCake has quit [Ping timeout: 256 seconds]
<romaint> The doc is subtle about it : it enumerates in the order of insertion
timonv_ has quit [Remote host closed the connection]
reppard has joined #ruby
PragCypher has joined #ruby
timonv has joined #ruby
ttt_ has quit [Remote host closed the connection]
<romaint> The point is some java program create a JSONed hash (with ordered keys) and a MD5 of this JSON
<romaint> I want to be able to produce the same thing in Ruby
kpshek has joined #ruby
tps_ has joined #ruby
joofsh has joined #ruby
<tobiasvl> well, you can marshal the hash or something
arkiver has joined #ruby
<tobiasvl> depending on exactly what part of that you want to do
<tobiasvl> you can JSON it too of course
sambio has joined #ruby
fermion has quit [Quit: P]
<JonnieCache> i dont think json objects are really meant to be ordered eithe
<JonnieCache> r
<tobiasvl> maybe not
<tobiasvl> java doesn't have ordered hashes either, does it? so that part is some other structure
<JonnieCache> js objects certainly arent ordered. sounds like this java app is full of fail
<tobiasvl> LinkedHashMap or something?
reppard has quit [Ping timeout: 248 seconds]
timonv has quit [Ping timeout: 244 seconds]
crank_ has joined #ruby
<JonnieCache> just make the hash how you want it and then use a gpu to find an md5 collision
<JonnieCache> simple
<romaint> The JSON is well ordered, we roll an implementation to ensure that
beiter has quit [Read error: Connection reset by peer]
\rs has joined #ruby
mercwithamouth has quit [Ping timeout: 256 seconds]
bhavesh_a_p has quit [Quit: Leaving]
<Hanmac_> i thought that JSON is orderd by key ..
jfl0wers has joined #ruby
beiter has joined #ruby
<JonnieCache> its not meant to be
<romaint> But it is, it's a given fact ^^
jpfuentes2 has joined #ruby
<JonnieCache> http://www.json.org/ "An object is an unordered set of name/value pairs."
<tobiasvl> no it's not romaint
<tobiasvl> just because something happens to be ordered doesn't mean you can rely on it
<JonnieCache> he means *his* json is ordered
<tobiasvl> if it's not in the spec
<romaint> Exactly
<romaint> This is a special version of JSON that is ordered
<charliesome> JonnieCache: they are supposed to be ordered in 1.9
pepijndevos has left #ruby [#ruby]
<charliesome> the only reason it's not in the spec is that the spec is based off 1.8
haxrbyte has joined #ruby
crank_ has quit [Remote host closed the connection]
philcrissman has joined #ruby
<JonnieCache> really? i thought it was only ordered because it happened to be that its optimal to keep them ordered due to how YARV is implemented
crank_ has joined #ruby
<romaint> http://www.ruby-doc.org/core-1.9.3/Hash.html is clear about the order :o
<JonnieCache> hmmmmm
timonv has joined #ruby
pen has quit [Remote host closed the connection]
joeycarmello has quit [Ping timeout: 260 seconds]
<JonnieCache> so romaint to reconstruct your json cant you just be careful to insert your values into your hash in the right order, then call .to_json on it?
haxrbyte_ has quit [Ping timeout: 248 seconds]
<romaint> i hope to_json will not mess my hash :p
cobragoat has joined #ruby
<JonnieCache> i was thinking that. dont see why it would.
charliesome has quit [Quit: Textual IRC Client: www.textualapp.com]
solidoodlesuppor has joined #ruby
haxrbyte_ has joined #ruby
<romaint> It's not spec'd to preserve (since JSON itself doesn't spec that)
<romaint> So, i'm just lucky that the implementation doesn't mess the order
mmitchell has joined #ruby
<lupine> mm, don't rely on the order :)
<romaint> Should i trust that ?
<lupine> nope, never
iPhoneMRZ has joined #ruby
<romaint> So i should find a special "ordered JSON" version
iPhoneMRZ has quit [Client Quit]
<tobiasvl> <tobiasvl> just because something happens to be ordered doesn't mean you can rely on it
<tobiasvl> follow the spec, always
<lupine> you could store your information as arrays of arrays
<lupine> they'll retain order
<JonnieCache> probably best to just write your own simple to_ordered_json method
<tobiasvl> romaint: you've never programmed C, i take it :)
pskosinski has joined #ruby
heyitsdave has joined #ruby
<romaint> At school :p
<Hanmac_> >> true.untrust; p true.untrusted?
<eval-in> Hanmac_: Output: "false\n" (http://eval.in/6926)
<lupine> but the problem you're trying to solve is probably best approached by parsing the existing file and comparing the parsed result with the object you were about to serialise
<Hanmac_> hm it seems that true can not be untrusted :D
<lupine> only overwrite if they don't match
kpshek has quit []
BizarreCake has joined #ruby
asteve has joined #ruby
<lupine> md5sum does not accurately do what you're asking it to do here, so trying to work around that is going to be nasty
haxrbyte has quit [Ping timeout: 248 seconds]
<lupine> you just need a different tool called "jsoncmp" or something, which would not be hard to write
Virunga has joined #ruby
iamvery has joined #ruby
<lupine> (didn't this come up last week? same person?)
<romaint> In my case, the configuration of some mobile devices (GPS tracker and so on) is registered on it as a hash and on our servers too. The fact is we often compare md5 of configs to know if they are the same
iPhoneMRZ has joined #ruby
<romaint> Not me :p
iamvery has quit [Remote host closed the connection]
<lupine> yes, but md5 doesn't tell you if the configs are the same
<lupine> many identical configs will have different md5sums
<romaint> Unless i export the hash as ordered JSON and MD5 that
<lupine> you can indeed invent a new standard and use that instead
iPhoneMRZ has quit [Client Quit]
beiter has quit [Quit: beiter]
<lupine> converting all your objects to two-element arrays would be a way to kind-of do that and retain ordinary json semantics
Kakera has quit [Ping timeout: 248 seconds]
<lupine> (so {a: b, c:{d: e}} would become [[a,b],[c,[d,e]]]
<romaint> Since we dont care to unserialize the string representation used for MD5, we could even be destructive
<lupine> Ruby's Hash object has syntax for converting a 2n array into a Hash
grzywacz has joined #ruby
grzywacz has joined #ruby
JumpMast3r has joined #ruby
timonv has quit [Remote host closed the connection]
libryder has joined #ruby
timonv has joined #ruby
clocKwize has quit [Quit: clocKwize]
jonahR has joined #ruby
jeffreybaird has joined #ruby
cobragoat has quit [Ping timeout: 248 seconds]
_nitti has joined #ruby
samuel02 has joined #ruby
browndawg has quit [Quit: Leaving.]
timonv_ has joined #ruby
timonv has quit [Read error: Connection reset by peer]
segv- has joined #ruby
kil0byte_ has joined #ruby
pen has joined #ruby
arkiver has quit [Quit: Leaving]
kpshek has joined #ruby
kil0byt__ has joined #ruby
adambeynon has joined #ruby
pencilcheck has joined #ruby
kil0byte has quit [Ping timeout: 248 seconds]
reuven``` has joined #ruby
Fradin has quit [Remote host closed the connection]
reppard has joined #ruby
kil0byt__ has quit [Remote host closed the connection]
vlad_starkov has joined #ruby
carlyle has joined #ruby
LouisGB has quit [Ping timeout: 255 seconds]
reuven`` has quit [Ping timeout: 256 seconds]
kevin_e has joined #ruby
solars has left #ruby ["WeeChat 0.3.7"]
cr3 has joined #ruby
<Hanmac_> lupine: Hash[[[:a,:b],[:c,[:d,:e]]]] #=> {:a=>:b, :c=>[:d, :e]} #like that?
pen has quit [Ping timeout: 256 seconds]
hasse has joined #ruby
kil0byte_ has quit [Ping timeout: 256 seconds]
jpfuentes2 has quit [Quit: Computer has gone to sleep.]
xbayrockx has joined #ruby
xbayrockx is now known as wf2f
reppard has quit [Ping timeout: 246 seconds]
cjs226 has quit []
jwang has joined #ruby
<hasse> Is there an easier way to write this snippet of code? Can I get rid of the if-statement in the helper method somehow? http://pastie.org/private/tr4yxdrs1sgzdhwthpueg
joeycarmello has joined #ruby
skaczor has joined #ruby
<tobiasvl> ready, set, ruby golfing!
wf2f has quit [Client Quit]
<tobiasvl> hasse: you can get rid of the else by just returning after the first test
<tobiasvl> if that's anything to go for...
chussenot has quit [Quit: chussenot]
carloslopes has quit [Remote host closed the connection]
Fradin has joined #ruby
xbayrockx has joined #ruby
xbayrockx is now known as wf2f
daniel_- has quit [Ping timeout: 252 seconds]
chussenot has joined #ruby
<hasse> tobiasvl: nah, I was more looking for a solution where I can call the block with Foobar as Self but also my_object as block argument
<hasse> is that possible?
carloslopes has joined #ruby
joeycarmello has quit [Ping timeout: 255 seconds]
carloslopes has quit [Read error: Connection reset by peer]
_nitti has quit [Ping timeout: 248 seconds]
crank_ has quit [Quit: crank_]
breakingthings has joined #ruby
timonv_ has quit [Read error: Connection reset by peer]
carloslopes has joined #ruby
carloslopes has quit [Read error: Connection reset by peer]
timonv has joined #ruby
crank_ has joined #ruby
<hasse> foo.helper(:special) { |obj| [self.class, obj.class] } p foo.special # => [Object, String]
fourq has joined #ruby
jekotia has joined #ruby
<hasse> But I want it to return [Foobar, String]
_md has joined #ruby
<Hanmac_> hasse yes it is possible in ruby
carloslopes has joined #ruby
<hasse> Hanmac_: hit me!
carloslopes has quit [Read error: Connection reset by peer]
zastern has quit [Remote host closed the connection]
carloslopes has joined #ruby
insulator has joined #ruby
jwang has quit [Ping timeout: 276 seconds]
carloslopes has quit [Read error: Connection reset by peer]
<Hanmac_> do: def helper(sym,&block); self.define_method(sym) { instance_eval(&block) } end
carloslopes has joined #ruby
Banistergalaxy has quit [Ping timeout: 248 seconds]
Banistergalaxy has joined #ruby
_carloslopes has joined #ruby
jwang has joined #ruby
_carloslopes has quit [Read error: Connection reset by peer]
crank_ has quit [Ping timeout: 255 seconds]
pskosinski is now known as michelevoIV
_carloslopes has joined #ruby
crank_ has joined #ruby
_alejandro has quit [Remote host closed the connection]
_carloslopes has quit [Read error: Connection reset by peer]
thatguycraig has joined #ruby
thatguycraig has quit [Max SendQ exceeded]
thatguycraig has joined #ruby
reinaldob has joined #ruby
thatguycraig has quit [Max SendQ exceeded]
_alejandro has joined #ruby
lateau has quit [Read error: Connection reset by peer]
thatguycraig has joined #ruby
lateau has joined #ruby
_whitelogger has joined #ruby
Whoop has joined #ruby
sweet_kid has joined #ruby
Spitfire has joined #ruby
Spitfire has quit [Excess Flood]
JohnBat26 has joined #ruby
Dwarf has joined #ruby
Guedes has joined #ruby
skaczor has joined #ruby
karasawa has joined #ruby
bean__ has joined #ruby
mnaser has joined #ruby
lele has joined #ruby
jesse- has joined #ruby
lupine has joined #ruby
swarley-freenode has joined #ruby
Guest37257 has joined #ruby
malte_ has joined #ruby
sailias has joined #ruby
reinaldob has joined #ruby
S2kx has joined #ruby
deavidsedice has joined #ruby
kpshek has joined #ruby
oblio_ has joined #ruby
lateau has joined #ruby
crank_ has joined #ruby
Guest51824 has joined #ruby
hbpoison has joined #ruby
_md has joined #ruby
solidoodlesuppor has joined #ruby
vlad_starkov has joined #ruby
insulator has joined #ruby
philcrissman has joined #ruby
stopbit has joined #ruby
pskosinski has joined #ruby
jfl0wers has joined #ruby
Kakera has joined #ruby
cjk101010_ has joined #ruby
jonahR has joined #ruby
Virunga has joined #ruby
JumpMast3r has joined #ruby
romaint has joined #ruby
volk_ has joined #ruby
caveat- has joined #ruby
jekotia has joined #ruby
mmitchell has joined #ruby
horofox has joined #ruby
Skelz0r has joined #ruby
raz has joined #ruby
nwertman has joined #ruby
thisirs has joined #ruby
grzywacz has joined #ruby
cobragoat has joined #ruby
Sp4rKy has joined #ruby
Banistergalaxy has joined #ruby
sambio has joined #ruby
thatguycraig has joined #ruby
hasse has joined #ruby
cr3 has joined #ruby
Boohbah_ has joined #ruby
v0n has joined #ruby
asteve has joined #ruby
jerius has joined #ruby
jtharris has joined #ruby
wf2f has joined #ruby
Fradin has joined #ruby
failshell has joined #ruby
krz has joined #ruby
breakingthings has joined #ruby
kevin_e has joined #ruby
tps_ has joined #ruby
reuven``` has joined #ruby
__BigO__ has joined #ruby
phantasm66 has joined #ruby
haxrbyte_ has joined #ruby
jacktrick has joined #ruby
jwang has joined #ruby
carlyle has joined #ruby
baphled has joined #ruby
Fraeon has joined #ruby
segv- has joined #ruby
biff_tannen has joined #ruby
maetthew- has joined #ruby
miskander has joined #ruby
samuel02 has joined #ruby
fourq has joined #ruby
BizarreCake has joined #ruby
mikecmpbll has joined #ruby
moos3 has joined #ruby
michele_ has joined #ruby
chussenot has joined #ruby
\rs has joined #ruby
libryder has joined #ruby
krawchyk has joined #ruby
nomenkun has joined #ruby
jeffreybaird has joined #ruby
geekbri has joined #ruby
heyitsdave has joined #ruby
dawkirst has joined #ruby
dustint has joined #ruby
tatsuya__ has joined #ruby
ohcibi_ has joined #ruby
PragCypher has joined #ruby
robotmay has joined #ruby
Proshot has joined #ruby
pencilcheck has joined #ruby
thorncp_ has joined #ruby
timonv_ has joined #ruby
ffranz has joined #ruby
zph has joined #ruby
yewton has joined #ruby
Jackneill has joined #ruby
enroxorz-work has joined #ruby
iamjarvo has joined #ruby
advorak has joined #ruby
mark_locklear has joined #ruby
willob has joined #ruby
x0F has joined #ruby
griffindy has joined #ruby
bluOxigen has joined #ruby
francisfish has joined #ruby
samphippen has joined #ruby
ejnahc has joined #ruby
`brendan has joined #ruby
Hanmac_ has joined #ruby
F1skr has joined #ruby
slainer68 has joined #ruby
tommyvyo has joined #ruby
ndrei has joined #ruby
bricker`1ork has joined #ruby
diegoviola has joined #ruby
Kovensky has joined #ruby
krisfremen has joined #ruby
cdt has joined #ruby
aflynn has joined #ruby
nari has joined #ruby
hybris has joined #ruby
tvw has joined #ruby
nfk has joined #ruby
_br_ has joined #ruby
lkba has joined #ruby
moshee has joined #ruby
pcarrier has joined #ruby
pavilionXP has joined #ruby
foofoobar has joined #ruby
Xeago has joined #ruby
alup has joined #ruby
Vainoharhainen has joined #ruby
afarazit|atno has joined #ruby
ABK has joined #ruby
nkts has joined #ruby
ToTo has joined #ruby
sepp2k has joined #ruby
darkskiez has joined #ruby
odyssey4me has joined #ruby
Spooner has joined #ruby
jrabbit has joined #ruby
workmad3 has joined #ruby
himsin has joined #ruby
timmow has joined #ruby
fyolnish has joined #ruby
ExxKA has joined #ruby
Kuifje has joined #ruby
Zolrath has joined #ruby
yacks has joined #ruby
asobrasil has joined #ruby
rdark_ has joined #ruby
osaut has joined #ruby
Dreamer3 has joined #ruby
TomyLobo has joined #ruby
greenarrow has joined #ruby
blacktulip has joined #ruby
deadalus has joined #ruby
JonnieCache has joined #ruby
mboro has joined #ruby
Shrink has joined #ruby
gyre008 has joined #ruby
berserkr has joined #ruby
whowantstolivefo has joined #ruby
apeiros has joined #ruby
mengu has joined #ruby
Udom0 has joined #ruby
tPl0ch has joined #ruby
Elhu has joined #ruby
DuoSRX has joined #ruby
zigomir has joined #ruby
robert_ has joined #ruby
marr has joined #ruby
wargasm has joined #ruby
jprovazn has joined #ruby
filipe has joined #ruby
jimeh has joined #ruby
hotovson has joined #ruby
mafolz has joined #ruby
zommi has joined #ruby
robustus has joined #ruby
aganov has joined #ruby
tagrudev has joined #ruby
goraxe has joined #ruby
DrCode has joined #ruby
Morkel has joined #ruby
philips_ has joined #ruby
Monie has joined #ruby
cb0ss has joined #ruby
dr_neek has joined #ruby
AsgardBSD_ has joined #ruby
eka has joined #ruby
mneorr has joined #ruby
jblack has joined #ruby
heftig has joined #ruby
piotr_ has joined #ruby
aedornv has joined #ruby
phwd has joined #ruby
beilabs has joined #ruby
Hanmac has joined #ruby
pnkbst has joined #ruby
graft has joined #ruby
mantovani has joined #ruby
swex_ has joined #ruby
Liothen has joined #ruby
matchaw__ has joined #ruby
shorts has joined #ruby
FlyingFoX has joined #ruby
billy_ran_away has joined #ruby
Guest94656 has joined #ruby
araujo has joined #ruby
locriani has joined #ruby
scrr has joined #ruby
Rydefalk has joined #ruby
tommyvyo[cloud]_ has joined #ruby
forest has joined #ruby
karupanerura has joined #ruby
_veer has joined #ruby
JMcAfreak has joined #ruby
wchun has joined #ruby
volte has joined #ruby
ruzu has joined #ruby
Drewch has joined #ruby
sn0wb1rd has joined #ruby
Nuck has joined #ruby
lusory has joined #ruby
dnyy has joined #ruby
jarjar_prime has joined #ruby
dross has joined #ruby
bricker has joined #ruby
awarner has joined #ruby
klaas has joined #ruby
aapzak has joined #ruby
zigidias has joined #ruby
hadees has joined #ruby
Targen has joined #ruby
bjeanes has joined #ruby
Apocalypse has joined #ruby
rmelissari has joined #ruby
alienvenom has joined #ruby
Rym has joined #ruby
mpfundstein has joined #ruby
daslicious has joined #ruby
Nisstyre has joined #ruby
arturaz has joined #ruby
shevy has joined #ruby
companion has joined #ruby
bitZero__ has joined #ruby
zarubin has joined #ruby
AlSquire has joined #ruby
BadLarry has joined #ruby
u- has joined #ruby
robbyoconnor has joined #ruby
jimmyy has joined #ruby
Mo0O has joined #ruby
alta has joined #ruby
kapowaz has joined #ruby
iaj has joined #ruby
Raboo_ has joined #ruby
jonathanwallace has joined #ruby
IrishGringo has joined #ruby
cba has joined #ruby
nazty has joined #ruby
hibariya has joined #ruby
ionte has joined #ruby
jeremy``` has joined #ruby
thone has joined #ruby
aquaranto has joined #ruby
canton7 has joined #ruby
kirotan has joined #ruby
Paradox has joined #ruby
dummey has joined #ruby
etank has joined #ruby
katherinem13 has joined #ruby
xybre has joined #ruby
zodiak has joined #ruby
alexspeller has joined #ruby
chiel has joined #ruby
mydog2 has joined #ruby
jaimef has joined #ruby
Axsuul has joined #ruby
weeb1e has joined #ruby
parus has joined #ruby
xclite has joined #ruby
robacarp has joined #ruby
erichmenge has joined #ruby
kuzushi has joined #ruby
hoelzro has joined #ruby
jcrawford has joined #ruby
davidcelis has joined #ruby
mkillebrew has joined #ruby
hashpuppy has joined #ruby
Bry8Star has joined #ruby
frogstarr78 has joined #ruby
Jedi_SCT1 has joined #ruby
tekacs has joined #ruby
Guest61118 has joined #ruby
evanx has joined #ruby
alex__c2022 has joined #ruby
Eiam has joined #ruby
ikonia has joined #ruby
chaosis has joined #ruby
Mchl has joined #ruby
froy has joined #ruby
alanp has joined #ruby
friskd has joined #ruby
Joel_____ has joined #ruby
jbw has joined #ruby
dv_ has joined #ruby
dcope has joined #ruby
Goopyo has joined #ruby
icco has joined #ruby
yosafbridge has joined #ruby
BeLucid has joined #ruby
fuzai has joined #ruby
sheerun has joined #ruby
CaptainKnots has joined #ruby
radic has joined #ruby
yfeldblum has joined #ruby
psino has joined #ruby
s0ber has joined #ruby
ottbot has joined #ruby
soulcake has joined #ruby
russfrank has joined #ruby
punkrawkR^Home has joined #ruby
ping-pong has joined #ruby
carlzulauf has joined #ruby
cbosh has joined #ruby
bigkevmcd has joined #ruby
cespare has joined #ruby
mfridh has joined #ruby
beandip has joined #ruby
nrt| has joined #ruby
X-Jester has joined #ruby
ozzloy has joined #ruby
CamonZ has joined #ruby
busybox42 has joined #ruby
thomasfedb has joined #ruby
moted has joined #ruby
jso has joined #ruby
neersighted has joined #ruby
Asher has joined #ruby
tetsus has joined #ruby
verma has joined #ruby
dimadima has joined #ruby
nanothief has joined #ruby
ossareh has joined #ruby
Guest49955 has joined #ruby
zcl0ud has joined #ruby
JoeJulian has joined #ruby
kpwz has joined #ruby
SeySayux has joined #ruby
Onii-san has joined #ruby
MissionCritical has joined #ruby
Villadelfia has joined #ruby
aedorn has joined #ruby
yxhuvud has joined #ruby
halph has joined #ruby
Coolhand has joined #ruby
coaster has joined #ruby
williamcotton has joined #ruby
Kudos has joined #ruby
green_leaf has joined #ruby
f0ster has joined #ruby
Tarential has joined #ruby
m_3 has joined #ruby
mikekelly has joined #ruby
swinburnesque81 has joined #ruby
earthquake has joined #ruby
flagg0204 has joined #ruby
marienz has joined #ruby
banseljaj has joined #ruby
janjos has joined #ruby
FDj has joined #ruby
Beoran__ has joined #ruby
ddv has joined #ruby
nricciar has joined #ruby
JarJarBinks has joined #ruby
sharpobject has joined #ruby
strtok has joined #ruby
xsdg has joined #ruby
CodeVision has joined #ruby
aytch has joined #ruby
preller has joined #ruby
foohey has joined #ruby
DefV has joined #ruby
Zespre has joined #ruby
tommylommykins has joined #ruby
Weazy has joined #ruby
virtuose has joined #ruby
punkrawkR has joined #ruby
pjackson has joined #ruby
new299 has joined #ruby
G has joined #ruby
perun_ has joined #ruby
aaronm has joined #ruby
Spaceghostc2c has joined #ruby
plu has joined #ruby
cschneid has joined #ruby
Sou|cutter has joined #ruby
tr4656 has joined #ruby
randym has joined #ruby
__class__ has joined #ruby
karnowski has joined #ruby
_cheney has joined #ruby
seich has joined #ruby
[0x1a] has joined #ruby
hackeron has joined #ruby
DaZ has joined #ruby
tris has joined #ruby
patricksroberts_ has joined #ruby
naquad has joined #ruby
bluehavana has joined #ruby
dotemacs has joined #ruby
moeSeth_ has joined #ruby
dekz__ has joined #ruby
asuka_ has joined #ruby
paul_k has joined #ruby
xerxas has joined #ruby
cam` has joined #ruby
Guest76736 has joined #ruby
wting has joined #ruby
thejefflarson_ has joined #ruby
mackinto1h has joined #ruby
spanx___ has joined #ruby
xAndy has joined #ruby
fuho has joined #ruby
nyuszika7h has joined #ruby
three18ti has joined #ruby
pkondzior__ has joined #ruby
sulaco_ has joined #ruby
octarine has joined #ruby
fcoury_ has joined #ruby
SirFunk has joined #ruby
SeanTAllen has joined #ruby
NimeshNeema has joined #ruby
musl has joined #ruby
davidboy has joined #ruby
notbrent has joined #ruby
unstable has joined #ruby
crazedpsyc has joined #ruby
matrixise has joined #ruby
bapa_ has joined #ruby
yasu has joined #ruby
Spaceghost|cloud has joined #ruby
klip has joined #ruby
ninp0 has joined #ruby
lobak has joined #ruby
fram has joined #ruby
spacemud has joined #ruby
justinwe1ss has joined #ruby
shammancer has joined #ruby
cheese1756 has joined #ruby
cheez0r has joined #ruby
lectrick has joined #ruby
percival__ has joined #ruby
jsaak has joined #ruby
rynkan has joined #ruby
hash| has joined #ruby
kloeri has joined #ruby
Guest85414 has joined #ruby
qubit has joined #ruby
mehwork has joined #ruby
Martz has joined #ruby
voodoofish has joined #ruby
QKO has joined #ruby
regedarek has joined #ruby
wmoxam has joined #ruby
Niamkik has joined #ruby
matled has joined #ruby
TheMoonMaster has joined #ruby
eian has joined #ruby
sonne has joined #ruby
dominikh has joined #ruby
akl has joined #ruby
tobiasvl has joined #ruby
tchebb has joined #ruby
z has joined #ruby
patronus_ has joined #ruby
MxG has joined #ruby
reactormonk has joined #ruby
cristian has joined #ruby
ericwood has joined #ruby
camidoo has joined #ruby
spanner has joined #ruby
rismoney has joined #ruby
fbernier has joined #ruby
xargoon has joined #ruby
shiftpgdn has joined #ruby
polerin has joined #ruby
gurps has joined #ruby
ryanneufeld has joined #ruby
epitron has joined #ruby
jmeeuwen has joined #ruby
wedgeV has joined #ruby
__main__ has joined #ruby
LiquidInsect has joined #ruby
Blue_Ice has joined #ruby
mame1 has joined #ruby
mvangala has joined #ruby
Drakevr has joined #ruby
zz_zz_zz_pacbard has joined #ruby
bedouin has joined #ruby
alaska has joined #ruby
AllStruck has joined #ruby
cajone has joined #ruby
devdazed has joined #ruby
ichilton has joined #ruby
elaptics has joined #ruby
whitequark has joined #ruby
joast has joined #ruby
beardyjay has joined #ruby
mosez has joined #ruby
shadewind has joined #ruby
joschi has joined #ruby
DarkFoxDK has joined #ruby
classix has joined #ruby
vDubG has joined #ruby
urrk has joined #ruby
eregon has joined #ruby
pcboy_ has joined #ruby
jhchabran has joined #ruby
diegok has joined #ruby
axiak has joined #ruby
depassion has joined #ruby
gianlucadv has joined #ruby
digifiv5e has joined #ruby
Nanuq has joined #ruby
mrmist has joined #ruby
cibs has joined #ruby
jbpros has joined #ruby
kaen has joined #ruby
TomRone has joined #ruby
pdtpatrick has joined #ruby
KRF has joined #ruby
chrismcg has joined #ruby
kstephens has joined #ruby
KillerFox has joined #ruby
Gm4n has joined #ruby
epta has joined #ruby
ahuman has joined #ruby
phaidros has joined #ruby
tomaw has joined #ruby
spacebug has joined #ruby
willb has joined #ruby
lazyguru has joined #ruby
pignata has joined #ruby
idoru has joined #ruby
RubyPanther has joined #ruby
grn has joined #ruby
nyrb has joined #ruby
pasties has joined #ruby
kennyvb has joined #ruby
Guest42233 has joined #ruby
sirecote has joined #ruby
JoeHazzers has joined #ruby
gregorg has joined #ruby
fryguy has joined #ruby
drfreeze has joined #ruby
WanderingGlitch has joined #ruby
Mathieu has joined #ruby
rking has joined #ruby
UdontKnow has joined #ruby
Koshian has joined #ruby
TheNumb has joined #ruby
yugui_zzz has joined #ruby
straind` has joined #ruby
IRLConor has joined #ruby
passbe has joined #ruby
nmeum has joined #ruby
ixx has joined #ruby
mlue has joined #ruby
acrocity has joined #ruby
lorn has joined #ruby
faen has joined #ruby
pigoz has joined #ruby
rcj_ has joined #ruby
inimino has joined #ruby
wookiehangover has joined #ruby
KarlHungus has joined #ruby
alexwh has joined #ruby
shaman42 has joined #ruby
rmc3 has joined #ruby
w|t has joined #ruby
msch has joined #ruby
wang has joined #ruby
benwoody has joined #ruby
ccooke has joined #ruby
nopper has joined #ruby
Azure has joined #ruby
undert has joined #ruby
NobbZ has joined #ruby
matti has joined #ruby
nuba has joined #ruby
malcolmva has joined #ruby
DarthGandalf has joined #ruby
denken has joined #ruby
mephux has joined #ruby
waxjar has joined #ruby
eval-in has joined #ruby
dagobah has joined #ruby
r126l has joined #ruby
d-snp has joined #ruby
affix has joined #ruby
wildcard0 has joined #ruby
Drager has joined #ruby
bier has joined #ruby
mksm has joined #ruby
tos9 has joined #ruby
Emmanuel_Chanel has joined #ruby
emdub has joined #ruby
lepht_afk has joined #ruby
peter1 has joined #ruby
yeltzooo has joined #ruby
andredieb has joined #ruby
Bish has joined #ruby
Roa has joined #ruby
GeekOnCoffee has joined #ruby
Kov|abx has joined #ruby
happosade has joined #ruby
Jelco_ has joined #ruby
BBonifield has joined #ruby
jphpsf has joined #ruby
edenc has joined #ruby
maddog_ has joined #ruby
Tux-Tn has joined #ruby
drizz has joined #ruby
Quadlex has joined #ruby
lahwran has joined #ruby
dfr|work has joined #ruby
stat1x has joined #ruby
cout has joined #ruby
Gadgetoid has joined #ruby
mattb has joined #ruby
aetaric has joined #ruby
nick_h has joined #ruby
lushious has joined #ruby
txdv has joined #ruby
thibauts has joined #ruby
oddraisin has joined #ruby
drPoggs has joined #ruby
xiphiasx_ has joined #ruby
Lemtzas has joined #ruby
irving_ has joined #ruby
sixteneighty has joined #ruby
MikeH has joined #ruby
TTilus has joined #ruby
Elfix has joined #ruby
queequeg1 has joined #ruby
Guest24761 has joined #ruby
David_Miller has joined #ruby
ada2358 has joined #ruby
jrist has joined #ruby
uxp has joined #ruby
kkh has joined #ruby
mmercer has joined #ruby
Sargun has joined #ruby
prime has joined #ruby
JStoker has joined #ruby
undyingr1ge has joined #ruby
phrame has joined #ruby
Sigma00 has joined #ruby
jayne has joined #ruby
hyperboreean has joined #ruby
no_i_wont has joined #ruby
WhereIsMySpoon has joined #ruby
elektronaut has joined #ruby
mattp_ has joined #ruby
brian-_ has joined #ruby
conceal_rs_ has joined #ruby
tils_ has joined #ruby
zeppelin has joined #ruby
Y_Ichiro has joined #ruby
Hien has joined #ruby
jaredrhine has joined #ruby
mahlon has joined #ruby
arusso has joined #ruby
ged has joined #ruby
faulkner has joined #ruby
adamholt has joined #ruby
Gate has joined #ruby
rcs has joined #ruby
spacebug_ has joined #ruby
justinabrahms has joined #ruby
phreax has joined #ruby
elliottcable has joined #ruby
Derander has joined #ruby
pizzahead has joined #ruby
PhilK has joined #ruby
tessi has joined #ruby
witchdoc has joined #ruby
Cork has joined #ruby
andynu has joined #ruby
frytaz1_ has joined #ruby
angelixd has joined #ruby
mtfk has joined #ruby
egn has joined #ruby
bakedb_ has joined #ruby
jeekl has joined #ruby
kanzure has joined #ruby
brjannc has joined #ruby
BombStrike has joined #ruby
epochwolf has joined #ruby
willcodeforfoo has joined #ruby
mikalv has joined #ruby
JoeTheGuest has joined #ruby
Goatbert has joined #ruby
samuelkadolph has joined #ruby
dyreshark has joined #ruby
srm` has joined #ruby
Muz has joined #ruby
oz has joined #ruby
madhatter has joined #ruby
jtperreault has joined #ruby
SecretAgent has joined #ruby
stigmux has joined #ruby
kandinski has joined #ruby
Signum has joined #ruby
RailWolf has joined #ruby
wunz has joined #ruby
swistak35 has joined #ruby
strcrzy_ has joined #ruby
dubios has joined #ruby
elspeth has joined #ruby
stderr- has joined #ruby
vng has joined #ruby
scrogson has joined #ruby
rtl has joined #ruby
fearoffish has joined #ruby
jmccune has joined #ruby
theoros has joined #ruby
ehc has joined #ruby
sweet_kid has quit [Max SendQ exceeded]
Spitfire has joined #ruby
Spitfire has quit [Excess Flood]
otters has joined #ruby
anekos has joined #ruby
sweet_kid has joined #ruby
jimmyy has quit [Ping timeout: 260 seconds]
pcarrier has quit [*.net *.split]
mame1 has quit [*.net *.split]
KillerFox has quit [*.net *.split]
Jedi_SCT1 has quit [*.net *.split]
skaczor has quit [*.net *.split]
spacemud has quit [*.net *.split]
deavidsedice has quit [*.net *.split]
cobragoat has quit [*.net *.split]
camidoo has quit [*.net *.split]
jonahR has quit [*.net *.split]
vlad_starkov has quit [Remote host closed the connection]
philcrissman has quit [*.net *.split]
v0n has quit [*.net *.split]
TheMoonMaster has quit [*.net *.split]
jacktrick has quit [*.net *.split]
cjk101010_ has quit [*.net *.split]
fyolnish has quit [*.net *.split]
pcboy_ has quit [*.net *.split]
zommi has quit [*.net *.split]
deadalus has quit [*.net *.split]
Shrink has quit [*.net *.split]
malte_ has quit [*.net *.split]
workmad3 has quit [*.net *.split]
locriani has quit [*.net *.split]
BadLarry has quit [*.net *.split]
lusory has quit [*.net *.split]
psino has quit [*.net *.split]
CaptainKnots has quit [*.net *.split]
u- has quit [*.net *.split]
ddv has quit [*.net *.split]
f0ster has quit [*.net *.split]
flagg0204 has quit [*.net *.split]
preller has quit [*.net *.split]
mikekelly has quit [*.net *.split]
Zespre has quit [*.net *.split]
matti has quit [*.net *.split]
elaptics has quit [*.net *.split]
kaen has quit [*.net *.split]
mehwork has quit [*.net *.split]
shiftpgdn has quit [*.net *.split]
spanner has quit [*.net *.split]
tos9 has quit [*.net *.split]
krz has quit [*.net *.split]
lateau has quit [*.net *.split]
miskander has quit [*.net *.split]
iamjarvo has quit [*.net *.split]
samphippen has quit [*.net *.split]
yacks has quit [*.net *.split]
griffindy has quit [*.net *.split]
apeiros has quit [*.net *.split]
graft has quit [*.net *.split]
Elhu has quit [*.net *.split]
aquaranto has quit [*.net *.split]
ExxKA has quit [*.net *.split]
dominikh has quit [*.net *.split]
chiel has quit [*.net *.split]
robbyoconnor has quit [*.net *.split]
swex_ has quit [*.net *.split]
joschi has quit [*.net *.split]
cespare has quit [*.net *.split]
Xeago has quit [*.net *.split]
digifiv5e has quit [*.net *.split]
yxhuvud has quit [*.net *.split]
__main__ has quit [*.net *.split]
classix has quit [*.net *.split]
ikonia has quit [*.net *.split]
marienz has quit [*.net *.split]
soulcake has quit [*.net *.split]
timmow has quit [*.net *.split]
wchun has quit [*.net *.split]
Gm4n has quit [*.net *.split]
alexspeller has quit [*.net *.split]
nopper has quit [*.net *.split]
klip has quit [*.net *.split]
TheNumb has quit [*.net *.split]
JoeHazzers has quit [*.net *.split]
hbpoison has quit [*.net *.split]
Banistergalaxy has quit [*.net *.split]
Kakera has quit [*.net *.split]
baphled has quit [*.net *.split]
ejnahc has quit [*.net *.split]
mnaser has quit [*.net *.split]
MxG has quit [*.net *.split]
krawchyk has quit [*.net *.split]
ABK has quit [*.net *.split]
JonnieCache has quit [*.net *.split]
Zolrath has quit [*.net *.split]
jblack has quit [*.net *.split]
JMcAfreak has quit [*.net *.split]
ping-pong has quit [*.net *.split]
Guest61118 has quit [*.net *.split]
nazty has quit [*.net *.split]
bigkevmcd has quit [*.net *.split]
mfridh has quit [*.net *.split]
pnkbst has quit [*.net *.split]
Joel_____ has quit [*.net *.split]
jcrawford has quit [*.net *.split]
Villadelfia has quit [*.net *.split]
CodeVision has quit [*.net *.split]
tr4656 has quit [*.net *.split]
Spaceghostc2c has quit [*.net *.split]
karnowski has quit [*.net *.split]
SeanTAllen has quit [*.net *.split]
Spaceghost|cloud has quit [*.net *.split]
xargoon has quit [*.net *.split]
Guest85414 has quit [*.net *.split]
moeSeth_ has quit [*.net *.split]
wting has quit [*.net *.split]
jbpros has quit [*.net *.split]
ichilton has quit [*.net *.split]
chrismcg has quit [*.net *.split]
NobbZ has quit [*.net *.split]
WanderingGlitch has quit [*.net *.split]
denken has quit [*.net *.split]
nuba has quit [*.net *.split]
nmeum has quit [*.net *.split]
rking has quit [*.net *.split]
jeremy``` has quit [*.net *.split]
dagobah has quit [*.net *.split]
__BigO__ has quit [*.net *.split]
heyitsdave has quit [*.net *.split]
afarazit|atno has quit [*.net *.split]
aapzak has quit [*.net *.split]
jonathanwallace has quit [*.net *.split]
advorak has quit [*.net *.split]
dcope has quit [*.net *.split]
shorts has quit [*.net *.split]
Drewch has quit [*.net *.split]
Eiam has quit [*.net *.split]
dawkirst has quit [*.net *.split]
Raboo_ has quit [*.net *.split]
kirotan has quit [*.net *.split]
Coolhand has quit [*.net *.split]
JumpMast3r has quit [*.net *.split]
aganov has quit [*.net *.split]
romaint has quit [*.net *.split]
evanx has quit [*.net *.split]
bricker`1ork has quit [*.net *.split]
caveat- has quit [*.net *.split]
Rydefalk has quit [*.net *.split]
bier has quit [*.net *.split]
stat1x has quit [*.net *.split]
BBonifield has quit [*.net *.split]
edenc has quit [*.net *.split]
Derander has quit [*.net *.split]
anekos has quit [*.net *.split]
jesse- has quit [*.net *.split]
sailias has quit [*.net *.split]
Guest37257 has quit [*.net *.split]
volk_ has quit [*.net *.split]
failshell has quit [*.net *.split]
jekotia has quit [*.net *.split]
crank_ has quit [*.net *.split]
nomenkun has quit [*.net *.split]
thatguycraig has quit [*.net *.split]
_md has quit [*.net *.split]
horofox has quit [*.net *.split]
jeffreybaird has quit [*.net *.split]
sepp2k has quit [*.net *.split]
PragCypher has quit [*.net *.split]
tPl0ch has quit [*.net *.split]
pskosinski has quit [*.net *.split]
greenarrow has quit [*.net *.split]
Virunga has quit [*.net *.split]
_br_ has quit [*.net *.split]
zigomir has quit [*.net *.split]
francisfish has quit [*.net *.split]
jfl0wers has quit [*.net *.split]
piotr_ has quit [*.net *.split]
nkts has quit [*.net *.split]
mmitchell has quit [*.net *.split]
hadees has quit [*.net *.split]
tps_ has quit [*.net *.split]
matchaw__ has quit [*.net *.split]
haxrbyte_ has quit [*.net *.split]
Monie has quit [*.net *.split]
mengu has quit [*.net *.split]
dr_neek has quit [*.net *.split]
Kovensky has quit [*.net *.split]
cdt has quit [*.net *.split]
ToTo has quit [*.net *.split]
mneorr has quit [*.net *.split]
Liothen has quit [*.net *.split]
jbw has quit [*.net *.split]
Nisstyre has quit [*.net *.split]
canton7 has quit [*.net *.split]
bjeanes has quit [*.net *.split]
alanp has quit [*.net *.split]
companion has quit [*.net *.split]
chaosis has quit [*.net *.split]
IrishGringo has quit [*.net *.split]
hashpuppy has quit [*.net *.split]
hasse has quit [*.net *.split]
Hanmac_ has quit [*.net *.split]
dummey has quit [*.net *.split]
carlyle has quit [*.net *.split]
erichmenge has quit [*.net *.split]
davidcelis has quit [*.net *.split]
xybre has quit [*.net *.split]
_veer has quit [*.net *.split]
Nuck has quit [*.net *.split]
aedornv has quit [*.net *.split]
moted has quit [*.net *.split]
neersighted has quit [*.net *.split]
aedorn has quit [*.net *.split]
yfeldblum has quit [*.net *.split]
verma has quit [*.net *.split]
xclite has quit [*.net *.split]
awarner has quit [*.net *.split]
ozzloy has quit [*.net *.split]
zodiak has quit [*.net *.split]
darkskiez has quit [*.net *.split]
Asher has quit [*.net *.split]
sirecote has quit [*.net *.split]
inimino has quit [*.net *.split]
msch has quit [*.net *.split]
acrocity has quit [*.net *.split]
lepht_afk has quit [*.net *.split]
Fraeon has quit [*.net *.split]
mtfk has quit [*.net *.split]
kpshek has quit [*.net *.split]
thisirs has quit [*.net *.split]
samuel02 has quit [*.net *.split]
bean__ has quit [*.net *.split]
insulator has quit [*.net *.split]
Goatbert has quit [*.net *.split]
wf2f has quit [*.net *.split]
F1skr has quit [*.net *.split]
rdark_ has quit [*.net *.split]
Vainoharhainen has quit [*.net *.split]
robustus has quit [*.net *.split]
DrCode has quit [*.net *.split]
Mchl has quit [*.net *.split]
radic has quit [*.net *.split]
Axsuul has quit [*.net *.split]
ionte has quit [*.net *.split]
Bry8Star has quit [*.net *.split]
zigidias has quit [*.net *.split]
russfrank has quit [*.net *.split]
ruzu has quit [*.net *.split]
MissionCritical has quit [*.net *.split]
swinburnesque81 has quit [*.net *.split]
foohey has quit [*.net *.split]
kapowaz has quit [*.net *.split]
FDj has quit [*.net *.split]
Tarential has quit [*.net *.split]
virtuose has quit [*.net *.split]
matrixise has quit [*.net *.split]
shammancer has quit [*.net *.split]
Niamkik has quit [*.net *.split]
fuho has quit [*.net *.split]
akl has quit [*.net *.split]
voodoofish has quit [*.net *.split]
patronus_ has quit [*.net *.split]
mrmist has quit [*.net *.split]
jayne has quit [*.net *.split]
lahwran has quit [*.net *.split]
SecretAgent has quit [*.net *.split]
David_Miller has quit [*.net *.split]
gurps has quit [*.net *.split]
jeekl has quit [*.net *.split]
pizzahead has quit [*.net *.split]
mosez has quit [*.net *.split]
xiphiasx_ has quit [*.net *.split]
mmercer has quit [*.net *.split]
GeekOnCoffee has quit [*.net *.split]
rtl has quit [*.net *.split]
alta has quit [*.net *.split]
banseljaj has quit [*.net *.split]
mackinto1h has quit [*.net *.split]
xAndy has quit [*.net *.split]
plu has quit [*.net *.split]
CamonZ has quit [*.net *.split]
paul_k has quit [*.net *.split]
_cheney has quit [*.net *.split]
BeLucid has quit [*.net *.split]
cheese1756 has quit [*.net *.split]
aytch has quit [*.net *.split]
crazedpsyc has quit [*.net *.split]
elektronaut has quit [*.net *.split]
Mo0O has quit [*.net *.split]
randym has quit [*.net *.split]
mephux has quit [*.net *.split]
rismoney has quit [*.net *.split]
cajone has quit [*.net *.split]
thejefflarson_ has quit [*.net *.split]
octarine has quit [*.net *.split]
three18ti has quit [*.net *.split]
bluehavana has quit [*.net *.split]
Azure has quit [*.net *.split]
icco has quit [*.net *.split]
ahuman has quit [*.net *.split]
polerin has quit [*.net *.split]
dotemacs has quit [*.net *.split]
G has quit [*.net *.split]
percival__ has quit [*.net *.split]
mattb has quit [*.net *.split]
mlue has quit [*.net *.split]
nyuszika7h has quit [*.net *.split]
mvangala has quit [*.net *.split]
axiak has quit [*.net *.split]
jmeeuwen has quit [*.net *.split]
lazyguru has quit [*.net *.split]
wookiehangover has quit [*.net *.split]
Nanuq has quit [*.net *.split]
mksm has quit [*.net *.split]
KarlHungus has quit [*.net *.split]
spacebug has quit [*.net *.split]
DarkFoxDK has quit [*.net *.split]
d-snp has quit [*.net *.split]
Roa has quit [*.net *.split]
straind` has quit [*.net *.split]
nick_h has quit [*.net *.split]
maddog_ has quit [*.net *.split]
Y_Ichiro has quit [*.net *.split]
Quadlex has quit [*.net *.split]
elspeth has quit [*.net *.split]
stderr- has quit [*.net *.split]
prime has quit [*.net *.split]
wunz has quit [*.net *.split]
no_i_wont has quit [*.net *.split]
Lemtzas has quit [*.net *.split]
Gate has quit [*.net *.split]
dimadima has quit [*.net *.split]
michele_ has quit [*.net *.split]
Sp4rKy has quit [*.net *.split]
x0F has quit [*.net *.split]
mikecmpbll has quit [*.net *.split]
fourq has quit [*.net *.split]
krisfremen has quit [*.net *.split]
enroxorz-work has quit [*.net *.split]
jwang has quit [*.net *.split]
foofoobar has quit [*.net *.split]
diegoviola has quit [*.net *.split]
pavilionXP has quit [*.net *.split]
mboro has quit [*.net *.split]
friskd has quit [*.net *.split]
scrr has quit [*.net *.split]
williamcotton has quit [*.net *.split]
beardyjay has quit [*.net *.split]
zcl0ud has quit [*.net *.split]
joast has quit [*.net *.split]
cba has quit [*.net *.split]
coaster has quit [*.net *.split]
RubyPanther has quit [*.net *.split]
Weazy has quit [*.net *.split]
thomasfedb has quit [*.net *.split]
ottbot has quit [*.net *.split]
tommylommykins has quit [*.net *.split]
froy has quit [*.net *.split]
idoru has quit [*.net *.split]
strtok has quit [*.net *.split]
kuzushi has quit [*.net *.split]
lorn has quit [*.net *.split]
JoeJulian has quit [*.net *.split]
asuka_ has quit [*.net *.split]
nyrb has quit [*.net *.split]
tvw has quit [*.net *.split]
alienvenom has quit [*.net *.split]
IRLConor has quit [*.net *.split]
mydog2 has quit [*.net *.split]
X-Jester has quit [*.net *.split]
Paradox has quit [*.net *.split]
r126l has quit [*.net *.split]
weeb1e has quit [*.net *.split]
frogstarr78 has quit [*.net *.split]
Sigma00 has quit [*.net *.split]
zeppelin has quit [*.net *.split]
epochwolf has quit [*.net *.split]
Guest51824 has quit [*.net *.split]
hyperboreean has quit [*.net *.split]
ged has quit [*.net *.split]
phantasm66 has quit [*.net *.split]
rcs has quit [*.net *.split]
brjannc has quit [*.net *.split]
mahlon has quit [*.net *.split]
reuven``` has quit [*.net *.split]
grzywacz has quit [*.net *.split]
asteve has quit [*.net *.split]
karasawa has quit [*.net *.split]
fearoffish has quit [*.net *.split]
undyingr1ge has quit [*.net *.split]
ffranz has quit [*.net *.split]
jmccune has quit [*.net *.split]
stopbit has quit [*.net *.split]
bluOxigen has quit [*.net *.split]
hybris has quit [*.net *.split]
marr has quit [*.net *.split]
jimeh has quit [*.net *.split]
Guest94656 has quit [*.net *.split]
beandip has quit [*.net *.split]
robacarp has quit [*.net *.split]
ossareh has quit [*.net *.split]
mkillebrew has quit [*.net *.split]
earthquake has quit [*.net *.split]
halph has quit [*.net *.split]
Beoran__ has quit [*.net *.split]
new299 has quit [*.net *.split]
perun_ has quit [*.net *.split]
aaronm has quit [*.net *.split]
sonne has quit [*.net *.split]
pignata has quit [*.net *.split]
lobak has quit [*.net *.split]
jhchabran has quit [*.net *.split]
unstable has quit [*.net *.split]
ninp0 has quit [*.net *.split]
drfreeze has quit [*.net *.split]
yeltzooo has quit [*.net *.split]
gregorg has quit [*.net *.split]
hash| has quit [*.net *.split]
cout has quit [*.net *.split]
cristian has quit [*.net *.split]
tris has quit [*.net *.split]
regedarek has quit [*.net *.split]
Sou|cutter has quit [*.net *.split]
hackeron has quit [*.net *.split]
benwoody has quit [*.net *.split]
happosade has quit [*.net *.split]
pigoz has quit [*.net *.split]
musl has quit [*.net *.split]
Martz has quit [*.net *.split]
robert_ has quit [*.net *.split]
mattp_ has quit [*.net *.split]
TTilus has quit [*.net *.split]
karupanerura has quit [*.net *.split]
cibs has quit [*.net *.split]
otters has quit [*.net *.split]
mark_locklear has quit [*.net *.split]
Kuifje has quit [*.net *.split]
dustint has quit [*.net *.split]
cr3 has quit [*.net *.split]
osaut has quit [*.net *.split]
Spooner has quit [*.net *.split]
asobrasil has quit [*.net *.split]
jprovazn has quit [*.net *.split]
bitZero__ has quit [*.net *.split]
fcoury_ has quit [*.net *.split]
hotovson has quit [*.net *.split]
jsaak has quit [*.net *.split]
fuzai has quit [*.net *.split]
mantovani has quit [*.net *.split]
sulaco_ has quit [*.net *.split]
mpfundstein has quit [*.net *.split]
tagrudev has quit [*.net *.split]
janjos has quit [*.net *.split]
billy_ran_away has quit [*.net *.split]
vng has quit [*.net *.split]
tetsus has quit [*.net *.split]
diegok has quit [*.net *.split]
pdtpatrick has quit [*.net *.split]
epta has quit [*.net *.split]
ericwood has quit [*.net *.split]
Koshian has quit [*.net *.split]
malcolmva has quit [*.net *.split]
rcj_ has quit [*.net *.split]
andredieb has quit [*.net *.split]
ohcibi_ has quit [*.net *.split]
queequeg1 has quit [*.net *.split]
lupine has quit [*.net *.split]
jrist has quit [*.net *.split]
S2kx has quit [*.net *.split]
Guest24761 has quit [*.net *.split]
Signum has quit [*.net *.split]
breakingthings has quit [*.net *.split]
BombStrike has quit [*.net *.split]
JStoker has quit [*.net *.split]
Fradin has quit [*.net *.split]
Cork has quit [*.net *.split]
BizarreCake has quit [*.net *.split]
timonv_ has quit [*.net *.split]
Jackneill has quit [*.net *.split]
Guedes has quit [*.net *.split]
Boohbah_ has quit [*.net *.split]
Rym has quit [*.net *.split]
dross has quit [*.net *.split]
iaj has quit [*.net *.split]
Goopyo has quit [*.net *.split]
jerius has quit [*.net *.split]
cbosh has quit [*.net *.split]
nrt| has quit [*.net *.split]
heftig has quit [*.net *.split]
jrabbit has quit [*.net *.split]
LiquidInsect has quit [*.net *.split]
eka has quit [*.net *.split]
vDubG has quit [*.net *.split]
tchebb has quit [*.net *.split]
Dreamer3 has quit [*.net *.split]
volte has quit [*.net *.split]
s0ber has quit [*.net *.split]
klaas has quit [*.net *.split]
odyssey4me has quit [*.net *.split]
geekbri has quit [*.net *.split]
punkrawkR^Home has quit [*.net *.split]
Morkel has quit [*.net *.split]
tommyvyo has quit [*.net *.split]
etank has quit [*.net *.split]
Kudos has quit [*.net *.split]
willob has quit [*.net *.split]
cb0ss has quit [*.net *.split]
eregon has quit [*.net *.split]
tommyvyo[cloud]_ has quit [*.net *.split]
jarjar_prime has quit [*.net *.split]
green_leaf has quit [*.net *.split]
aflynn has quit [*.net *.split]
xsdg has quit [*.net *.split]
Targen has quit [*.net *.split]
whowantstolivefo has quit [*.net *.split]
sn0wb1rd has quit [*.net *.split]
forest has quit [*.net *.split]
bapa_ has quit [*.net *.split]
raz has quit [*.net *.split]
daslicious has quit [*.net *.split]
yasu has quit [*.net *.split]
alup has quit [*.net *.split]
qubit has quit [*.net *.split]
cheez0r has quit [*.net *.split]
QKO has quit [*.net *.split]
tobiasvl has quit [*.net *.split]
depassion has quit [*.net *.split]
TomRone has quit [*.net *.split]
wang has quit [*.net *.split]
devdazed has quit [*.net *.split]
txdv has quit [*.net *.split]
peter1 has quit [*.net *.split]
Bish has quit [*.net *.split]
aetaric has quit [*.net *.split]
Gadgetoid has quit [*.net *.split]
emdub has quit [*.net *.split]
Tux-Tn has quit [*.net *.split]
Muz has quit [*.net *.split]
WhereIsMySpoon has quit [*.net *.split]
angelixd has quit [*.net *.split]
kanzure has quit [*.net *.split]
ada2358 has quit [*.net *.split]
Drakevr has quit [*.net *.split]
AllStruck has quit [*.net *.split]
jaredrhine has quit [*.net *.split]
nfk has quit [*.net *.split]
sambio has quit [*.net *.split]
epitron has quit [*.net *.split]
wildcard0 has quit [*.net *.split]
kennyvb has quit [*.net *.split]
rmc3 has quit [*.net *.split]
justinabrahms has quit [*.net *.split]
willcodeforfoo has quit [*.net *.split]
jtharris has quit [*.net *.split]
tatsuya__ has quit [*.net *.split]
ryanneufeld has quit [*.net *.split]
bakedb_ has quit [*.net *.split]
dubios has quit [*.net *.split]
kkh has quit [*.net *.split]
himsin has quit [*.net *.split]
RailWolf has quit [*.net *.split]
JoeTheGuest has quit [*.net *.split]
chussenot has quit [*.net *.split]
moshee has quit [*.net *.split]
phrame has quit [*.net *.split]
brian-_ has quit [*.net *.split]
kevin_e has quit [*.net *.split]
solidoodlesuppor has quit [*.net *.split]
DuoSRX has quit [*.net *.split]
blacktulip has quit [*.net *.split]
wargasm has quit [*.net *.split]
zarubin has quit [*.net *.split]
bricker has quit [*.net *.split]
thone has quit [*.net *.split]
shevy has quit [*.net *.split]
yosafbridge has quit [*.net *.split]
hoelzro has quit [*.net *.split]
AlSquire has quit [*.net *.split]
busybox42 has quit [*.net *.split]
punkrawkR has quit [*.net *.split]
naquad has quit [*.net *.split]
SeySayux has quit [*.net *.split]
NimeshNeema has quit [*.net *.split]
wmoxam has quit [*.net *.split]
gianlucadv has quit [*.net *.split]
tomaw has quit [*.net *.split]
undert has quit [*.net *.split]
passbe has quit [*.net *.split]
Emmanuel_Chanel has quit [*.net *.split]
oddraisin has quit [*.net *.split]
Sargun has quit [*.net *.split]
ehc has quit [*.net *.split]
Jelco_ has quit [*.net *.split]
sharpobject has quit [*.net *.split]
drizz has quit [*.net *.split]
phaidros has quit [*.net *.split]
willb has quit [*.net *.split]
egn has quit [*.net *.split]
tessi has quit [*.net *.split]
lele has quit [*.net *.split]
yugui_zzz has quit [*.net *.split]
\rs has quit [*.net *.split]
ixx has quit [*.net *.split]
nricciar has quit [*.net *.split]
thibauts has quit [*.net *.split]
JarJarBinks has quit [*.net *.split]
cschneid has quit [*.net *.split]
DaZ has quit [*.net *.split]
xerxas has quit [*.net *.split]
patricksroberts_ has quit [*.net *.split]
__class__ has quit [*.net *.split]
shadewind has quit [*.net *.split]
matled has quit [*.net *.split]
eian has quit [*.net *.split]
bedouin has quit [*.net *.split]
kstephens has quit [*.net *.split]
alaska has quit [*.net *.split]
phwd has quit [*.net *.split]
MikeH has quit [*.net *.split]
samuelkadolph has quit [*.net *.split]
Proshot has quit [*.net *.split]
Skelz0r has quit [*.net *.split]
lkba has quit [*.net *.split]
oblio_ has quit [*.net *.split]
nari has quit [*.net *.split]
arturaz has quit [*.net *.split]
nwertman has quit [*.net *.split]
`brendan has quit [*.net *.split]
Udom0 has quit [*.net *.split]
Hanmac has quit [*.net *.split]
ndrei has quit [*.net *.split]
TomyLobo has quit [*.net *.split]
araujo has quit [*.net *.split]
FlyingFoX has quit [*.net *.split]
dv_ has quit [*.net *.split]
beilabs has quit [*.net *.split]
Guest49955 has quit [*.net *.split]
fram has quit [*.net *.split]
justinwe1ss has quit [*.net *.split]
nanothief has quit [*.net *.split]
wedgeV has quit [*.net *.split]
kpwz has quit [*.net *.split]
z has quit [*.net *.split]
jso has quit [*.net *.split]
Guest42233 has quit [*.net *.split]
kloeri has quit [*.net *.split]
alexwh has quit [*.net *.split]
lushious has quit [*.net *.split]
rmelissari has quit [*.net *.split]
irving_ has quit [*.net *.split]
oz has quit [*.net *.split]
adamholt has quit [*.net *.split]
stigmux has quit [*.net *.split]
kandinski has quit [*.net *.split]
phreax has quit [*.net *.split]
Elfix has quit [*.net *.split]
uxp has quit [*.net *.split]
spacebug_ has quit [*.net *.split]
tils_ has quit [*.net *.split]
maetthew- has quit [*.net *.split]
swarley-freenode has quit [*.net *.split]
yewton has quit [*.net *.split]
philips_ has quit [*.net *.split]
SirFunk has quit [*.net *.split]
Apocalypse has quit [*.net *.split]
spanx___ has quit [*.net *.split]
tekacs has quit [*.net *.split]
pjackson has quit [*.net *.split]
Onii-san has quit [*.net *.split]
Guest76736 has quit [*.net *.split]
grn has quit [*.net *.split]
w|t has quit [*.net *.split]
shaman42 has quit [*.net *.split]
ccooke has quit [*.net *.split]
Blue_Ice has quit [*.net *.split]
Kov|abx has quit [*.net *.split]
DarthGandalf has quit [*.net *.split]
UdontKnow has quit [*.net *.split]
dfr|work has quit [*.net *.split]
waxjar has quit [*.net *.split]
libryder has quit [*.net *.split]
Drager has quit [*.net *.split]
madhatter has quit [*.net *.split]
arusso has quit [*.net *.split]
mikalv has quit [*.net *.split]
PhilK has quit [*.net *.split]
robotmay has quit [*.net *.split]
moos3 has quit [*.net *.split]
pencilcheck has quit [*.net *.split]
zph has quit [*.net *.split]
swistak35 has quit [*.net *.split]
slainer68 has quit [*.net *.split]
segv- has quit [*.net *.split]
gyre008 has quit [*.net *.split]
biff_tannen has quit [*.net *.split]
reinaldob has quit [*.net *.split]
mafolz has quit [*.net *.split]
berserkr has quit [*.net *.split]
filipe has quit [*.net *.split]
goraxe has quit [*.net *.split]
AsgardBSD_ has quit [*.net *.split]
jaimef has quit [*.net *.split]
carlzulauf has quit [*.net *.split]
reactormonk has quit [*.net *.split]
sheerun has quit [*.net *.split]
fbernier has quit [*.net *.split]
parus has quit [*.net *.split]
m_3 has quit [*.net *.split]
[0x1a] has quit [*.net *.split]
katherinem13 has quit [*.net *.split]
zz_zz_zz_pacbard has quit [*.net *.split]
dnyy has quit [*.net *.split]
alex__c2022 has quit [*.net *.split]
hibariya has quit [*.net *.split]
KRF has quit [*.net *.split]
affix has quit [*.net *.split]
faen has quit [*.net *.split]
pasties has quit [*.net *.split]
Mathieu has quit [*.net *.split]
eval-in has quit [*.net *.split]
sixteneighty has quit [*.net *.split]
frytaz1_ has quit [*.net *.split]
faulkner has quit [*.net *.split]
witchdoc has quit [*.net *.split]
elliottcable has quit [*.net *.split]
andynu has quit [*.net *.split]
theoros has quit [*.net *.split]
thorncp_ has quit [*.net *.split]
scrogson has quit [*.net *.split]
dyreshark has quit [*.net *.split]
conceal_rs_ has quit [*.net *.split]
srm` has quit [*.net *.split]
strcrzy_ has quit [*.net *.split]
jtperreault has quit [*.net *.split]
DefV has quit [*.net *.split]
seich has quit [*.net *.split]
cam` has quit [*.net *.split]
rynkan has quit [*.net *.split]
notbrent has quit [*.net *.split]
lectrick has quit [*.net *.split]
davidboy has quit [*.net *.split]
dekz__ has quit [*.net *.split]
pkondzior__ has quit [*.net *.split]
urrk has quit [*.net *.split]
whitequark has quit [*.net *.split]
jphpsf has quit [*.net *.split]
Hien has quit [*.net *.split]
fryguy has quit [*.net *.split]
drPoggs has quit [*.net *.split]
Spitfire has joined #ruby
Spitfire has quit [Excess Flood]
Spitfire has joined #ruby
Spitfire has quit [Excess Flood]
sailias has joined #ruby
Kakera has joined #ruby
Guedes has joined #ruby
jimmyy has joined #ruby
karasawa has joined #ruby
caveat- has joined #ruby
mnaser has joined #ruby
baphled has joined #ruby
jesse- has joined #ruby
timonv_ has joined #ruby
skaczor has joined #ruby
Guest37257 has joined #ruby
Fraeon has joined #ruby
Skelz0r has joined #ruby
lupine has joined #ruby
Guest51824 has joined #ruby
michele_ has joined #ruby
stopbit has joined #ruby
oblio_ has joined #ruby
swarley-freenode has joined #ruby
bean__ has joined #ruby
__BigO__ has joined #ruby
Proshot has joined #ruby
cjk101010_ has joined #ruby
ohcibi_ has joined #ruby
volk_ has joined #ruby
nwertman has joined #ruby
thorncp_ has joined #ruby
anekos has joined #ruby
raz has joined #ruby
maetthew- has joined #ruby
thisirs has joined #ruby
otters has joined #ruby
hbpoison has joined #ruby
Boohbah_ has joined #ruby
krz has joined #ruby
lele has joined #ruby
failshell has joined #ruby
Sp4rKy has joined #ruby
deavidsedice has joined #ruby
phantasm66 has joined #ruby
malte_ has joined #ruby
horofox has joined #ruby
nomenkun has joined #ruby
crank_ has joined #ruby
S2kx has joined #ruby
lateau has joined #ruby
Banistergalaxy has joined #ruby
jwang has joined #ruby
reinaldob has joined #ruby
insulator has joined #ruby
fourq has joined #ruby
jekotia has joined #ruby
chussenot has joined #ruby
_md has joined #ruby
thatguycraig has joined #ruby
breakingthings has joined #ruby
Fradin has joined #ruby
wf2f has joined #ruby
cr3 has joined #ruby
kevin_e has joined #ruby
reuven``` has joined #ruby
carlyle has joined #ruby
kpshek has joined #ruby
segv- has joined #ruby
pencilcheck has joined #ruby
hasse has joined #ruby
samuel02 has joined #ruby
jeffreybaird has joined #ruby
jonahR has joined #ruby
JumpMast3r has joined #ruby
libryder has joined #ruby
grzywacz has joined #ruby
Virunga has joined #ruby
asteve has joined #ruby
BizarreCake has joined #ruby
heyitsdave has joined #ruby
pskosinski has joined #ruby
mmitchell has joined #ruby
haxrbyte_ has joined #ruby
solidoodlesuppor has joined #ruby
philcrissman has joined #ruby
Hanmac_ has joined #ruby
tommyvyo has joined #ruby
Spooner has joined #ruby
mengu has joined #ruby
tvw has joined #ruby
miskander has joined #ruby
jacktrick has joined #ruby
tps_ has joined #ruby
enroxorz-work has joined #ruby
Shrink has joined #ruby
darkskiez has joined #ruby
jrabbit has joined #ruby
yewton has joined #ruby
aflynn has joined #ruby
\rs has joined #ruby
himsin has joined #ruby
nari has joined #ruby
yacks has joined #ruby
whowantstolivefo has joined #ruby
biff_tannen has joined #ruby
robotmay has joined #ruby
geekbri has joined #ruby
`brendan has joined #ruby
x0F has joined #ruby
F1skr has joined #ruby
iamjarvo has joined #ruby
jerius has joined #ruby
ejnahc has joined #ruby
dustint has joined #ruby
gyre008 has joined #ruby
nkts has joined #ruby
Kovensky has joined #ruby
deadalus has joined #ruby
workmad3 has joined #ruby
krisfremen has joined #ruby
bluOxigen has joined #ruby
PragCypher has joined #ruby
rdark_ has joined #ruby
pavilionXP has joined #ruby
Udom0 has joined #ruby
dawkirst has joined #ruby
ndrei has joined #ruby
alup has joined #ruby
willob has joined #ruby
JonnieCache has joined #ruby
apeiros has joined #ruby
Dreamer3 has joined #ruby
ffranz has joined #ruby
francisfish has joined #ruby
Elhu has joined #ruby
bricker`1ork has joined #ruby
fyolnish has joined #ruby
Vainoharhainen has joined #ruby
cdt has joined #ruby
ToTo has joined #ruby
slainer68 has joined #ruby
sepp2k has joined #ruby
nfk has joined #ruby
afarazit|atno has joined #ruby
osaut has joined #ruby
asobrasil has joined #ruby
ABK has joined #ruby
tPl0ch has joined #ruby
jtharris has joined #ruby
mboro has joined #ruby
_br_ has joined #ruby
romaint has joined #ruby
v0n has joined #ruby
timmow has joined #ruby
advorak has joined #ruby
DuoSRX has joined #ruby
odyssey4me has joined #ruby
ExxKA has joined #ruby
lkba has joined #ruby
moshee has joined #ruby
samphippen has joined #ruby
marr has joined #ruby
Kuifje has joined #ruby
sambio has joined #ruby
TomyLobo has joined #ruby
blacktulip has joined #ruby
griffindy has joined #ruby
tatsuya__ has joined #ruby
mark_locklear has joined #ruby
hybris has joined #ruby
krawchyk has joined #ruby
friskd has joined #ruby
Zolrath has joined #ruby
mikecmpbll has joined #ruby
robert_ has joined #ruby
mafolz has joined #ruby
Xeago has joined #ruby
wargasm has joined #ruby
ephemerian has joined #ruby
aganov has joined #ruby
zigomir has joined #ruby
jprovazn has joined #ruby
diegoviola has joined #ruby
hotovson has joined #ruby
jimeh has joined #ruby
Jackneill has joined #ruby
Hanmac has joined #ruby
goraxe has joined #ruby
chaosis has joined #ruby
foofoobar has joined #ruby
arturaz has joined #ruby
filipe has joined #ruby
Raboo_ has joined #ruby
sn0wb1rd has joined #ruby
mneorr has joined #ruby
Mchl has joined #ruby
eka has joined #ruby
DrCode has joined #ruby
Liothen has joined #ruby
IrishGringo has joined #ruby
AsgardBSD_ has joined #ruby
kirotan has joined #ruby
zarubin has joined #ruby
soulcake has joined #ruby
bjeanes has joined #ruby
alanp has joined #ruby
ionte has joined #ruby
philips_ has joined #ruby
Axsuul has joined #ruby
Rym has joined #ruby
karupanerura has joined #ruby
Targen has joined #ruby
Eiam has joined #ruby
radic has joined #ruby
scrr has joined #ruby
jblack has joined #ruby
robacarp has joined #ruby
locriani has joined #ruby
Monie has joined #ruby
jaimef has joined #ruby
jfl0wers has joined #ruby
bricker has joined #ruby
rmelissari has joined #ruby
moos3 has joined #ruby
Guest94656 has joined #ruby
cb0ss has joined #ruby
greenarrow has joined #ruby
Morkel has joined #ruby
shorts has joined #ruby
hibariya has joined #ruby
swex_ has joined #ruby
robbyoconnor has joined #ruby
dr_neek has joined #ruby
fuzai has joined #ruby
robustus has joined #ruby
thone has joined #ruby
piotr_ has joined #ruby
zommi has joined #ruby
jbw has joined #ruby
froy has joined #ruby
hadees has joined #ruby
berserkr has joined #ruby
zph has joined #ruby
matchaw__ has joined #ruby
billy_ran_away has joined #ruby
BadLarry has joined #ruby
zigidias has joined #ruby
jonathanwallace has joined #ruby
jarjar_prime has joined #ruby
tagrudev has joined #ruby
mantovani has joined #ruby
JMcAfreak has joined #ruby
canton7 has joined #ruby
Joel_____ has joined #ruby
Goopyo has joined #ruby
shevy has joined #ruby
evanx has joined #ruby
alta has joined #ruby
lusory has joined #ruby
Guest61118 has joined #ruby
cba has joined #ruby
jcrawford has joined #ruby
etank has joined #ruby
companion has joined #ruby
alex__c2022 has joined #ruby
dross has joined #ruby
mpfundstein has joined #ruby
aquaranto has joined #ruby
chiel has joined #ruby
araujo has joined #ruby
frogstarr78 has joined #ruby
Nisstyre has joined #ruby
BeLucid has joined #ruby
FlyingFoX has joined #ruby
ottbot has joined #ruby
sheerun has joined #ruby
kuzushi has joined #ruby
psino has joined #ruby
iaj has joined #ruby
mkillebrew has joined #ruby
bitZero__ has joined #ruby
Bry8Star has joined #ruby
davidcelis has joined #ruby
Rydefalk has joined #ruby
erichmenge has joined #ruby
yosafbridge has joined #ruby
xybre has joined #ruby
russfrank has joined #ruby
_veer has joined #ruby
katherinem13 has joined #ruby
daslicious has joined #ruby
aapzak has joined #ruby
alienvenom has joined #ruby
aedornv has joined #ruby
alexspeller has joined #ruby
CaptainKnots has joined #ruby
mydog2 has joined #ruby
nazty has joined #ruby
Apocalypse has joined #ruby
dv_ has joined #ruby
Jedi_SCT1 has joined #ruby
heftig has joined #ruby
weeb1e has joined #ruby
ruzu has joined #ruby
s0ber has joined #ruby
beilabs has joined #ruby
dcope has joined #ruby
dnyy has joined #ruby
graft has joined #ruby
phwd has joined #ruby
dummey has joined #ruby
ikonia has joined #ruby
jeremy``` has joined #ruby
wchun has joined #ruby
parus has joined #ruby
hashpuppy has joined #ruby
pnkbst has joined #ruby
volte has joined #ruby
Nuck has joined #ruby
hoelzro has joined #ruby
klaas has joined #ruby
Paradox has joined #ruby
icco has joined #ruby
punkrawkR^Home has joined #ruby
awarner has joined #ruby
tommyvyo[cloud]_ has joined #ruby
forest has joined #ruby
Drewch has joined #ruby
xclite has joined #ruby
kapowaz has joined #ruby
tekacs has joined #ruby
u- has joined #ruby
AlSquire has joined #ruby
Asher has joined #ruby
yfeldblum has joined #ruby
Kudos has joined #ruby
ping-pong has joined #ruby
zodiak has joined #ruby
beandip has joined #ruby
carlzulauf has joined #ruby
MissionCritical has joined #ruby
yxhuvud has joined #ruby
Mo0O has joined #ruby
mfridh has joined #ruby
Onii-san has joined #ruby
cespare has joined #ruby
halph has joined #ruby
neersighted has joined #ruby
CamonZ has joined #ruby
coaster has joined #ruby
bigkevmcd has joined #ruby
cbosh has joined #ruby
thomasfedb has joined #ruby
verma has joined #ruby
X-Jester has joined #ruby
JoeJulian has joined #ruby
nanothief has joined #ruby
ozzloy has joined #ruby
jso has joined #ruby
Coolhand has joined #ruby
nrt| has joined #ruby
moted has joined #ruby
m_3 has joined #ruby
SeySayux has joined #ruby
flagg0204 has joined #ruby
williamcotton has joined #ruby
mikekelly has joined #ruby
DefV has joined #ruby
swinburnesque81 has joined #ruby
ossareh has joined #ruby
dimadima has joined #ruby
zcl0ud has joined #ruby
aedorn has joined #ruby
aytch has joined #ruby
ddv has joined #ruby
Weazy has joined #ruby
Tarential has joined #ruby
green_leaf has joined #ruby
banseljaj has joined #ruby
janjos has joined #ruby
f0ster has joined #ruby
kpwz has joined #ruby
Villadelfia has joined #ruby
busybox42 has joined #ruby
preller has joined #ruby
FDj has joined #ruby
new299 has joined #ruby
_cheney has joined #ruby
Zespre has joined #ruby
Beoran__ has joined #ruby
tommylommykins has joined #ruby
tetsus has joined #ruby
pjackson has joined #ruby
Guest49955 has joined #ruby
__class__ has joined #ruby
nricciar has joined #ruby
plu has joined #ruby
G has joined #ruby
punkrawkR has joined #ruby
justinwe1ss has joined #ruby
matrixise has joined #ruby
strtok has joined #ruby
xAndy has joined #ruby
earthquake has joined #ruby
DaZ has joined #ruby
CodeVision has joined #ruby
virtuose has joined #ruby
sharpobject has joined #ruby
perun_ has joined #ruby
xsdg has joined #ruby
JarJarBinks has joined #ruby
foohey has joined #ruby
hash| has joined #ruby
marienz has joined #ruby
Spaceghostc2c has joined #ruby
[0x1a] has joined #ruby
cheez0r has joined #ruby
Guest76736 has joined #ruby
hackeron has joined #ruby
cschneid has joined #ruby
paul_k has joined #ruby
asuka_ has joined #ruby
cam` has joined #ruby
klip has joined #ruby
tris has joined #ruby
kloeri has joined #ruby
seich has joined #ruby
tr4656 has joined #ruby
mackinto1h has joined #ruby
fram has joined #ruby
randym has joined #ruby
naquad has joined #ruby
crazedpsyc has joined #ruby
cheese1756 has joined #ruby
sulaco_ has joined #ruby
fuho has joined #ruby
aaronm has joined #ruby
shammancer has joined #ruby
karnowski has joined #ruby
Sou|cutter has joined #ruby
rynkan has joined #ruby
unstable has joined #ruby
SeanTAllen has joined #ruby
SirFunk has joined #ruby
notbrent has joined #ruby
Spaceghost|cloud has joined #ruby
bapa_ has joined #ruby
thejefflarson_ has joined #ruby
NimeshNeema has joined #ruby
xerxas has joined #ruby
davidboy has joined #ruby
lectrick has joined #ruby
patricksroberts_ has joined #ruby
octarine has joined #ruby
wting has joined #ruby
spanx___ has joined #ruby
fcoury_ has joined #ruby
bluehavana has joined #ruby
moeSeth_ has joined #ruby
dekz__ has joined #ruby
dotemacs has joined #ruby
pkondzior__ has joined #ruby
nyuszika7h has joined #ruby
spacemud has joined #ruby
yasu has joined #ruby
three18ti has joined #ruby
lobak has joined #ruby
ninp0 has joined #ruby
Guest85414 has joined #ruby
percival__ has joined #ruby
jsaak has joined #ruby
mehwork has joined #ruby
qubit has joined #ruby
kaen has joined #ruby
musl has joined #ruby
Blue_Ice has joined #ruby
rismoney has joined #ruby
matled has joined #ruby
Niamkik has joined #ruby
QKO has joined #ruby
regedarek has joined #ruby
camidoo has joined #ruby
voodoofish has joined #ruby
Martz has joined #ruby
wmoxam has joined #ruby
TheMoonMaster has joined #ruby
TomRone has joined #ruby
dominikh has joined #ruby
xargoon has joined #ruby
shadewind has joined #ruby
akl has joined #ruby
z has joined #ruby
cristian has joined #ruby
wedgeV has joined #ruby
sonne has joined #ruby
fbernier has joined #ruby
cibs has joined #ruby
tchebb has joined #ruby
pcboy_ has joined #ruby
eian has joined #ruby
mvangala has joined #ruby
vDubG has joined #ruby
urrk has joined #ruby
ryanneufeld has joined #ruby
tobiasvl has joined #ruby
patronus_ has joined #ruby
mame1 has joined #ruby
polerin has joined #ruby
digifiv5e has joined #ruby
chrismcg has joined #ruby
NobbZ has joined #ruby
elaptics has joined #ruby
__main__ has joined #ruby
kennyvb has joined #ruby
devdazed has joined #ruby
diegok has joined #ruby
nopper has joined #ruby
matti has joined #ruby
mosez has joined #ruby
mephux has joined #ruby
KRF has joined #ruby
gianlucadv has joined #ruby
epitron has joined #ruby
epta has joined #ruby
joast has joined #ruby
SegFaultAX has joined #ruby
mlue has joined #ruby
aces23up has joined #ruby
jhchabran has joined #ruby
nw has joined #ruby
LiquidInsect has joined #ruby
RubyPanther has joined #ruby
KillerFox has joined #ruby
phaidros has joined #ruby
xkx has joined #ruby
tomaw has joined #ruby
depassion has joined #ruby
drfreeze has joined #ruby
w|t has joined #ruby
cajone has joined #ruby
sirecote has joined #ruby
mrmist has joined #ruby
nyrb has joined #ruby
grn has joined #ruby
denken has joined #ruby
nmeum has joined #ruby
TheNumb has joined #ruby
wang has joined #ruby
autumn has joined #ruby
Azure has joined #ruby
DarkFoxDK has joined #ruby
beardyjay has joined #ruby
Rix has joined #ruby
LKiS has joined #ruby
AllStruck has joined #ruby
WanderingGlitch has joined #ruby
jmeeuwen has joined #ruby
Gm4n has joined #ruby
spacebug has joined #ruby
trent1 has joined #ruby
msch has joined #ruby
gurps has joined #ruby
shaman42 has joined #ruby
felipe has joined #ruby
whitequark has joined #ruby
JoeHazzers has joined #ruby
bedouin has joined #ruby
gregorg has joined #ruby
affix has joined #ruby
pigoz has joined #ruby
acrocity has joined #ruby
rking has joined #ruby
undert has joined #ruby
pdtpatrick has joined #ruby
s4muel has joined #ruby
joschi has joined #ruby
axiak has joined #ruby
tomku has joined #ruby
eregon has joined #ruby
nuba has joined #ruby
jtcoon has joined #ruby
fryguy has joined #ruby
reactormonk has joined #ruby
rmc3 has joined #ruby
lazyguru has joined #ruby
idoru has joined #ruby
jbpros has joined #ruby
Caius has joined #ruby
dpn` has joined #ruby
Nanuq has joined #ruby
bier has joined #ruby
ahuman has joined #ruby
inimino has joined #ruby
kstephens has joined #ruby
shiftpgdn has joined #ruby
faen has joined #ruby
wereHamster has joined #ruby
tos9 has joined #ruby
IRLConor has joined #ruby
benwoody has joined #ruby
wildcard0 has joined #ruby
spanner has joined #ruby
dagobah has joined #ruby
ericwood has joined #ruby
zz_zz_zz_pacbard has joined #ruby
MxG has joined #ruby
kalleth has joined #ruby
Koshian has joined #ruby
alaska has joined #ruby
lorn has joined #ruby
malcolmva has joined #ruby
passbe has joined #ruby
classix has joined #ruby
Drakevr has joined #ruby
straind` has joined #ruby
ichilton has joined #ruby
d-snp has joined #ruby
pignata has joined #ruby
willb has joined #ruby
ixx has joined #ruby
r126l has joined #ruby
KarlHungus has joined #ruby
pasties has joined #ruby
wookiehangover has joined #ruby
emdub has joined #ruby
UdontKnow has joined #ruby
eval-in has joined #ruby
txdv has joined #ruby
DarthGandalf has joined #ruby
waxjar has joined #ruby
Kov|abx has joined #ruby
GeekOnCoffee has joined #ruby
yugui_zzz has joined #ruby
lahwran has joined #ruby
alexwh has joined #ruby
Bish has joined #ruby
Roa has joined #ruby
Gadgetoid has joined #ruby
cout has joined #ruby
rcj_ has joined #ruby
Mathieu has joined #ruby
Drager has joined #ruby
mksm has joined #ruby
Emmanuel_Chanel has joined #ruby
ccooke has joined #ruby
nick_h has joined #ruby
yeltzooo has joined #ruby
happosade has joined #ruby
dfr|work has joined #ruby
Tux-Tn has joined #ruby
Guest42233 has joined #ruby
lepht_afk has joined #ruby
drizz has joined #ruby
lushious has joined #ruby
aetaric has joined #ruby
peter1 has joined #ruby
BBonifield has joined #ruby
Jelco_ has joined #ruby
andredieb has joined #ruby
mattb has joined #ruby
thibauts has joined #ruby
maddog_ has joined #ruby
jphpsf has joined #ruby
Quadlex has joined #ruby
stat1x has joined #ruby
edenc has joined #ruby
oddraisin has joined #ruby
fasta has joined #ruby
Signum has joined #ruby
Derander has joined #ruby
Muz has joined #ruby
mikalv has joined #ruby
WhereIsMySpoon has joined #ruby
PhilK has joined #ruby
angelixd has joined #ruby
arusso has joined #ruby
Schmidt has joined #ruby
namidark has joined #ruby
mattp_ has joined #ruby
madhatter has joined #ruby
Elfix has joined #ruby
Hien has joined #ruby
drPoggs has joined #ruby
elektronaut has joined #ruby
mtfk has joined #ruby
mmercer has joined #ruby
SecretAgent has joined #ruby
prime has joined #ruby
rtl has joined #ruby
MikeH has joined #ruby
Sigma00 has joined #ruby
jeekl has joined #ruby
zeppelin has joined #ruby
srm` has joined #ruby
swistak35 has joined #ruby
no_i_wont has joined #ruby
Y_Ichiro has joined #ruby
oz has joined #ruby
stderr- has joined #ruby
Gate has joined #ruby
mahlon has joined #ruby
telling has joined #ruby
Lemtzas has joined #ruby
elspeth has joined #ruby
wunz has joined #ruby
TTilus has joined #ruby
tessi has joined #ruby
ged has joined #ruby
xiphiasx_ has joined #ruby
JStoker has joined #ruby
BombStrike has joined #ruby
epochwolf has joined #ruby
jaredrhine has joined #ruby
adamholt has joined #ruby
kanzure has joined #ruby
fearoffish has joined #ruby
jmccune has joined #ruby
jrist has joined #ruby
kandinski has joined #ruby
David_Miller has joined #ruby
sixteneighty has joined #ruby
hyperboreean has joined #ruby
vng has joined #ruby
jtperreault has joined #ruby
queequeg1 has joined #ruby
jayne has joined #ruby
ada2358 has joined #ruby
faulkner has joined #ruby
frytaz1_ has joined #ruby
Cork has joined #ruby
undyingr1ge has joined #ruby
ehc has joined #ruby
brjannc has joined #ruby
irving_ has joined #ruby
pizzahead has joined #ruby
Guest24761 has joined #ruby
Goatbert has joined #ruby
witchdoc has joined #ruby
egn has joined #ruby
rcs has joined #ruby
stigmux has joined #ruby
elliottcable has joined #ruby
yellow5 has joined #ruby
willcodeforfoo has joined #ruby
brian-_ has joined #ruby
bakedb_ has joined #ruby
JoeTheGuest has joined #ruby
dubios has joined #ruby
phrame has joined #ruby
{^_^}_______ has joined #ruby
Rious has joined #ruby
justinabrahms has joined #ruby
kkh has joined #ruby
uxp has joined #ruby
avelldiroll has joined #ruby
phreax has joined #ruby
Sargun has joined #ruby
dyreshark has joined #ruby
spacebug_ has joined #ruby
conceal_rs_ has joined #ruby
RailWolf has joined #ruby
theoros has joined #ruby
rotor has joined #ruby
samuelkadolph has joined #ruby
tils_ has joined #ruby
andynu has joined #ruby
scrogson has joined #ruby
strcrzy_ has joined #ruby
sweet_kid has quit [Max SendQ exceeded]
x82_nicole has joined #ruby
wudofyr_ has joined #ruby
JohnBat26 has quit [Max SendQ exceeded]
sweet_kid has joined #ruby
carloslopes has joined #ruby
JohnBat26 has joined #ruby
Spitfire has joined #ruby
Spitfire has quit [Excess Flood]
carloslopes has quit [Read error: Connection reset by peer]
OldOats has joined #ruby
Guest29496 has joined #ruby
Guest29496 has quit [Excess Flood]
Whoop has quit [Changing host]
Whoop has joined #ruby
Spitfire_ has joined #ruby
reppard has joined #ruby
carloslopes has joined #ruby
foofoobar has quit [Quit: Computer has gone to sleep.]
carloslopes has quit [Read error: Connection reset by peer]
maxmanders has joined #ruby
volk_ has quit [Remote host closed the connection]
bean__ is now known as bean|work
volk_ has joined #ruby
jeffreybaird has quit [Read error: Connection reset by peer]
carloslopes has joined #ruby
jeffreybaird has joined #ruby
carloslopes has quit [Read error: Connection reset by peer]
cantonic has joined #ruby
beiter has joined #ruby
crank_ has quit [Quit: crank_]
carloslopes has joined #ruby
AsgardBSD_ is now known as AsgardBSD
roadt has joined #ruby
maxmanders has quit [Client Quit]
phwd has left #ruby [#ruby]
philcrissman has quit [Remote host closed the connection]
reppard has quit [Ping timeout: 256 seconds]
roadt has quit [Max SendQ exceeded]
vlad_starkov has joined #ruby
maxmanders has joined #ruby
theRoUS has joined #ruby
end_guy has joined #ruby
zommi has quit [Quit: Leaving.]
ttt has joined #ruby
roadt has joined #ruby
browndawg has joined #ruby
katherinem13 has quit [Quit: leaving]
farleyknight has joined #ruby
banisterfiend has joined #ruby
tPl0ch_ has joined #ruby
katherinem13 has joined #ruby
tPl0ch has quit [Disconnected by services]
tPl0ch_ is now known as tPl0ch
maxmanders has quit [Client Quit]
blaxter has joined #ruby
interactionjaxsn has joined #ruby
crank_ has joined #ruby
mikepack has joined #ruby
anonymuse has joined #ruby
maxmanders has joined #ruby
crank_ has quit [Remote host closed the connection]
zwevans has joined #ruby
crank_ has joined #ruby
banister_ has joined #ruby
banisterfiend has quit [Read error: Connection reset by peer]
_md has quit [Quit: Linkinus - http://linkinus.com]
ttt has quit [Ping timeout: 245 seconds]
otters has quit [Ping timeout: 255 seconds]
hybris has quit [Quit: Leaving]
carloslopes has quit [Ping timeout: 248 seconds]
jprovazn has quit [Quit: Leaving]
fermion has joined #ruby
Jamone has joined #ruby
samphippen has quit [Quit: Computer has gone to sleep.]
jblack has quit [Ping timeout: 276 seconds]
cpruitt has joined #ruby
katherinem13 has quit [Quit: leaving]
katherinem13 has joined #ruby
philcrissman has joined #ruby
adambeynon has joined #ruby
cjs226 has joined #ruby
rippa has joined #ruby
Monie has quit [Ping timeout: 248 seconds]
forest has quit [Ping timeout: 256 seconds]
rboyd has joined #ruby
rboyd has left #ruby [#ruby]
philcrissman has quit [Remote host closed the connection]
Dom_ has joined #ruby
samuel02 has quit [Remote host closed the connection]
philcrissman has joined #ruby
tagrudev has quit [Remote host closed the connection]
danieldocki has joined #ruby
Fradin has quit [Remote host closed the connection]
space0022s has joined #ruby
<space0022s> hi people
<hoelzro> ahoy
<space0022s> how can i do "gem install rails 2.3.8 & rails 2.3.11" in one command line
katherinem13 has quit [Quit: leaving]
Dreamer3 has quit [Ping timeout: 248 seconds]
kil0byte has joined #ruby
katherinem13 has joined #ruby
ndboost has joined #ruby
timonv_ has quit [Remote host closed the connection]
SCommette has joined #ruby
carloslopes has joined #ruby
timonv has joined #ruby
Neomex has joined #ruby
Neomex has quit [Client Quit]
mikeg has joined #ruby
carloslopes has quit [Remote host closed the connection]
Dom_ has left #ruby [#ruby]
atmosx has joined #ruby
jlast has joined #ruby
<tobiasvl> gem install rails 2.3.8 && gem install rails 2.3.11
jaequery has joined #ruby
cobragoat has joined #ruby
joshman_ has joined #ruby
<OldOats> Has anyone ever experienced a situation where running a ruby script as root versus running it as a regular user with sudo privileges causes a difference in how interrupt signals are handled?
telli has joined #ruby
timonv has quit [Ping timeout: 246 seconds]
kil0byte_ has joined #ruby
<atmosx> OldOats: no but makes sense. Root has different paths set then suser + sudo
<atmosx> so they use different versions of ruby and maybe different gems
<atmosx> except if ruby is installed system wide and they both give priority to the same paths.
reuven``` has quit [Ping timeout: 255 seconds]
<atmosx> but the 2nd situation is rare in my exp
d2dchat has joined #ruby
maxmanders has quit [Quit: Computer has gone to sleep.]
kil0byte has quit [Ping timeout: 264 seconds]
Dreamer3__ has joined #ruby
foofoobar has joined #ruby
RagingDave has joined #ruby
afarazit|atno has quit [Remote host closed the connection]
nateberkopec has joined #ruby
joeycarmello has joined #ruby
moshee has quit [Ping timeout: 264 seconds]
moshee has joined #ruby
moshee has quit [Changing host]
moshee has joined #ruby
swingha has joined #ruby
joshman_ has quit [Quit: Computer has gone to sleep.]
cobragoat has quit [Ping timeout: 255 seconds]
joeycarmello has quit [Ping timeout: 248 seconds]
Nisstyre has quit [Quit: Leaving]
joshman_ has joined #ruby
browndawg has left #ruby [#ruby]
geekbri has quit [Remote host closed the connection]
Virunga has quit [Remote host closed the connection]
beiter has quit [Quit: beiter]
io_syl has joined #ruby
browndawg has joined #ruby
mikecmpbll has quit [Quit: ["Textual IRC Client: www.textualapp.com"]]
r0f0 has joined #ruby
joofsh has joined #ruby
ndboost has quit [Remote host closed the connection]
ckrailo has joined #ruby
<OldOats> It's weird, I'm trapping the interrupt for debugging purposes and the trap message I print out shows up twice when run as a regular user with sudo, but only once when I run it as root.
codezombie has joined #ruby
a_a_g has joined #ruby
samuel02 has joined #ruby
ndboost has joined #ruby
danneu has joined #ruby
rdark_ has quit [Ping timeout: 276 seconds]
nobuoka has joined #ruby
nobuoka has quit [Client Quit]
philcrissman has quit [Remote host closed the connection]
<r0f0> OldOats : mind sharing your source ?
rdark has joined #ruby
Udom0 has quit [Quit: Leaving.]
d2dchat has quit [Remote host closed the connection]
philcrissman has joined #ruby
chussenot has quit [Quit: chussenot]
dmiller1 has joined #ruby
reppard has joined #ruby
nari has quit [Ping timeout: 252 seconds]
<OldOats> I cannot, which unfortunatly makes helping me on this issue more difficult.
<r0f0> eh secret project,like secret affairs , good :D
chussenot has joined #ruby
brandon|work has joined #ruby
Mon_Ouie has joined #ruby
odyssey4me has quit [Remote host closed the connection]
maxmanders has joined #ruby
<OldOats> haha
carloslopes has joined #ruby
odyssey4me has joined #ruby
odyssey4me has quit [Client Quit]
ben____ has joined #ruby
endre has joined #ruby
<atmosx> OldOats: are you building a new social network?
maxmanders has quit [Client Quit]
blazes816 has joined #ruby
ohcibi_ is now known as ohcibi
<OldOats> I was just wondering off hand if anyone had seen something similar before.
geekbri has joined #ruby
<space0022s> how can i do "gem install rails -v=2.3.8 pg zip rails -v=2.3.11" in one line
Norrin has joined #ruby
geekbri has quit [Remote host closed the connection]
maxmanders has joined #ruby
reppard has quit [Ping timeout: 264 seconds]
browndawg has quit [Ping timeout: 248 seconds]
dmiller1 has quit [Ping timeout: 276 seconds]
geekbri has joined #ruby
nazty has quit [Read error: Connection reset by peer]
karasawa has quit [Ping timeout: 255 seconds]
karasawa has joined #ruby
BizarreCake has quit [Quit: Leaving]
timonv has joined #ruby
undersc0re97 has joined #ruby
geekbri has quit [Remote host closed the connection]
dougireton has joined #ruby
OldOats has quit [Quit: Page closed]
kil0byte has joined #ruby
nazty has joined #ruby
tPl0ch has quit [Quit: Verlassend]
maxmanders has quit [Client Quit]
kil0byte_ has quit [Ping timeout: 248 seconds]
FlyingFoXy has joined #ruby
JonnieCache has quit [Quit: Reconnecting]
FlyingFoX has quit [Read error: Connection reset by peer]
JonnieCache has joined #ruby
dougireton has quit [Ping timeout: 252 seconds]
geekbri has joined #ruby
Virunga has joined #ruby
rakl has joined #ruby
banister_ has quit [Read error: Connection reset by peer]
jacktrick has quit [Quit: Leaving]
banisterfiend has joined #ruby
reppard has joined #ruby
ndboost has quit [Remote host closed the connection]
daniel_- has joined #ruby
cobragoat has joined #ruby
<Spaceghost|cloud> space0022s: &&
<Spaceghost|cloud> or ;
miskander has quit [Quit: miskander]
RJ3 has joined #ruby
<hoelzro> for target in 'rails -v=2.3.8', 'pg', 'zip', 'rails -v=2.3.11'; do gem install $target; done
zigomir has quit [Quit: zigomir]
end_guy has quit [Ping timeout: 276 seconds]
end_guy has joined #ruby
Virunga has quit [Ping timeout: 256 seconds]
miskander has joined #ruby
reppard has quit [Ping timeout: 246 seconds]
<Spaceghost|cloud> ^
baroquebobcat has joined #ruby
maxmanders has joined #ruby
moomerman has joined #ruby
emocakes has joined #ruby
timonv_ has joined #ruby
philcrissman has quit [Remote host closed the connection]
generalissimo has joined #ruby
aganov has quit [Remote host closed the connection]
timonv has quit [Ping timeout: 255 seconds]
toto_ has joined #ruby
toto- has joined #ruby
Ankhers has joined #ruby
io_syl has quit [Quit: Computer has gone to sleep.]
sailias has quit [Quit: Leaving.]
cobragoat has quit [Ping timeout: 256 seconds]
maxmanders has quit [Quit: Computer has gone to sleep.]
vonsar has joined #ruby
timonv_ has quit [Ping timeout: 240 seconds]
ddv has quit [Ping timeout: 240 seconds]
philcrissman has joined #ruby
toto_ has quit [Ping timeout: 240 seconds]
maxmanders has joined #ruby
ToTo has quit [Ping timeout: 248 seconds]
emocakes has quit [Quit: emocakes]
arturaz has quit [Ping timeout: 252 seconds]
nwertman has quit [Read error: Connection reset by peer]
apeiros has quit [Remote host closed the connection]
ddv has joined #ruby
Zolo has joined #ruby
abalsam has joined #ruby
conurb has joined #ruby
hackerdude has joined #ruby
maxmanders has quit [Quit: Computer has gone to sleep.]
nwertman has joined #ruby
woolite64 has joined #ruby
h8R has joined #ruby
moomerman has quit [Quit: Linkinus - http://linkinus.com]
Hanmac_ has quit [Quit: Page closed]
NemesisD has joined #ruby
timonv has joined #ruby
maxmanders has joined #ruby
pcarrier has joined #ruby
mikeg has quit [Ping timeout: 246 seconds]
Morkel has quit [Quit: Morkel]
<conurb> join /##c++
sailias has joined #ruby
stkowski has joined #ruby
tatsuya_o has joined #ruby
vlad_starkov has quit [Ping timeout: 264 seconds]
emocakes has joined #ruby
Guest61118 is now known as verto|off
insulator has quit [Remote host closed the connection]
<Spaceghost|cloud> no
toto- has quit [Ping timeout: 252 seconds]
samphippen has joined #ruby
hoelzro is now known as hoelzro|away
insulator has joined #ruby
<Spaceghost|cloud> /join #c# if you have to join any c-ish channel
jjbohn has joined #ruby
tatsuya__ has quit [Ping timeout: 264 seconds]
perlsyntax has joined #ruby
philcrissman has quit [Remote host closed the connection]
Targen has quit [Ping timeout: 248 seconds]
JaTochNietDan has joined #ruby
<JonnieCache> no join #c++ its great
cb0ss has quit [Read error: Connection reset by peer]
<conurb> Spaceghost|cloud: sorry, juste pebkac :)
<JonnieCache> and #c you will have a whale of a time
ndrei has quit [Read error: Connection reset by peer]
<JonnieCache> its a veritable hootenanny in there
* Spaceghost|cloud doesn't believe in the c communities
<JonnieCache> in an existential sense?
abalsam has quit [Ping timeout: 240 seconds]
asym has joined #ruby
samphippen has quit [Quit: Computer has gone to sleep.]
afarazit|atno has joined #ruby
nkr has joined #ruby
philcrissman has joined #ruby
emocakes has quit [Quit: emocakes]
mikeg has joined #ruby
mboro has quit [Quit: leaving]
nazty has quit [Remote host closed the connection]
cobragoat has joined #ruby
end_guy has quit [Ping timeout: 276 seconds]
skcin7 has joined #ruby
robacarp_ has joined #ruby
eian has quit [Quit: Leaving]
robacarp_ is now known as Guest6944
krawchyk has quit [Remote host closed the connection]
pcarrier has quit []
krawchyk has joined #ruby
jaequery has quit [Quit: Computer has gone to sleep.]
robacarp has quit [Ping timeout: 255 seconds]
benlieb has joined #ruby
benlieb has quit [Read error: Connection reset by peer]
benlieb has joined #ruby
swex has joined #ruby
rcsheets has joined #ruby
browndawg has joined #ruby
im0b has joined #ruby
browndawg has quit [Max SendQ exceeded]
jhowarth__ has joined #ruby
DatumDrop has joined #ruby
browndawg has joined #ruby
browndawg has quit [Max SendQ exceeded]
Guest6944 has quit [Ping timeout: 255 seconds]
robacarp has joined #ruby
karasawa has quit [Ping timeout: 246 seconds]
browndawg has joined #ruby
robacarp is now known as Guest98113
tatsuya_o has quit [Ping timeout: 248 seconds]
thisirs has quit [Read error: Connection reset by peer]
swex_ has quit [Ping timeout: 252 seconds]
nomenkun has quit [Remote host closed the connection]
dmiller1 has joined #ruby
apeiros has joined #ruby
rdark has quit [Read error: Operation timed out]
pcarrier has joined #ruby
jacktrick has joined #ruby
undersc0re97 has quit [Quit: Live from Pyongyang DPRK this is...]
aedorn has quit [Quit: Leaving]
kold_ has joined #ruby
king313 has joined #ruby
cobragoat has quit [Ping timeout: 276 seconds]
aces23up has quit [Read error: Connection reset by peer]
aces1up has joined #ruby
thinkclay has joined #ruby
etcetera has joined #ruby
rdark has joined #ruby
pcarrier has quit [Ping timeout: 252 seconds]
otters has joined #ruby
d2dchat has joined #ruby
undersc0re97 has joined #ruby
a_a_g has quit [Quit: Leaving.]
dmiller1 has quit [Ping timeout: 252 seconds]
alvaro_o has joined #ruby
maxmanders has quit [Quit: Computer has gone to sleep.]
pcarrier has joined #ruby
BizarreCake has joined #ruby
maxmanders has joined #ruby
Udom0 has joined #ruby
nathancahill has joined #ruby
jgrevich has joined #ruby
mpfundstein has quit [Ping timeout: 255 seconds]
r0f0 has quit [Quit: Leaving]
kold_ has quit [Remote host closed the connection]
maletor has joined #ruby
F1skr has quit [Quit: WeeChat 0.3.9.2]
osaut has quit [Ping timeout: 255 seconds]
jduan1981 has joined #ruby
jacktrick has quit [Quit: Leaving]
cb0ss has joined #ruby
jerius has quit []
cb0ss has quit [Client Quit]
drewtemp has joined #ruby
arturaz has joined #ruby
Virunga has joined #ruby
denken has quit [Quit: leaving]
blueOxigen has joined #ruby
hakunin has joined #ruby
bluOxigen has quit [Ping timeout: 255 seconds]
headius has joined #ruby
jerius has joined #ruby
Joel_____ is now known as Joel
adeponte has joined #ruby
Joel has quit [Changing host]
Joel has joined #ruby
sayan has joined #ruby
sayan has joined #ruby
bitcrave has joined #ruby
obryan has joined #ruby
etcetera has quit []
jaequery has joined #ruby
conurb has quit [Remote host closed the connection]
rakl has quit [Quit: sleeping]
conurb has joined #ruby
cobragoat has joined #ruby
etcetera has joined #ruby
obryan has quit [Read error: Connection reset by peer]
artOfWar has joined #ruby
cjs226 has quit [Ping timeout: 244 seconds]
rads has joined #ruby
hotovson has quit [Remote host closed the connection]
Michae___ has joined #ruby
wf2f has quit []
cobragoat has quit [Ping timeout: 240 seconds]
miskander has quit [Quit: miskander]
jgrevich_ has joined #ruby
d2dchat has quit [Remote host closed the connection]
alex__c2022_ has joined #ruby
Zolo has quit [Remote host closed the connection]
timonv has quit [Ping timeout: 276 seconds]
alex__c2022 has quit [Ping timeout: 260 seconds]
alex__c2022_ is now known as alex__c2022
francisfish has quit [Remote host closed the connection]
jgrevich has quit [Ping timeout: 276 seconds]
jgrevich_ is now known as jgrevich
chussenot has quit [Quit: chussenot]
Xeago has quit [Remote host closed the connection]
lord4163 has joined #ruby
<lord4163> hi
<lord4163> I am trying Shoes but I get this error when I run it uninitialized constant Shoes
cdt has quit [Quit: Ex-Chat]
dukedave has joined #ruby
jerius has quit []
jerius has joined #ruby
joeycarmello has joined #ruby
rakl has joined #ruby
insulator has quit [Remote host closed the connection]
Virunga has quit [Remote host closed the connection]
pcarrier has quit []
cjs226 has joined #ruby
templaedhel has joined #ruby
chussenot has joined #ruby
mafolz has quit [Remote host closed the connection]
apeiros has quit [Remote host closed the connection]
havenn has joined #ruby
geekbri has quit [Remote host closed the connection]
filipe has quit [Remote host closed the connection]
_br_ has quit [Excess Flood]
<JMcAfreak> Shoes is pretty old. why the lucky stiff created it, but disappeared from EVERYWHERE a while ago.
Astralum has joined #ruby
squidBits has joined #ruby
Astralum is now known as Guest47587
<lord4163> jMcAfreak: So what would I use instead of it?
dwu1 has joined #ruby
<JMcAfreak> what are you trying to do?
zeade has joined #ruby
maxmanders has quit [Quit: Computer has gone to sleep.]
_br_ has joined #ruby
<lord4163> learning about gui's in ruby ?
<havenn> lord4163: tk or wx
krawchyk has quit [Remote host closed the connection]
kjellski_ has joined #ruby
twoism has joined #ruby
kjellski_ has left #ruby [#ruby]
<workmad3> JMcAfreak: there are maintained forks of shoes still :) https://github.com/ashbb/green_shoes
<JMcAfreak> workmad3: aha. That's good to know
* Kovensky wishes qt5 worked in ruby
<workmad3> JMcAfreak: that particular one actually pushes shoes into rubygems :)
<lord4163> what about qt or gtk?
<aedornv> Kovensky: me too. I want my Wayland compositer
<JMcAfreak> lord4163: you may want to look at workmad3's comments. There is a fork of shoes out there
sn0wb1rd has quit [Quit: sn0wb1rd]
<JMcAfreak> workmad3: sweet.
denken has joined #ruby
<Kovensky> it seems that qt is c++-only though
<Kovensky> or at least ALL bindings eventually are abandoned and die
kold_ has joined #ruby
<Kovensky> that is true of the Java bindings, of the Perl bindings, of the Ruby bindings, of the D bindings...
Ontolog has joined #ruby
<JMcAfreak> qt and gtk are probably not [good] options to my knowledge
end_guy has joined #ruby
<Kovensky> qt is pretty much the least bad option for guis these days though
<aedornv> Kovensky: I think the Python bindings keep up to date
<workmad3> Kovensky: why does this surprise you? Qt was bought by nokia, and if there's one thing Nokia is good at, it's destroying any and all developer communities around their stuff
<JMcAfreak> workmad3: ew.
<aedornv> But to be fair, qtbindings for Ruby (the actual gem called qtbindings) was recently updated and it does still work with 4.9.x so
<Kovensky> gtk has text rendering and IME issues on windows, plus their stupid file dialog
<workmad3> Kovensky: although a quick google and it seems that Qt has at least been sold off again, so maybe the situation will improve again soon :)
<aedornv> workmad3: Nokia doesn't own Qt anymore
<Kovensky> wx is atrocious on anything other than windows
<Kovensky> tk is ugly everywhere
<Kovensky> cocoa is osx only (gnustep doesn't count)
<JMcAfreak> lord4163: so yeah... try out green_shoes, then see if you need any more help
<workmad3> but that's only been the case for the last 4 months :)
<havenn> ooooh, Ruby Gnome team picked up Yorick's gtk3 project! :D
<aedornv> Digia owns Qt now, and most of the original developers that work on Qt are still there
<aedornv> (from the Trolltech days)
<lord4163> Ah ok
Banistergalaxy has quit [Remote host closed the connection]
apeiros has joined #ruby
<Kovensky> qt is the onlt toolkit I'm aware of that is equally only slightly bad on all platforms
<workmad3> aedornv: which is good :) as I said, hopefully that'll mean the situation will improve again now
tPl0ch has joined #ruby
<lord4163> can i install green shoes with gem?
<workmad3> lord4163: yes
<lord4163> green_shoes the package is called?
<aedornv> gtk3 on Ruby 2.0 ... well that's interesting at least
<Kovensky> heh
_br_ has quit [Excess Flood]
<Kovensky> looking forward to Enumerator#lazy :3
a_a_g has joined #ruby
<aedornv> I don't want to use gtk though
jduan1981 has quit [Quit: jduan1981]
_br_ has joined #ruby
* Kovensky once wrote a chain of like 10 map/grep calls in perl
krawchyk has joined #ruby
a_a_g has quit [Client Quit]
<havenn> workmad3: ooh, green_shoes looks awesome!
maxmanders has joined #ruby
Virunga has joined #ruby
gyre008 has quit [Read error: Connection reset by peer]
brianpWins has joined #ruby
<lord4163> but basically green shoes is an updated version of shoes, syntax is the same?
gyre007 has joined #ruby
emocakes has joined #ruby
tatsuya_o has joined #ruby
<lord4163> Installation failed :(
hukl has joined #ruby
maxmanders has quit [Client Quit]
a_a_g has joined #ruby
tatsuya_o has quit [Read error: Connection reset by peer]
<havenn> lord4163: do you have gtk+ installed?
tatsuya_o has joined #ruby
<lord4163> I dont know?
luckyruby has joined #ruby
rippa has quit [Read error: Connection reset by peer]
rippa has joined #ruby
Vainoharhainen has quit [Quit: Leaving...]
<lord4163> What is it? GTK+?
moshee has quit [Ping timeout: 252 seconds]
moshee has joined #ruby
moshee has quit [Changing host]
moshee has joined #ruby
_br_ has quit [Excess Flood]
gyre007 has quit [Remote host closed the connection]
breakingthings has quit []
carloslopes has quit [Remote host closed the connection]
gyre007 has joined #ruby
_br_- has joined #ruby
_br_- has quit [Excess Flood]
_br_ has joined #ruby
maxmanders has joined #ruby
cobragoat has joined #ruby
<Kovensky> wth, suddenly phone rebooted :S
Elhu has quit [Quit: Computer has gone to sleep.]
sn0wb1rd has joined #ruby
<lord4163> any other alternative which works? :P
<Kovensky> anyway greedy map/grep ofc made that one function explode the memory use of the script when called, specially with a long list :(
maxmanders has quit [Client Quit]
tjbiddle has joined #ruby
dmiller1 has joined #ruby
abalsam has joined #ruby
ExxKA has quit [Quit: This computer has gone to sleep]
mikepack has quit [Remote host closed the connection]
JumpMast3r has quit [Quit: JumpMast3r]
brianpWins has quit [Quit: brianpWins]
crank_ has quit [Ping timeout: 260 seconds]
Criztian has joined #ruby
kevin_e has quit [Ping timeout: 264 seconds]
llaskin has joined #ruby
llaskin has quit [Changing host]
llaskin has joined #ruby
dmiller1 has quit [Ping timeout: 246 seconds]
syamajala has joined #ruby
eldariof has joined #ruby
<atmosx> anyone uses kdevelop as a ruby ide?
<atmosx> I wonder
Udom0 has left #ruby [#ruby]
skcin7 has quit []
<syamajala> anyone use ruby-libnotify?
<llaskin> hi, I was able to isntall the ruby gem curb version 0.8.3 on windows using instructions from here: http://beginrescue.blogspot.com/2010/07/installing-curb-with-ruby-191-in.html but am getting errors that say "The specified module could not be found. - C:/Ruby193/lib/ruby/gems/1.9.1/gems/curb-0.8.3/lib/curb_core.so (LoadError)"
syamajala has quit [Client Quit]
<llaskin> any suggestions?
syamajala has joined #ruby
Criztian has quit [Remote host closed the connection]
Guest47587 is now known as Astrals
Coolhand has quit [Remote host closed the connection]
slainer68 has quit [Remote host closed the connection]
zommi has joined #ruby
osaut has joined #ruby
<carlzulauf> ruby and curl on windows. you are a brave man llaskin
<Kovensky> speaking of "random gem on windows", celluloid-io hardcodes parsing /etc/resolv.conf and barfs if parsing fail :(
<llaskin> carlzulauf: i just want it to work:)
<Kovensky> ...which it ofc always will on non-unix
nik_-_ has joined #ruby
Coolhand|laptop has joined #ruby
<carlzulauf> llaskin: if work-at-all-costs is your think, i'm pretty sure an ubuntu/ubuntu-server vm would have you up and running quick with curb
vlad_starkov has joined #ruby
kil0byte has quit [Remote host closed the connection]
io_syl has joined #ruby
drewtemp has quit [Quit: drewtemp]
<carlzulauf> but as for windows, I'm sure its possible but not sure how
zommi has quit [Remote host closed the connection]
<carlzulauf> wait. i'm on windows and i have a gem that uses curb. maybe worth trying...
kold_ has quit [Remote host closed the connection]
space0022s has quit [Quit: Page closed]
<aedornv> ooh... 1.9.3-p374
phwd has joined #ruby
chrismcg is now known as zz_chrismcg
jblack_ has joined #ruby
shevy has quit [Ping timeout: 264 seconds]
<phwd> what's the correct way to pull a reponse using net/http? I am using http.get('http://graph.facebook.com/boo', nil) which seems to be the wrong syntax or something
ilyam has joined #ruby
zommi has joined #ruby
jarjar_prime has quit [Quit: Ready? Set? Go!]
dfr|work has quit [Remote host closed the connection]
<llaskin> carlzulauf: I tried to copy my core.so over from my ubuntu isntall(develop on Windows, run on linux), and it blew up in a different way
j^2 has joined #ruby
<llaskin> surprising the linux version for 384k, the windows one was 100k
hukl has quit [Quit: Linkinus - http://linkinus.com]
sambio has quit [Ping timeout: 255 seconds]
workmad3 has quit [Ping timeout: 240 seconds]
gyre008 has joined #ruby
Asher has quit [Ping timeout: 245 seconds]
<fuzai> Hey how can I do math with a string? puts "You rolled a " + rand(5) + 1 ?
<carlzulauf> llaskin: on ubuntu you shouldn't be messing with .so files directly. that's what your package manager is for
mercwithamouth has joined #ruby
<carlzulauf> fuzai: encapsulate: "You rolled a " + (rand(5) + 1)
<fuzai> oh ok cool
benlieb has quit [Quit: benlieb]
ndboost has joined #ruby
timonv has joined #ruby
<llaskin> carlzulauf: no i mean, i tried SCP'ing from linxu to my windows box to see if the same file would work(that has worked in the past)
dmerrick has joined #ruby
j^2 has quit [Quit: leaving]
<llaskin> i actuall got it
<llaskin> hahaha
ddd has joined #ruby
<llaskin> i installed it, added it t omy path from isntructions on that webpage...but didnt' restart rubymine
<llaskin> so it didn't get the new path
j^2 has joined #ruby
<llaskin> hahaha
gyre007 has quit [Ping timeout: 272 seconds]
browndawg has quit [Quit: Leaving.]
<fuzai> >> puts "You rolled a " + ( rand(5) + 1 )
<eval-in> Fuzai: Output: "/tmp/execpad-deef08743ad5/source-deef08743ad5:1:in `+': can't convert Fixnum into String (TypeError)\n\tfrom /tmp/execpad-deef08743ad5/source-deef08743ad5:1:in `<main>'\n" (http://eval.in/6932)
<fuzai> ^^
adambeynon has quit [Quit: ["Textual IRC Client: www.textualapp.com"]]
sayan has quit [Quit: Leaving]
baphled has quit [Ping timeout: 276 seconds]
phantasm66 has quit [Quit: *poof*]
Liothen has quit [Remote host closed the connection]
elico has joined #ruby
mahmoudimus has joined #ruby
jduan1981 has joined #ruby
tvw has quit [Ping timeout: 260 seconds]
phantasm66 has joined #ruby
phantasm66 has quit [Changing host]
phantasm66 has joined #ruby
Asher has joined #ruby
ndboost has quit [Ping timeout: 260 seconds]
<phwd> xybre: checking
shevy has joined #ruby
bricker`1ork is now known as bricker`work
bricker has quit [Remote host closed the connection]
bricker`LA has joined #ruby
bricker`LA is now known as bricker
bricker is now known as bricker`LA
bricker`work is now known as bricker
sepp2k1 has joined #ruby
Coolhand|laptop_ has joined #ruby
ilyam has quit [Quit: ilyam]
Coolhand|laptop has quit [Ping timeout: 244 seconds]
gyre008 has quit [Remote host closed the connection]
sepp2k has quit [Ping timeout: 248 seconds]
gyre007 has joined #ruby
jgarvey has joined #ruby
phantasm66 has quit [Quit: *poof*]
baphled has joined #ruby
dustint has quit [Quit: Leaving]
<fuzai> Proper answer was to add .to_s after the encapsulation
nomenkun has joined #ruby
dustint has joined #ruby
phantasm66 has joined #ruby
phantasm66 has quit [Changing host]
phantasm66 has joined #ruby
<aedornv> >> puts "You rolled a #{rand(5) + 1}"
<eval-in> aedornv: Output: "You rolled a 1\n" (http://eval.in/6933)
yacks has quit [Remote host closed the connection]
yfeldblum has quit [Quit: Leaving]
<heftig> aedornv: was that supposed to be a six-sided die? because it's not
<aedornv> heftig: *shrug* It was from fuzai ...
<heftig> rand(1..6)
<heftig> fuzai: ^
timmow has quit [Ping timeout: 252 seconds]
<fuzai> hmmm
<aedornv> maybe it was really a 1d5 +1!
<phwd> xybre: I am getting a "Connection reset by peer" using the cheatsheet method, I feel as though it's something really simple, here is a skeleton from what I am working from https://gist.github.com/4558367
<apeiros> and with rand(n)+m it'd be rand(6)+1
<heftig> aedornv: rand(5)+1 is 1d5, not 1d5+1
<fuzai> no it's not i thought rand was from 0 to the max number - 1
<fuzai> well thanks for the heads up
<apeiros> rand(n) gives n possible results, i.e. 0-n
<apeiros> gah, 0-(n-1)
<fuzai> so it does then
<aedornv> ... 1d4 +1!
brianpWins has joined #ruby
<aedornv> Well, last I checked there was no 5 sided die use in D&D, so that makes way more sense as a 4
j^2 has quit [Quit: leaving]
Guest98113 is now known as robacarp
j^2 has joined #ruby
<heftig> aedornv: 1d4+1, you'd need rand(4) + 2
Criztian has joined #ruby
syamajala has quit [Quit: leaving]
<aedornv> It's far too early for me to be doing basic addition.
Criztian has quit [Remote host closed the connection]
danishman has joined #ruby
krawchyk_ has joined #ruby
hydrozen has joined #ruby
banisterfiend is now known as banister`cnc
chrismhough has joined #ruby
atmosx has quit [Quit: And so the story goes…]
fyolnish has quit [Remote host closed the connection]
krawchyk has quit [Ping timeout: 255 seconds]
nomenkun has quit [Remote host closed the connection]
Zolo has joined #ruby
c0rn has joined #ruby
grzywacz has quit [Ping timeout: 255 seconds]
chrismhough has left #ruby [#ruby]
syamajala has joined #ruby
chrismhough has joined #ruby
phrame has quit [Read error: Operation timed out]
phrame_ has joined #ruby
rotor has quit [Read error: Operation timed out]
gyre008 has joined #ruby
phrame_ is now known as phrame
<aedornv> I find it hard to get things done at the office... where everyone is cubes and I can hear everything. Anyone else deal with that? I have one guy on the phone constantly to my right, and another guy that watches TV shows and plays video games all day to my left
rotor has joined #ruby
rmc3 has quit [Ping timeout: 255 seconds]
willcodeforfoo has quit [Ping timeout: 255 seconds]
malte_ has quit [Quit: malte_]
rmc3 has joined #ruby
willcodeforfoo has joined #ruby
<apeiros> aedornv: wtf? a guy in the office watches tv shows all day? o0
chrismhough has quit [Client Quit]
epitron has quit [Ping timeout: 255 seconds]
<Kuifje> lol
epitron has joined #ruby
epitron has quit [Changing host]
epitron has joined #ruby
chrismhough has joined #ruby
<aedornv> apeiros: and plays video games. Mostly League of Legends
<apeiros> aedornv: and he doesn't get fired? o0
chrismhough has quit [Client Quit]
chussenot_ has joined #ruby
chussenot_ has quit [Client Quit]
chrismhough has joined #ruby
mjolk has joined #ruby
az7ar has joined #ruby
chrismhough has quit [Client Quit]
elaptics is now known as elaptics`away
drewtemp has joined #ruby
<aedornv> apeiros: Well... it's hard to get fired here. Very hard. The guy that should be helping me on all these projects hasn't done a single thing in the past 4 months. Just listens to talk radio all day in his cube.
syamajala has quit [Client Quit]
gyre007 has quit [Ping timeout: 260 seconds]
yfeldblum has joined #ruby
hasse has quit [Ping timeout: 245 seconds]
syamajala has joined #ruby
gyre007 has joined #ruby
<apeiros> tell them to help or get the fuck out of the office
drewtemp has quit [Client Quit]
etcetera has quit []
<apeiros> if they don't get fired, they can at least leave the people who work alone…
chrismhough has joined #ruby
foofoobar has quit [Quit: Computer has gone to sleep.]
wallerdev has joined #ruby
gyre008 has quit [Ping timeout: 244 seconds]
<apeiros> amazing… I wonder where you work and how it comes that people can get off with that…
krz has quit [Quit: krz]
marr has quit [Ping timeout: 255 seconds]
jaequery has quit [Ping timeout: 255 seconds]
mgeorgi has joined #ruby
<aedornv> apeiros: Actiontec Electronics.. and we're just too laid back in some cases. Most of it stems from our HR lady being absolutely terrified of having an employee coming back and suing for wrongful termination ...
chussenot has quit [Ping timeout: 256 seconds]
Coolhand|laptop_ has quit [Ping timeout: 264 seconds]
Coolhand|laptop has joined #ruby
<aedornv> and the CEO doesn't care as long as profit is increased by X dollars every year, which it has been
<robacarp> aedornv: I work in a similar place.
chrismhough has quit [Client Quit]
perlsyntax has quit [Quit: Leaving]
asteve has quit [Quit: Computer has gone to sleep.]
tps_ has quit [Read error: Connection reset by peer]
<apeiros> and payment is good?
<aedornv> In reality, only about 20 people run the company out of the 100+
chrismhough has joined #ruby
tps_ has joined #ruby
etcetera has joined #ruby
syamajala has quit [Quit: leaving]
<robacarp> apeiros: well, when I started, it wasn't. but they went through and spiced up our wages every 6mo over the last two years
<aedornv> And if those 20 or so left, it would implode over night .. but yes, pay is okay. It's average , anyway.
<robacarp> now we're at the literal average.
zommi has quit [Ping timeout: 248 seconds]
end_guy has quit [Ping timeout: 276 seconds]
BizarreCake has quit [Quit: Leaving]
aeontech has joined #ruby
McAfreak has joined #ruby
clocKwize has joined #ruby
syamajala has joined #ruby
JMcAfreak has quit [Remote host closed the connection]
McAfreak has quit [Remote host closed the connection]
jaequery has joined #ruby
dougireton has joined #ruby
JMcAfreak has joined #ruby
<aedornv> robacarp: Is yours a semi-Chinese company?
end_guy has joined #ruby
dougireton has quit [Client Quit]
interactionjaxsn has quit [Remote host closed the connection]
afarazit|atno has quit [Read error: Connection reset by peer]
sorbo_ has joined #ruby
afarazit|atno has joined #ruby
chrismhough has quit [Client Quit]
nomenkun has joined #ruby
syamajala has quit [Client Quit]
jaequery_ has joined #ruby
jaequery has quit [Read error: Connection reset by peer]
breakingthings has joined #ruby
DuoSRX has quit [Remote host closed the connection]
interactionjaxsn has joined #ruby
jaequery_ is now known as jaequery
McAfreak has joined #ruby
aeontech has left #ruby [#ruby]
jrist is now known as jrist-lunch
miskander has joined #ruby
JMcAfreak has quit [Disconnected by services]
sayan has joined #ruby
parallel21 has joined #ruby
McAfreak is now known as JMcAfreak
chrismhough has joined #ruby
chrismhough has left #ruby [#ruby]
carloslopes has joined #ruby
crank_ has joined #ruby
crank_ has quit [Remote host closed the connection]
<aedornv> I only ask because I know of several that are about the same. I think it's the same progress the US industry took for awhile ... until just recently when trimming people and running lean became somewhat standard. Wondering if those said companies will follow the same path eventually.
nathancahill has quit [Quit: nathancahill]
ddd has quit [Read error: Connection reset by peer]
timonv has quit [Remote host closed the connection]
zastern has joined #ruby
timonv has joined #ruby
asteve has joined #ruby
rdark has quit [Quit: leaving]
llaskin1 has joined #ruby
dougireton has joined #ruby
aaroncm has joined #ruby
nkts has quit [Ping timeout: 248 seconds]
braoru has joined #ruby
banister`cnc has quit [Remote host closed the connection]
macmartine has joined #ruby
cantonic_ has joined #ruby
jjbohn is now known as jjbohn|afk
llaskin has quit [Ping timeout: 264 seconds]
zommi has joined #ruby
timonv has quit [Ping timeout: 272 seconds]
Hanmac_ has joined #ruby
kenneth has joined #ruby
cantonic has quit [Ping timeout: 256 seconds]
cantonic_ is now known as cantonic
<kenneth> hey, how would you go about debugging memory leaks in ruby?
carloslopes has quit [Remote host closed the connection]
mgeorgi has quit [Remote host closed the connection]
<Hanmac_> put it under water and where the bubbles came out, there is the leak
<kenneth> lol; if only programming was so simple :)
Elhu has joined #ruby
Banistergalaxy has joined #ruby
Yorzack has joined #ruby
<Hanmac_> what kind of leaks are you looking for? in a C-ext or in pure ruby code? (or in some kind of hybrid?)
mahlon has quit [Quit: nine foot long outhouse ladle]
ged has quit [Quit: WeeChat 0.3.8]
io_syl has quit [Ping timeout: 252 seconds]
<kenneth> ruby code / gc
<kenneth> i have a program that crashes with can't allocate memory
dougireton has quit [Quit: Leaving.]
jeremy``` has left #ruby [#ruby]
jjbohn|afk is now known as jjbohn
chrismhough has joined #ruby
sayan has quit [Quit: Leaving]
<Hanmac_> kenneth then a pastie may helpfull ... do you use IO objects, and if yes how do you open them?
Elhu has quit [Client Quit]
icole has joined #ruby
io_syl has joined #ruby
<Yorzack> Hello, i'm looking for help (newbie here). I have 2 arrays of 4 integers, I want to check the match for both number AND position so that [1,2,3,4] and [1,4,2,3] just make the array [1]. Is it possible?
shorts has quit [Quit: shorts]
mark_locklear has quit [Ping timeout: 255 seconds]
<heftig> a.select.with_index { |x,i| x == b[i] }
etcetera has quit []
<Yorzack> i love you
<kenneth> should be fairly easy, Yorzack: a1.zip(a2).select {|t| t[0] == t[1] }.map {|t| t[0] }
<Yorzack> i love you both
slainer68 has joined #ruby
<Yorzack> thanks a lot
arietis has joined #ruby
grn_ has joined #ruby
gener1c has joined #ruby
gener1c has quit [Changing host]
gener1c has joined #ruby
etcetera has joined #ruby
JJMalina has joined #ruby
Blue_Ice_ has joined #ruby
Blue_Ice_ has quit [Changing host]
Blue_Ice_ has joined #ruby
clocKwize has quit [Quit: clocKwize]
{^_^}_______ has quit [Ping timeout: 255 seconds]
main has joined #ruby
clocKwize has joined #ruby
{^_^}_______ has joined #ruby
<Hanmac_> what about:
robert___ has joined #ruby
<Hanmac_> >> a=[1,2,3,4];b=[1,4,2,3] ; a.each_with_object(b).select.with_index {|(x,y),i| x==y[i]}.map(&:first)
<eval-in> Hanmac_: Output: "" (http://eval.in/6934)
fschuindt has joined #ruby
<Hanmac_> >> a=[1,2,3,4];b=[1,4,2,3] ; p a.each_with_object(b).select.with_index {|(x,y),i| x==y[i]}.map(&:first)
<eval-in> Hanmac_: Output: "[1]\n" (http://eval.in/6935)
pcarrier has joined #ruby
Asher has quit [Quit: Leaving.]
udk has joined #ruby
Drager_ has joined #ruby
Blue_Ice has quit [Ping timeout: 245 seconds]
grn has quit [Ping timeout: 245 seconds]
mikalv has joined #ruby
mikalv has quit [Ping timeout: 245 seconds]
Drager has quit [Ping timeout: 245 seconds]
nateberkopec has quit [Ping timeout: 245 seconds]
madhatter has quit [Ping timeout: 245 seconds]
UdontKnow has quit [Ping timeout: 245 seconds]
carloslopes has joined #ruby
raddazong has joined #ruby
jphpsf- has joined #ruby
farleyknight has quit [Ping timeout: 246 seconds]
slainer68 has quit [Ping timeout: 264 seconds]
hydrozen has quit [Quit: Computer has gone to sleep.]
chrismhough has quit [Quit: chrismhough]
bakedb_ has quit [Read error: Operation timed out]
chrismhough has joined #ruby
rads has quit []
Blue_Ice_ is now known as Blue_Ice
gyre007 has quit [Ping timeout: 260 seconds]
<heftig> Hanmac_: that looks horribly convoluted
tps_ has quit [Quit: tps_]
rynkan has quit [Ping timeout: 260 seconds]
jphpsf has quit [Ping timeout: 260 seconds]
robert_ has quit [Ping timeout: 276 seconds]
phantasm66 has quit [Quit: *sleeeep….]
bakedb has joined #ruby
macmartine has quit [Quit: ["Textual IRC Client: www.textualapp.com"]]
tps_ has joined #ruby
<kenneth> i forgot about .map(&:first)
carloslopes has quit [Remote host closed the connection]
Kingy has joined #ruby
<kenneth> >> a, b = [1,2,3,4], [1, 4, 3, 2]; a.zip(b).select {|t| t[0] == t[1] }.map(&:first)
<eval-in> kenneth: Output: "" (http://eval.in/6937)
MattRB has joined #ruby
<kenneth> ugh
mark_locklear has joined #ruby
<Hanmac_> kenneth the difference is that your zip creats an big combined array ...
<kenneth> when i evaluate that in pry i get [1, 3] as output. wtf?
phantasm66 has joined #ruby
zommi1 has joined #ruby
dummey has quit [Ping timeout: 245 seconds]
gener1c has quit [Ping timeout: 244 seconds]
<kenneth> this eval-bot it broken!
advorak has quit [Ping timeout: 256 seconds]
<Hanmac_> kenneth the "problem" is that evalin only shows things that you print
<kenneth> oh!
<kenneth> >> a, b = [1,2,3,4], [1, 4, 3, 2]; p a.zip(b).select {|t| t[0] == t[1] }.map(&:first)
<eval-in> kenneth: Output: "[1, 3]\n" (http://eval.in/6938)
<kenneth> woo!
zommi has quit [Ping timeout: 248 seconds]
hydrozen has joined #ruby
<kenneth> Hanmac_: and yes, it's less memory efficient but more elegant imho
<Hanmac_> >> a=[1,2,3,4];b=[1,4,3,2] ; p a.to_enum(:zip,b).select {|(x,y)| x==y}.map(&:first)
<eval-in> Hanmac_: Output: "[1, 3]\n" (http://eval.in/6939)
<kenneth> even better, you could do this:
<heftig> less elegant than a.select.with_index { |x,i| x == b[i] } ? come on
<heftig> er, more X)
rynkan has joined #ruby
<apeiros> [a,b].transpose.select(&:==).transpose.first
kpshek has quit []
* apeiros wonders whether that even works
<kenneth> >> a, b, c = [1,4,3,2], [1,2,3,4], [1,2,4,3]; p a.zip(b, c).select {|a| a.reduce(&:==) }.map(&:first)
<eval-in> kenneth: Output: "/tmp/execpad-fb869accf64f/source-fb869accf64f:1: Invalid char `\\x1C' in expression\n[]\n" (http://eval.in/6940)
<kenneth> fail
mikepack has joined #ruby
<heftig> you can't reduce with ==
<heftig> that doesn't work
<apeiros> oh, &:== no worky :(
<Hanmac_> apeiros, it does not work with &:== :/
<kenneth> lame, sgiykd sgiykd ve avke ti
<kenneth> omg, touch typing fail
<breakingthings> I feel like you just typed a scandanavian language there.
<apeiros> >> a, b = [1,2,3,4], [1, 4, 3, 2]; [a,b].transpose.select { |a,b| a == b }.transpose.first
<eval-in> apeiros: Output: "" (http://eval.in/6941)
<apeiros> >> a, b = [1,2,3,4], [1, 4, 3, 2]; puts [a,b].transpose.select { |a,b| a == b }.transpose.first
<eval-in> apeiros: Output: "1\n3\n" (http://eval.in/6942)
<apeiros> that inspected output is annoying
<kenneth> wait, why can't you reduce with ==? i though == was a method like other operators
kirun has joined #ruby
<Hanmac_> >> p [a,b].transpose.select(&:uniq!).transpose.first
<eval-in> Hanmac_: Output: "/tmp/execpad-577e82de7153/source-577e82de7153:1:in `<main>': undefined local variable or method `a' for main:Object (NameError)\n" (http://eval.in/6943)
<heftig> because 1 == 1 is true, not 1
<kenneth> >> a, b, c = [1,4,3,2], [1,2,3,4], [1,2,4,3]; p a.zip(b, c).select {|a| a.reduce(&:==) }.map(&:first)
<eval-in> kenneth: Output: "[]\n" (http://eval.in/6944)
<heftig> so (1 == 1) == 1 is false
<apeiros> Hanmac_: why uniq! instead of uniq - it may return nil…
piotr__ has joined #ruby
<Hanmac_> apeiros that is EXCAXTLY why i use it :D
<kenneth> oh yeah, that makes sense, silly me
_nitti has joined #ruby
reset has joined #ruby
* Hanmac_ gets "make sense" points
piotr_ has quit [Ping timeout: 248 seconds]
<apeiros> Hanmac_: oh, but then wouldn't it be reject?
<apeiros> ah, no
afarazit|atno is now known as afarazit
afarazit is now known as atno
* apeiros confused, goes back to whatever he was doing
Targen has joined #ruby
whowantstolivef1 has joined #ruby
zommi1 has quit [Remote host closed the connection]
<kenneth> it's kind of lame that there's no way to evaluate equality of > 2 things
_nitti has quit [Remote host closed the connection]
<kenneth> ruby needs a (eq 1 2 3) function
atmosx has joined #ruby
sorbo_ has quit [Quit: sorbo_]
tommyvyo has quit [Ping timeout: 248 seconds]
pcarrier has quit []
telli has quit [Remote host closed the connection]
kold_ has joined #ruby
<Hanmac_> kenneth the problem is that the block gets an Array object ... so it needed to be an Array function
pcarrier has joined #ruby
fyolnish has joined #ruby
philips_ has quit [Excess Flood]
hydrozen has quit [Quit: Computer has gone to sleep.]
atmosx has quit [Client Quit]
Goles has joined #ruby
timonv has joined #ruby
ping-pong has quit [Ping timeout: 276 seconds]
falsetto has joined #ruby
atmosx has joined #ruby
fyolnish has quit [Ping timeout: 244 seconds]
volk_ has quit [Quit: volk_]
chriskk has joined #ruby
kpshek has joined #ruby
chrismhough has quit [Quit: chrismhough]
tatsuya__ has joined #ruby
chrismhough has joined #ruby
moshef has joined #ruby
zommi has joined #ruby
appamatto has joined #ruby
<appamatto> Is there a frontrunner for ruby web service frameworks?
tatsuya_o has quit [Ping timeout: 264 seconds]
<kenneth> appamatto: you mean, rest?
tps_ has quit [Quit: tps_]
<kenneth> or SOA
<havenn> Rack?
zommi has quit [Remote host closed the connection]
zommi has joined #ruby
nathancahill has joined #ruby
JohnBat26 has quit [Quit: KVIrc 4.3.1 Aria http://www.kvirc.net/]
biff_tannen has quit [Read error: Connection reset by peer]
zommi has quit [Client Quit]
fyolnish has joined #ruby
maletor has quit [Quit: Computer has gone to sleep.]
apeiros has quit [Remote host closed the connection]
<appamatto> I heard about Sinatra a while ago
<appamatto> Curious whether that or Rails is more popular for web services now
apeiros has joined #ruby
jblack_ has quit [Ping timeout: 264 seconds]
<kenneth> appamatto: sinatra is what i usually recommend
* Hanmac_ uses ruby for better things than r
<Hanmac_> we
<Hanmac_> web
<kenneth> appamatto: i use kenji myself
c0rn has quit [Ping timeout: 248 seconds]
clocKwize has quit [Quit: clocKwize]
colonolGron has joined #ruby
<colonolGron> hi
apeiros has quit [Read error: Connection reset by peer]
apeiros has joined #ruby
dmiller1 has joined #ruby
philips_ has joined #ruby
hydrozen has joined #ruby
<appamatto> kenneth: What is kenji?
atmosx has quit [Quit: And so the story goes…]
<kenneth> appamatto: one of my pet projects, a backend web framework
miskander has quit [Quit: miskander]
<colonolGron> i try to use Ruby-IRC. installed it with gem. and then wrote the "require 'Ruby-IRC'". ruby sais it cant find that. isnt the gem name the name i have to write after the require?
Mchl has quit [Quit: ZNC - http://znc.sourceforge.net]
<colonolGron> i am just starting with ruby
zommi has joined #ruby
fyolnish has quit [Ping timeout: 252 seconds]
c0rn has joined #ruby
DatumDrop has quit [Remote host closed the connection]
<Hanmac_> colonolGron whats your ruby version?
marr has joined #ruby
Mchl has joined #ruby
ping-pong has joined #ruby
<colonolGron> Hanmac_: 1.8.7
MattRB has quit [Quit: This computer has gone to sleep]
krawchyk_ has quit [Remote host closed the connection]
<appamatto> kenneth: does Sinatra have things like ActiveRecord?
Virunga has quit [Remote host closed the connection]
<arturaz> appamatto, you can use ActiveRecord as a separate lib
<arturaz> :)
<kenneth> appamatto: no, the idea is you pick your pieces. you can use active record with sinatra if you'd like, or another orm
timonv has quit [Remote host closed the connection]
<kenneth> appamatto: but really, don't. ORMs are evil
<Hanmac_> colonolGron do an require "rubygems" before you require gems
jenrzzz has joined #ruby
timonv has joined #ruby
<colonolGron> Hanmac_: what does it do?
<appamatto> kenneth: Don't ORMs give you a lot of things for free?
d2dchat has joined #ruby
kpshek has quit []
<kenneth> appamatto: they'll come back and bite you in the ass later
<kenneth> if you ever need to scale whatever it is you're making
<Hanmac_> colonolGron it does enable gems, so you can require them
lord4163 has left #ruby [#ruby]
Coolhand|laptop has quit [Remote host closed the connection]
interactionjaxsn has quit [Remote host closed the connection]
atmosx has joined #ruby
eldariof has quit []
Proshot is now known as prio
prio is now known as Proshot
miskander has joined #ruby
zommi has quit [Quit: Leaving.]
interactionjaxsn has joined #ruby
maletor has joined #ruby
foofoobar has joined #ruby
Coolhand has joined #ruby
cableray has joined #ruby
timonv has quit [Ping timeout: 240 seconds]
kpshek has joined #ruby
<colonolGron> Hanmac_: thank you. it worked. when i started informing myself about ruby i read somewhere that i shouldnt do a "require 'rubygems'" in source that i want to share with others, but they didnt say why.
kold_ has quit [Remote host closed the connection]
falsetto has quit [Quit: Computer has gone to sleep.]
<Hanmac_> in recent ruby it is done automaticly ... and IMO 1.8 should not be used anymore
Coolhand has quit [Remote host closed the connection]
<colonolGron> good to know!
miskander has quit [Client Quit]
n1x has joined #ruby
Jackneill has quit [Remote host closed the connection]
hydrozen has quit [Quit: Computer has gone to sleep.]
Vainoharhainen has joined #ruby
<Spaceghost|cloud> Yeah 1.9 pulled in rubygems.
<Spaceghost|cloud> So it's already there! And stop using 1.8 please.
Coolhand has joined #ruby
ndboost has joined #ruby
miskander has joined #ruby
jaygen has joined #ruby
moshee has quit [Ping timeout: 252 seconds]
<ndboost> can someone help with this
grzywacz has joined #ruby
moshee has joined #ruby
moshee has quit [Changing host]
moshee has joined #ruby
sambio has joined #ruby
<ndboost> i was in here two days ago
tjbiddle_ has joined #ruby
<ndboost> woop wrong channel
horofox has quit [Read error: Connection reset by peer]
jenrzzz has quit [Ping timeout: 255 seconds]
reset has quit [Quit: Leaving...]
<atmosx> ndboost: hey I remember you
<atmosx> lol
Michae___ has quit [Remote host closed the connection]
tjbiddle has quit [Ping timeout: 272 seconds]
tjbiddle_ is now known as tjbiddle
<Kovensky> https://gist.github.com/c8188956cd66c38feb1f <-- idgi... I quite liked 1.9's encoding system :(
<Kovensky> sounds to me more like someone butthurt about 1.8
braoru has quit [Quit: Leaving]
<Kovensky> (which I dare not touch with a 10km pole)
frem has joined #ruby
Virunga has joined #ruby
jfl0wers has quit [Quit: jfl0wers]
<Kovensky> he also complains about the grammar but ruby's grammar is still simpler than e.g. perl's
blaxter has quit [Quit: foo]
JMcAfreak has quit [Quit: They're coming to take me away, ha-haa!]
<Kovensky> (unless Moe really takes off, it's impossible to parse perl5 with anything other than *the* perl5 interpreter)
jenrzzz has joined #ruby
fermion has quit [Quit: Textual IRC Client: http://www.textualapp.com/]
<Kovensky> apeiros: why would one want named match spilling into locals anyway; oneliners?
kevin_e has joined #ruby
* Hanmac_ likes the Encoding system ... it gaves 100% control to the user :D
kil0byte has joined #ruby
etcetera has quit []
<colonolGron> there seem to be different versions of curses, like curses and ncurses? which one should one use?
Playground has joined #ruby
<Kovensky> it also tries pretty nicely to prevent you from doing the wrong thing
rads has joined #ruby
Virunga has quit [Read error: Operation timed out]
<Kovensky> it only does wrong stuff if you tell it to do wrong stuff
MattRB has joined #ruby
<Kovensky> e.g. you can't have non-ASCII characters in your source file without declaring encoding
<Kovensky> and, at least on celluloid-io's Sockets (which probably do it because standard sockets do), all strings are forced to be US-ASCII...
<Kovensky> ...which will promptly barf if you try to do anything to them without setting another encoding yourself
<Kovensky> (if the contents aren't actually US-ASCII that is)
moshef has left #ruby [#ruby]
osaut has quit [Quit: osaut]
<apeiros> Kovensky: hu? what?
<Kovensky> apeiros: just commenting on your reply to that gist
rippa has quit [Ping timeout: 252 seconds]
<aedornv> I've used throw/catch one time, and I can agree: It is "rarely useful, but useful nonetheless."
etcetera has joined #ruby
<apeiros> Kovensky: hm, I'm not aware of it having a name on its own
Norrin has left #ruby ["Textual IRC Client: www.textualapp.com"]
<Kovensky> it doesn't, I just came up with it
az7ar has quit [Quit: Leaving]
swarley-freenode is now known as swarley
jds_ has joined #ruby
danishman has quit [Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/]
<cr3> is there a preference between doing File.open('/some/file').each, or File.open('/some/file').each, or File.foreach('/some/file')?
jrajav has joined #ruby
interactionjaxsn has quit [Remote host closed the connection]
<arturaz> cr3, first two are the same?
<Hanmac_> cr3 ... not use open without block ... otherwise it bites in your ass
alvaro_o_ has joined #ruby
blueOxigen has quit [Ping timeout: 251 seconds]
Spitfire_ has quit [Changing host]
Spitfire_ has joined #ruby
Spitfire_ is now known as Spitfire
alvaro_o has quit [Ping timeout: 276 seconds]
kil0byte has quit [Remote host closed the connection]
albakry has joined #ruby
albakry has quit [Changing host]
albakry has joined #ruby
<Hanmac_> cr3 its like open your front door ... and then you dont close the door
DatumDrop has joined #ruby
kenneth has quit [Read error: Operation timed out]
<rismoney> anyone familiar with win32ole?
rads has quit []
swingha has quit [Quit: WeeChat 0.3.9.2]
kenneth has joined #ruby
bluOxigen has joined #ruby
falsetto has joined #ruby
Dreamer3__ has quit [Ping timeout: 240 seconds]
phantasm66 has quit [Quit: *sleeeep….]
interactionjaxsn has joined #ruby
a_a_g has quit [Quit: Leaving.]
tjbiddle has quit [Read error: Connection reset by peer]
MattRB has quit [Quit: This computer has gone to sleep]
tjbiddle has joined #ruby
rads has joined #ruby
kenneth has quit [Ping timeout: 244 seconds]
etcetera has quit []
JMcAfreak has joined #ruby
MattRB has joined #ruby
Dreamer3 has joined #ruby
jenrzzz has quit [Ping timeout: 240 seconds]
albakry has quit [Read error: Connection reset by peer]
<reactormonk> rismoney, nope
carloslopes has joined #ruby
<cr3> arturaz: sorry, the second was suppose to be each_line
_alejandro has joined #ruby
<Kovensky> cr3: there is no File#foreach
<Kovensky> oh, nvm, there is a File.foreach
<Kovensky> cr3: use File.foreach
<cr3> Kovensky: yeah, as Hanmac_ pointed out, no need to worry about closing the file. neato!
<Kovensky> yep
JMcAfreak has quit [Quit: They're coming to take me away, ha-haa!]
chrismhough has quit [Quit: chrismhough]
ryannielson has joined #ruby
JMcAfreak has joined #ruby
carloslopes has quit [Ping timeout: 272 seconds]
buibex has joined #ruby
whowantstolivef1 has quit [Quit: quit]
<ryannielson> Can anyone recommend any online Ruby tutorials? I'm creating a learning resources list, and I want to add some online resources in addition to the books I already have on the list.
JMcAfreak has quit [Client Quit]
llaskin1 has left #ruby [#ruby]
<Gate> ryannielson: railsguides; http://guides.rubyonrails.org/
kevin_e has quit [Ping timeout: 252 seconds]
<ryannielson> Gate: I'm looking for more of Ruby language specific stuff. Wanna get him working and understanding Ruby before hopping into Rails.
albakry has joined #ruby
Iszak has joined #ruby
<Gate> Huh, that was a brain fail. I read "online ruby" as "rails".... my bad.
Spooner has quit [Remote host closed the connection]
rickwinfrey has joined #ruby
<ryannielson> Gate: haha, I'll forgive you.
danieldocki has quit [Quit: Leaving...]
Zolo has quit [Remote host closed the connection]
JMcAfreak has joined #ruby
codezombie has quit [Quit: Linkinus - http://linkinus.com]
cableray has quit [Quit: cableray]
<JMcAfreak> goodness. That was a nightmare to set up.
<Gate> Its because I'm jumping between this channel and #rubyonrails. That's my story and I'm sticking to it.
<ryannielson> Gate: That, and I'm sure tons of people come in here asking Rails stuff.
maxmanders has joined #ruby
<Gate> ryannielson: tryruby.org
<Gate> Its pretty old, but its a super basic introduction to ruby/programming in general
rezzack has joined #ruby
<ryannielson> Gate: Ya that might be a decent one.
<ryannielson> Thanks
Spooner has joined #ruby
jfl0wers has joined #ruby
ChampS666 has joined #ruby
<rickwinfrey> Hello ^________^
Goles has quit [Quit: Computer has gone to sleep.]
aaronmacy has joined #ruby
bean|work has quit [Quit: Computer has gone to sleep.]
fyolnish has joined #ruby
yfeldblum has quit [Ping timeout: 272 seconds]
griffindy has quit [Quit: ["Textual IRC Client: www.textualapp.com"]]
<Gate> Yo
<ryannielson> aedornv: Cool thanks.
ryannielson has left #ruby [#ruby]
nathancahill has quit [Read error: Connection reset by peer]
segv- has quit [Read error: Connection reset by peer]
chrismhough has joined #ruby
segv- has joined #ruby
foofoobar has quit [Quit: Computer has gone to sleep.]
havenn has quit [Remote host closed the connection]
<ryanneufeld> Kovensky: i'm assuming that was meant for someone else?
hydrozen has joined #ruby
danieldocki has joined #ruby
otters has quit [Ping timeout: 256 seconds]
havenn has joined #ruby
<Kovensky> ryanneufeld: indeed
<Kovensky> it seems the guy I meant to link those to has PARTed the channel and tab complete picked you instead :P
Michael_ has joined #ruby
fyolnish has quit [Ping timeout: 252 seconds]
ryanneufeld has left #ruby [#ruby]
colonolGron has quit [Quit: leaving]
havenn has quit [Read error: No route to host]
havenn has joined #ruby
syamajala has joined #ruby
<fuzai> How do you terminate a Ruby eventmachine run block early?
<apeiros> kill -9!
* apeiros feels mighty helpful
<apeiros> (sorry)
Morkel has joined #ruby
banister`cnc has joined #ruby
maxmanders has quit [Quit: Computer has gone to sleep.]
zph has quit [Quit: Computer has gone to sleep.]
jrajav has quit [Quit: I tend to be neutral about apples]
otters has joined #ruby
<reactormonk> apeiros, pkill -9 ruby ;-)
jenrzzz has joined #ruby
[MAN] has joined #ruby
mneorr has quit [Remote host closed the connection]
<apeiros> pkill? I only know that as killall
<apeiros> is that some fancy gnuism?
* Hanmac_ likes xkill too
Vainoharhainen has quit [Quit: Leaving...]
<atmosx> xkill?
hydrozen has quit [Quit: Computer has gone to sleep.]
tPl0ch has quit [Ping timeout: 255 seconds]
Virunga has joined #ruby
<Hanmac_> it turns the cursor into an the "shotgun" :D
nkr has quit [Quit: Linkinus - http://linkinus.com]
interactionjaxsn has quit [Remote host closed the connection]
tenmilestereo has joined #ruby
bluOxigen has quit [Ping timeout: 272 seconds]
kenneth has joined #ruby
robotmay has quit [Remote host closed the connection]
arietis has quit [Quit: Textual IRC Client: http://www.textualapp.com/]
maxmanders has joined #ruby
yfeldblum has joined #ruby
<reactormonk> Hanmac_, :D
carlyle has quit [Remote host closed the connection]
banister`cnc has quit [Ping timeout: 260 seconds]
hydrozen has joined #ruby
tPl0ch has joined #ruby
bapa_ has quit []
jrist-lunch is now known as jrist
bapa has joined #ruby
falsetto has quit [Quit: Computer has gone to sleep.]
f03lipe has joined #ruby
anekos has quit [Ping timeout: 248 seconds]
ndboost has quit [Remote host closed the connection]
generalissimo has quit [Remote host closed the connection]
Xeago has joined #ruby
<Xeago> apeiros: you around?
Michael_ has quit [Remote host closed the connection]
jaygen has quit [Remote host closed the connection]
Michael_ has joined #ruby
dougireton has joined #ruby
maxmanders has quit [Ping timeout: 244 seconds]
kevin_e has joined #ruby
horofox has joined #ruby
Michael_ has quit [Remote host closed the connection]
ChampS666 has quit [Ping timeout: 252 seconds]
depassion has quit [Ping timeout: 248 seconds]
maxmanders has joined #ruby
danneu has quit [Quit: WeeChat 0.3.8]
Nisstyre has joined #ruby
Asher has joined #ruby
drewtemp has joined #ruby
ChampS666 has joined #ruby
end_guy has quit [Remote host closed the connection]
kevin_e has quit [Ping timeout: 244 seconds]
end_guy has joined #ruby
kpshek has quit []
kpshek has joined #ruby
dmiller1 has quit [Quit: WeeChat 0.3.9.2]
syamajala has quit [Ping timeout: 276 seconds]
dmiller has joined #ruby
nomenkun has quit [Remote host closed the connection]
emmanuelux has joined #ruby
syamajala has joined #ruby
Kingy_ has joined #ruby
n1x has quit [Ping timeout: 260 seconds]
tatsuya__ has quit [Remote host closed the connection]
jenrzzz has quit [Ping timeout: 246 seconds]
postmodern has joined #ruby
JumpMast3r has joined #ruby
interactionjaxsn has joined #ruby
Kingy has quit [Ping timeout: 272 seconds]
francisfish has joined #ruby
vlad_starkov has quit [Remote host closed the connection]
syamajala has quit [Quit: leaving]
reset has joined #ruby
workmad3 has joined #ruby
maxmanders has quit [Ping timeout: 260 seconds]
reuven has joined #ruby
EPIK has joined #ruby
kpshek has quit []
timonv has joined #ruby
jekotia has quit [Read error: Connection reset by peer]
kevin_e has joined #ruby
kevin_e has quit [Client Quit]
<xybre> phwd: You need to authorize to access HTTPS
mark_locklear has quit [Remote host closed the connection]
n1x has joined #ruby
nazty has joined #ruby
Morkel has quit [Quit: Morkel]
thone_ has joined #ruby
Kingy_ has quit [Ping timeout: 272 seconds]
anekos has joined #ruby
pcarrier has quit []
fyolnish has joined #ruby
thone has quit [Ping timeout: 264 seconds]
bean|work has joined #ruby
maxmanders has joined #ruby
kpshek has joined #ruby
jblack has joined #ruby
alex__c2022_ has joined #ruby
thatguycraig has quit [Quit: Leaving.]
buibex has quit [Remote host closed the connection]
etcetera has joined #ruby
rads has quit []
<reactormonk> apeiros, nope, it's apparently from solaris
fyolnish has quit [Ping timeout: 276 seconds]
alex__c2022 has quit [Ping timeout: 272 seconds]
alex__c2022_ is now known as alex__c2022
failshell has quit [Remote host closed the connection]
mengu has quit [Quit: Konversation terminated!]
[MAN] has quit [Quit: Linkinus - http://linkinus.com]
rads has joined #ruby
advorak has joined #ruby
ryanf has joined #ruby
asteve has quit [Quit: Computer has gone to sleep.]
Michael_ has joined #ruby
guns has joined #ruby
<epochwolf> I'm having trouble compiling ruby 1.9.3-p194 on a Redhat 5.4 box. I'm not sure what to do here.
mgrayson has joined #ruby
Xeago_ has joined #ruby
Xeago is now known as Guest55030
Guest55030 has quit [Killed (wolfe.freenode.net (Nickname regained by services))]
Xeago_ is now known as Xeago
banister_ has joined #ruby
jackyalcine has joined #ruby
francisfish has quit [Remote host closed the connection]
<epochwolf> I'm familar with debian and have done this many times successfully on debian-based systems. I'm kind of lost on redhat.
<epochwolf> I'm getting "configure.in:6: error: Autoconf version 2.60 or higher is required" and I'm not sure how to upgrade autoconf.
aeontech has joined #ruby
dustint has quit [Quit: Leaving]
vonsar has quit [Quit: This computer has gone to sleep]
<philcrissman> epochwolf: I barely remember. I think yum is redhat's apt... or did they replace yum?
<epochwolf> philcrissman: this system has yum but I don't think it's installed a package in 4 years.
<philcrissman> hm. dragonnes.
aeontech has left #ruby [#ruby]
<epochwolf> philcrissman: I'm inheriting this system from someone else. :(
mgrayson has quit [Client Quit]
<workmad3> epochwolf: that's alright, I doubt the redhat packages have updated in a similar time
kpshek has quit []
<epochwolf> And I know we don't hadn't had a redhat support contract for 2 years.
<epochwolf> and I know my grammer sucks
<workmad3> :)
<aedornv> epochwolf: install it from rpm if all else fails
reppard has joined #ruby
<epochwolf> wooo… autoconf is 2.59
<epochwolf> aedornv: yeah… I don't think I'm allowed to do that.
<workmad3> epochwolf: oooh, so close
<aedornv> why not?
<epochwolf> okay, I just won't tell anyone.
<epochwolf> aedornv: my manager is a dick?
<aedornv> lol
rickwinfrey has quit [Quit: rickwinfrey]
<epochwolf> He thought beacuse I can build a new server on rackspace in 2 hours from my personal checklist, I should be able to install a new application to an existing server with existing services in the same amount of time.
<workmad3> epochwolf: 'yum update autoconf' didn't work?
<epochwolf> workmad3: I don't think yum is working at all.
<workmad3> wouldn't surprise me
<epochwolf> Error: No Package Matching autoconf
<epochwolf> It's also missing libffi-devel
<aedornv> yeah, I'm sure the repository is dead for RH5 already
<workmad3> epochwolf: yum whatprovides autoconf
<epochwolf> autoconf-2.59-12.noarch : A GNU tool for automatically configuring source code.
<epochwolf> Repo : installed
<epochwolf> Other : Provides-match: autoconf
<epochwolf> Matched from:
<workmad3> ah, so probably aedornv is right, repo is dead
moos3 has quit [Ping timeout: 260 seconds]
<epochwolf> great
<reactormonk> more security holes than a swiss?
slainer68 has joined #ruby
<epochwolf> reactormonk: it's firewalled to an internal vlan with 6 computers allowed to access it.
<reactormonk> epochwolf, welcome to pivots
<epochwolf> reactormonk: I can't get access to this box outside the switch it's on.
heyitsdave has quit [Read error: Operation timed out]
<epochwolf> so I really don't care about security much
<epochwolf> and my manager has pretty much told me I'm not paid to care about security
Proshot has quit [Quit: Leaving]
Asher has quit [Quit: Leaving.]
blacktulip has quit [Remote host closed the connection]
<reactormonk> epochwolf, so go with password 'password1' :>
<epochwolf> reactormonk: that's the root password
headius has quit [Quit: headius]
<epochwolf> reactormonk: this is an internal test box for our applications. Security really isn't important.
<reactormonk> data directly form R&D \o/
<epochwolf> workmad3 or aedornv: is there an alternative source I can configure for redhat?
<workmad3> I don't know personally... it's been a long time since I last used anything redhat related
<epochwolf> reactormonk: you mean our test insurance policies? Enjoy.
mahlon has joined #ruby
<epochwolf> reactormonk: trust me, this application is useless to anyone outside this company.
<aedornv> you're down to RPM really.. or source
<workmad3> last time was... I think a centos 5 server I installed to try out a package about 3 years ago? that I gave up on and got working on ubuntu instead
<epochwolf> aedornv: that's going to be painful.
<aedornv> mmm shouldn't be
Kakera has quit [Ping timeout: 276 seconds]
maxmanders has quit [Ping timeout: 260 seconds]
MattRB has quit [Quit: This computer has gone to sleep]
<reactormonk> aedornv, a linux without repos is doomed
<aedornv> can't just wget http://rpm.pbone.net/index.php3/stat/3/srodzaj/2/search/autoconf26x-2.63-4.ius.el5.src.rpm && rpm -i autoconf26x-2.63-4.ius.el5.src.rpm ? (though rpm.pbone.net is kinda slow)
<aedornv> reactormonk: yes, but there's plenty of places to get things for older versions of RedHat and Debian ... not true of other distributions
Mon_Ouie has quit [Ping timeout: 248 seconds]
<epochwolf> aedornv: okay, so how do I find an rpm that will work with redhat 5?
<reactormonk> aedornv, debian has backports
<workmad3> epochwolf: I think he gave you one ;)
<jblack> anyone familiar with Datamapper? I'm trying to sort descenting by an aggregate count ( res = Party.aggregate(:all.count.desc, :filing_id, args.merge(pargs))
<epochwolf> workmad3: and the next 4 missing packages I need to compile?
<jblack> and I can't seem to get it right
<workmad3> epochwolf: err...
<reactormonk> aedornv, other distros - only to a certain amount. Official support cycles
<epochwolf> aedornv: http://rpm.pbone.net/ is blocked by an internal firewall…
<workmad3> epochwolf: get a ubuntu VM running on the box and install in that inshead?
jjbohn is now known as jjbohn|afk
<epochwolf> workmad3: I wish.
<workmad3> epochwolf: tell your manager that you don't do red hat?
<epochwolf> I'll go talk to the IT team here and see if they have any ideas.
<epochwolf> workmad3: already tried that. He said it's the same as ubuntu.
jxf has joined #ruby
<workmad3> epochwolf: tell your manager he's an idiot that's talking out his ass?
<workmad3> epochwolf: and then look for a new job?
<epochwolf> workmad3: several times, with a witness.
grzywacz has quit [Quit: :wq]
<epochwolf> last night.
tPl0ch has quit [Quit: Verlassend]
statarb3 has joined #ruby
statarb3 has quit [Changing host]
statarb3 has joined #ruby
tommyvyo has joined #ruby
tommyvyo has quit [Changing host]
tommyvyo has joined #ruby
DrShoggoth has joined #ruby
luckyruby has quit [Remote host closed the connection]
jfl0wers has quit [Ping timeout: 240 seconds]
<aedornv> epochwolf: what *isn't* blocked then?
<epochwolf> yay, IT says nuke it and rebuild it.
<epochwolf> aedornv: servers in the US and Europe.
elico has quit [Ping timeout: 264 seconds]
philcrissman has quit [Remote host closed the connection]
<epochwolf> sorry, Western Europe
<aedornv> oh, if you get to nuke it then nevermind
timonv_ has joined #ruby
timonv has quit [Read error: Connection reset by peer]
<epochwolf> aedornv: just covering ass here.
timonv_ has quit [Remote host closed the connection]
timonv has joined #ruby
Michael_ has quit [Remote host closed the connection]
maxmande_ has joined #ruby
rking has quit [Ping timeout: 276 seconds]
sjuxax has joined #ruby
<sjuxax> Hello. I am using Sinatra. I am trying to spawn a process from Sinatra. It initially appears to spawn all right, but the spawned process dies and goes to a zombie a few seconds after generation. Any ideas on resolutions for this?
Skyrunner has joined #ruby
<hackeron> I have a date/time string 2232051313 (format is hhmmMMDDYY) - how would I turn it into a ruby time object?
<reactormonk> sjuxax, source plz
<reactormonk> hackeron, take a look at Time.parse
<hackeron> reactormonk: it returns 2232-05-13 13:00:00 +0100, heh
Skyrunner has left #ruby [#ruby]
<epochwolf> aedornv: this was fun, thanks for your time :)
drewtemp has quit [Quit: drewtemp]
<reactormonk> hackeron, or generally time docs - maybe you can provide a format string
timonv has quit [Ping timeout: 252 seconds]
<aedornv> epochwolf: lol, sure
chrismhough has quit [Quit: chrismhough]
Ankhers has left #ruby ["ERC Version 5.3 (IRC client for Emacs)"]
<hackeron> reactormonk: I'm looking at docs for Time.parse, it doesn't provide a format string - any specific method?
<reactormonk> hackeron, no idea
<epochwolf> aedornv: I can't wait to get bitched out for not getting it to compile.
chrismhough has joined #ruby
<reactormonk> hackeron, otherwise regexp...
<hackeron> reactormonk: yeh, I was thinking regex
kpshek has joined #ruby
<hackeron> was just wondering if there was a time format in ruby to go from string to time, rather than from time to string
<sjuxax> reactormonk: http://dpaste.com/881344/
<sjuxax> mprime -t runs without issue
<sjuxax> it may be due to output redirection, because the script runs fine if I run it on the console
<hackeron> everything seeems to go from Time to String, not the other way around :(
<reactormonk> sjuxax, you know of finally?
ilyam has joined #ruby
dougireton has quit [Quit: Leaving.]
<sjuxax> reactormonk: yes, just don't think of it very often
<sjuxax> would it affect this case?
<sjuxax> *issue
banister_ has quit [Remote host closed the connection]
TheFuzzball has joined #ruby
Rix has quit [Ping timeout: 260 seconds]
MattRB has joined #ruby
<sjuxax> ah, perhaps I don't know of finally if it pretains to a Ruby thing. Looks like it's called "ensure" in Ruby.
jds_ has quit [Remote host closed the connection]
jds_ has joined #ruby
dougireton has joined #ruby
<reactormonk> sjuxax, duh. good to know, mixed up langs
jenrzzz has joined #ruby
kaen has quit [Quit: Leaving]
robotmay has joined #ruby
kaen has joined #ruby
DatumDrop has quit [Remote host closed the connection]
Vert has joined #ruby
malte_ has joined #ruby
emergion has joined #ruby
<reactormonk> sjuxax, you want to do a blocking call?
banister`cnc has joined #ruby
<sjuxax> reactormonk: no, i want it to run that process non-blocking
interactionjaxsn has quit [Remote host closed the connection]
<reactormonk> sjuxax, why the Process.wait() ?
JJMalina has quit [Quit: Leaving...]
maxmande_ has quit [Quit: Computer has gone to sleep.]
atno has quit [Ping timeout: 252 seconds]
jds_ has quit [Ping timeout: 248 seconds]
<sjuxax> so that the forked process waits. I don't mind if the forked parent waits because it won't be interrupting my workflow. I suppose I could try it iwht process.detach
<sjuxax> ah, also because I don't want the kill_spawn_lock function to run until the process is done
tessier has joined #ruby
<sjuxax> reactormonk: no difference in results with Process.detach anyway
vlad_starkov has joined #ruby
<sjuxax> process runs for a few moments and then goes defunct
maxmanders has joined #ruby
diegoviola has quit [Quit: WeeChat 0.3.9.2]
RagingDave has quit [Quit: Ex-Chat]
maxmanders has quit [Client Quit]
<sjuxax> ah, works fine without output redirectoin. I'll have to use the spawn parameters I guess. Thanks.
banister_ has joined #ruby
emergion has quit [Ping timeout: 264 seconds]
jerius has quit [Ping timeout: 264 seconds]
<aedornv> hackeron: DateTime.strptime("2232051313", "%H%M%m%d%y")
banister`cnc has quit [Read error: Connection reset by peer]
reppard has quit [Ping timeout: 248 seconds]
Iszak has quit []
atno has joined #ruby
<aedornv> oh, already answered in #ruby-lang .. hah
chrismhough has quit [Quit: chrismhough]
bean|work has quit [Quit: Textual IRC Client: www.textualapp.com]
willob has quit [Quit: Leaving.]
chrismhough has joined #ruby
<aedornv> damn there be two ruby channels!
reppard has joined #ruby
willob has joined #ruby
nva has joined #ruby
nva has quit [Quit: ChatZilla 0.9.89 [Firefox 18.0/20130104151925]]
jtharris has quit [Quit: WeeChat 0.3.9.2]
vlad_starkov has quit [Ping timeout: 244 seconds]
<Xeago> banister!!!!
<Xeago> YOU
<Xeago> YOU BROKE MY PRY
<Xeago> RAAAARGGH
ngoldman has joined #ruby
<Xeago> xD
Rix has joined #ruby
hybris has joined #ruby
ilyam has quit [Quit: ilyam]
banister_ has quit [Ping timeout: 255 seconds]
horofox has quit [Quit: horofox]
jjbohn|afk is now known as jjbohn
Michael_ has joined #ruby
aaroncm has quit [Quit: ["Textual IRC Client: www.textualapp.com"]]
jjbohn has quit [Quit: Leaving...]
willob has quit [Ping timeout: 256 seconds]
eddie_ has joined #ruby
<eddie_> setting redis key ttl with redis gem
<eddie_> ?
chrismhough has quit [Quit: chrismhough]
<eddie_> anyone?
<eddie_> ?
breakingthings has quit []
tenmilestereo has quit [Quit: Leaving]
aedornv has quit [Quit: Leaving]
fyolnish has joined #ruby
nari has joined #ruby
robert_ has joined #ruby
aedorn has joined #ruby
Ontolog has quit [Quit: Ontolog]
banister`cnc has joined #ruby
jeffreybaird has quit [Quit: jeffreybaird]
interactionjaxsn has joined #ruby
Yorzack has quit [Quit: Yorzack]
generalissimo has joined #ruby
jeffreybaird has joined #ruby
jeffreybaird has left #ruby [#ruby]
hydrozen has quit [Quit: Computer has gone to sleep.]
<Banistergalaxy> Xeago how? Can you be more specific?
robert___ has quit [Ping timeout: 245 seconds]
rking has joined #ruby
alanp has quit [Read error: Connection reset by peer]
alanp has joined #ruby
alanp has quit [Read error: Connection reset by peer]
vonsar has joined #ruby
alanp has joined #ruby
robert_ has quit [Ping timeout: 252 seconds]
fyolnish has quit [Ping timeout: 276 seconds]
dougireton has quit [Quit: Leaving.]
Kuifje has quit [Ping timeout: 255 seconds]
<Banistergalaxy> Xeago??
jackyalcine_ has joined #ruby
MattRB has quit [Quit: This computer has gone to sleep]
xcfdjse7en has joined #ruby
parallel21 has left #ruby [#ruby]
DatumDrop has joined #ruby
chrismhough has joined #ruby
MattRB has joined #ruby
solidoodlesuppor has quit [Remote host closed the connection]
jackyalcine_ has quit [Remote host closed the connection]
dougireton has joined #ruby
jackyalcine has quit [Read error: Operation timed out]
jackyalcine_ has joined #ruby
jackyalcine_ has quit [Changing host]
jackyalcine_ has joined #ruby
tommyvyo has quit [Quit: http://twitter.com/tommyvyo]
Ontolog has joined #ruby
jblack has quit [Ping timeout: 252 seconds]
Michael_ has quit [Remote host closed the connection]
tommyvyo has joined #ruby
<Xeago> pry-command_result
apeiros has quit [Remote host closed the connection]
<Xeago> waiting for your fix :3
apeiros has joined #ruby
<Xeago> I had it for like less than a day xD
theRoUS has quit [Ping timeout: 276 seconds]
<banister`cnc> Xeago: what is pry-command_result ?
<banister`cnc> Xeago: can you be more specific? i've had no issues filed
<banister`cnc> when there's no issues filed i have no idea what's broken or what's not
Kingy has joined #ruby
<Xeago> it is the gem from ToQoz
<Xeago> you said it on twitter
jackyalcine_ has quit [Remote host closed the connection]
Michael_ has joined #ruby
wargasm has quit [Ping timeout: 264 seconds]
<banister`cnc> Xeago: i was referring to pry-pipelines :)
jackyalcine_ has joined #ruby
workmad3 has quit [Ping timeout: 260 seconds]
albakry has quit [Quit: Leaving]
<Xeago> hmm, guess it doesn't work yet than and miscategorized it
<Xeago> hitting him up next xD
<Banistergalaxy> Xeago link to the one you mean?
Michael_ has quit [Remote host closed the connection]
<Banistergalaxy> Thx
<Xeago> it was just interesting to see what I can do with it, not really using it
mjolk has quit [Quit: This computer has gone to sleep]
cableray has joined #ruby
cr3 has quit [Quit: leaving]
<banister`cnc> i didnt check out pry-command_result, that's another one by him?
<Xeago> yea
hbpoison has quit [Ping timeout: 276 seconds]
apeiros has quit [Ping timeout: 255 seconds]
<Banistergalaxy> Very cool
Michael_ has joined #ruby
<Banistergalaxy> I think the same fix will correct this one too
robert_ has joined #ruby
robert_ has joined #ruby
robert_ has quit [Changing host]
<Xeago> I am eager :3
Mon_Ouie has joined #ruby
Spooner has quit [Read error: Connection reset by peer]
interactionjaxsn has quit [Remote host closed the connection]
reppard has quit [Ping timeout: 252 seconds]
freakazoid0223 has joined #ruby
kirun has quit [Quit: Client exiting]
Asher has joined #ruby
banister`cnc has quit [Read error: Connection reset by peer]
Spooner has joined #ruby
vlad_starkov has joined #ruby
banister`cnc has joined #ruby
<xybre> So if I File.open a log file and loop over it until the end, it will automatically close the file (when using #readline), instead I don't want it to close and I want it to block until there's another line. Ideas?
<xybre> (sorry File#each_line not #readline)
darkc0met has joined #ruby
<xybre> If I was using a socket I could just do a #gets and it would block until the next newline, but would it explode on EOF?
Amnesia has joined #ruby
<Amnesia> hi, is anyone over here known with ruby's expect method?
robert_ has quit [Ping timeout: 272 seconds]
<Spooner> Amnesia, #expect? Can you give some context?
skaczor has quit [Ping timeout: 240 seconds]
<Amnesia> I'm trying to match all the output, but are failing to succeed
jblack has joined #ruby
kpshek has quit []
<Amnesia> ^ only outputs: The authenticity of host 'welchia.on2it.net (85.17.178.42)' can't be established.
<Amnesia> RSA
Virunga has quit [Remote host closed the connection]
blaxter has joined #ruby
<Amnesia> (most likely it's related to the regex)
v0n has quit [Ping timeout: 240 seconds]
<Spooner> Sorry, I haven't a clue. I was just wondering which #expect you meant ;)
<Amnesia> ah k
tommyvyo_ has joined #ruby
MattRB has quit [Quit: This computer has gone to sleep]
arturaz has quit [Read error: Connection reset by peer]
benlieb has joined #ruby
vlad_starkov has quit [Ping timeout: 244 seconds]
reppard has joined #ruby
Playground has quit [Quit: When I come back, please tell me in what new ways you have decided to be completely wrong.]
<Spooner> Amnesia, I'm sure that /^.*RSA/m is actually the same as /RSA/ - I'd read the output and print it out to see if you can see what you are expecting.
<Amnesia> well, dunno how to output everything ^^
celinedior has joined #ruby
<Amnesia> actually that's my current goalXD
zph has joined #ruby
<Amnesia> (at least the fingerprint should be included)
cableray has quit [Quit: cableray]
<xybre> Ah, I can just use File#gets, it'll return nil if its invalid
<xybre> er, eof
<Spooner> Yep.
<xybre> But I still need to reloop over it, since new data will come in on that same file
advorak has quit [Remote host closed the connection]
<xybre> And I'd prefer it blocked
<Spooner> Use #select?
templaedhel has quit [Quit: Leaving...]
templaedhel has joined #ruby
drpaulruth has joined #ruby
<xybre> Doh I always forget about select
<Spooner> It is what expect relies on.
maletor has quit [Quit: Computer has gone to sleep.]
__BigO__ has quit [Remote host closed the connection]
Mon_Ouie has quit [Ping timeout: 272 seconds]
wargasm has joined #ruby
<Amnesia> Spooner: [] is an acronym for select right?
<Amnesia> so ssh_out[0] would mean the same ?
<drpaulruth> Question about symbols. This is from the Ruby Koans. What does it mean to make a symbol out of :"cats and dogs"? Is that not already a symbol?
evanx has quit [Read error: Connection reset by peer]
joshman_ has quit [Ping timeout: 248 seconds]
piotr__ has quit [Ping timeout: 252 seconds]
<Spooner> drpaulruth, That is a symbol, but you are making a string and converting it to a symbol in that example.
jonahR has quit [Quit: jonahR]
<Spooner> drpaulruth, Same as if you did "cats and dogs".to_sym
<Spooner> Amnesia, No idea. If it works, it works ;)
<Amnesia> k ty:)
<drpaulruth> Spooner: OK. I really appreciate it. So it's synonymous: ":cats and dogs" with :"cats and dogs"?
<Spooner> No, the former is a string with a colon in it. The latter is a symbol.
frem has quit [Ping timeout: 248 seconds]
jonahR has joined #ruby
<Spooner> You need to make it like that because there are spaces in it. Normally you could just do :cats, say.
<drpaulruth> Spooner: OK. Right. Apologies.
maletor has joined #ruby
<drpaulruth> Spooner: I see.
<drpaulruth> Spooner: Thanks. Wasn't sure of the reasoning behind it.
jonahR has quit [Client Quit]
<Spooner> << p [:"cat", :"cats and dogs", :cat]
<Spooner> >> p [:"cat", :"cats and dogs", :cat]
<eval-in> Spooner: Output: "[:cat, :\"cats and dogs\", :cat]\n" (http://eval.in/6969)
dougireton has quit [Quit: Leaving.]
<drpaulruth> Spooner: Ahhhh, thanks. I had been away from symbols a long time and am trying to re-learn them.
huoxito has joined #ruby
dankest has joined #ruby
<xybre> Hmm. select is returning even when the file has hit EOF
<Spooner> xybre, Did you look at the source on the select doc page?
<xybre> Doing so now
<xybre> Ah, still nonblocking, thats right
samphippen has joined #ruby
lateau has quit [Ping timeout: 252 seconds]
IrishGringo has quit [Ping timeout: 248 seconds]
<Kovensky> < xybre> Hmm. select is returning even when the file has hit EOF <-- what was it supposed to do, deadlock? :)
pcarrier has joined #ruby
ChampS666 has quit [Ping timeout: 272 seconds]
<xybre> I want io/wait
zastern has quit [Remote host closed the connection]
dougireton has joined #ruby
Banistergalaxy has quit [Ping timeout: 272 seconds]
jgarvey has quit [Quit: Leaving]
stopbit has quit [Quit: Leaving]
tommyvyo_ has quit [Quit: http://thomasvendetta.com]
<xybre> (I think)
<xybre> I do want it to block until the next line comes in
<Kovensky> yeah, but what could you possibly gain from blocking at EOF? o_O
<Kovensky> you're reimplementing tail?
reppard has quit [Ping timeout: 246 seconds]
<xybre> Yes
<xybre> Pretty much
<Kovensky> well... look at what tail does? :D
<xybre> io/wait'w IO#wait doesn't actually wait either. wtf
<xybre> Oh
<xybre> Right, it returns nil at EOF too
* xybre facepalm
vonsar has quit [Read error: Connection reset by peer]
vonsar has joined #ruby
benlieb has quit [Quit: benlieb]
<Kovensky> looking at freebsd's tail, it's a dumb getc/putchar blocking loop :(
<Kovensky> -F mode uses either kqueue or usleep to sleep for a bit and then poll again to check if there's more stuff
cjs226 has quit []
benlieb has joined #ruby
havenn has quit [Remote host closed the connection]
benlieb has quit [Client Quit]
havenn has joined #ruby
fyolnish has joined #ruby
Spooner has quit [Ping timeout: 252 seconds]
gyre008 has joined #ruby
dmiller has quit [Ping timeout: 260 seconds]