apeiros changed the topic of #ruby-lang to: Nick registration required to talk || Ruby 2.0.0-p195: http://ruby-lang.org (Ruby 1.9.3-p429) || Paste >3 lines of text on http://gist.github.com
gregmoreno has joined #ruby-lang
Asher has quit [Quit: Leaving.]
LinkedoT has quit [Read error: Connection reset by peer]
LinkedoT has joined #ruby-lang
vlad_starkov has joined #ruby-lang
krombr has joined #ruby-lang
saarinen has quit [Quit: saarinen]
saarinen has joined #ruby-lang
imperator has quit [Quit: Leaving]
vlad_starkov has quit [Ping timeout: 246 seconds]
<zzak> good morning!
headius has quit [Quit: headius]
dingus_khan has joined #ruby-lang
hashkey has joined #ruby-lang
<charliesome> zzak: gday
marr has quit [Ping timeout: 260 seconds]
<zzak> trying to decide if i should cfp to rails israel
dingus_khan has quit [Remote host closed the connection]
arubin has joined #ruby-lang
hogeo has joined #ruby-lang
joevandyk_ has joined #ruby-lang
fragamus has joined #ruby-lang
joevandyk_ is now known as joevnadyk
joevnadyk is now known as joevandyk
<joevandyk> is it usual for ruby on a 64 bit OS to take almost double the memory as running on 32?
<joevandyk> would be unfortunate if it is and just not me being stupid. that means i have to maintain separate 32 and 64 bit OSs
<joevandyk> and build packages for both
krskrft has joined #ruby-lang
rwk1 has joined #ruby-lang
<krskrft> I'm having trouble understanding why one of the digits in an array is refusing to convert to a Fixnum
<krskrft> The last digit comes over as NilClass or some reason
benxao has joined #ruby-lang
verto has joined #ruby-lang
JpC0utur3 has joined #ruby-lang
brixen has quit [Ping timeout: 245 seconds]
ryez has quit [Quit: Page closed]
<S1kx> that moment when you have multiple google developer tools windows open and spend an hour trying to find out why stuff doesnt work but there's no output either - and then see youre looking at the wrong window the entire time
<S1kx> dis computer business is too hard for me
brixen has joined #ruby-lang
Mawk has quit [Quit: Mawk]
lcdhoffman has joined #ruby-lang
verto has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<ykk`> zen u there.
<ykk`> ?
towski has quit [Remote host closed the connection]
joevandyk has quit [Quit: joevandyk]
lsegal has joined #ruby-lang
pr0ton has quit [Ping timeout: 260 seconds]
LinkedoT has quit [Quit: This computer has gone to sleep]
injekt has quit [Remote host closed the connection]
injekt has joined #ruby-lang
<ykk`> krskrft: why did you choose a for construct and a range?
dingus_khan has joined #ruby-lang
<krskrft> basically, i'm going to be working with a much larger initial number later on
<krskrft> i'm trying to take five digits at a time, move them over to another array, and them perform math on them
<krskrft> the problem is that the fifth number i bring over can't have math performed on it, because it's NilClass for some reason
<krskrft> i changed the loop to a 5.times do construct, but i still get the same problem
<ykk`> well i'm new so i don't want to take you down the wrong path but why not just iterate through the array with an enumerator instead of a range
<krskrft> (and yes, my ruby style is completely borked … new to the language)
hackeron has quit [Read error: Operation timed out]
dingus_khan has quit [Remote host closed the connection]
<ykk`> you keep pushing things into other arrays
<ykk`> i don't understand that logic
<krskrft> well, i'm working through a larger problem
<krskrft> this is just me getting some basic functionality down … the constructs can change later
<ykk`> is it normal to work like that?
<ykk`> how much larger is larger?
teleological has joined #ruby-lang
<krskrft> essentially, i have a huge number, i convert it to a string, i separate those digits in an array, and then i have another array, with which i work with five of those digits at a time
<krskrft> my problem is getting the fifth digit to do what i anticipated (be pulled over as a Fixnum)
<ykk`> well why even convert them to a string?
<krskrft> that's not the problem
<ykk`> but i'm curious to learn
Averna has joined #ruby-lang
<krskrft> because i'm taking things step by step, assuming numerical input
<ykk`> if it's all math why convert them to a string? integers can go into an array
<krskrft> later on, i'll probably just bring them in from a file, so doing all that hocus pocus won't be necessary
<krskrft> because i can use string methods to split the numerical input up over an array
<ykk`> that's not a reason why you would turn integers to a string to do math
jacktrick has quit [Quit: Leaving]
<ykk`> over an array?
crudson1 has joined #ruby-lang
<krskrft> into an array
<ykk`> well you don't need to do that in ruby
<krskrft> split the "digits" (since they're chars)
<ykk`> integers can go into an array
<ykk`> and there are enumerators that will do that for you
<ykk`> such as #map I believe
<krskrft> okay, well that's not really the problem i'm having
<ykk`> yes it is
<krskrft> no, it really isn't
<ykk`> your foundation is flawed
dingus_khan has joined #ruby-lang
<ykk`> therefor you're running into problems
<ykk`> structure = win
<ykk`> always
<ykk`> that's why you have a nilclass
<krskrft> i don't believe that's why i have nilclass
<ykk`> ruby will return nil if there's nothing int hat space in the array
<krskrft> okay, that's the answer i was looking for
<ykk`> NilClass
dingus_khan has quit [Remote host closed the connection]
RahulT has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<ykk`> k
<krskrft> that's an interesting situation, because 5 is transferred over, but it's not cast to a Fixnum for some reason
<krskrft> why does that happen?
<krskrft> that's what i'm trying to understand
<ykk`> cast?
<krskrft> if nothing is there, then there would be no "5" printed
<ykk`> well because you made things into a string maybe
<ykk`> maybe try something different and play with map see if you get a different result
<ykk`> and don't play with strings
<ykk`> if nothing is there you will get nil
<ykk`> because ruby is an OO language
<ykk`> everything is an object
<ykk`> therefor
<ykk`> nothing is an object
<ykk`> NilClass
<krskrft> i guess what i'm understanding is how "nothing" is there
<krskrft> err not understanding
<ykk`> because it's an object
<krskrft> i'm going to play around with the map, but i'm actually curious about why that is
<ykk`> corundum: NilClass
ikrima has joined #ruby-lang
<ykk`> isn't that thing a bot :\
<ykk`> well go read about NilClass it's an actual class in the Ruby-Doc
<krskrft> so i have an array of strings, representing digits from 1 - 0
<krskrft> i pull over 1, 2, 3, 4, 5 casting them to Fixnums as i go
<krskrft> i print the resulting array
<krskrft> it prints 1, 2, 3, 4, 5, but the class for 5 is NilClass
<ykk`> if you want a string to represent a digit it's done with key => value pairs
<krskrft> why would it be NilClass, but still give me 5?
<ykk`> usually
<krskrft> in other words, why doesn't that 5 get cast? it's not there? then why is "5" there (just not as a Fixnum)?
Nisstyre-laptop has joined #ruby-lang
<krskrft> so weird
<ykk`> never heard of cast
<krskrft> to_i, to_s, etc
<krskrft> that's casting
<ykk`> and didn't understand what you meant 1 - 0
<krskrft> 1, 2, 3, 4, 5, 6, 7, 8, 9, 0
somasonic has joined #ruby-lang
<ykk`> These are Ruby Basics, I recommend you checkout the 20 minute tutorial on the ruby-lang homepage because ruby starts at 0
<ykk`> 0, 1, 2, 3, etc
<krskrft> the 6, 7, 8, 9, 0 don't even matter for these purposes
<krskrft> i'm only isolating those first five digits
<krskrft> they could just as easily be totally arbitrary digits
krombr has quit [Remote host closed the connection]
towski has joined #ruby-lang
ia___ has quit [Remote host closed the connection]
diegoviola has quit [Ping timeout: 245 seconds]
towski has quit [Remote host closed the connection]
dingus_khan has joined #ruby-lang
Johz has quit [Read error: Connection reset by peer]
saarinen has quit [Quit: saarinen]
dingus_khan has quit [Ping timeout: 276 seconds]
GeissT has joined #ruby-lang
nightshade427 has joined #ruby-lang
dhruvasagar has joined #ruby-lang
dingus_khan has joined #ruby-lang
cofin has joined #ruby-lang
bzalasky has joined #ruby-lang
saarinen has joined #ruby-lang
krskrft has quit [Quit: Textual IRC Client: www.textualapp.com]
<ykk`> ok got it
<ykk`> oh he left
<ykk`> =(
<ykk`> quitter
sindork has quit [Read error: Connection reset by peer]
<ykk`> got it down to 4 lines of code
sindork_ has joined #ruby-lang
erichmenge has quit [Quit: Arrivederci!]
erichmenge has joined #ruby-lang
dhruvasagar has quit [Ping timeout: 260 seconds]
teleological has quit [Remote host closed the connection]
Domon has joined #ruby-lang
cofin has quit [Quit: cofin]
stardiviner has joined #ruby-lang
krohrbaugh has quit [Quit: Leaving.]
cofin has joined #ruby-lang
dhruvasagar has joined #ruby-lang
toretore has quit [Read error: Connection reset by peer]
krohrbaugh has joined #ruby-lang
toretore has joined #ruby-lang
tonni_ has joined #ruby-lang
apeiros has quit [Read error: Connection reset by peer]
krohrbaugh has quit [Client Quit]
krohrbaugh has joined #ruby-lang
krohrbaugh has quit [Client Quit]
apeiros has joined #ruby-lang
__carlos has quit [Read error: Connection reset by peer]
__carlos has joined #ruby-lang
saarinen has quit [Quit: saarinen]
tonni has quit [Ping timeout: 260 seconds]
hackeron has joined #ruby-lang
ia___ has joined #ruby-lang
Jungorend has quit [Quit: Leaving]
nightshade427 has left #ruby-lang [#ruby-lang]
JpC0utur3 has quit [Ping timeout: 264 seconds]
saarinen has joined #ruby-lang
cored has quit [Ping timeout: 248 seconds]
bryno has quit [Quit: leaving]
cored_ has quit [Ping timeout: 276 seconds]
ykk` has quit [Quit: ykk`]
krohrbaugh has joined #ruby-lang
_ffio_ has joined #ruby-lang
ffio_ has quit [Ping timeout: 248 seconds]
LinkedoT has joined #ruby-lang
glebm has quit [Ping timeout: 276 seconds]
saarinen has quit [Quit: saarinen]
JpC0utur3 has joined #ruby-lang
ia___ has quit [Quit: ia___]
machuga is now known as machuga|away
cordax has joined #ruby-lang
cofin has quit [Quit: cofin]
bri has joined #ruby-lang
RahulT has joined #ruby-lang
Asher has joined #ruby-lang
krohrbaugh has quit [Quit: Leaving.]
krz has joined #ruby-lang
io_syl has quit [Ping timeout: 248 seconds]
Asher has quit [Client Quit]
ikrima has quit [Quit: Computer has gone to sleep.]
lsegal has quit [Quit: Quit: Quit: Quit: Stack Overflow.]
cordax has quit [Quit: Computer has gone to sleep.]
Xzyx987X has quit [Read error: Connection reset by peer]
Xzyx987X has joined #ruby-lang
shinnya has quit [Ping timeout: 248 seconds]
DomKM has joined #ruby-lang
mdedetrich has quit [Quit: Computer has gone to sleep.]
rwilcox has quit [Quit: ["Textual IRC Client: www.textualapp.com"]]
bzalasky has quit [Remote host closed the connection]
arubin has quit [Quit: Textual IRC Client: www.textualapp.com]
dingus_khan has quit [Remote host closed the connection]
cordax has joined #ruby-lang
dingus_khan has joined #ruby-lang
fragamus has quit [Quit: Computer has gone to sleep.]
io_syl has joined #ruby-lang
rippa has joined #ruby-lang
io_syl has quit [Ping timeout: 264 seconds]
jsullivandigs has quit [Remote host closed the connection]
jsullivandigs has joined #ruby-lang
fedesilva has quit [Read error: Connection reset by peer]
io_syl has joined #ruby-lang
fedesilva has joined #ruby-lang
mdedetrich has joined #ruby-lang
dingus_khan has quit [Remote host closed the connection]
jsullivandigs has quit [Read error: Connection reset by peer]
jsullivandigs has joined #ruby-lang
LinkedoT has quit [Quit: This computer has gone to sleep]
LinkedoT has joined #ruby-lang
JpC0utur3 has quit [Ping timeout: 246 seconds]
dhruvasagar has quit [Ping timeout: 264 seconds]
macmartine has joined #ruby-lang
areil has joined #ruby-lang
Asher has joined #ruby-lang
<cordax> if I have an array of objects and another array of objects and I try subtracting one from the other, shouldn't it remove the objects that are common to each other?
dhruvasagar has joined #ruby-lang
areil has quit []
<bnagy> yes
<bnagy> well.. it won't modify the originals, it will return a new array
DomKM has quit [Read error: Connection reset by peer]
DomKM has joined #ruby-lang
bzalasky has joined #ruby-lang
Bosox20051 has joined #ruby-lang
<cordax> bnagy thanks, thats what I was missing
bzalasky has quit [Remote host closed the connection]
Jefferson has joined #ruby-lang
jsullivandigs has quit [Remote host closed the connection]
jsullivandigs has joined #ruby-lang
Nisstyre-laptop has quit [Quit: Leaving]
JpC0utur3 has joined #ruby-lang
teleological has joined #ruby-lang
LinkedoT has quit [Quit: This computer has gone to sleep]
mistym has quit [Remote host closed the connection]
mistym has joined #ruby-lang
mistym has quit [Changing host]
mistym has joined #ruby-lang
mistym has quit [Read error: Connection reset by peer]
mistym has joined #ruby-lang
mistym has joined #ruby-lang
mistym has quit [Changing host]
mistym has quit [Remote host closed the connection]
dingus_khan has joined #ruby-lang
S1kx has quit [Ping timeout: 264 seconds]
chrishunt has quit [Quit: So long...]
dingus_khan has quit [Ping timeout: 264 seconds]
S1kx has joined #ruby-lang
S1kx has quit [Changing host]
S1kx has joined #ruby-lang
rhodee has joined #ruby-lang
dingus_khan has joined #ruby-lang
perry has joined #ruby-lang
JpC0utur3 has quit [Ping timeout: 256 seconds]
therealnoop has joined #ruby-lang
gja has joined #ruby-lang
amerine has quit [Quit: Computer has gone to sleep.]
apeiros has quit [Remote host closed the connection]
cordax has quit [Quit: Computer has gone to sleep.]
apeiros has joined #ruby-lang
amerine has joined #ruby-lang
bzalasky has joined #ruby-lang
S1kx has quit [Quit: Leaving]
rippa has quit [Ping timeout: 240 seconds]
rhodee has quit [Quit: Lost terminal]
macmartine has quit [Quit: Computer has gone to sleep.]
<dingus_khan> is there a way to get rid of array levels that isn't flatten?
rwk1 has quit [Remote host closed the connection]
rwk1 has joined #ruby-lang
towski has joined #ruby-lang
rwk1 has quit [Ping timeout: 246 seconds]
xxaM has joined #ruby-lang
workmad3 has joined #ruby-lang
_ffio_ has quit [Ping timeout: 276 seconds]
sherodtaylor has joined #ruby-lang
rhodee has joined #ruby-lang
<charliesome> dingus_khan: why do you ask
apeiros has quit [Remote host closed the connection]
_ffio_ has joined #ruby-lang
hhatch has joined #ruby-lang
dingus_khan has quit [Remote host closed the connection]
setmeaway2 has joined #ruby-lang
towski has quit [Read error: Connection reset by peer]
towski has joined #ruby-lang
Jefferson has quit [Ping timeout: 276 seconds]
__carlos has quit [Quit: __carlos]
robbyoconnor has quit [Read error: Connection reset by peer]
robbyoconnor has joined #ruby-lang
bzalasky has quit [Remote host closed the connection]
lcdhoffman has quit [Quit: lcdhoffman]
workmad3 has quit [Ping timeout: 246 seconds]
fedesilv_ has joined #ruby-lang
rwk1 has joined #ruby-lang
rhodee has quit [Quit: leaving]
hashkey has quit [Quit: Leaving]
rhodee has joined #ruby-lang
rhodee has quit [Client Quit]
rhodee has joined #ruby-lang
rhodee has quit [Client Quit]
rhodee has joined #ruby-lang
dhruvasagar has quit [Ping timeout: 256 seconds]
fedesilva has quit [Ping timeout: 276 seconds]
dhruvasagar has joined #ruby-lang
rhodee has quit [Client Quit]
rhodee has joined #ruby-lang
towski has quit [Remote host closed the connection]
rwk1 has quit [Ping timeout: 256 seconds]
bzalasky has joined #ruby-lang
rhodee has quit [Client Quit]
rhodee has joined #ruby-lang
benxao has quit [Remote host closed the connection]
rhodee has quit [Client Quit]
tomzx_mac has quit [Ping timeout: 260 seconds]
rhodee has joined #ruby-lang
rhodee has quit [Client Quit]
rhodee has joined #ruby-lang
teleological has quit [Remote host closed the connection]
dhruvasagar has quit [Ping timeout: 264 seconds]
dhruvasagar has joined #ruby-lang
JpC0utur3 has joined #ruby-lang
rhodee has quit [Quit: leaving]
rhodee has joined #ruby-lang
rhodee has quit [Client Quit]
ikrima has joined #ruby-lang
rhodee has joined #ruby-lang
<rhodee> WC
rhodee has left #ruby-lang [#ruby-lang]
adambeynon has quit [Quit: ["Textual IRC Client: www.textualapp.com"]]
x0f has quit [Ping timeout: 276 seconds]
swav has quit [Remote host closed the connection]
dr_bob has joined #ruby-lang
RuslanPopov has quit [Quit: Ухожу я от вас (xchat 2.4.5 или старше)]
charliesome has quit [Quit: Textual IRC Client: www.textualapp.com]
solars has joined #ruby-lang
vlad_starkov has joined #ruby-lang
benlovell has joined #ruby-lang
Wardrop has quit [Quit: Wardrop]
JohnBat26 has joined #ruby-lang
Nisstyre-laptop has joined #ruby-lang
vlad_starkov has quit [Read error: Connection reset by peer]
vlad_starkov has joined #ruby-lang
dr_bob has quit [Quit: Leaving.]
sherodtaylor has quit [Remote host closed the connection]
sherodtaylor has joined #ruby-lang
swav has joined #ruby-lang
sherodtaylor has quit [Ping timeout: 256 seconds]
vlad_starkov has quit [Remote host closed the connection]
vlad_starkov has joined #ruby-lang
sush24 has joined #ruby-lang
epus has joined #ruby-lang
dagobah has joined #ruby-lang
elia has joined #ruby-lang
dingus_khan has joined #ruby-lang
vlad_sta_ has joined #ruby-lang
bzalasky_ has joined #ruby-lang
vlad_starkov has quit [Ping timeout: 248 seconds]
barttenbrinke has joined #ruby-lang
apeiros has joined #ruby-lang
dingus_khan has quit [Ping timeout: 260 seconds]
bzalasky has quit [Ping timeout: 276 seconds]
rwk1 has joined #ruby-lang
swav has quit [Remote host closed the connection]
Asher has quit [Quit: Leaving.]
bzalasky_ has quit [Remote host closed the connection]
rwk1 has quit [Ping timeout: 256 seconds]
lele has left #ruby-lang ["Leaving"]
swav has joined #ruby-lang
ikrima has quit [Ping timeout: 246 seconds]
ikrima has joined #ruby-lang
charliesome has joined #ruby-lang
judofyr has joined #ruby-lang
solars has quit [Read error: Operation timed out]
nevill has joined #ruby-lang
elia has quit [Quit: Computer has gone to sleep.]
jonahR has quit [Quit: jonahR]
jonahR has joined #ruby-lang
poga has quit [Ping timeout: 264 seconds]
RahulT has quit [Quit: Textual IRC Client: www.textualapp.com]
wallerdev has quit [Quit: wallerdev]
dagobah_ has joined #ruby-lang
mbj has joined #ruby-lang
dagobah has quit [Ping timeout: 246 seconds]
RahulT has joined #ruby-lang
bzalasky has joined #ruby-lang
stamina has joined #ruby-lang
solars has joined #ruby-lang
roadkith has joined #ruby-lang
s0ber_ has quit [Read error: Connection reset by peer]
eval-in has quit [Remote host closed the connection]
s0ber has joined #ruby-lang
eval-in has joined #ruby-lang
<charliesome> >> RUBY_DESCRIPTION
<eval-in> charliesome => "ruby 2.0.0p0 (2013-02-24 revision 39474) [i686-linux]" (http://eval.in/32965)
poga has joined #ruby-lang
<charliesome> >> RUBY_DESCRIPTION
jonahR has quit [Quit: jonahR]
<charliesome> >> RUBY_DESCRIPTION
eval-in has quit [Remote host closed the connection]
eval-in has joined #ruby-lang
<charliesome> >> RUBY_DESCRIPTION
<eval-in> charliesome => "ruby 2.0.0p0 (2013-02-24 revision 39474) [i686-linux]" (https://eval.in/32967)
<charliesome> there we go
JpC0utur3 has quit [Ping timeout: 256 seconds]
marr has joined #ruby-lang
schaerli has joined #ruby-lang
gnufied has joined #ruby-lang
zommi has joined #ruby-lang
poga has quit [Read error: Connection reset by peer]
jakolehm has joined #ruby-lang
poga has joined #ruby-lang
epus has quit [Quit: epus]
<yorickpeterse> morning
epus has joined #ruby-lang
rwk1 has joined #ruby-lang
Averna has quit [Quit: Leaving.]
rwk1 has quit [Ping timeout: 248 seconds]
<yorickpeterse> current HN frontpage: NSA, NSA, PRISM, NSA, NSA, PRISM, Google isn't so evil, NSA, NSA
<Paradox> yorickpeterse, so basically reddit with more neckbeards…
<bnagy> tell me about it. Twitter is also awash
swav has quit [Remote host closed the connection]
<Paradox> g+ is surprisingly quiet
<Paradox> heh
GarethAdams has joined #ruby-lang
dwainfaithfull has joined #ruby-lang
RahulT has quit [Ping timeout: 246 seconds]
mikewintermute has joined #ruby-lang
<injekt> hai
gja has quit [Ping timeout: 256 seconds]
epus has quit [Quit: epus]
adambeynon has joined #ruby-lang
vmoravec has quit [Remote host closed the connection]
swav has joined #ruby-lang
joonty has joined #ruby-lang
northelks has joined #ruby-lang
<injekt> >> RbConfig::CONFIG
<eval-in> injekt => {"DESTDIR"=>"", "MAJOR"=>"2", "MINOR"=>"0", "TEENY"=>"0", "PATCHLEVEL"=>"0", "INSTALL"=>"/usr/bin/install -c", "EXEEXT"=>"", "prefix"=>"/execpad/interpreters/ruby-2.0.0-p0", "ruby_install_name"=>"ruby" ... (https://eval.in/32968)
bzalasky has quit [Remote host closed the connection]
elia has joined #ruby-lang
<injekt> heh
<Paradox> hue
havenwood has quit [Remote host closed the connection]
<yorickpeterse> Paradox: that's because they censor it
<yorickpeterse> :>
<Paradox> we (the mods) made the subreddit BK themed
<injekt> I dont understand that gif
<Paradox> its the walking dead mixed with burger king
<Paradox> there was a thread full of em
<GarethAdams> I guess you had to be there
jonahR has joined #ruby-lang
jds has joined #ruby-lang
<jds> Hi there
<jds> I'm surprised by some behaviour of passing stabby lambdas...
<jds> finder = ->(k,v){ v==3 }; hash.any?(&finder) will complain that I have the wrong number of arguments
vlad_sta_ has quit [Remote host closed the connection]
<jds> Do lambdas not splat their arguments like blocks do?
<joonty> any? is part of Enuerable
mdedetrich has quit [Quit: Computer has gone to sleep.]
<joonty> hang on, ignore me
<jds> compare with - finder = proc{|k,v| v==3 }; hash.any?(&finder)
<bnagy> joonty: that works fine for me?
<bnagy> >> hsh={a: 3}; finder = ->(k,v){ v==3 }; hsh.any? &finder
<eval-in> bnagy => wrong number of arguments (1 for 2) (ArgumentError) ... (https://eval.in/32969)
<bnagy> huh
<bnagy> >> hsh={a: 3}; finder = ->(k,v){ v==3 }; hsh.any?(&finder)
<eval-in> bnagy => wrong number of arguments (1 for 2) (ArgumentError) ... (https://eval.in/32970)
<bnagy> 20>> hsh={a: 3}; finder = ->(k,v){ v==3 }; hsh.any?(&finder)
<eval-in> bnagy => wrong number of arguments (1 for 2) (ArgumentError) ... (https://eval.in/32971)
<bnagy> works in my irb
<jds> what ruby version?
<bnagy> trippy
<bnagy> jruby
<jds> Curious. I'm on MRI 1.9.3
gja has joined #ruby-lang
gja has quit [Changing host]
gja has joined #ruby-lang
<jds> >> hsh={a: 3}; finder = proc{|k,v| v==3 }; hsh.any?(&finder)
<eval-in> jds => true (https://eval.in/32972)
poga has quit [Read error: Connection reset by peer]
<bnagy> >> hsh={a: 3}; finder = ->((k,v)){ v==3 }; hsh.any?(&finder)
<eval-in> bnagy => true (https://eval.in/32973)
poga has joined #ruby-lang
<bnagy> decomosition brackets
<jds> wat
<bnagy> decomposition*
<bnagy> don't know why it is different on jruby though
<bnagy> charliesome: ( or anyone ) does eval.in have a leader for jruby?
xxaM has quit [Ping timeout: 256 seconds]
<injekt> jruby isn't even on eval.in
<injekt> mri/rbx/mruby
<bnagy> bugger
<jds> Anyway, the way this all started was - I was trying to figure out a way of deep-searching a hash of hashes. Best I've got so far is https://gist.github.com/jdelStrother/5728010, but it doesn't exactly read nicely. Any better suggestions?
<jds> Adding a Hash#deep_any? method would be a bit cleaner, but I don't like polluting core classes like that. And I suspect I'd end up adding Hash#deep_select, Hash#deep_map, Hash#deep_blah blah blah
<jds> (Obviously that gist is subject to infinite loops, let's ignore that for now...)
<injekt> why dont you use a method so its not ugly?
kleech has joined #ruby-lang
<jds> injekt: TBH, I think it's because I can't figure out where to put the method.
<injekt> jds: you want a deep check to find any value that is 3?
<injekt> and just return true?
<kleech> Would anyone mind taking a look at a class (43 LOC) to see if it looks threadsafe, it uses `Thread.current[key]`: https://github.com/krisleech/wisper/blob/temporary-listeners/lib/wisper/temporary_listeners.rb
mdedetrich has joined #ruby-lang
<jds> injekt: I guess. I'm just dithering about which class's responsibility it is to figure that out
RahulT has joined #ruby-lang
poga has quit [Read error: Connection reset by peer]
epus has joined #ruby-lang
<injekt> jds: I would just add it wherever you need it, if you need it in a few places, mix it in using a module
rwk1 has joined #ruby-lang
poga has joined #ruby-lang
RahulT has quit [Ping timeout: 240 seconds]
jonahR has quit [Quit: jonahR]
jonahR has joined #ruby-lang
<injekt> kleech: it'll probably be fine, though a singleton across threads it usually asking for trouble
<injekt> but yeah it looks like everything you're using is stored on the current thread anyway, it depends on how you're using this class, though.. the class can still be modified via different threads
<injekt> the object, rather
<yorickpeterse> http://hastebin.com/mufodepogi.xs le gem
rwk1 has quit [Ping timeout: 246 seconds]
<injekt> :|
<kleech> injekt: I was wondering if I really need the singelton actually, since I assume Thread.current[key] is global anyway, the same instance when called from any object.
<injekt> yorickpeterse: what kinda of hackery crap are you up to?
<injekt> kleech: right you could just store a different instance per thread
<injekt> kleech: which could be easier to manage
<kleech> injekt: I will not control the threading
<injekt> right now all threads point to the same instance, but the instance stores a set in different threads
<injekt> I think that's confusing
<yorickpeterse> injekt: Perl
<yorickpeterse> wrapped in Ruby
<injekt> but... why?
<yorickpeterse> expect blag post this weekend, at least if I get to it
<kleech> injekt: you would allow a new object, so no Singelton and use Thread.current to make it safe
<yorickpeterse> injekt: because $EXTERNAL_COMPANY wrote stuff in Perl, we want a Ruby interface
<yorickpeterse> and various other reasons
<yorickpeterse> did you see my extconf hack yesterday?
<injekt> kleech: sure but if you dont control threading I dont see why you're using threads, why not just make your class normal and whoever uses it can work on keeping control thread safe?
<injekt> yorickpeterse: yeah I vommed a little
<injekt> Why not just write the perl?
<yorickpeterse> ...it is in Perl
<injekt> (I'm saying that as a perlist) but still
<injekt> heh
<yorickpeterse> we're wrapping Perl code in a Rubygem
<yorickpeterse> and providing a basic Ruby API for it
<injekt> that sentence makes me sad
<yorickpeterse> Mind you this Perl code is pretty bad, you don't want to touch it directly
<injekt> rewrite it all!
<yorickpeterse> yeah there's good reasons we're doing it this way
<kleech> injekt: I just remove Singelton and :s/instance/new and all specs continue to pass :)
<yorickpeterse> try getting about a dozen companies from all across Europe to agree on using one language
<yorickpeterse> (most of them use Java, which isn't that hard to wrap luckily)
<yorickpeterse> there's also some python
<yorickpeterse> and perl
<yorickpeterse> wrap all the things
<injekt> kleech: you're testing thread safety? lol
<yorickpeterse> We're sort of the glue between lots of different codebases written by people with different skill levels
<lianj> wrap it all, for performance
<kleech> injekt: no, but I mean I can remove the Singelton, its not need to get the feature to work. I wish there was a way to test threading...
<injekt> yorickpeterse: dont you hate rails but write it too? :D
<yorickpeterse> injekt: basically
<injekt> kleech: ah ok
<yorickpeterse> but I'm like mr burns, I like doing evil things
<injekt> I work with a rails core member so I cant really complain too much
atmosx has joined #ruby-lang
<yorickpeterse> meh, the people I work with are sane
<yorickpeterse> so it's not that bad
<yorickpeterse> The autoloading is what pisses me off the most these days
<yorickpeterse> mostly because Pry is all "OMMGGGGGG I CAN'T FIND THIS BECAUSE .SOURCE_LOCATION ISN'T THERE"
<lianj> yorickpeterse: why? oh…
<injekt> heh
<lianj> you use/need pry that much?
<injekt> I've started using focused_controller for rails stuff and it's actually so much nicer
<yorickpeterse> lianj: yes, I couldn't live without it
<lianj> yorickpeterse: we have different workflows than
sush24 has quit [Ping timeout: 264 seconds]
<yorickpeterse> how so?
<yorickpeterse> Using Pry a lot isn't exactly related to "complex code" or anything
<lianj> dunno, never felt the need for pry when doing tdd
<injekt> I use pry for debugging, that's it
<darix> +1
<darix> sometimes also for prototyping
dhruvasagar has quit [Ping timeout: 246 seconds]
<yorickpeterse> tdd doesn't solve the problem of "wtf is going on here"
<darix> then just copy the code from pry history files to the real script
<darix> lianj: binding.pry is just amazing
<kleech> Anyone know how Thread.current is GC'd? I mean if the thread is long running, will setting it to nil get it GC'd?
<yorickpeterse> You can't set Thread.current to nil
<lianj> injekt: i must be uber pro then or just lucky i don't have to debug very often
<injekt> lianj: I didn't say I need to debug often :D
<lianj> :P
<kleech> yorickpeterse: to clarify, Thread.current[some_key]
<yorickpeterse> Ah
<kleech> yorickpeterse: sounds like potential memory leak... looking in to it...
<yorickpeterse> should be GC'd just fine if you set it to nil
<kleech> yorickpeterse: any suggestion of tools I can use to find out?
<injekt> I dont think anything in the threads are GC'd until the thread is terminated?
<injekt> not sure though
<yorickpeterse> kleech: eh, memory anylysis in Ruby is a bit of a pita
dr_bob has joined #ruby-lang
<yorickpeterse> * analysis
<yorickpeterse> but yeah, if the thread is gone so should be the data stored in it
<injekt> I think his point is that the thread is not gone, it's running for a long time but he still wants the stuff in the Thread.current hash to be GC'd
<kleech> yeah, its a long running thread, I assume the like of threaded Rack don't start up a thread per request but reuse from a pool?
xxaM has joined #ruby-lang
<kleech> injekt: correct
<injekt> Threads are ghetto
<injekt> omakase
sush24 has joined #ruby-lang
<charliesome> yorickpeterse: yeah autoloading in rails bit me
<kleech> I think if I at least set the var to an empty array or nil that will help.
<charliesome> i patched activesupport's constantize to use Object.const_get
<charliesome> noooope
<injekt> it uses const_get dosn't it?
sush24 has quit [Client Quit]
<yorickpeterse> kleech: you might want to take a look at ruby-prof
<charliesome> injekt: activesupport uses something along the lines of
<charliesome> path.split("::").reduce(Object) { |klass, name| klass.const_get(name) }
epus has quit [Quit: epus]
<charliesome> ruby 2.0 extends const_get so you can use it with qualified class paths
<charliesome> Object.const_get("Net::HTTP") for instance
LinkedoT has joined #ruby-lang
<charliesome> doesn't play well with rails autoloading
<injekt> oh weird I thought that worked in 2.0
<injekt> pre 2.0*
<charliesome> we were seeing really weird issues
<charliesome> in prod
GeissT has quit [Quit: AdiIRC is updating to v1.9.1 Beta Build (060613) 32 Bit]
sush24 has joined #ruby-lang
<charliesome> that didn't show up in dev or in tests because of things being autoloaded in different orders
GeissT has joined #ruby-lang
LinkedoT has quit [Client Quit]
robbyoconnor has quit [Read error: Connection reset by peer]
robbyoconnor has joined #ruby-lang
sush24_ has joined #ruby-lang
mdedetrich has quit [Ping timeout: 246 seconds]
s0ber_ has joined #ruby-lang
s0ber has quit [Read error: Connection reset by peer]
s0ber_ is now known as s0ber
sush24 has quit [Read error: Connection reset by peer]
<injekt> :D
<injekt> omakase
<GarethAdams> Oh. My. Kase
<injekt> Oh. My. khaase
<yorickpeterse> oh my kaas
mdedetrich has joined #ruby-lang
<charliesome> :omakase
<yorickpeterse> omakase:
<charliesome> !ruby/object: omakase
nevill has quit [Quit: nevill]
<andrewvos> Right that joke is over
jsullivandigs has quit [Remote host closed the connection]
jsullivandigs has joined #ruby-lang
Domon has quit [Read error: Connection reset by peer]
Domon has joined #ruby-lang
<yorickpeterse> that's what....nevermind
<Joni_79> I'm going to assume it is ok to ask stupid and very basic questions here: For a predefined array, what is the difference between array[0..2] and array[0...2] ? Also a link to a good reference list on notations and syntax would be appreciated. :)
<yorickpeterse> .. is an inclusive range, ... exclusive
<yorickpeterse> >> [10, 20, 30][0..2]
<eval-in> yorickpeterse => [10, 20, 30] (https://eval.in/32975)
<yorickpeterse> >> [10, 20, 30][0...2]
<eval-in> yorickpeterse => [10, 20] (https://eval.in/32976)
<Joni_79> it does not exclude from the start, just from the end?
<charliesome> Joni_79: yeah
<Joni_79> Ok, cool. Thanks :)
jakolehm has quit [Quit: jakolehm]
<Joni_79> any links to a syntax / notation cheat sheet or something similar?
jsullivandigs has quit [Ping timeout: 256 seconds]
<Joni_79> whitequark: Thanks! That looks just like the thing I was looking for. :)
RahulT has joined #ruby-lang
nveselinov has quit [Read error: Connection reset by peer]
sush24_ has quit [Read error: Connection reset by peer]
roadkith has quit [Quit: Leaving...]
_ffio_ has quit [Ping timeout: 256 seconds]
Squarepy has joined #ruby-lang
glebm has joined #ruby-lang
mbj has quit [Ping timeout: 260 seconds]
jinie has quit [Read error: Operation timed out]
<yorickpeterse> rescue Twitter::Error::TooManyRequests
<yorickpeterse> next error:
<yorickpeterse> Twitter::Error::ClientError: timeout
<yorickpeterse> ASDKLASDHDASLK
ykk` has joined #ruby-lang
<yorickpeterse> hm apparently TooManyRequests extends ClientError, that should be doable
sush24_ has joined #ruby-lang
glebm has quit [Ping timeout: 260 seconds]
epus has joined #ruby-lang
earthquake has joined #ruby-lang
RahulT has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
sush24_ has quit [Ping timeout: 260 seconds]
sush24_ has joined #ruby-lang
<injekt> you could just rescue Twitter::Error assuming they all inherit from that
poga has quit [Remote host closed the connection]
barttenbrinke has quit [Remote host closed the connection]
<ykk`> good morning
heftig has quit [Quit: Quitting]
heftig has joined #ruby-lang
<epus> good morning guys. sorry for newbie question, but how can I read multiple input from console with ruby? I mean like X amount of integer numbers
nevill has joined #ruby-lang
<andrewvos> epus: gets
<epus> u mean using while loop to get each integer and add it to as example array till user end specific character or word like 'end'?
ngw has joined #ruby-lang
<andrewvos> epus: I guess
sush24_ has quit [Ping timeout: 240 seconds]
<epus> ok, ty, I was wondering maybe there is any other solution.
<manveru> a = []; until a.size >= 3; a.concat gets.scan(/\d+/); end
vlad_starkov has joined #ruby-lang
DEac- has quit [Ping timeout: 252 seconds]
barttenbrinke has joined #ruby-lang
mikewintermute has quit [Quit: mikewintermute]
vlad_starkov has quit [Remote host closed the connection]
vlad_starkov has joined #ruby-lang
benlovell has quit [Ping timeout: 246 seconds]
Domon has quit [Remote host closed the connection]
vlad_sta_ has joined #ruby-lang
hogeo has quit [Remote host closed the connection]
vlad_starkov has quit [Ping timeout: 256 seconds]
DEac- has joined #ruby-lang
jonahR has quit [Quit: jonahR]
zomgbie has joined #ruby-lang
rwk1 has joined #ruby-lang
nevill has quit [Quit: nevill]
yalue has joined #ruby-lang
JohnBat26 has quit [Quit: KVIrc 4.3.1 Aria http://www.kvirc.net/]
zomgbie has quit [Client Quit]
zomgbie has joined #ruby-lang
JohnBat26 has joined #ruby-lang
barttenbrinke has quit [Remote host closed the connection]
LinkedoT has joined #ruby-lang
poga has joined #ruby-lang
ngw has quit [Quit: Bye!]
pskosinski has joined #ruby-lang
poga has quit [Remote host closed the connection]
poga has joined #ruby-lang
sush24 has joined #ruby-lang
verto has joined #ruby-lang
poga has quit [Remote host closed the connection]
poga has joined #ruby-lang
ldnunes has joined #ruby-lang
barttenbrinke has joined #ruby-lang
nkr has joined #ruby-lang
JohnBat26 has quit [Ping timeout: 260 seconds]
LinkedoT has quit [Quit: This computer has gone to sleep]
workmad3 has joined #ruby-lang
atmosx has quit [Quit: And so the story goes…]
GarethAdams has quit [Quit: Linkinus - http://linkinus.com]
krz has quit [Quit: krz]
nertzy has joined #ruby-lang
ldnunes has quit [Quit: Leaving]
srji has joined #ruby-lang
JohnBat26 has joined #ruby-lang
jxie_ has quit [Quit: leaving]
rwk1 has quit [Remote host closed the connection]
ldnunes has joined #ruby-lang
GarethAdams has joined #ruby-lang
sush24 has quit [Read error: Connection reset by peer]
spuk has quit [Ping timeout: 256 seconds]
cored has joined #ruby-lang
cored has joined #ruby-lang
cored_ has joined #ruby-lang
benlovell has joined #ruby-lang
adambeynon has quit [Quit: ["Textual IRC Client: www.textualapp.com"]]
zommi has quit [Remote host closed the connection]
rippa has joined #ruby-lang
rindolf has joined #ruby-lang
<rindolf> Hi all.
sush24 has joined #ruby-lang
rwk1 has joined #ruby-lang
Mawk has joined #ruby-lang
workmad3 has quit [Ping timeout: 260 seconds]
epus has quit [Quit: epus]
machuga|away is now known as machuga
xxaM has quit [Quit: ZzZz]
machuga is now known as machuga|away
LinkedoT has joined #ruby-lang
ikrima has quit [Quit: Computer has gone to sleep.]
sush24 has quit [Ping timeout: 246 seconds]
LinkedoT has quit [Ping timeout: 256 seconds]
vlad_sta_ has quit [Remote host closed the connection]
<mdedetrich> does anyone know if its possible to use HAML to generate HTML for form builders instead of having to use things like @template.content_tag and whatnot?
<judofyr> mdedetrich: try #rubyonrails
<mdedetrich> woops shit, wrong channel
<mdedetrich> my bad
<judofyr> no worries
sush24 has joined #ruby-lang
rippa has quit [Ping timeout: 240 seconds]
mistym has joined #ruby-lang
mistym has joined #ruby-lang
eponymi has joined #ruby-lang
sush24 has quit [Ping timeout: 240 seconds]
<judofyr> yorickpeterse: did you solve your Perl problems?
<cout> sudo rm /usr/bin/perl # solve perl problems
sush24 has joined #ruby-lang
rippa has joined #ruby-lang
vbatts|work has joined #ruby-lang
LinkedoT has joined #ruby-lang
ykk` has quit [Quit: ykk`]
vlad_starkov has joined #ruby-lang
breakingthings has joined #ruby-lang
<yorickpeterse> judofyr: yes
<judofyr> yorickpeterse: what was is?
machuga|away is now known as machuga
<yorickpeterse> it was a C extension apparently that *had* to be compiled
<yorickpeterse> also managed to slap FindBin in after I found out how it worked
<yorickpeterse> I gotta show you my awesome extconf hack
rwk1 has quit [Remote host closed the connection]
<judofyr> ah, FindBin is neat yeah
<yorickpeterse> oh shit, it's gone
<yorickpeterse> hm
eponymi_ has joined #ruby-lang
<judofyr> only works for binaries though
<yorickpeterse> anyway, basically I use extconf.rb to compile the Perl shit upon installation of the RubyGem
<yorickpeterse> blag post this weekend I hope
<judofyr> wat
<injekt> ^
<judofyr> you're bundling Perl in a gem?
<yorickpeterse> judofyr: we're wrapping Perl in Ruby
dhruvasagar has joined #ruby-lang
<injekt> compiling perl from gem installation, what a wonderful word (that has been abused)
<injekt> world-
rippa has quit [Ping timeout: 240 seconds]
teleological has joined #ruby-lang
<yorickpeterse> u mad?
vlad_starkov has quit [Remote host closed the connection]
<yorickpeterse> hey, we all agreed here that people were going to hate us for doing it
<yorickpeterse> but it solves a problem in actually a rather elegant way
<yorickpeterse> (I'm not kidding)
<judofyr> never underestimate the power of Perl packages
<injekt> I love perl
<judofyr> I just ported Jbuilder: https://github.com/judofyr/json-builder
mucker has joined #ruby-lang
<yorickpeterse> judofyr: except Cpan is rolling release
<yorickpeterse> and we don't control this Perl code
<yorickpeterse> and have no guarantee that newer versions will work
<yorickpeterse> plus this particular module is 10 years old
<yorickpeterse> and cpan isn't always configured
<yorickpeterse> etc
<yorickpeterse> Making sure all that work is a lot harder than just saying "Fuckit, we'll vendor it"
LinkedoT has quit [Ping timeout: 264 seconds]
LinkedoT has joined #ruby-lang
<yorickpeterse> in this case it really is just a loop over some directories and running `perl Makefile.PL PREFIX=....` followed by make and make install
sush24 has quit [Read error: Connection reset by peer]
<yorickpeterse> man I should really blag this, I can't explain this shit over IRC
jinie has joined #ruby-lang
ddfreyne has quit [Excess Flood]
cofin has joined #ruby-lang
ddfreyne has joined #ruby-lang
eponymi has quit [Quit: Colloquy for iPhone - http://colloquy.mobi]
eponymi_ is now known as eponymi
eponymi_ has joined #ruby-lang
eponymi_ has quit [Client Quit]
cordax has joined #ruby-lang
mikewintermute has joined #ruby-lang
dhruvasagar has quit [Ping timeout: 264 seconds]
teleological has quit [Ping timeout: 240 seconds]
kleech has quit [Ping timeout: 248 seconds]
rwilcox has joined #ruby-lang
<yorickpeterse> jesus, Sinatra does some fucking retarded shit to Hash
wmoxam has joined #ruby-lang
<yorickpeterse> it includes Sinatra::Delegator which delegates stuff to Sinatra::Application
<gnufied> hmm
<yorickpeterse> instead of using their own object which extends from Hash
<yorickpeterse> waaaat
<yorickpeterse> They extend Object even
<gnufied> like core Hash class itself?
<gnufied> hmm
<apeiros> shark jumping high style
rwk1 has joined #ruby-lang
<apeiros> well, extending `main` is somewhat ok
<yorickpeterse> ....it extends Object in this case
<injekt> yorickpeterse: they extend main for old style sinatra apps, most sane people load sinatra/base and build their own
<yorickpeterse> sinatra/base doesn't do that?
<injekt> it extends main
<injekt> no
<yorickpeterse> noice
<yorickpeterse> lemme verify that
<injekt> I dont see where they alter Hash though
<yorickpeterse> Hash just inherits it from the chain
<gnufied> I think he meant by modifying Object
<yorickpeterse> ^
<injekt> ah
<injekt> I dont see how that would happen
snk has quit [Quit: I accidentally the whole program.]
carloslopes has joined #ruby-lang
<yorickpeterse> Hash extends Object
<yorickpeterse> Which includes the ancestor chain
<injekt> I know
<injekt> It extends main, it doesn't do anything to Object?
<yorickpeterse> hmmmm
<gnufied> But I am confused as well, extending main shouldn't touch Object
<injekt> ^
<yorickpeterse> yeah your're right
<yorickpeterse> but it does appear in the ancestor chain of Hash though
<yorickpeterse> maybe it explicitly fucks up `params`
<gnufied> something else is going on..
<gnufied> I just checked, it is not that extend
<injekt> maybe they extend the params hash specifically
<injekt> which would be fine
<injekt> and quite likely
<gnufied> cool. *goes back to reading NSA stories*
mdedetrich has quit [Quit: Computer has gone to sleep.]
<yorickpeterse> heh
bgant has joined #ruby-lang
runeb- has joined #ruby-lang
runeb- is now known as runeb
<yorickpeterse> DEY TUK DEM METADETAAA
gja has quit [Quit: This computer has gone to sleep]
dr_bob has quit [Ping timeout: 264 seconds]
snk has joined #ruby-lang
Rizzle has joined #ruby-lang
dabradley has quit [Quit: WeeChat 0.3.8]
tomzx_mac has joined #ruby-lang
<mikewintermute> How come proc and lambda return different values for arity? http://pastie.org/8019315
<judofyr> mikewintermute: because they accept different arguments
<judofyr> >> proc { |a| }.call
<eval-in> judofyr => nil (https://eval.in/32986)
<judofyr> >> lambda { |a| }.call
<eval-in> judofyr => wrong number of arguments (0 for 1) (ArgumentError) ... (https://eval.in/32987)
<judofyr> >> proc { |a| }.arity
<eval-in> judofyr => 1 (https://eval.in/32988)
<judofyr> >> lambda { |a| }.arity
<eval-in> judofyr => 1 (https://eval.in/32989)
<judofyr> huh
<judofyr> but yeah, that is a bit odd
cordax has quit [Quit: Computer has gone to sleep.]
dabradley has joined #ruby-lang
<erikh> >> def foo(*args); end; method(:foo).arity
<eval-in> erikh => -1 (https://eval.in/32990)
<erikh> I thought the nil might be the in-ruby equiv of -1 htere.
deception has joined #ruby-lang
deception has quit [Client Quit]
thebastl has joined #ruby-lang
rwilcox has quit [Quit: ["Textual IRC Client: www.textualapp.com"]]
shinnya has joined #ruby-lang
kleech_ has joined #ruby-lang
therealnoop has quit [Ping timeout: 276 seconds]
anonymuse has joined #ruby-lang
lcdhoffman has joined #ruby-lang
JpC0utur3 has joined #ruby-lang
chrishunt has joined #ruby-lang
io_syl has quit [Quit: Computer has gone to sleep.]
sherodtaylor has joined #ruby-lang
__carlos has joined #ruby-lang
mdedetrich has joined #ruby-lang
mistym has quit [Remote host closed the connection]
benwoody has left #ruby-lang [#ruby-lang]
mistym has joined #ruby-lang
mistym has quit [Changing host]
mistym has joined #ruby-lang
<mikewintermute> Did Kernel#proc and Kernel#lambda change in 1.9? I was under the impression they were aliases in 1.8.
mbj has joined #ruby-lang
thebastl has quit [Ping timeout: 256 seconds]
yorickpeterse is now known as yorick-cowboy
mistym has quit [Ping timeout: 248 seconds]
flexd1 has left #ruby-lang [#ruby-lang]
flexd has joined #ruby-lang
<flexd> go juv
<flexd> err
barttenbrinke has quit [Remote host closed the connection]
<apeiros> mikewintermute: yes, 1.8 and 1.9 differ in how lambda/proc relate to each other.
<apeiros> I can't remember the specifics, though
runeb has quit [Remote host closed the connection]
wesside_ has joined #ruby-lang
Jefferson has joined #ruby-lang
mucker has quit [Quit: Lost terminal]
<gnufied> there were never aliases
<gnufied> or at least as the word means
JpC0utur3 has quit [Ping timeout: 248 seconds]
sush24 has joined #ruby-lang
eponymi has quit [Quit: eponymi]
ykk` has joined #ruby-lang
maxmanders has joined #ruby-lang
gmci has joined #ruby-lang
thebastl has joined #ruby-lang
mistym has joined #ruby-lang
mistym has quit [Changing host]
mistym has joined #ruby-lang
sherodtaylor has quit [Read error: Connection reset by peer]
pipework has joined #ruby-lang
mdedetrich has quit [Quit: Computer has gone to sleep.]
sherodtaylor has joined #ruby-lang
thebastl has quit [Ping timeout: 248 seconds]
wallerdev has joined #ruby-lang
sush24 has quit [Ping timeout: 240 seconds]
barttenbrinke has joined #ruby-lang
GeissT has quit [Read error: Connection reset by peer]
<heftig> apeiros: in 1.8, they were identical (both had lambda semantics)
<heftig> mikewintermute: proc was like lambda in 1.8. it's like Proc.new in 1.9
rindolf has quit [Quit: Leaving]
sherodtaylor has quit [Remote host closed the connection]
tomzx_mac has quit [Ping timeout: 246 seconds]
sush24 has joined #ruby-lang
JohnBat26 has quit [Quit: KVIrc 4.3.1 Aria http://www.kvirc.net/]
gja has joined #ruby-lang
gja has quit [Changing host]
gja has joined #ruby-lang
faramir has joined #ruby-lang
chana has joined #ruby-lang
MaddinXx_ has joined #ruby-lang
dr_bob has joined #ruby-lang
<apeiros> heftig: um, if by "lambda semantics" you mean todays lambda, then I'm pretty sure that's not the case
<judofyr> let's check
<judofyr> 18>> proc { |a| }.call
<eval-in> judofyr => /tmp/execpad-e7cda91e51b9/source-e7cda91e51b9:2: warning: multiple values for a block parameter (0 for 1) ... (https://eval.in/33016)
<judofyr> 18>> lambda { |a| }.call
<eval-in> judofyr => /tmp/execpad-48adbc47ee86/source-48adbc47ee86:2: warning: multiple values for a block parameter (0 for 1) ... (https://eval.in/33017)
<judofyr> 18>> Prov.new { |a| }.call
<eval-in> judofyr => uninitialized constant Prov (NameError) ... (https://eval.in/33018)
<judofyr> 18>> Proc.new { |a| }.call
<eval-in> judofyr => /tmp/execpad-ec0c9b4ba0bb/source-ec0c9b4ba0bb:2: warning: multiple values for a block parameter (0 for 1) ... (https://eval.in/33019)
<judofyr> hm…
<judofyr> wtf 1.8
<yorick-cowboy> ugh, my Sinatra is so rusty
<judofyr> oh hi cowbow
yorick-cowboy is now known as yorickpeterse
<lianj> judofyr: ?
<yorickpeterse> FTFY
benwoody has joined #ruby-lang
<judofyr> lianj: ? ?
<lianj> nvm
<judofyr> :)
kleech_ has quit [Remote host closed the connection]
apeiros has quit [Remote host closed the connection]
<yorickpeterse> oh great, of course the RespondWith helper shits itself
<yorickpeterse> jesus
wmoxam has quit [Ping timeout: 245 seconds]
sush24 has quit [Ping timeout: 240 seconds]
sush24 has joined #ruby-lang
jsullivandigs has joined #ruby-lang
schaerli has quit [Remote host closed the connection]
benwoody has left #ruby-lang [#ruby-lang]
wmoxam has joined #ruby-lang
rwk1 has quit [Remote host closed the connection]
carloslopes has quit [Remote host closed the connection]
dhruvasa1ar has joined #ruby-lang
adambeynon has joined #ruby-lang
runeb has joined #ruby-lang
chana has quit [Quit: chana]
io_syl has joined #ruby-lang
solars has quit [Ping timeout: 240 seconds]
vlad_starkov has joined #ruby-lang
runeb has quit [Ping timeout: 276 seconds]
vbatts|work has quit [Ping timeout: 260 seconds]
wallerdev has quit [Quit: wallerdev]
__carlos has quit [Quit: __carlos]
bzalasky has joined #ruby-lang
glebm has joined #ruby-lang
vlad_starkov has quit [Ping timeout: 245 seconds]
Uranio has joined #ruby-lang
enebo has joined #ruby-lang
fedesilv_ has quit [Remote host closed the connection]
chana has joined #ruby-lang
cofin has quit [Quit: cofin]
benlovell has quit [Quit: leaving]
charliesome has quit [Quit: Textual IRC Client: www.textualapp.com]
Mavericks has joined #ruby-lang
benxao has joined #ruby-lang
cofin has joined #ruby-lang
vbatts|work has joined #ruby-lang
cofin has quit [Client Quit]
Mavericks has left #ruby-lang [#ruby-lang]
hashkey has joined #ruby-lang
cofin has joined #ruby-lang
cofin has quit [Client Quit]
apeiros has joined #ruby-lang
lcdhoffman has quit [Quit: lcdhoffman]
sherodtaylor has joined #ruby-lang
runeb has joined #ruby-lang
cofin has joined #ruby-lang
wallerdev has joined #ruby-lang
S1kx has joined #ruby-lang
zomgbie has quit [Ping timeout: 248 seconds]
runeb has quit [Ping timeout: 245 seconds]
bzalasky has quit [Remote host closed the connection]
gianlucadv has quit [Ping timeout: 260 seconds]
sush24 has quit [Ping timeout: 245 seconds]
ruby-lang530 has joined #ruby-lang
zomgbie has joined #ruby-lang
jaredphillips has joined #ruby-lang
apeiros has quit [Remote host closed the connection]
ruby-lang530 has quit [Client Quit]
jaredphillips has quit [Remote host closed the connection]
joevandyk has joined #ruby-lang
Oleoo has joined #ruby-lang
wmoxam has quit [Read error: Connection reset by peer]
hashkey has quit [Ping timeout: 252 seconds]
Oleoo has left #ruby-lang [#ruby-lang]
dr_bob has quit [Quit: Leaving.]
io_syl has quit [Ping timeout: 248 seconds]
dagobah_ has quit [Remote host closed the connection]
sush24 has joined #ruby-lang
dingus_khan has joined #ruby-lang
ffio has joined #ruby-lang
cozeko has joined #ruby-lang
<cozeko> Hello!
wmoxam has joined #ruby-lang
apeiros has joined #ruby-lang
bzalasky has joined #ruby-lang
<cozeko> Is anybody here speak Russia?
io_syl has joined #ruby-lang
gregmoreno has quit [Ping timeout: 256 seconds]
dingus_khan has quit [Remote host closed the connection]
hashkey has joined #ruby-lang
gregmoreno has joined #ruby-lang
bastilian has joined #ruby-lang
fedesilva has joined #ruby-lang
wmoxam_ has joined #ruby-lang
dhruvasa1ar has quit [Ping timeout: 248 seconds]
wmoxam has quit [Ping timeout: 276 seconds]
carloslopes has joined #ruby-lang
bgant has quit [Quit: bgant]
dhruvasagar has joined #ruby-lang
bzalasky has quit [Remote host closed the connection]
swav_ has joined #ruby-lang
ikrima has joined #ruby-lang
swav has quit [Read error: No route to host]
eponymi has joined #ruby-lang
benxao has quit [Remote host closed the connection]
carloslopes has quit [Ping timeout: 276 seconds]
vlad_starkov has joined #ruby-lang
cozeko has quit [Quit: cozeko]
gregmoreno has quit [Ping timeout: 245 seconds]
vbatts|work has quit [Quit: MeSoChatty 0.3.8]
swav_ has quit [Remote host closed the connection]
swav has joined #ruby-lang
ikrima has quit [Quit: Computer has gone to sleep.]
gregmoreno has joined #ruby-lang
vlad_starkov has quit [Ping timeout: 264 seconds]
barttenbrinke has quit [Remote host closed the connection]
saarinen has joined #ruby-lang
barttenbrinke has joined #ruby-lang
nveselinov has joined #ruby-lang
Mon_Ouie has quit [Ping timeout: 276 seconds]
gregmore_ has joined #ruby-lang
bastilian has quit [Quit: Leaving...]
gregmore_ has quit [Read error: Operation timed out]
barttenbrinke has quit [Remote host closed the connection]
bgant has joined #ruby-lang
gregmoreno has quit [Ping timeout: 276 seconds]
tylersmith has quit [Remote host closed the connection]
lcdhoffman has joined #ruby-lang
breakingthings has quit [Ping timeout: 246 seconds]
carloslopes has joined #ruby-lang
gregmoreno has joined #ruby-lang
nveselinov has quit [Read error: Connection reset by peer]
gianlucadv has joined #ruby-lang
breakingthings has joined #ruby-lang
ffio has quit [Quit: WeeChat 0.4.0]
saarinen has quit [Quit: saarinen]
gregmore_ has joined #ruby-lang
wmoxam has joined #ruby-lang
gregmoreno has quit [Ping timeout: 248 seconds]
runeb has joined #ruby-lang
vlad_starkov has joined #ruby-lang
wmoxam_ has quit [Ping timeout: 248 seconds]
judofyr has quit [Remote host closed the connection]
rwk1 has joined #ruby-lang
mame1 has joined #ruby-lang
mame0 has quit [Ping timeout: 248 seconds]
elia has quit [Quit: Computer has gone to sleep.]
runeb has quit [Ping timeout: 264 seconds]
intellitech has quit [Ping timeout: 248 seconds]
saarinen has joined #ruby-lang
rwk1 has quit [Ping timeout: 248 seconds]
towski has joined #ruby-lang
cored_ has quit [Ping timeout: 246 seconds]
cored has quit [Ping timeout: 246 seconds]
nveselinov has joined #ruby-lang
cored_ has joined #ruby-lang
cored has joined #ruby-lang
cored has quit [Changing host]
cored has joined #ruby-lang
enebo has quit [Quit: enebo]
saarinen has quit [Quit: saarinen]
vlad_starkov has quit [Remote host closed the connection]
dwainfaithfull has quit [Quit: dwainfaithfull]
glebm has quit [Quit: Computer has gone to sleep.]
runeb has joined #ruby-lang
glebm has joined #ruby-lang
dhruvasagar has quit [Ping timeout: 248 seconds]
Asher has joined #ruby-lang
saarinen has joined #ruby-lang
jonahR has joined #ruby-lang
vlad_starkov has joined #ruby-lang
jbwiv_ has joined #ruby-lang
mbj has quit [Ping timeout: 245 seconds]
runeb has quit [Remote host closed the connection]
swav has quit [Ping timeout: 248 seconds]
jxie has joined #ruby-lang
mame2 has joined #ruby-lang
mame1 has quit [Ping timeout: 248 seconds]
srji has quit [Ping timeout: 248 seconds]
krohrbaugh has joined #ruby-lang
dingus_khan has joined #ruby-lang
joevandyk has quit [Quit: joevandyk]
Aloysius1 has joined #ruby-lang
__carlos has joined #ruby-lang
dingus_khan has quit [Ping timeout: 276 seconds]
tylersmith has joined #ruby-lang
havenwood has joined #ruby-lang
tylersmith has quit [Remote host closed the connection]
tylersmith has joined #ruby-lang
agile has quit [Ping timeout: 248 seconds]
FlyingLeap_ has left #ruby-lang [#ruby-lang]
FlyingLeap has joined #ruby-lang
MaddinXx_ has quit [Remote host closed the connection]
saarinen has quit [Quit: saarinen]
mikewintermute has quit [Quit: mikewintermute]
joevandyk has joined #ruby-lang
mrsolo has joined #ruby-lang
saarinen has joined #ruby-lang
lcdhoffman has quit [Quit: lcdhoffman]
runeb has joined #ruby-lang
teleological has joined #ruby-lang
rue has quit [Remote host closed the connection]
mbj has joined #ruby-lang
agile has joined #ruby-lang
rue has joined #ruby-lang
srji has joined #ruby-lang
__carlos has quit [Quit: __carlos]
mame3 has joined #ruby-lang
mame2 has quit [Ping timeout: 248 seconds]
mbj has quit [Ping timeout: 245 seconds]
mbj has joined #ruby-lang
mame3 has quit [Ping timeout: 248 seconds]
mistym is now known as mistym_lunch
saarinen has quit [Read error: Connection reset by peer]
saarinen has joined #ruby-lang
Mon_Ouie has joined #ruby-lang
mame3 has joined #ruby-lang
joevandyk has quit [Quit: joevandyk]
LinkedoT has quit [Quit: This computer has gone to sleep]
ia___ has joined #ruby-lang
ia___ has quit [Client Quit]
benanne has joined #ruby-lang
runeb has quit [Remote host closed the connection]
mbj has quit [Quit: Lost terminal]
teleological has quit [Ping timeout: 245 seconds]
gregmoreno has joined #ruby-lang
gregmore_ has quit [Ping timeout: 252 seconds]
nirix has quit [Ping timeout: 252 seconds]
dingus_khan has joined #ruby-lang
Oloryn_lt21 has quit [Quit: Leaving.]
r0bby has joined #ruby-lang
anonymuse has quit [Quit: Linkinus - http://linkinus.com]
Mon_Ouie has quit [Quit: WeeChat 0.4.1]
workmad3 has joined #ruby-lang
swav has joined #ruby-lang
robbyoconnor has quit [Ping timeout: 240 seconds]
eponymi has quit [Quit: eponymi]
vlad_starkov has quit [Remote host closed the connection]
Uranio has quit [Quit: while you reading this, a kitty dies]
Silex has quit [Read error: Operation timed out]
swav has quit [Remote host closed the connection]
glebm has quit [Quit: Computer has gone to sleep.]
nirix has joined #ruby-lang
Silex has joined #ruby-lang
dingus_khan has quit [Remote host closed the connection]
sepp2k has joined #ruby-lang
jnoon has joined #ruby-lang
runeb has joined #ruby-lang
saarinen has quit [Quit: saarinen]
<jnoon> here is an odd one, anyone have a guess? in my rspec tests, for some reason an object isnt returning true to obj.is_a?(Movie), but inspecting the object shows it is a Movie, and obj.class shows Movie, however obj.class == Movie returns FALSE, and obj.class.object_id is different from Movie.object_id.
saarinen has joined #ruby-lang
<jnoon> so somehow i have two different Movie classes, but no idea how that could happen
dingus_khan has joined #ruby-lang
runeb has quit [Ping timeout: 276 seconds]
lcdhoffman has joined #ruby-lang
srji has quit [Ping timeout: 248 seconds]
epus has joined #ruby-lang
teleological has joined #ruby-lang
krames has joined #ruby-lang
<apeiros> jnoon: things like rails' reloading process can do that
<jnoon> apeiros: yes, i think you nailed it… i was just looking through recent changes and we added spring. im pretty sure i know how to fix it now
<apeiros> >> class X; end; a = X; Object.send(:remove_const, :X); class X; end; [a, X, a.object_id, X.object_id]
<eval-in> apeiros => [X, X, 552454010, 552453980] (https://eval.in/33025)
epus has quit [Quit: epus]
dingus_khan has quit [Remote host closed the connection]
joevandyk has joined #ruby-lang
fedesilva has quit [Read error: Connection reset by peer]
fedesilva has joined #ruby-lang
sush24 has quit [Ping timeout: 248 seconds]
benwoody has joined #ruby-lang
benwoody has left #ruby-lang [#ruby-lang]
rockpapergoat has joined #ruby-lang
LinkedoT has joined #ruby-lang
vlad_starkov has joined #ruby-lang
vlad_starkov has quit [Read error: Connection reset by peer]
vlad_starkov has joined #ruby-lang
t_ has joined #ruby-lang
cored_ has quit [Ping timeout: 245 seconds]
cored has quit [Ping timeout: 245 seconds]
ykk` has quit [Quit: ykk`]
workmad3 has quit [Ping timeout: 248 seconds]
mikewintermute has joined #ruby-lang
nirix has quit [Ping timeout: 252 seconds]
vlad_starkov has quit [Ping timeout: 276 seconds]
mikewintermute has quit [Quit: mikewintermute]
Xzyx987X_ has joined #ruby-lang
atmosx has joined #ruby-lang
srji has joined #ruby-lang
thiagoborges has joined #ruby-lang
t_ has quit [Remote host closed the connection]
Xzyx987X has quit [Ping timeout: 276 seconds]
DomKM has quit [Quit: Leaving.]
<cout> why does soap make me feel dirty?
<atmosx> cout: because you're cute!
<krames> Give it a REST! :-P
<cout> haha
davejlong has joined #ruby-lang
<drbrain> cout: reminds me of http://www.youtube.com/watch?v=LK7QDUdjXoE
mistym_lunch is now known as mistym
<cout> drbrain: oh wow, I forgot about that one
cofin has quit [Quit: cofin]
forrest has joined #ruby-lang
rippa has joined #ruby-lang
runeb has joined #ruby-lang
Mon_Ouie has joined #ruby-lang
runeb has quit [Ping timeout: 264 seconds]
swav has joined #ruby-lang
krohrbaugh has quit [Quit: Leaving.]
saarinen has quit [Quit: saarinen]
teleological has quit [Remote host closed the connection]
sherodtaylor has quit [Remote host closed the connection]
swav has quit [Ping timeout: 264 seconds]
jbwiv_ has quit [Remote host closed the connection]
dingus_khan has joined #ruby-lang
sepp2k1 has joined #ruby-lang
dingus_khan has quit [Remote host closed the connection]
sepp2k has quit [Ping timeout: 264 seconds]
ykk` has joined #ruby-lang
jsullivandigs has quit [Remote host closed the connection]
jsullivandigs has joined #ruby-lang
nirix has joined #ruby-lang
gja has quit [Quit: This computer has gone to sleep]
rockpapergoat has quit [Remote host closed the connection]
maxmanders has quit [Quit: Computer has gone to sleep.]
jsullivandigs has quit [Ping timeout: 252 seconds]
yalue has quit [Quit: Leaving]
mikewintermute has joined #ruby-lang
jsullivandigs has joined #ruby-lang
mikewintermute has quit [Quit: mikewintermute]
saarinen has joined #ruby-lang
glebm has joined #ruby-lang
ged has quit [Read error: Connection reset by peer]
ged has joined #ruby-lang
carloslopes has quit [Remote host closed the connection]
krohrbaugh has joined #ruby-lang
vlad_starkov has joined #ruby-lang
chana has quit [Quit: chana]
srji has quit [Ping timeout: 248 seconds]
chana has joined #ruby-lang
atmosx has quit [Quit: And so the story goes…]
dwainfaithfull has joined #ruby-lang
dwainfaithfull has quit [Client Quit]
Squarepy has quit [Quit: Leaving]
vlad_starkov has quit [Ping timeout: 264 seconds]
mikewintermute has joined #ruby-lang
davejlong has quit [Read error: Connection reset by peer]
krohrbaugh has quit [Ping timeout: 248 seconds]
sherodtaylor has joined #ruby-lang
chana has quit [Quit: chana]
workmad3 has joined #ruby-lang
runeb has joined #ruby-lang
s0ber_ has joined #ruby-lang
cofin has joined #ruby-lang
hhatch has quit [Ping timeout: 276 seconds]
runeb has quit [Ping timeout: 264 seconds]
s0ber has quit [Ping timeout: 240 seconds]
s0ber_ is now known as s0ber
<joevandyk> email me at joe@tanga.com if you are
<joevandyk> (paid open source)
<apeiros> tanga.com? srsly?
<apeiros> who are you? todd? :D
srji has joined #ruby-lang
<joevandyk> apeiros: todd?
workmad3 has quit [Ping timeout: 276 seconds]
<joevandyk> from scrubs?
<joevandyk> i didn't come up with the name :(
<joevandyk> love that guy though
glebm has quit [Quit: Computer has gone to sleep.]
<joevandyk> we also run lolshirts.com, bellechic.com, and discountmags.com
<joevandyk> so it's not all banana hammocks here
maxmanders has joined #ruby-lang
<apeiros> sounds like a fun problem
<apeiros> I'd specify what "large order" means, and provide an example which can be used to test the time limit.
<apeiros> also, "0.01s" without hardware spec is pointless
elia has joined #ruby-lang
wmoxam_ has joined #ruby-lang
wmoxam has quit [Ping timeout: 264 seconds]
mikewintermute has quit [Quit: mikewintermute]
rippa has quit [Ping timeout: 240 seconds]
<joevandyk> apeiros: i guess any reasonable machine, if a 200+ item order takes 0.2 seconds, it's not a problem. but i don't want a 8 item order taking 8 seconds while figuring out all the possible combinations
krohrbaugh has joined #ruby-lang
dingus_khan has joined #ruby-lang
workmad3 has joined #ruby-lang
rwk1 has joined #ruby-lang
dwainfaithfull has joined #ruby-lang
lcdhoffman has quit [Quit: lcdhoffman]
dingus_khan has quit [Ping timeout: 252 seconds]
rwk1 has quit [Ping timeout: 252 seconds]
jsullivandigs has quit [Remote host closed the connection]
workmad3 has quit [Ping timeout: 256 seconds]
jsullivandigs has joined #ruby-lang
jsullivandigs has quit [Ping timeout: 252 seconds]
gmci has quit [Ping timeout: 248 seconds]
loincloth has quit [Remote host closed the connection]
wesside_ has quit [Quit: Computer has gone to sleep.]
gmci has joined #ruby-lang
vlad_starkov has joined #ruby-lang
srji_ has joined #ruby-lang
vlad_starkov has quit [Ping timeout: 264 seconds]
srji has quit [Ping timeout: 248 seconds]
machuga is now known as machuga|away
runeb has joined #ruby-lang
kith_ has joined #ruby-lang
atmosx has joined #ruby-lang
kith has quit [Ping timeout: 256 seconds]
nkr has quit [Quit: Linkinus - http://linkinus.com]
krohrbaugh has quit [Quit: Leaving.]
runeb has quit [Ping timeout: 264 seconds]
dingus_khan has joined #ruby-lang
ldnunes has quit [Quit: Leaving]
workmad3 has joined #ruby-lang
havenwood has quit [Remote host closed the connection]
adambeynon has quit [Quit: ["Textual IRC Client: www.textualapp.com"]]
krohrbaugh has joined #ruby-lang
dingus_khan has quit [Remote host closed the connection]
eponymi has joined #ruby-lang
eponymi has quit [Client Quit]
wmoxam_ has quit [Ping timeout: 260 seconds]
<injekt> wuzzzzzer
workmad3 has quit [Ping timeout: 260 seconds]
<ykk`> injekt: you so cray
r0bby is now known as robbyoconnor
benwoody has joined #ruby-lang
r0bby has joined #ruby-lang
glebm has joined #ruby-lang
robbyoconnor has quit [Ping timeout: 248 seconds]
jsullivandigs has joined #ruby-lang
hahuang65 has joined #ruby-lang
rwk1 has joined #ruby-lang
<perry> does anyone know what the "PLAIN" mechanism is? I'm trying to connect to a SASL password protected memcached server
<drbrain> perry: typically it's a plain text password
<drbrain> perry: only for use on an SSL connection, obviously
<perry> hmm what should I do? I generated the user and password on the server with saslpasswd
dwainfaithfull has quit [Quit: dwainfaithfull]
pipework has quit [Remote host closed the connection]
<drbrain> what memcache library are you using?
<perry> dalli
<perry> well I can just run w/o password
rwk1 has quit [Ping timeout: 256 seconds]
<drbrain> it seems like you can give them to arguments to Dalli::Client
<perry> yes I supplied those options for password… but it prints an error: NotImplementedError: Dalli only supports the PLAIN authentication mechanism
<perry> I'll just run w/o password and not worry about it
<drbrain> ah, so I imagine the server does not support PLAIN, perhaps because there is no SSL
<drbrain> ?
ykk` has quit [Quit: ykk`]
<perry> no idea :) my use of memcache is for a small little application anyway.
shame has joined #ruby-lang
agile has quit [Quit: Ex-Chat]
<erikh> you don't need to password memcached IIRC
shame has quit [Client Quit]
<drbrain> erikh: it seems to be an option now
agile has joined #ruby-lang
<erikh> I mean, if he doesn't want to SSL it up
<perry> yolo
<erikh> ^
<injekt> ^
<drbrain> ↑
<drbrain> my arrow is better
<injekt> mine is a carrot
<erikh> silly englishman
<erikh> you and your funny accent and your blood sausage
forrest has quit [Quit: Leaving]
<injekt> nom
thiagoborges has quit [Remote host closed the connection]
<injekt> new nokogiri has dropped!
gregmoreno has quit [Remote host closed the connection]
<drbrain> woo
vlad_starkov has joined #ruby-lang
enebo has joined #ruby-lang
<erikh> injekt: congrats
runeb has joined #ruby-lang
Jefferson has quit [Ping timeout: 256 seconds]
<injekt> :)
breakingthings has quit [Quit: breakingthings]
vlad_starkov has quit [Ping timeout: 248 seconds]
glebm has quit [Quit: Computer has gone to sleep.]
runeb has quit [Ping timeout: 260 seconds]
cofin has quit [Quit: cofin]
mistym has quit [Remote host closed the connection]
LinkedoT has quit [Quit: This computer has gone to sleep]
RahulT has joined #ruby-lang
guns has joined #ruby-lang
jonahR has quit [Quit: jonahR]
glebm has joined #ruby-lang
bgant has quit [Quit: bgant]
krames has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
atmosx has quit [Quit: And so the story goes…]
jonahR has joined #ruby-lang
jonahR has quit [Client Quit]
RahulT has quit [Quit: Textual IRC Client: www.textualapp.com]
krohrbaugh1 has joined #ruby-lang
krohrbaugh has quit [Ping timeout: 256 seconds]
sherodtaylor has quit [Remote host closed the connection]
srji_ has quit [Ping timeout: 248 seconds]
glebm has quit [Quit: Computer has gone to sleep.]
voker57 has joined #ruby-lang
voker57 has quit [Changing host]
voker57 has joined #ruby-lang
voker57 is now known as Voker56
Voker57 has joined #ruby-lang
Voker56 has quit [Client Quit]
zomgbie has quit [Ping timeout: 245 seconds]
<zenspider> minitest version 5.0.4 has been released! | software releases by ryan davis - http://blog.zenspider.com/releases/2013/06/minitest-version-5-0-4-has-been-released.html
DomKM has joined #ruby-lang
dingus_khan has joined #ruby-lang
chrishunt has quit [Quit: So long...]
bastilian has joined #ruby-lang
dingus_khan has quit [Ping timeout: 256 seconds]
sherodtaylor has joined #ruby-lang
bastilian has quit [Read error: Connection reset by peer]
tomzx_mac has joined #ruby-lang
Asher has quit [Quit: Leaving.]
solars has joined #ruby-lang
faramir has quit [Remote host closed the connection]
gnufied has quit [Quit: Leaving.]
rwk1 has joined #ruby-lang
havenwood has joined #ruby-lang
lcdhoffman has joined #ruby-lang
heftig has quit [Quit: Quitting]
rwk1 has quit [Ping timeout: 248 seconds]
heftig has joined #ruby-lang
Nisstyre-laptop has quit [Quit: Leaving]
lcdhoffman has quit [Client Quit]
ykk` has joined #ruby-lang
maxmanders has quit [Quit: Computer has gone to sleep.]
crackity_jones has joined #ruby-lang
crackity_jones has quit [Client Quit]
GarethAdams has quit [Quit: Leaving...]
runeb has joined #ruby-lang
zomgbie has joined #ruby-lang
hahuang65 has quit [Quit: Computer has gone to sleep.]
JpC0utur3 has joined #ruby-lang
jefus has quit [Ping timeout: 260 seconds]
GarethAdams has joined #ruby-lang
mbj has joined #ruby-lang
krohrbaugh1 has quit [Quit: Leaving.]
dingus_khan has joined #ruby-lang
vlad_starkov has joined #ruby-lang
krohrbaugh has joined #ruby-lang
runeb has quit [Ping timeout: 260 seconds]
JpC0utur3 has quit [Read error: Operation timed out]
mbj has quit [Quit: Lost terminal]
arubin has joined #ruby-lang
vlad_starkov has quit [Ping timeout: 276 seconds]
mrsolo has quit [Quit: Leaving]
ikrima has joined #ruby-lang
zomgbie has quit [Ping timeout: 276 seconds]
<zenspider> rawr
<erikh> floop
mbj has joined #ruby-lang
lcdhoffman has joined #ruby-lang
lcdhoffman has quit [Client Quit]
krohrbaugh has quit [Quit: Leaving.]
kstuart has quit [Quit: kstuart]
krohrbaugh has joined #ruby-lang
krohrbaugh has quit [Read error: Connection reset by peer]
krohrbaugh1 has joined #ruby-lang
<injekt> derp
GarethAdams has quit [Quit: Leaving...]
hahuang65 has joined #ruby-lang
kith_ has quit [Read error: Connection reset by peer]
kith has joined #ruby-lang
face has quit [Ping timeout: 256 seconds]
toretore has quit [Quit: Leaving]
krohrbaugh1 has quit [Quit: Leaving.]
fedesilva has quit [Remote host closed the connection]
krohrbaugh has joined #ruby-lang
dingus_khan has quit [Remote host closed the connection]
ikrima has quit [Quit: Computer has gone to sleep.]
stamina has quit [Ping timeout: 256 seconds]
Jefferson has joined #ruby-lang
marr has quit [Ping timeout: 256 seconds]
<perry> where should new gems be pushed? rubygems or rubyforge?
<drbrain> rubygems.org
<perry> nice, thank you sir
<drbrain> just `gem push`
dingus_khan has joined #ruby-lang
runeb has joined #ruby-lang
solars has quit [Ping timeout: 252 seconds]
runeb has quit [Read error: Connection reset by peer]
runeb has joined #ruby-lang
LinkedoT has joined #ruby-lang
sepp2k1 has quit [Quit: Leaving.]
mbj has quit [Ping timeout: 252 seconds]
kstuart has joined #ruby-lang
kstuart has quit [Client Quit]
joevandyk has quit [Quit: joevandyk]
kstuart has joined #ruby-lang
kstuart has quit [Client Quit]
glebm has joined #ruby-lang
kstuart has joined #ruby-lang
krohrbaugh has quit [Quit: Leaving.]
zomgbie has joined #ruby-lang
krohrbaugh has joined #ruby-lang
chana has joined #ruby-lang
chana has quit [Client Quit]
enebo has quit [Quit: enebo]
<perry> drbrain, I'm working on this atm https://rubygems.org/gems/strace-explain
krohrbaugh has quit [Client Quit]
vlad_starkov has joined #ruby-lang