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
jacktrick has quit [Quit: Leaving]
havenwood has joined #ruby-lang
swav has quit [Remote host closed the connection]
swav has joined #ruby-lang
x0f has quit [Ping timeout: 255 seconds]
Spaceghost|work is now known as pipework
x0f has joined #ruby-lang
wmoxam has joined #ruby-lang
swav has quit [Ping timeout: 255 seconds]
apeiros has joined #ruby-lang
wesside_ has quit [Quit: Computer has gone to sleep.]
brianpWins has quit [Quit: brianpWins]
__butch__ has quit [Quit: Leaving.]
apeiros has quit [Ping timeout: 260 seconds]
fragamus has joined #ruby-lang
wmoxam has quit [Ping timeout: 264 seconds]
smook1 has quit [Ping timeout: 255 seconds]
mdedetrich has joined #ruby-lang
wmoxam has joined #ruby-lang
gregmoreno has joined #ruby-lang
jerkbot1 has joined #ruby-lang
Nisstyre-laptop has quit [Read error: Connection reset by peer]
toretore has quit [Quit: Leaving]
tylersmith has joined #ruby-lang
jerkbot1 has quit [Remote host closed the connection]
jerkbot1 has joined #ruby-lang
smook1 has joined #ruby-lang
jerkbot1 has quit [Remote host closed the connection]
justinmburrous has quit [Remote host closed the connection]
jerkbot1 has joined #ruby-lang
nathanstitt has quit [Quit: I growing sleepy]
jerkbot1 has quit [Remote host closed the connection]
codejury_ has left #ruby-lang [#ruby-lang]
jerkbot1 has joined #ruby-lang
nazty has quit [Ping timeout: 256 seconds]
hogeo has joined #ruby-lang
codejury has joined #ruby-lang
tkuchiki has joined #ruby-lang
elia has quit [Quit: Computer has gone to sleep.]
nathanstitt has joined #ruby-lang
stringly_typed has quit [Quit: Computer has gone to sleep.]
gfarfl has joined #ruby-lang
crackity_jones has joined #ruby-lang
nveselinov has quit [Read error: Connection reset by peer]
pabs has quit [Quit: leaving]
krombr has quit [Quit: krombr]
mistym has joined #ruby-lang
brianpWins has joined #ruby-lang
dankest has quit [Quit: Leaving...]
kuja has quit [Quit: ZNC - http://znc.sourceforge.net]
dankest has joined #ruby-lang
dankest has quit [Client Quit]
kuja has joined #ruby-lang
nathanstitt has quit [Quit: I growing sleepy]
woollyams has joined #ruby-lang
gregmoreno has quit [Read error: Operation timed out]
machuga|away is now known as machuga
nveselinov has joined #ruby-lang
wallerdev has quit [Quit: wallerdev]
swav has joined #ruby-lang
sebasoga has joined #ruby-lang
marr has quit [Ping timeout: 248 seconds]
nveselinov has quit [Read error: Connection reset by peer]
nveselinov has joined #ruby-lang
kuja has quit [Ping timeout: 240 seconds]
nveselinov has quit [Read error: Connection reset by peer]
nveselinov has joined #ruby-lang
saarinen has quit [Quit: saarinen]
sebasoga has quit [Client Quit]
swav has quit [Ping timeout: 248 seconds]
kuja has joined #ruby-lang
DomKM has joined #ruby-lang
synthetix has joined #ruby-lang
hashkey has joined #ruby-lang
brianpWins has quit [Ping timeout: 246 seconds]
GeissT has joined #ruby-lang
dankest has joined #ruby-lang
shinnya has quit [Read error: Operation timed out]
ehutzelman has quit [Ping timeout: 256 seconds]
dankest has quit [Quit: Linkinus - http://linkinus.com]
cstrahan has quit [Ping timeout: 252 seconds]
GarethAdams has quit [Quit: Leaving...]
dhruvasagar has joined #ruby-lang
synthetix has quit [Ping timeout: 240 seconds]
rockpapergoat has joined #ruby-lang
ehutzelman has joined #ruby-lang
bzalasky has joined #ruby-lang
Nisstyre-laptop has joined #ruby-lang
Bosox20051 has joined #ruby-lang
teleological has joined #ruby-lang
hahuang65 has joined #ruby-lang
krohrbaugh has joined #ruby-lang
alex____ has joined #ruby-lang
alex____ has quit [Remote host closed the connection]
somasonic has left #ruby-lang ["fin."]
saarinen has joined #ruby-lang
<hahuang65> is it impossible to unfreeze a ruby object?
teleological has quit [Read error: No route to host]
teleological has joined #ruby-lang
ia___ has joined #ruby-lang
rockpapergoat has quit [Remote host closed the connection]
havenwood has quit [Remote host closed the connection]
slowhands has joined #ruby-lang
wmoxam has quit [Ping timeout: 248 seconds]
<drbrain> hahuang65: from pure ruby? yes
<hahuang65> drbrain: :(
hashkey has quit [Ping timeout: 256 seconds]
<drbrain> hahuang65: why :( ?
<drbrain> You can create an unfrozen duplicate of the object with #dup
hashkey has joined #ruby-lang
Boohbah has joined #ruby-lang
hashkey is now known as Guest28424
<hahuang65> drbrain: doesn't work for Mongoid objects.
<hahuang65> drbrain: sure it works for Ruby objects, but not on ActiveRecord or Mongoid objects.
gregmoreno has joined #ruby-lang
<hahuang65> drbrain: my problem is that I'm fetching a Mongoid::Document out of Memcached, and ActiveSupport will freeze it upon retrieval from cache. At that point, I can't modify the object.
<drbrain> so dup it?
gregmoreno has quit [Ping timeout: 240 seconds]
jonahR_ has joined #ruby-lang
pskosinski has quit [Remote host closed the connection]
nathanstitt has joined #ruby-lang
jonahR has quit [Ping timeout: 252 seconds]
jonahR_ is now known as jonahR
<hahuang65> drbrain: that actually causes side-effects… Mongoid overrides the .dup method so that it doesn't include the ID field and a couple other fields…. which means that I'll have to manually do that, which means that .changes on the new object will be populated such that even if the object wasn't changed, the .changed? method would return true
<drbrain> then you probably need to consult the ActiveSupport cache documentation to determine what you're supposed to do when you retrieve a cached value and want to modify it
smook1 has quit [Ping timeout: 255 seconds]
<Boohbah> is there something like Kernel#__callee__ for getting the name of the caller method? I see Kernel#caller ... should i parse self.caller.first? Any ideas?
<ericwood> my dog's nickname is boohbah
<ericwood> :D
<Boohbah> heh
<ericwood> sorry, I can't help so I'll shut up
<hahuang65> Boohbah: caller
<drbrain> Boohbah: a method should not need to know its caller, so there is no such thing as __callee__
<hahuang65> Boohbah: usually I'll do caller.select { |x| x["app/"] }.first to see the very last line that was called in my app code
<drbrain> so yes, parse caller.first
<Boohbah> drbrain: you mean there is no such thing as __caller__
<drbrain> you probably want caller(1, 1).first to avoid extra garbage if you absolutely need the callee
smook1 has joined #ruby-lang
io_syl has quit [Read error: Operation timed out]
<Boohbah> okay, thanks everyone
<drbrain> Boohbah: no, there is no such thing as __callee__
<hahuang65> drbrain: hash they filed bugs against ActiveSupport and Mongoid about this… which apparently they've fixed in the next versions… but that's not an option for me.
<drbrain> o_O
<drbrain> oh, wow
<Boohbah> O_o
<drbrain> I learned something new today! thanks
<Boohbah> we are all learning! :)
<ericwood> I learned nothing
<Boohbah> ericwood: you learned that your dog uses the internet
<ericwood> I'm impressed, tbh
hahuang65 has quit [Quit: Computer has gone to sleep.]
gregmoreno has joined #ruby-lang
jackhammer2022 has joined #ruby-lang
krohrbaugh has quit [Ping timeout: 255 seconds]
teleological has quit [Remote host closed the connection]
bzalasky has quit [Remote host closed the connection]
teleological has joined #ruby-lang
vlad_starkov has joined #ruby-lang
gregmore_ has joined #ruby-lang
<Boohbah> "#{RPC_URL}#{$1}&arg=#{arg}" if /`(.*)'/.match caller(1).first
<Boohbah> woot
bzalasky has joined #ruby-lang
vlad_starkov has quit [Ping timeout: 248 seconds]
smook1 has quit [Ping timeout: 255 seconds]
gregmoreno has quit [Ping timeout: 240 seconds]
slowhands has quit [Quit: Computer has gone to sleep]
<mistym> ERROR: While executing gem ... (RuntimeError); Unsupported digest algorithm (SHA512).
<mistym> Sob
<drbrain> mistym: o_O
<mistym> drbrain: I guess my ruby (2.0.0-p0) was compiled against the openssl that came with the OS, which is ancient/deficient
bzalasky has quit [Remote host closed the connection]
<drbrain> mistym: then it should fall back to the built-in SHA stuff
<mistym> drbrain: Hm, doesn't seem to be in this case.
cored has quit [Ping timeout: 260 seconds]
<drbrain> huh
kstuart has quit [Ping timeout: 264 seconds]
slowhands has joined #ruby-lang
jackhammer2022 has quit [Quit: Textual IRC Client: http://www.textualapp.com/]
DomKM has quit [Quit: Leaving.]
<mistym> And how ironic! I can't try updating rubygems to 2.0.3 for the same reason :D
<drbrain> mistym: the tarball on rubygems.org/pages/download should work, but I don't think it will fix this problem
io_syl has joined #ruby-lang
io_syl has quit [Client Quit]
ikrima has joined #ruby-lang
dhruvasagar has quit [Ping timeout: 256 seconds]
mbj has quit [Ping timeout: 255 seconds]
Guest28424 has quit [Quit: Leaving]
<mistym> drbrain: Should I report this on the rubygems tracker?
<drbrain> yes, but also on the ruby tracker
<drbrain> oh, RubyGems uses OpenSSL::Digest
<drbrain> echo 'hello' | openssl dgst -sha512
<drbrain> does that print out e7c22b994c59d9cf2b48e549b1e24666636045930d3da7c1acb299d1c3b7f931f94aae41edda2c2b207a36e10f8bcb8d45223e54878f5b316e7ce3b6bc019629
<drbrain> (and is that the same openssl as ruby -ropenssl -e 'p OpenSSL::OPENSSL_VERSION'
<drbrain> )?
smook1 has joined #ruby-lang
dhruvasagar has joined #ruby-lang
slowhands has quit [Quit: Computer has gone to sleep]
fragamus has quit [Quit: Computer has gone to sleep.]
<mistym> drbrain: No, the openssl on the system doesn't do sha512, and it looks like ruby 2.0 built against that same openssl
<drbrain> ok, then no ruby ticket
<drbrain> what openssl is that?
<mistym> 0.9.7l
<mistym> so old
<drbrain> oh wow
synthetix has joined #ruby-lang
<mistym> Yeah, I know. This is OS X Tiger, and I guess I didn't realize it was getting OpenSSL updates as *recently* as September 2006.
dhruvasagar has quit [Ping timeout: 255 seconds]
<drbrain> hehe
saarinen has quit [Quit: saarinen]
saarinen has joined #ruby-lang
wallerdev has joined #ruby-lang
gregmoreno has joined #ruby-lang
gregmore_ has quit [Ping timeout: 255 seconds]
setmeaway2 has quit [Ping timeout: 252 seconds]
bzalasky has joined #ruby-lang
nathanstitt has quit [Quit: I growing sleepy]
havenwood has joined #ruby-lang
ruby-lang259 has joined #ruby-lang
ia___ has quit [Quit: ia___]
lsegal has joined #ruby-lang
jonahR has quit [Quit: jonahR]
cofin has quit [Quit: cofin]
swav has joined #ruby-lang
jroes has joined #ruby-lang
<jroes> what's the most straightforward way to do the equivalent of a select col1, sum(col2) from table group by col1 with a list of ruby hashes? ex:
<jroes> [{ name: 'sevenseacat', quantity: 1 }, { name: 'sevenseacat', quantity: 2 }, { name: 'pipework', quantity: 3 }] # => [{ name: 'sevenseacat', quantity: 3 }, { name: 'pipework', quantity: 3 }]
dhruvasagar has joined #ruby-lang
jsullivandigs has quit [Remote host closed the connection]
gregmore_ has joined #ruby-lang
jsullivandigs has joined #ruby-lang
ruby-lang259 has quit [Ping timeout: 250 seconds]
gregmoreno has quit [Ping timeout: 256 seconds]
arooni-mobile has joined #ruby-lang
jsullivandigs has quit [Ping timeout: 255 seconds]
Markvilla has quit [Quit: ["Textual IRC Client: www.textualapp.com"]]
justinmburrous has joined #ruby-lang
wmoxam has joined #ruby-lang
justinmburrous has quit [Remote host closed the connection]
teleological has quit [Remote host closed the connection]
havenwood has quit [Remote host closed the connection]
vlad_starkov has joined #ruby-lang
x0f has quit [Ping timeout: 248 seconds]
smook1 has quit [Ping timeout: 255 seconds]
vlad_starkov has quit [Ping timeout: 264 seconds]
x0f has joined #ruby-lang
arubin has quit [Quit: Textual IRC Client: www.textualapp.com]
wmoxam has quit [Ping timeout: 256 seconds]
tylersmith has quit [Remote host closed the connection]
hhatch has joined #ruby-lang
x0f has quit [Ping timeout: 252 seconds]
x0f has joined #ruby-lang
stringly_typed has joined #ruby-lang
synthetix has quit [Ping timeout: 260 seconds]
justinmburrous has joined #ruby-lang
x0f has quit [Ping timeout: 276 seconds]
dhruvasagar has quit [Read error: Connection reset by peer]
x0f has joined #ruby-lang
justinmburrous has quit [Remote host closed the connection]
smook1 has joined #ruby-lang
dhruvasagar has joined #ruby-lang
skade has joined #ruby-lang
ikrima has quit [Quit: Computer has gone to sleep.]
tarruda has quit [Ping timeout: 240 seconds]
duckinator has quit [Ping timeout: 240 seconds]
cschneid has quit [Ping timeout: 245 seconds]
x0f has quit [Ping timeout: 260 seconds]
Bosox20051 has quit [Remote host closed the connection]
x0f has joined #ruby-lang
jsullivandigs has joined #ruby-lang
smook2 has joined #ruby-lang
apeiros has joined #ruby-lang
thebastl has joined #ruby-lang
smook1 has quit [Read error: Connection reset by peer]
mistym has quit [Remote host closed the connection]
arooni-mobile has quit [Ping timeout: 255 seconds]
bzalasky has quit [Remote host closed the connection]
tylersmith has joined #ruby-lang
pabs has joined #ruby-lang
saarinen has quit [Quit: saarinen]
tylersmith has quit [Ping timeout: 255 seconds]
shireesh has joined #ruby-lang
fsvehla has joined #ruby-lang
teleological has joined #ruby-lang
teleological has quit [Ping timeout: 246 seconds]
mbj has joined #ruby-lang
sush24 has joined #ruby-lang
saarinen has joined #ruby-lang
apeiros has quit [Remote host closed the connection]
wallerdev has quit [Quit: wallerdev]
jonahR has joined #ruby-lang
solars has quit [Ping timeout: 264 seconds]
tylersmith has joined #ruby-lang
ruurd has joined #ruby-lang
ruurd has quit [Client Quit]
skade has quit [Quit: Computer has gone to sleep.]
tylersmith has quit [Ping timeout: 256 seconds]
dhruvasagar has quit [Ping timeout: 246 seconds]
tomzx_mac has quit [Ping timeout: 264 seconds]
saarinen has quit [Quit: saarinen]
Phoop has joined #ruby-lang
codejury has quit [Remote host closed the connection]
codejury has joined #ruby-lang
ehutzelman has quit [Remote host closed the connection]
havenwood has joined #ruby-lang
workmad3 has joined #ruby-lang
dc5ala has joined #ruby-lang
bzalasky has joined #ruby-lang
stringly_typed has quit [Quit: Computer has gone to sleep.]
x0f has quit [Ping timeout: 246 seconds]
stringly_typed has joined #ruby-lang
workmad3 has quit [Read error: Operation timed out]
smook2 has quit [Ping timeout: 255 seconds]
x0f has joined #ruby-lang
smook2 has joined #ruby-lang
ruurd has joined #ruby-lang
x0f has quit [Ping timeout: 260 seconds]
x0f has joined #ruby-lang
ruurd has quit [Client Quit]
x0f has quit [Ping timeout: 248 seconds]
x0f has joined #ruby-lang
bzalasky has quit [Remote host closed the connection]
dagobah has joined #ruby-lang
stringly_typed has quit [Quit: Computer has gone to sleep.]
dbussink_ has quit [Remote host closed the connection]
dbussink has joined #ruby-lang
ruurd has joined #ruby-lang
ruurd has quit [Client Quit]
dr_bob has joined #ruby-lang
skade has joined #ruby-lang
sush24 has quit [Quit: This computer has gone to sleep]
ruurd has joined #ruby-lang
Weems has quit [Ping timeout: 255 seconds]
sush24 has joined #ruby-lang
tylersmith has joined #ruby-lang
smook2 has quit [Ping timeout: 255 seconds]
charliesome has joined #ruby-lang
<canton7> jroes, arr.inject(Hash.new(0)){ |s,h| s[h[:name]] += h[:quantity] }
<canton7> jroes, arr.inject(Hash.new(0)){ |s,h| s[h[:name]] += h[:quantity]; s } rather
Mon_Ouie has joined #ruby-lang
<charliesome> canton7: please don't abuse inject in this way
mbj has quit [Ping timeout: 256 seconds]
<canton7> you'd prefer each_with_object. cool. different people take different approaches here - you see both around
tylersmith has quit [Ping timeout: 248 seconds]
jsullivandigs has quit [Remote host closed the connection]
jsullivandigs has joined #ruby-lang
crackity_jones has quit [Quit: Computer has gone to sleep.]
jsullivandigs has quit [Ping timeout: 246 seconds]
jsullivandigs has joined #ruby-lang
judofyr has joined #ruby-lang
solars has joined #ruby-lang
AynGhandi has joined #ruby-lang
jsullivandigs has quit [Ping timeout: 252 seconds]
yxhuvud has joined #ruby-lang
havenwood has quit [Remote host closed the connection]
<drbrain> canton7: since you aren't injecting, each_with_object is the way to go
<canton7> depends on the ruby version as well, though :P
henrikhodne has joined #ruby-lang
<drbrain> all the ruby versions you should care about have each_with_object
dhruvasagar has joined #ruby-lang
schaerli has joined #ruby-lang
<canton7> jroes, using each_with_object: arr.each_with_object(Hash.new(0)){ |h,s| s[h[:name]] = h[:quantity] }. Take your pick
apeiros has joined #ruby-lang
mdedetrich has quit [Quit: Computer has gone to sleep.]
stamina has joined #ruby-lang
firstdayonthejob has quit [Quit: WeeChat 0.4.1]
barttenbrinke has joined #ruby-lang
GarethAdams has joined #ruby-lang
brianpWins has joined #ruby-lang
Criztian has joined #ruby-lang
flori_ has left #ruby-lang [#ruby-lang]
flori has joined #ruby-lang
gnufied has joined #ruby-lang
adambeynon has joined #ruby-lang
barttenbrinke has quit [Remote host closed the connection]
kamilc__ has joined #ruby-lang
thebastl_ has joined #ruby-lang
thebastl_ has quit [Remote host closed the connection]
thebastl has quit [Ping timeout: 260 seconds]
smook2 has joined #ruby-lang
barttenbrinke has joined #ruby-lang
gnufied has quit [Ping timeout: 246 seconds]
GarethAdams has quit [Quit: Leaving...]
tylersmith has joined #ruby-lang
elia has joined #ruby-lang
gnufied has joined #ruby-lang
woollyams has quit [Ping timeout: 252 seconds]
mdedetrich has joined #ruby-lang
tylersmith has quit [Ping timeout: 248 seconds]
smook2 has quit [Ping timeout: 255 seconds]
jonahR has quit [Quit: jonahR]
mdedetrich has quit [Ping timeout: 255 seconds]
elia has quit [Ping timeout: 256 seconds]
barttenbrinke has quit [Remote host closed the connection]
<yorickpeterse> morning
tRAS has joined #ruby-lang
<judofyr> morning
<gnufied> morning
uncleBob has joined #ruby-lang
hashkey has joined #ruby-lang
uncleBob is now known as dfdf
fbernier has quit [Ping timeout: 245 seconds]
fbernier has joined #ruby-lang
gja has joined #ruby-lang
gja has quit [Changing host]
gja has joined #ruby-lang
fsvehla has quit [Quit: fsvehla]
sush24 has quit [Ping timeout: 276 seconds]
stef_204 has joined #ruby-lang
sush24 has joined #ruby-lang
Voker57 has joined #ruby-lang
vlad_starkov has joined #ruby-lang
dfdf has quit [Remote host closed the connection]
<injekt> moin
vlad_starkov has quit [Ping timeout: 256 seconds]
lsegal has quit [Quit: Quit: Quit: Quit: Stack Overflow.]
elia has joined #ruby-lang
<gnufied> morning
<yorickpeterse> morning]
<judofyr> morning
<injekt> moin
dfdf has joined #ruby-lang
tylersmith has joined #ruby-lang
<yorickpeterse> morning
tylersmith has quit [Ping timeout: 256 seconds]
Voker57 has quit [Remote host closed the connection]
Voker57 has joined #ruby-lang
GarethAdams has joined #ruby-lang
<yorickpeterse> oh man, this code makes my head hurt
<yorickpeterse> SQL queries in a loop? Check
<yorickpeterse> Crap ton of logic in the view? Check
<yorickpeterse> No documentation whatsoever? check
<perry> yorickpeterse, sounds like a typical lazy ruby programmer to me :)
marr has joined #ruby-lang
<yorickpeterse> more like tight deadlines and lack of people
barttenbrinke has joined #ruby-lang
<gnufied> more like tight deadlines
thebastl has joined #ruby-lang
sepp2k has joined #ruby-lang
Phoop has quit [Quit: Phoop]
duckinator has joined #ruby-lang
barttenbrinke has quit [Remote host closed the connection]
teleological has joined #ruby-lang
vlad_starkov has joined #ruby-lang
<yorickpeterse> .bar{:style => "width: #{[((current_amount.to_f / max_count) * 180).to_i, 1].max}px"}
* yorickpeterse isn't very happy with this
tbuehlmann has joined #ruby-lang
barttenbrinke has joined #ruby-lang
brianpWins has quit [Quit: brianpWins]
sirfilip has joined #ruby-lang
<sirfilip> morning
dfdf has quit [Remote host closed the connection]
<injekt> heh
<injekt> yorickpeterse: sounds like a use case for a helper
<injekt> also
<injekt> moin
<yorickpeterse> stuff like this is all over the place
<injekt> you should fire yourself
<yorickpeterse> also one of the few things that still runs on 1.8, grrrr
<yorickpeterse> In unrelated news, it seems Gem::Specification#requirements is the most useless feature ever seeing how it's not displayed (.e.g upon installation)
somasonic has joined #ruby-lang
Phoop has joined #ruby-lang
Phoop has quit [Remote host closed the connection]
jbsan has joined #ruby-lang
barttenbrinke has quit [Remote host closed the connection]
<yorickpeterse> heh: currently editing a file called python.rb
schaerli has quit [Remote host closed the connection]
henrikhodne has quit [Quit: Computer has gone to sleep.]
tylersmith has joined #ruby-lang
tylersmith has quit [Ping timeout: 256 seconds]
tarruda has joined #ruby-lang
marr has quit [Ping timeout: 255 seconds]
cschneid has joined #ruby-lang
schaerli has joined #ruby-lang
dc5ala has quit [Ping timeout: 264 seconds]
<yorickpeterse> here, some decent coding music: http://youtu.be/jbLF0-fpDxs
vlad_starkov has quit [Remote host closed the connection]
<yorickpeterse> though it would probably be better if I actually understood Japanese
dfdf has joined #ruby-lang
tbuehlmann has quit [Remote host closed the connection]
stef_204 has quit [Remote host closed the connection]
<judofyr> yorickpeterse: I disagree. it's often better to not understand what they sing
Johz has joined #ruby-lang
<yorickpeterse> well it would be nice to know if they're singing about "BITCH ASS CUNT DROP IT BITCH BOOM BOOM MOTHERFUCKER" or something like that
<yorickpeterse> because I'm not a fan of lyrics like that
x0f has quit [Ping timeout: 276 seconds]
<judofyr> yorickpeterse: here: no lyrics for you: http://www.youtube.com/watch?v=HMnrl0tmd3k
x0f has joined #ruby-lang
<yorickpeterse> meh that's too slow for me
<judofyr> yorickpeterse: that guitar play reminded my of Akkerman: http://www.youtube.com/watch?v=UBGxYfQ7Gy0
sepp2k has quit [Quit: Leaving.]
Nisstyre-laptop has quit [Quit: Leaving]
ikrima has joined #ruby-lang
sush24 has quit [Ping timeout: 255 seconds]
dfdf has quit [Remote host closed the connection]
sush24 has joined #ruby-lang
tbuehlmann has joined #ruby-lang
gregmoreno has joined #ruby-lang
<yorickpeterse> hmm, this sounds pretty nice
gregmore_ has quit [Ping timeout: 252 seconds]
hogeo has quit [Remote host closed the connection]
<judofyr> Akkerman is one of my favorite gods
corundum has quit [Read error: Connection reset by peer]
Taranis has quit [Read error: Connection reset by peer]
jerkbot1 has quit [Remote host closed the connection]
Taranis has joined #ruby-lang
benlovell has joined #ruby-lang
corundum has joined #ruby-lang
nkr has joined #ruby-lang
anekos has quit [Ping timeout: 264 seconds]
henrikhodne has joined #ruby-lang
corundum has quit [Read error: Connection reset by peer]
corundum has joined #ruby-lang
anekos has joined #ruby-lang
<yorickpeterse> hup holland hup
fsvehla has joined #ruby-lang
dfdf has joined #ruby-lang
mdedetrich has joined #ruby-lang
vlad_starkov has joined #ruby-lang
postmodern has quit [Quit: Leaving]
vlad_starkov has quit [Remote host closed the connection]
jsullivandigs has joined #ruby-lang
jsullivandigs has quit [Ping timeout: 252 seconds]
kirin` has quit [Ping timeout: 260 seconds]
tylersmith has joined #ruby-lang
kirin` has joined #ruby-lang
kamilc__ has quit [Read error: Connection reset by peer]
tonni has quit [Remote host closed the connection]
tylersmith has quit [Ping timeout: 260 seconds]
kamilc__ has joined #ruby-lang
nevill has joined #ruby-lang
sush24 has quit [Ping timeout: 276 seconds]
marr has joined #ruby-lang
sush24 has joined #ruby-lang
dfdf has quit [Remote host closed the connection]
fsvehla has quit [Quit: fsvehla]
<PaulePanter> In Parser, how do I easily go back from sexp(?) to source?
<PaulePanter> (str "bla")
<PaulePanter> … using the search box.
<PaulePanter> Currently I am doing `node.to_a[0].to_s`.
dfdf has joined #ruby-lang
PaulePanter has quit [Remote host closed the connection]
robbyoconnor has quit [Read error: Connection reset by peer]
verto has joined #ruby-lang
PaulePanter has joined #ruby-lang
<PaulePanter> Sorry. I got disconnected. Were there any replies?
dfdf has quit [Remote host closed the connection]
<canton7> there weren't
<PaulePanter> canton7: Thanks.
rwk1 has joined #ruby-lang
ldnunes has joined #ruby-lang
TvL2386 has joined #ruby-lang
<yorickpeterse> PaulePanter: from what I know you can't get the raw source code back
justinmburrous has joined #ruby-lang
dfdf has joined #ruby-lang
justinmburrous has quit [Remote host closed the connection]
kstuart has joined #ruby-lang
nevill has quit [Quit: nevill]
stamina has quit [Ping timeout: 256 seconds]
<PaulePanter> yorickpeterse: I see. Thanks.
whitequa1k has joined #ruby-lang
whitequark has quit [Read error: Connection reset by peer]
judofyr has quit [Read error: Connection reset by peer]
fsvehla has joined #ruby-lang
tyler has joined #ruby-lang
judofyr has joined #ruby-lang
tyler is now known as Guest74607
<judofyr> PaulePanter: yes you can
EvilJStoker has quit [Ping timeout: 256 seconds]
tyler_ has quit [Read error: Connection reset by peer]
EvilJStoker has joined #ruby-lang
judofyr has quit [Read error: Connection reset by peer]
judofyr has joined #ruby-lang
<judofyr> PaulePanter: I mean #src
<judofyr> PaulePanter: it's on Node's
<yorickpeterse> judofyr: that just returns the location
<yorickpeterse> not the raw source code, unless that has changed
<judofyr> PaulePanter: ast_node.src.expression.to_source
tylersmith has joined #ruby-lang
<yorickpeterse> hm interesting
dfdf has quit [Remote host closed the connection]
<yorickpeterse> and #src no longer exists in parser 2
<yorickpeterse> it's apparently this: some_node.location.expression.source
fsvehla has quit [Ping timeout: 260 seconds]
judofyr has quit [Ping timeout: 276 seconds]
fsvehla has joined #ruby-lang
tylersmith has quit [Ping timeout: 246 seconds]
elia has quit [Quit: (IRC Client: textualapp.com)]
_elia has joined #ruby-lang
jxie has quit [Quit: leaving]
_elia has quit [Remote host closed the connection]
fsvehla has quit [Remote host closed the connection]
elia has joined #ruby-lang
elia has quit [Client Quit]
thiagoborges has joined #ruby-lang
cored has joined #ruby-lang
cored has quit [Changing host]
cored has joined #ruby-lang
Linkedipsoul has joined #ruby-lang
sirfilip has quit [Ping timeout: 252 seconds]
elia has joined #ruby-lang
thebastl_ has joined #ruby-lang
schaerli has quit [Remote host closed the connection]
pskosinski has joined #ruby-lang
Sccoots has joined #ruby-lang
thebastl has quit [Ping timeout: 276 seconds]
PaulePan1er has joined #ruby-lang
justinmburrous has joined #ruby-lang
justinmburrous has quit [Remote host closed the connection]
justinmb_ has joined #ruby-lang
judofyr has joined #ruby-lang
PaulePanter has quit [Ping timeout: 252 seconds]
cofin has joined #ruby-lang
justinmb_ has quit [Remote host closed the connection]
AynGhandi has quit [Quit: Nettalk6 - www.ntalk.de]
thebastl_ has quit [Remote host closed the connection]
thebastl has joined #ruby-lang
dfdf has joined #ruby-lang
thebastl has quit [Remote host closed the connection]
sush24 has quit [Ping timeout: 252 seconds]
sush24 has joined #ruby-lang
dfdf has quit [Remote host closed the connection]
scampbell has joined #ruby-lang
PaulePan1er has quit [Quit: leaving]
tejas has joined #ruby-lang
tejas has quit [Changing host]
tejas has joined #ruby-lang
yalue has joined #ruby-lang
PaulePanter has joined #ruby-lang
gja has quit [Ping timeout: 255 seconds]
vlad_starkov has joined #ruby-lang
vlad_starkov has quit [Remote host closed the connection]
sush24 has quit [Ping timeout: 248 seconds]
cofin has quit [Quit: cofin]
tbuehlmann has quit [Remote host closed the connection]
ColloquyUser has joined #ruby-lang
intellitech has quit [Read error: Operation timed out]
schaerli has joined #ruby-lang
pipework has quit [Remote host closed the connection]
sush24 has joined #ruby-lang
shinnya has joined #ruby-lang
jbsan has quit [Quit: jbsan]
mistym has joined #ruby-lang
mistym has joined #ruby-lang
mistym has quit [Changing host]
breakingthings has joined #ruby-lang
<yorickpeterse> does anybody here have any experience with Gemfury?
mbj has joined #ruby-lang
tylersmith has joined #ruby-lang
justinmburrous has joined #ruby-lang
ColloquyUser has quit [Quit: Colloquy for iPad - http://colloquy.mobi]
tylersmith has quit [Ping timeout: 252 seconds]
Sccoots has quit []
mistym has quit [Remote host closed the connection]
<PaulePanter> judofyr, yorickpeterse: Thank you for your answers. I am going to try that.
<PaulePanter> And I probably do something incorrect, as I looked at the documentation, even searched for »src« and »source« but for »src« nothing was found.
<yorickpeterse> parser doesn't really have docs at this point beyond the README
mucker has joined #ruby-lang
<judofyr> PaulePanter: also the released version might be behind master/
<judofyr> PaulePanter: or the docs may be an old version
sush24 has quit [Quit: This computer has gone to sleep]
larry0 has joined #ruby-lang
whitequa1k has left #ruby-lang [#ruby-lang]
whitequark has joined #ruby-lang
<PaulePanter> judofyr: Ok.
somasonic has left #ruby-lang ["fin."]
<whitequark> PaulePanter: 1.x branch uses .src, 2.x branch uses .loc
<whitequark> more specifically
<whitequark> 1.x uses .src.expression.to_source, 2.x uses .loc.expression.source
<whitequark> apeiros: you're the admin, right?
<whitequark> channel op, or whatever it is
<whitequark> can you remove that pesky "only identified users" bit from #ruby-lang? currently it is THE least friendly freenode channel of all I know
mbj has quit [Ping timeout: 246 seconds]
<whitequark> specifically, in case of a disconnect, if I reconnect with a different nick like whitequa1k (irssi default), then the channel won't let me talk
<whitequark> what is worse is that it is not possible to change the nick either! so I have to leave #r-l, change nick, identify, rejoin.
mdedetrich has quit [Quit: Computer has gone to sleep.]
<PaulePanter> whitequark: /msg NickServ identify whitequark yourpassword
stamina has joined #ruby-lang
<PaulePanter> whitequark: Thanks for your help.
<apeiros> whitequark: the admin of?
mistym has joined #ruby-lang
mistym has quit [Changing host]
mistym has joined #ruby-lang
<apeiros> ah, whitequark, I'm an op, not the admin, sorry
outoftime has joined #ruby-lang
<apeiros> I can only kick/ban people and change the topic
<whitequark> I see
<apeiros> you'd have to poke zenspider about that I think, or drbrain
wmoxam has joined #ruby-lang
carloslopes has joined #ruby-lang
dhruvasagar has quit [Ping timeout: 276 seconds]
sush24 has joined #ruby-lang
Voker57 has quit [Ping timeout: 255 seconds]
thiagoborges has quit [Remote host closed the connection]
benlovell has quit [Ping timeout: 252 seconds]
cstrahan has joined #ruby-lang
rwilcox has quit [Ping timeout: 256 seconds]
teleological has quit [Remote host closed the connection]
tomzx_mac has joined #ruby-lang
teleological has joined #ruby-lang
deception has joined #ruby-lang
chorkpop has quit [Read error: Connection reset by peer]
chorkpop has joined #ruby-lang
benlovell has joined #ruby-lang
intellitech has joined #ruby-lang
Austin__ has joined #ruby-lang
GeissT has quit [Ping timeout: 276 seconds]
<chris2> anyone seen eek?
<judofyr> eek?
<judofyr> what's that?
Voker57 has joined #ruby-lang
Voker57 has joined #ruby-lang
<chris2> a guy from around here, prehaps 5 years ago :P
Voker57 has quit [Read error: Connection reset by peer]
<chris2> corundum: seen eek
<corundum> eek was last seen 1096 days, 13 hours, 6 minutes and 13 seconds ago, quitting IRC (Ping timeout: 260 seconds)
<judofyr> ah
<chris2> i thought he still lurked on freenode
<judofyr> 3 years ;)
Voker57 has joined #ruby-lang
<chris2> yeah
smook2 has joined #ruby-lang
<judofyr> chris2: nickserv says: Last seen : May 11 01:41:04 2013 (4 weeks, 4 days, 12:09:42 ago)
<judofyr> chris2: /msg nickserv info eek
enebo has joined #ruby-lang
<chris2> hm, yeah
<chris2> i guess i'll drop him a mail
maxmanders has joined #ruby-lang
maxmanders has quit [Client Quit]
tkuchiki has quit [Remote host closed the connection]
smook2 has quit [Ping timeout: 255 seconds]
charliesome has quit [Quit: Textual IRC Client: www.textualapp.com]
vbatts|work has joined #ruby-lang
intellitech has quit [Quit: intellitech]
DomKM has joined #ruby-lang
anonymuse has joined #ruby-lang
crackity_jones has joined #ruby-lang
tylersmith has joined #ruby-lang
dfdf has joined #ruby-lang
<jtoy> if my ruby program calls another program with `` and that program prints to stdout, how can I see that output through my ruby program?
rwilcox has joined #ruby-lang
kamilc__ has quit [Read error: Connection reset by peer]
<jtoy> i run my ruby program with ruby myapp.rb and it never prints out the stdout from the other programs
<erikh> `` captures output
kamilc__ has joined #ruby-lang
<erikh> use system() if you just want to output it
<erikh> but puts `my_command` will work similarly.
tomzx_mac has quit [Ping timeout: 256 seconds]
pipework has joined #ruby-lang
wesside has joined #ruby-lang
tylersmith has quit [Ping timeout: 276 seconds]
tRAS has quit [Quit: Mother, did it need to be so high?]
smook2 has joined #ruby-lang
<crankharder> how can I make BigDecimals to_f themselves when displayed in irb?... really sick of looking at scientific notation all the time
hashkey has quit [Quit: Leaving]
mbj has joined #ruby-lang
Austin__ has left #ruby-lang [#ruby-lang]
<judofyr> crankharder: class BigDecimal; def inspect; to_f.inspect end end
stardiviner_ has joined #ruby-lang
barttenbrinke has joined #ruby-lang
nathanstitt has joined #ruby-lang
stardiviner has quit [Ping timeout: 276 seconds]
mistym has quit [Remote host closed the connection]
mikko has joined #ruby-lang
jonahR has joined #ruby-lang
benwoody has left #ruby-lang [#ruby-lang]
benwoody has joined #ruby-lang
<crankharder> yay
Uranio has joined #ruby-lang
jsullivandigs has joined #ruby-lang
tonni has joined #ruby-lang
mbj_ has joined #ruby-lang
nevill has joined #ruby-lang
jsullivandigs has quit [Ping timeout: 246 seconds]
tejas has quit [Quit: This computer has gone to sleep]
MartynKeigher has joined #ruby-lang
dfdf has quit [Remote host closed the connection]
dr_bob has quit [Quit: Leaving.]
rwk1 has quit [Remote host closed the connection]
dr_bob has joined #ruby-lang
mbj has quit [Ping timeout: 276 seconds]
mbj has joined #ruby-lang
loincloth has joined #ruby-lang
loincloth has quit [Client Quit]
loincloth has joined #ruby-lang
mbj_ has quit [Ping timeout: 248 seconds]
kevinfagan has quit [Excess Flood]
kevinfagan has joined #ruby-lang
nevill has quit [Quit: nevill]
kevinfagan has quit [Max SendQ exceeded]
toretore has joined #ruby-lang
kevinfagan has joined #ruby-lang
kevinfagan has quit [Max SendQ exceeded]
kevinfagan has joined #ruby-lang
breakingthings has quit [Ping timeout: 248 seconds]
kevinfagan has quit [Max SendQ exceeded]
kevinfagan has joined #ruby-lang
kevinfagan has quit [Max SendQ exceeded]
kevinfagan has joined #ruby-lang
kevinfagan has quit [Max SendQ exceeded]
bzalasky has joined #ruby-lang
kevinfagan has joined #ruby-lang
bzalasky has quit [Remote host closed the connection]
kevinfagan has quit [Max SendQ exceeded]
kevinfagan has joined #ruby-lang
teleological has quit [Remote host closed the connection]
zmike123 has joined #ruby-lang
barttenbrinke has quit [Remote host closed the connection]
crackity_jones has quit [Quit: Computer has gone to sleep.]
ezkl has quit [Quit: Textual IRC Client: www.textualapp.com]
Linkedipsoul has quit [Quit: Leaving]
teleological has joined #ruby-lang
loinclot_ has joined #ruby-lang
mytrile has joined #ruby-lang
skade has quit [Quit: Computer has gone to sleep.]
teleological has quit [Remote host closed the connection]
loincloth has quit [Ping timeout: 246 seconds]
cofin has joined #ruby-lang
DomKM has quit [Quit: Leaving.]
rwk1 has joined #ruby-lang
vlad_starkov has joined #ruby-lang
hogeo has joined #ruby-lang
tylersmith has joined #ruby-lang
rwk1 has quit [Ping timeout: 248 seconds]
vlad_starkov has quit [Ping timeout: 255 seconds]
bzalasky has joined #ruby-lang
solars has quit [Ping timeout: 260 seconds]
tylersmith has quit [Ping timeout: 252 seconds]
vlad_starkov has joined #ruby-lang
havenwood has joined #ruby-lang
henrikhodne has quit [Quit: Computer has gone to sleep.]
dhruvasagar has joined #ruby-lang
dr_bob has quit [Quit: Leaving.]
wallerdev has joined #ruby-lang
jsullivandigs has joined #ruby-lang
intellitech has joined #ruby-lang
arooni-mobile has joined #ruby-lang
dr_bob has joined #ruby-lang
loincloth has joined #ruby-lang
rwilcox has quit [Ping timeout: 264 seconds]
saarinen has joined #ruby-lang
loinclot_ has quit [Ping timeout: 255 seconds]
tylersmith has joined #ruby-lang
mikko has quit [Remote host closed the connection]
bzalasky has quit [Remote host closed the connection]
cofin has quit [Quit: cofin]
vlad_sta_ has joined #ruby-lang
bzalasky has joined #ruby-lang
mytrile has quit [Remote host closed the connection]
carloslopes has quit [Remote host closed the connection]
vlad_starkov has quit [Ping timeout: 248 seconds]
cofin has joined #ruby-lang
teleological has joined #ruby-lang
ruurd has quit [Quit: Leaving...]
Linkedipsoul has joined #ruby-lang
sush24 has quit [Quit: This computer has gone to sleep]
mbj has quit [Read error: Connection reset by peer]
mytrile has joined #ruby-lang
bzalasky has quit [Remote host closed the connection]
snarfmason has quit [Quit: Textual IRC Client: www.textualapp.com]
snarfmason has joined #ruby-lang
gregmoreno has quit [Remote host closed the connection]
DomKM has joined #ruby-lang
gregmoreno has joined #ruby-lang
ffio has joined #ruby-lang
dhruvasagar has quit [Ping timeout: 255 seconds]
sush24 has joined #ruby-lang
shinnya has quit [Ping timeout: 260 seconds]
io_syl has joined #ruby-lang
barttenbrinke has joined #ruby-lang
gregmoreno has quit [Ping timeout: 264 seconds]
sam_5748 has joined #ruby-lang
mytrile has quit [Remote host closed the connection]
judofyr has quit [Remote host closed the connection]
saarinen has quit [Quit: saarinen]
carloslopes has joined #ruby-lang
ironcamel has quit [Ping timeout: 248 seconds]
<yorickpeterse> gem 'opener-build-tools',
<yorickpeterse> :git => 'git@github.com:opener-project/build-tools.git',
<yorickpeterse> fuck
<yorickpeterse> wrong paste
<yorickpeterse> return `java -version 2>&1`.match(/java\s+version\s+"([\d_\.]+)"/)[1].split('_')[0] I was going to paste this
<yorickpeterse> because lol dat match
MartynKeigher has quit [Remote host closed the connection]
ffio has quit [Read error: Connection timed out]
<whitequark> could do that with just regecx
sam_5748 has quit [Quit: Leaving]
GarethAdams|Work has joined #ruby-lang
<yorickpeterse> true
TvL2386 has quit [Remote host closed the connection]
ffio has joined #ruby-lang
<yorickpeterse> also, all this packaging stuff really makes me appreciate Rake
GarethAdams has quit [Disconnected by services]
Johz has quit [Read error: Connection reset by peer]
GarethAdams|Work is now known as GarethAdams
<yorickpeterse> even more so than I already did
barttenbrinke has quit [Remote host closed the connection]
dhruvasagar has joined #ruby-lang
scottschecter has quit [Read error: Connection reset by peer]
Linkedipsoul has quit [Ping timeout: 264 seconds]
deception has quit [Remote host closed the connection]
deception has joined #ruby-lang
jxie has joined #ruby-lang
Criztian has quit [Remote host closed the connection]
vlad_sta_ has quit [Remote host closed the connection]
rwk1 has joined #ruby-lang
<manveru> `java -version 2>&1`[/java version "([\d.]+)/, 1]
<manveru> :)
hogeo has quit [Remote host closed the connection]
scottschecter has joined #ruby-lang
rwk1 has quit [Ping timeout: 240 seconds]
tpope has quit [Ping timeout: 245 seconds]
cout has quit [Ping timeout: 260 seconds]
cout has joined #ruby-lang
tpope has joined #ruby-lang
aqil has joined #ruby-lang
workmad3 has joined #ruby-lang
MartynKeigher has joined #ruby-lang
dr_bob has left #ruby-lang [#ruby-lang]
cofin has quit [Quit: cofin]
loincloth has quit [Remote host closed the connection]
barttenbrinke has joined #ruby-lang
supaiku has joined #ruby-lang
sandbags has joined #ruby-lang
cofin has joined #ruby-lang
workmad3 has quit [Ping timeout: 240 seconds]
Mawk has quit [Quit: Mawk]
workmad3 has joined #ruby-lang
mytrile has joined #ruby-lang
tylersmith has quit [Remote host closed the connection]
schaerli has quit [Remote host closed the connection]
tylersmith has joined #ruby-lang
workmad3 has quit [Ping timeout: 240 seconds]
__butch__ has joined #ruby-lang
tylersmith has quit [Ping timeout: 246 seconds]
mytrile has quit [Ping timeout: 248 seconds]
mytrile has joined #ruby-lang
smook2 has quit [Ping timeout: 255 seconds]
havenwood has quit [Remote host closed the connection]
dc5ala has joined #ruby-lang
gja has joined #ruby-lang
gja has joined #ruby-lang
gja has quit [Changing host]
apeiros has quit [Remote host closed the connection]
<injekt> `java -version 2>&1`[/([\d.]+)/, 1]
__butch__ has quit [Quit: Leaving.]
ironcamel has joined #ruby-lang
smook2 has joined #ruby-lang
enebo has quit [Quit: enebo]
Asher1 has joined #ruby-lang
Asher1 has quit [Client Quit]
Asher has quit [Ping timeout: 276 seconds]
shireesh has quit [Quit: Leaving]
barttenbrinke has quit [Remote host closed the connection]
wallerdev has quit [Quit: wallerdev]
aqil has quit [Quit: Ухожу я от вас]
gregmoreno has joined #ruby-lang
stef_204 has joined #ruby-lang
dagobah has quit [Remote host closed the connection]
gnufied has quit [Quit: Leaving.]
anonymuse has quit [Read error: Operation timed out]
__butch__ has joined #ruby-lang
chana has joined #ruby-lang
GarethAdams has quit [Quit: Leaving...]
t0h_ has quit [Ping timeout: 264 seconds]
tRAS has joined #ruby-lang
MaddinXx_ has joined #ruby-lang
robbyoconnor has joined #ruby-lang
mytrile has quit [Remote host closed the connection]
mbj has joined #ruby-lang
t0h has joined #ruby-lang
saarinen has joined #ruby-lang
apeiros has joined #ruby-lang
DEac-_ has joined #ruby-lang
DEac- has quit [Read error: Connection reset by peer]
benlovell has quit [Ping timeout: 264 seconds]
ddfreyne has quit [Excess Flood]
ddfreyne has joined #ruby-lang
mytrile has joined #ruby-lang
<darix> so ugly ;p
<darix> yorickpeterse: couldnt you just call ant from rake and be done with it?
thiagoborges has joined #ruby-lang
<chris2> `java -version 2>&1`[/([\d.]+)/]
<chris2> `java -version 2>&1`[/[\d.]+/]
chana has quit [Quit: chana]
bjb_credil1 has quit [Quit: Leaving.]
elia has quit [Quit: Computer has gone to sleep.]
wallerdev has joined #ruby-lang
stef_204 has quit [Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/]
havenwood has joined #ruby-lang
cofin has quit [Quit: cofin]
mucker has quit [Read error: Connection reset by peer]
mucker has joined #ruby-lang
tylersmith has joined #ruby-lang
tylersmith has quit [Remote host closed the connection]
jinie_ is now known as jinie
tylersmith has joined #ruby-lang
kstuart has quit [Ping timeout: 246 seconds]
mytrile has quit [Remote host closed the connection]
Asher has joined #ruby-lang
saarinen has quit [Quit: saarinen]
saarinen has joined #ruby-lang
davidbalbert has quit [Ping timeout: 256 seconds]
davidbalber|away has joined #ruby-lang
kstuart has joined #ruby-lang
tRAS has quit [Quit: Mother, did it need to be so high?]
benanne has joined #ruby-lang
mbj has quit [Ping timeout: 240 seconds]
<injekt> oh right yeah I dunno why I captured
mbj has joined #ruby-lang
brianpWins has joined #ruby-lang
dc5ala has quit [Quit: Ex-Chat]
adambeynon has quit [Quit: ["Textual IRC Client: www.textualapp.com"]]
havenwood has quit [Remote host closed the connection]
mbj has quit [Ping timeout: 252 seconds]
havenwood has joined #ruby-lang
chana has joined #ruby-lang
mbj has joined #ruby-lang
<yorickpeterse> darix: that doesn't solve my problem
<yorickpeterse> the problem is that I have to ensure version X is used before using maven or anything else
<darix> yorickpeterse: i am sure the ant file has something to specify that. :)
<yorickpeterse> yeah and I'm not going to use ant just to get the java version
<darix> just call ant. let ant do the check. all you want is that it fails.
gregmoreno has quit [Read error: Connection reset by peer]
<darix> if the check passes ant will build it too.
<yorickpeterse> ... requiring ant to check the Java version, speaking about over complexity
<darix> no
gregmore_ has joined #ruby-lang
gregmore_ has quit [Remote host closed the connection]
gregmoreno has joined #ruby-lang
<darix> answer 7
<darix> ymmv
saarinen has quit [Quit: saarinen]
<yorickpeterse> good job on completely missing the point but w/e
saarinen has joined #ruby-lang
jinie is now known as jinie_
<darix> yorickpeterse: the point is .. that you will encode that same info *again* in the ant.xml. so why check something that might still end up calling the wrong thing. why not encode it in the right place. and then stop caring about the java version in your rake task.
<yorickpeterse> Ugh, because we don't use fucking ant?
<yorickpeterse> and because I don't want to rely on something developed by a third-party to ensure we have the requirements?
<yorickpeterse> and because running ant to check for something java specific is stupid?
<yorickpeterse> I could go on for a while
<yorickpeterse> No offense, but the idea is just batshit
<darix> and your other java build tool has nothing to enforce the minimum java version either...
<yorickpeterse> Like I already said, I have to check it *BEFORE* any of it is ever touched
smook2 has quit [Ping timeout: 255 seconds]
kstuart has quit [Ping timeout: 252 seconds]
rwk1 has joined #ruby-lang
<Raynes> Good morning #ruby-lang. I see you're all having a swell time.
* yorickpeterse waves his cane
<yorickpeterse> errr shakes damn it
wallerdev has quit [Quit: wallerdev]
rwk1 has quit [Ping timeout: 252 seconds]
smook2 has joined #ruby-lang
mucker has quit [Quit: leaving]
runeb has joined #ruby-lang
<drbrain> chris2: I think eek is going by rue these days
justinmburrous has quit [Remote host closed the connection]
symm- has joined #ruby-lang
mytrile has joined #ruby-lang
gja has quit [Quit: This computer has gone to sleep]
cofin has joined #ruby-lang
mytrile has quit [Ping timeout: 240 seconds]
<chris2> drbrain: nah
<darix> chris2: fern
<darix> later
<chris2> -.-
firstdayonthejob has joined #ruby-lang
symm- has quit [Quit: Leaving...]
deception has quit [Quit: Goodbye]
symm- has joined #ruby-lang
schaerli has joined #ruby-lang
runeb has quit [Remote host closed the connection]
sandbags has quit [Remote host closed the connection]
<rue> …eek?
tbuehlmann has joined #ruby-lang
symm- has quit [Ping timeout: 260 seconds]
<Aloysius1> Anyone have opinions on a gem to use for cross-platform text-based interface? Ncurses? Rbcurse?
Taranis has left #ruby-lang [#ruby-lang]
sush24 has quit [Quit: This computer has gone to sleep]
<whitequark> --no-windows
benlovell has joined #ruby-lang
<Aloysius1> Yeah. Luck?
schaerli_ has joined #ruby-lang
schaerli has quit [Ping timeout: 248 seconds]
<Aloysius1> I found a Ruby roguelike (Yarna) and was all like "Yay! It runs under Windows!" then all like "Crap. It's DLLs. It ONLY runs under Windows."
carloslopes has quit [Remote host closed the connection]
<whitequark> "Yay, it runs under windows" < no one ever
benlovell has quit [Ping timeout: 248 seconds]
<Aloysius1> No, srsly. Swearsies.
chana has quit [Quit: chana]
<whitequark> well
<whitequark> use putty as your terminal
<whitequark> and stay the hell away from ncurses. I used it.
arooni-mobile has quit [Ping timeout: 264 seconds]
<whitequark> it's called "curses" for a fucking reason
<whitequark> and ruby wrappers are oh god slow
<whitequark> you'd want to strangle yourself
<Aloysius1> So...no hope for Ruby in the roguelike world?
carloslopes has joined #ruby-lang
<whitequark> ah, roguelikes
rwk1 has joined #ruby-lang
<whitequark> I thought you want a full-blown UI
<Aloysius1> Well, that'd be nice.
schaerli_ has quit [Remote host closed the connection]
<Aloysius1> But I'd settle for roguelike level capability for now.
* chris2 wonders how the speed of a curses wrapper can be relevant...
<whitequark> chris2: slow screen refreshes
<whitequark> idk, I may have done something wrong. but it was really bad to use.
kamilc__ has quit [Quit: Leaving...]
<Aloysius1> If I have the ability to put a character at a position, color, etc., and I can know the size of the screen, I'm pretty good.
<whitequark> Aloysius1: you can do that even without *curses at all
<whitequark> just with some escape sequences
<whitequark> you'll lose some portability though
<whitequark> but the only things which matter now is TERM=linux and TERM=$(whatever shit osx uses)
<chris2> whitequark: doesnt sound like a wrapper problem...
solars has joined #ruby-lang
<whitequark> chris2: well. building interfaces with ruby and wrapped ncurses results in a slow interface
pskosinski has quit [Remote host closed the connection]
<chris2> worked for me :P
kamilc__ has joined #ruby-lang
pskosinski has joined #ruby-lang
rwk1 has quit [Ping timeout: 252 seconds]
<Aloysius1> chris2: What did you use? And how portable was it?
<chris2> first the one from ext/, later ffi-ncurses iirc
<chris2> and then someone ported it to the third thingy
<chris2> but speed was never an issue iirc
<Aloysius1> Huh.
<Aloysius1> The third thingy? :-P
<chris2> the one using ruby/dl
<chris2> or whatever is modern these days
<Aloysius1> chris2: Oh, for Windows?
<Aloysius1> whitequark: I'm not getting the "TERM=linux".
<chris2> i dont think it runs on windows
<Aloysius1> Oh, I thought that's what ruby/dl did.
<lianj> no
<chris2> there is a pdcurses for windows
<chris2> maybe someone targetted it
supaiku_ has joined #ruby-lang
<chris2> iirc it opens its own screen
<Aloysius1> Yeah. Meh. I guess there's not a huge demand for text-based stuff. Since...1989.
symm- has joined #ruby-lang
__butch__ has quit [Read error: Connection reset by peer]
<chris2> many roguelikes these days run in the browser :P
<whitequark> ugh
__butch__ has joined #ruby-lang
<whitequark> there's Dwarf Fortress
<chris2> which uses opengl
<whitequark> but it draws the symbols using OpenGL... and CP437!
<whitequark> this is probably the only application using these two simultaneously
<whitequark> but it's still a trueth text-based game
supaiku has quit [Ping timeout: 248 seconds]
<Aloysius1> I like my roguelikes fullscreen, with a big black background and flickering white "@" sign, dammit!
<whitequark> Aloysius1: seriously, use telnet
<whitequark> for windows
rwilcox has joined #ruby-lang
<Aloysius1> whitequark: Connecting to what? (Sorry for being dense here.)
wallerdev has joined #ruby-lang
<whitequark> connecting to your app
<Aloysius1> So, write is as a telnet server?
<Aloysius1> er, it
<whitequark> yeah
<whitequark> that doesn't isolate you from the peculiarities of the terminal on the other end, though
<whitequark> so you still need to use termcap.
runeb has joined #ruby-lang
<Aloysius1> No, but it's a standard, at least.
<Aloysius1> What would I use to write to the screen? (And, yeah, that probably wouldn't work for a full-blown TUI, huh? Too slow?)
rfizzle has joined #ruby-lang
<whitequark> hm?
<whitequark> io.write
vlad_starkov has joined #ruby-lang
<rfizzle> Anyone have any experience with sucker_punch?
mytrile has joined #ruby-lang
saarinen has quit [Quit: saarinen]
<chris2> i saw the movie :P
intellitech has quit [Remote host closed the connection]
<rfizzle> Ha, the library.
intellitech has joined #ruby-lang
symm- has quit [Ping timeout: 260 seconds]
<cout> ew, telnet
cored has quit [Ping timeout: 252 seconds]
<chris2> yeah, why not supdup
<chris2> or 3270 :P
cored has joined #ruby-lang
cored has quit [Changing host]
cored has joined #ruby-lang
cofin has quit [Quit: cofin]
<darix> chris2: 3270 terminals arent exactly fun :p
<eam> IO.write won't help if your goal is to implement a rouge-alike -- you won't be able to position the cursor
<chris2> telnet isnt either
intellitech_ has joined #ruby-lang
intellitech_ has joined #ruby-lang
intellitech_ has quit [Changing host]
<darix> chris2: well on windows .. that cmd terminal is the biggest limitation.
Weems has joined #ruby-lang
<chris2> isnt there an ansi driver for it?
<chris2> i remember faintly
<cout> ANSI.SYS > *
<chris2> right
<apeiros> eam: hm? on what terminal? there's an ansi escape sequence to position the cursor
<apeiros> also to hide/show it
<chris2> then you just need a getch()
intellitech has quit [Read error: Operation timed out]
intellitech_ is now known as intellitech
<chris2> which ought to be possible with io/console now
<apeiros> yupp, IO#raw
<chris2> not sure its supported on windows
<apeiros> or was it? I think it was IO#raw…
<eam> apeiros: I wouldn't suggest reimplementing the abstraction already available in ncurses
mbj has quit [Read error: Connection reset by peer]
<chris2> cmd.exe /kansicon
workmad3 has joined #ruby-lang
<whitequark> гь
<whitequark> um
<whitequark> if you're using telnet you can send escape sequences back
<eam> there's also the pile of stuff that needs an ioctl, such as getting the terminal size
<whitequark> with IO.write, and position the cursor
kamilc__ has quit [Quit: Leaving...]
<eam> it's just really a bad idea
<chris2> there should be reporting codes in ansi :P
<chris2> no sigwinch perhaps, but can windows even do that? :P
glebm has quit [Ping timeout: 256 seconds]
Todd has joined #ruby-lang
intellitech has quit [Quit: intellitech]
<eam> the only part of unix that I fear are tty implementations
<eam> everything else is relatively simple
<chris2> hehe
Prometheian has joined #ruby-lang
<whitequark> eam: ... memory management?
<chris2> depends on the unix :P
<eam> not nearly as daunting
<apeiros> eam: I didn't suggest it. all I say is that "you won't be able to position the cursor" is incorrect for ansi capable terminals.
glebm has joined #ruby-lang
nkr has quit [Quit: Linkinus - http://linkinus.com]
<eam> apeiros: mmm I will amend: You won't be able to position the cursor correctly
<Prometheian> I'm trying to install dev tools and I'm on the "ruby dk.rb install" step, however it keeps saying "Invalid config or no rubies listed. Please fix config.yml" In the config file I've listed a path to my Ruby directory, is there more to it?
<apeiros> eam: doubt that :-p
<eam> apeiros: if you don't know the terminal geometry you can't jump
<apeiros> but I don't know under what conditions that thing should run, and ncurses probably handles far more envs.
<canton7> Prometheian, did you use dk.rb to generate the config first, then edit it?
<apeiros> eam: you can read the terminal geometry with ansi too
<Prometheian> I ran the init first yes.
brianpWins has quit [Quit: brianpWins]
<canton7> I'm thinking tabs vs spaces?
<Prometheian> Does it matter where my devtools folder is?
<apeiros> haven't tried it, though, as I usually went with sigwinch
<eam> apeiros: I suppose if you poll after every write ... but catching redraw would be a problem
tbuehlmann has quit [Remote host closed the connection]
<apeiros> yeah
<apeiros> which is why I use sigwinch, but that's not available for remote shells/terminals, I'd assume
<Prometheian> Does my dev tools install folder have to be in the ruby dir?
<eam> apeiros: it is, generally
canton7 has left #ruby-lang ["Leaving"]
canton7 has joined #ruby-lang
mytrile has quit [Remote host closed the connection]
<eam> can't count the number of times I've been bitten by http://bugs.mysql.com/bug.php?id=62578
henrikhodne has joined #ruby-lang
intellitech has joined #ruby-lang
<eam> (resize your terminal while long running query is executing => sadness)
saarinen has joined #ruby-lang
<Prometheian> Can someone please assist me in getting DevKit installed? The installer won't accept what I'm putting into the config.yml.
brianpWins has joined #ruby-lang
<canton7> Prometheian, pastie the config.yml. Your question has zero information in it at the moment
DomKM has quit [Quit: Leaving.]
atmosx has joined #ruby-lang
<Prometheian> That's the config.yml
cofin has joined #ruby-lang
nathanstitt has quit [Quit: I growing sleepy]
<canton7> Prometheian, ....
<canton7> that's not the format it asked for
<canton7> no wonder it's complaining
Rizzle has quit [Read error: Connection reset by peer]
<Prometheian> I've tried swapping the /
<Prometheian> still no luck
<canton7> that's not the point
<canton7> see
nathanstitt has joined #ruby-lang
<canton7> the example has " - C:/ruby..."
<canton7> you have "C:\...."
Rizzle has joined #ruby-lang
<canton7> note the difference in the 3 chars at the front
<canton7> (and the / vs \ probably makes a difference too)
<Prometheian> That seems to have done it.
<Prometheian> ty, lol
<canton7> I swear half the world is blind, sometimes
tonni has quit [Remote host closed the connection]
<Prometheian> It looked like a indentation type thing to me.
yalue has quit [Quit: Leaving]
<canton7> it's YAML. you put in a raw string, it was expecting a list
Weems has quit [Ping timeout: 248 seconds]
<canton7> (YAML is whitespace-sensitive too)
smook2 has quit [Ping timeout: 255 seconds]
ruurd has joined #ruby-lang
rwk1 has joined #ruby-lang
intellitech has quit [Quit: intellitech]
postmodern has joined #ruby-lang
smook2 has joined #ruby-lang
rwk1 has quit [Ping timeout: 255 seconds]
Nisstyre has joined #ruby-lang
<Prometheian> I'm getting what appears to be a new error now.
spike|spiegel has quit [Quit: WeeChat 0.4.1]
spike|spiegel has joined #ruby-lang
skade has joined #ruby-lang
stringly_typed has joined #ruby-lang
justinmburrous has joined #ruby-lang
stef_204 has joined #ruby-lang
DomKM has joined #ruby-lang
zmike123 has quit [Quit: Выходжу]
skade has quit [Quit: Computer has gone to sleep.]
runeb- has joined #ruby-lang
runeb is now known as Guest12620
Guest12620 has quit [Killed (hubbard.freenode.net (Nickname regained by services))]
runeb- is now known as runeb
workmad3 has quit [Ping timeout: 248 seconds]
workmad3 has joined #ruby-lang
chorkpop has quit [Read error: Connection reset by peer]
cirenyc has joined #ruby-lang
sepp2k has joined #ruby-lang
glebm has quit [Ping timeout: 276 seconds]
<cirenyc> If I have a two dimensional array or arrays and I am iterating over batches of data that returns another two dimensional array of array, what is the best way to merge those so that I have a single two dimensional array of arrays at the end?
chana has joined #ruby-lang
runeb- has joined #ruby-lang
runeb has quit [Killed (hitchcock.freenode.net (Nickname regained by services))]
runeb- is now known as runeb
<drbrain> it depends on the contents
teleological has quit [Remote host closed the connection]
runeb has quit [Ping timeout: 256 seconds]
carloslopes has quit [Remote host closed the connection]
pipework has quit [Remote host closed the connection]
<Prometheian> Anyone able to puzzle anything out of this error?
<Prometheian> gem install selenium-webdriver
<Prometheian> ERROR: Could not find a valid gem 'selenium-webdriver' (>= 0), here is why:
<Prometheian> Unable to download data from https://rubygems.org/ - SSL_connect SYSCA
<Prometheian> LL returned=5 errno=0 state=SSLv2/v3 read server hello A (https://rubygems.org/l
<Prometheian> atest_specs.4.8.gz)
<Prometheian> ERROR: Possible alternatives: selenium-webdriver
mytrile has joined #ruby-lang
kamilc__ has joined #ruby-lang
MaddinXx_ has quit [Remote host closed the connection]
<Aloysius1> Anyone use Thor?
vbatts|work has quit [Quit: MeSoChatty 0.3.8]
adambeynon has joined #ruby-lang
mytrile has quit [Ping timeout: 264 seconds]
workmad3 has quit [Read error: Operation timed out]
<Aloysius1> I've been playing with it, and it seem cool and all, but I have a script already, and I can't figure out how to integrate it with Thor. The script contains an extension of one class, and a new class that detects if it's being run from the command-line to loop forever.
<drbrain> Prometheian: either you don't have a trusted CA certificate for rubygems.org or there's a MITM
<Prometheian> MitM?
<drbrain> Man in the Middle
<Prometheian> ah
<drbrain> MITM is highly unlikely
<Prometheian> How would I get a trusted CA?
supaiku_ has quit [Quit: Verlassend]
runeb has joined #ruby-lang
runeb has quit [Remote host closed the connection]
stef_204 has quit [Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/]
<drbrain> the certificates are supposed to ship with RubyGems, but there was a bug during install before 2.0.3
breakingthings has joined #ruby-lang
benlovell has joined #ruby-lang
<drbrain> ↑ has a place you can download a set of certificates
scampbell has quit [Remote host closed the connection]
<drbrain> if you're on OS X and installed openssl via homebrew you can install curl-ca-bundle
<drbrain> and openssl-osx-ca
atmosx has left #ruby-lang ["And so the story goes…"]
atmosx has joined #ruby-lang
machuga is now known as machuga|away
benlovell has quit [Ping timeout: 264 seconds]
nazty has joined #ruby-lang
Prometheian has quit [Remote host closed the connection]
ajack has joined #ruby-lang
ajack has quit [Client Quit]
teleological has joined #ruby-lang
rwilcox has quit [Quit: Computer has gone to sleep.]
teleological has quit [Remote host closed the connection]
ldnunes has quit [Quit: Leaving]
intellitech has joined #ruby-lang
tonni has joined #ruby-lang
kstuart has joined #ruby-lang
wmoxam has quit [Ping timeout: 248 seconds]
mistym has joined #ruby-lang
mistym has joined #ruby-lang
mistym has quit [Changing host]
atmosx has quit [Quit: And so the story goes…]
elia has joined #ruby-lang
workmad3 has joined #ruby-lang
Averna has joined #ruby-lang
cored has quit [Read error: Operation timed out]
jbsan has joined #ruby-lang
thiagoborges has quit [Remote host closed the connection]
cored has joined #ruby-lang
cored has quit [Changing host]
cored has joined #ruby-lang
stringly_typed has quit [Quit: Computer has gone to sleep.]
chorkpop has joined #ruby-lang
stringly_typed has joined #ruby-lang
cirenyc has quit [Quit: Leaving...]
mytrile has joined #ruby-lang
wesside has quit [Quit: Computer has gone to sleep.]
mytrile has quit [Remote host closed the connection]
nhgfdc has joined #ruby-lang
<darix> drbrain: why not use the system CA store?
<drbrain> darix: on OS X that is in keychain which requires a custom openssl
adambeynon has quit [Quit: ["Textual IRC Client: www.textualapp.com"]]
<drbrain> which isn't supported by ruby
<darix> silly osx
<darix> ok
<darix> brb
cmaxw has joined #ruby-lang
justinmburrous has quit [Remote host closed the connection]
tenderlove has joined #ruby-lang
cirenyc has joined #ruby-lang
breakingthings has quit [Quit: breakingthings]
arooni-mobile has joined #ruby-lang
nhgfdc has quit [Ping timeout: 252 seconds]
kamilc__ has quit [Quit: Linkinus - http://linkinus.com]
hhatch has quit [Read error: Operation timed out]
S2kx has joined #ruby-lang
s3kx has joined #ruby-lang
cmaxw has quit [Ping timeout: 268 seconds]
S1kx has quit [Ping timeout: 248 seconds]
rwk1 has joined #ruby-lang
S2kx has quit [Ping timeout: 252 seconds]
cmaxw has joined #ruby-lang
cofin has quit [Quit: cofin]
yxhuvud2 has joined #ruby-lang
lguardiola has quit [Read error: Connection reset by peer]
yxhuvud has quit [Ping timeout: 252 seconds]
lguardiola has joined #ruby-lang
larry0 has quit [Quit: Leaving.]
rwk1 has quit [Ping timeout: 256 seconds]
runeb has joined #ruby-lang
wmoxam has joined #ruby-lang
kstuart has quit [Ping timeout: 276 seconds]
<zenspider> whitequark: sorry, no. the bit stays. prevents squadrons of spammers
<zenspider> bbiab
<apeiros> zenspider: maybe update chanserv welcome message to include the info?
zenspider has quit [Quit: bye]
kstuart has joined #ruby-lang
__butch__ has quit [Quit: Leaving.]
gregmoreno has quit [Remote host closed the connection]
zenspider has joined #ruby-lang
teleological has joined #ruby-lang
gregmoreno has joined #ruby-lang
smook2 has quit [Ping timeout: 255 seconds]
nathanstitt has quit [Quit: I growing sleepy]
<rfizzle> How do you crawl off domain with Anemone?
justinmburrous has joined #ruby-lang
teleological has quit [Ping timeout: 276 seconds]
Aloysius1 has quit [Remote host closed the connection]
runeb has quit [Remote host closed the connection]
justinmburrous has quit [Remote host closed the connection]
tenderlove has quit [Remote host closed the connection]
pipework has joined #ruby-lang
elia has quit [Quit: Computer has gone to sleep.]
dankest has joined #ruby-lang
stringly_typed has quit [Quit: Computer has gone to sleep.]
krombr has joined #ruby-lang
tonni has quit [Remote host closed the connection]
wmoxam has quit [Ping timeout: 246 seconds]
tomzx_mac has joined #ruby-lang
ikrima has quit [Quit: Computer has gone to sleep.]
tsou has quit [Quit: leaving]
x0f_ has joined #ruby-lang
x0f has quit [Ping timeout: 264 seconds]
crackity_jones has joined #ruby-lang
workmad3 has quit [Read error: Operation timed out]
yellow5 has quit [Read error: Operation timed out]
benanne has quit [Quit: kbai]
tenderlove has joined #ruby-lang
yellow5 has joined #ruby-lang
elia has joined #ruby-lang
runeb has joined #ruby-lang
NemesisD has joined #ruby-lang
enebo has joined #ruby-lang
rfizzle has quit [Quit: Leaving]
<NemesisD> hey guys. using jruby. get a string with gets.chomp. it comes in as ascii-8bit and then my program barfs saying it can't find a code converter for ascii-8bit to utf-8
<NemesisD> oddly enough though, SecureRandom.hex also generates ascii-8bit. how do i get either 1 of these to just use utf-8
<NemesisD> $LANG is set properly
<zenspider> SecureRandom.hex shouldn't return 8bit imho... that's just dumb.
<zenspider> you can call force_encode on it
<havenwood> NemesisD: Any change if you?: export LC_ALL='en_US.UTF-8'
<whitequark> #jruby ?
ffio_ has joined #ruby-lang
vlad_starkov has quit [Remote host closed the connection]
<NemesisD> any attempt at force_encode complains about not having a code converter for ASCII-8bit to UTF-8
ffio has quit [Ping timeout: 264 seconds]
<NemesisD> i'd rather not even use securerandom. i'm basically just trying to take some sample strings for a test. tried to do it with gets and much to my surprise it was ascii-8bit
runeb has quit [Remote host closed the connection]
<zenspider> NemesisD: I have ~/Documents/hamlet.txt for this activity :)
<NemesisD> zenspider: i don't understand
<zenspider> afaik, force_encode doesn't use encoders... so I don't see how you're getting that error
<zenspider> that's the point of "force_"
<zenspider> try it against mri
GarethAdams has joined #ruby-lang
<zenspider> n/m... this isn't jruby. you're doing something wrong.
<NemesisD> zenspider: more info
<NemesisD> message = gets.chomp, puts message.encoding shows me UTF-8
<NemesisD> however when i pass it to this protobuf library i'm using it throws code converter not found ascii-8bit to utf-8, i'm not sure where it is getting the ascii-8bit nonsense from
wmoxam has joined #ruby-lang
rwk1 has joined #ruby-lang
justinmburrous has joined #ruby-lang
krombr has quit [Remote host closed the connection]
ehutzelman has joined #ruby-lang
justinmburrous has quit [Remote host closed the connection]
elia has quit [Quit: Computer has gone to sleep.]
rwk1 has quit [Ping timeout: 240 seconds]
apeiros has quit [Remote host closed the connection]
apeiros has joined #ruby-lang
justinmburrous has joined #ruby-lang
ehutzelman has quit [Remote host closed the connection]
enebo has quit [Quit: enebo]
ehutzelman has joined #ruby-lang
stamina has quit [Ping timeout: 246 seconds]
crackity_jones has quit [Quit: Computer has gone to sleep.]
chana has quit [Quit: chana]
arooni-mobile has quit [Ping timeout: 264 seconds]
havenwood has quit [Remote host closed the connection]
vlad_starkov has joined #ruby-lang
brianpWins has quit [Quit: brianpWins]
shinnya has joined #ruby-lang
smook2 has joined #ruby-lang
ehutzelman has quit [Remote host closed the connection]
ehutzelman has joined #ruby-lang
havenwood has joined #ruby-lang
smook2 has quit [Ping timeout: 255 seconds]
Kabaka has quit [Ping timeout: 240 seconds]
Nisstyre-laptop has joined #ruby-lang
<zenspider> NemesisD: first we've heard about protobuf... becoming massively uninterested in playing guessing games as to whate else is missing
vlad_starkov has quit [Ping timeout: 246 seconds]
Nisstyre has quit [Quit: Leaving]
Kabaka has joined #ruby-lang
Nisstyre-laptop is now known as Nisstyre
wmoxam has quit [Ping timeout: 246 seconds]
tylersmith has quit [Remote host closed the connection]
s3kx has left #ruby-lang [#ruby-lang]
arooni-mobile has joined #ruby-lang
cmaxw has quit [Quit: cmaxw]
outoftime has quit [Ping timeout: 252 seconds]
Nisstyre has quit [Quit: Leaving]
chana has joined #ruby-lang
sepp2k has quit [Quit: Leaving.]
arooni-mobile has quit [Ping timeout: 276 seconds]
wmoxam has joined #ruby-lang
chana has quit [Quit: chana]
NemesisD has quit [Ping timeout: 252 seconds]