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
woollyams has joined #ruby-lang
ChinggizKhan has joined #ruby-lang
cored has quit [Ping timeout: 276 seconds]
vlad_starkov has joined #ruby-lang
vlad_starkov has quit [Ping timeout: 268 seconds]
dingus_khan has joined #ruby-lang
tkuchiki has quit [Remote host closed the connection]
tylersmith has joined #ruby-lang
dingus_khan has quit [Ping timeout: 248 seconds]
krohrbaugh has quit [Quit: Leaving.]
nathanstitt has joined #ruby-lang
stardiviner_ has joined #ruby-lang
krohrbaugh has joined #ruby-lang
stardiviner has quit [Ping timeout: 240 seconds]
rwilcox has quit [Quit: Computer has gone to sleep.]
rwilcox has joined #ruby-lang
arubin has joined #ruby-lang
nathanstitt has quit [Quit: I growing sleepy]
hogeo has joined #ruby-lang
nathanstitt has joined #ruby-lang
marr has quit [Ping timeout: 256 seconds]
GarethAdams has joined #ruby-lang
DomKM has joined #ruby-lang
cirenyc has quit [Remote host closed the connection]
cirenyc has joined #ruby-lang
krohrbaugh has quit [Read error: Operation timed out]
gregmoreno has quit [Remote host closed the connection]
gregmoreno has joined #ruby-lang
tkuchiki has joined #ruby-lang
joshuawscott has joined #ruby-lang
doki_pen_ has quit [Read error: Operation timed out]
<perry> anyone know a better pcap gem than ruby-pcap? ruby-pcap seems to suffer from packet loss...
nathanstitt has quit [Quit: I growing sleepy]
havenwood has quit [Remote host closed the connection]
swav has joined #ruby-lang
GarethAdams has quit [Read error: Connection reset by peer]
GarethAdams has joined #ruby-lang
ChinggizKhan has quit [Quit: ZZzzzZZZzzzZZZZzz]
<mclee> perry: Maybe you'd like to check out https://github.com/sophsec/ffi-pcap
<mclee> haven't used it myself though, but it seems more updated than ruby-pcap
nathanstitt has joined #ruby-lang
<lianj> mclee: it works nice
andrewvos has joined #ruby-lang
doki_pen has joined #ruby-lang
<mclee> lianj: :D
andrewvos has quit [Ping timeout: 264 seconds]
cirenyc has quit [Quit: Leaving...]
snarfmason has joined #ruby-lang
saarinen has quit [Quit: saarinen]
jackhammer2022 has joined #ruby-lang
amerine has quit [Quit: Computer has gone to sleep.]
dingus_khan has joined #ruby-lang
dingus_khan has quit [Ping timeout: 240 seconds]
Aaaarg has quit [Quit: Aaaarg]
gregmoreno has quit [Remote host closed the connection]
ChinggizKhan has joined #ruby-lang
gregmoreno has joined #ruby-lang
arooni-mobile has quit [Ping timeout: 264 seconds]
ChinggizKhan has quit [Client Quit]
hahuang65 has joined #ruby-lang
Aaaarg has joined #ruby-lang
lcdhoffman has quit [Quit: lcdhoffman]
gregmoreno has quit [Remote host closed the connection]
brianpWins has quit [Quit: brianpWins]
nevill has joined #ruby-lang
krz has joined #ruby-lang
arooni-mobile has joined #ruby-lang
<zzak_> perry: capp
flexd has joined #ruby-lang
GeissT has joined #ruby-lang
dankest has quit [Quit: Leaving...]
kstuart has quit [Ping timeout: 240 seconds]
GarethAdams has quit [Quit: Leaving...]
lsegal` has joined #ruby-lang
Domon has joined #ruby-lang
lsegal` has quit [Client Quit]
lsegal has joined #ruby-lang
pkrnj has joined #ruby-lang
S2kx has quit [Quit: Leaving]
fragamus has quit [Quit: Computer has gone to sleep.]
nathanstitt has quit [Quit: I growing sleepy]
dankest has joined #ruby-lang
nathanstitt has joined #ruby-lang
dingus_khan has joined #ruby-lang
jsullivandigs has quit [Remote host closed the connection]
dingus_khan has quit [Ping timeout: 248 seconds]
gregmoreno has joined #ruby-lang
<hahuang65> Is there anyway around a Marshal.dump(obj).bytesize and getting the same byte size some other way? Having this weird issue where I can insert an object into Rails.cache, but when I try to delete it, it has a File object attached to it, which causes Marshal.dump to vomit...
<whitequark> that's surely weird
<hahuang65> whitequark: isn't it?
Linkedipsoul has quit [Quit: This computer has gone to sleep]
synthetix has joined #ruby-lang
<rickhull> anyone familiar with extended regexp? /foo/x
<rickhull> i get a syntax error in the middle of one where i start a capture on one line, specify some subexpressions on the next lines, then close the capture paren on the subsequent line
gregmoreno has quit [Remote host closed the connection]
<whitequark> rickhull: gist it
synthetix has quit [Ping timeout: 240 seconds]
<rickhull> trying a new approach. /x does seem fraught with peril however
<rickhull> for example, don't use '/' in a comment
hahuang65 has quit [Quit: Computer has gone to sleep.]
<whitequark> rickhull: use %r{}x
<rickhull> here's a different approach, different problem https://gist.github.com/rickhull/82780f59b77b92a9e06a
<whitequark> so / won't be a special symbol
<rickhull> ok, that should solve the one
<whitequark> rickhull: hahaha
<whitequark> I know why your latest gist doesn't work
<whitequark> but I wanna brag
<whitequark> so
<rickhull> grip it and rip it :P
<whitequark> gem install parser --pre; ruby-parse -E foo.rb # foo.rb being your gist
<whitequark> you'll understand it in no time
<rickhull> how bout you gist the output ;)
<whitequark> -E, of course, being --explain :p
<whitequark> well ok, you boring one
<whitequark> it won't have the nice coloring!
amerine has joined #ruby-lang
<whitequark> tl;dr: # in regexps is only interpreted by regexp parser; ruby's parser just captures it as a part of regexp source.
<rickhull> could it be a "bug" since it's trying to parse a comment?
<whitequark> ruby's parser does not interpret regexps, though.
<whitequark> think of // or %r{} as a special kind of string which automatically executes Regexp.new() with the content.
<rickhull> i'd still consider a design bug, that /x cannot be implemented properly
<rickhull> should be documented, i think, at least
<rickhull> happy to file a ticket
<whitequark> ruby's parser is already insane enough
<whitequark> we *really* shouldn't have another weird corner case in it.
<rickhull> yeah i'm not suggesting to edit ruby's parser
<rickhull> no doubt
<rickhull> but i would still document that comments using /x are parsed and will result in potentially unexpected behavior
<rickhull> and to use %r{} to help mitigate
adwhit has quit [Ping timeout: 260 seconds]
<whitequark> sure, sounds like a good idea
linc01n has quit [Quit: ZNC - http://znc.in]
adwhit has joined #ruby-lang
<rickhull> how's this for a test case https://gist.github.com/rickhull/5802332
Newbie0086 has joined #ruby-lang
<rickhull> could probably come up with another problematic comment char when using %r{}
<whitequark> yea
<whitequark> well, that would be unbalanced }
<whitequark> balanced {} are fine.
<rickhull> ok so yeah, if i used %r{} then a commented end brace would have same behavior?
<rickhull> expected (not same) behavior with %r{}
<whitequark> a commented, unbalanced end brace, yes
dingus_khan has joined #ruby-lang
<rickhull> hm, maybe not
<rickhull> getting two different results in different pry sessions
<whitequark> hm?
synthetix has joined #ruby-lang
<Newbie0086> hello
mdedetrich has joined #ruby-lang
<Newbie0086> can someone help me , i install feed_tools but it does'not work
linc01n has joined #ruby-lang
<Newbie0086> i post at gist https://gist.github.com/anonymous/5802365 can someone help me
<Newbie0086> :)
<whitequark> add a magic encoding comment to your code
<Newbie0086> what the magic encoding...
lcdhoffman has joined #ruby-lang
<whitequark> # encoding:utf-8
<whitequark> at the first line
<Newbie0086> i have added
<Newbie0086> #encoding:utf-8
<Newbie0086> require 'rubygems'
<Newbie0086> require 'feed_tools'
<Newbie0086> whitequark: have any idea?
amerine has quit [Quit: Computer has gone to sleep.]
<Newbie0086> when i installing FeedTool I found something wrong ,oops ,maybe feedtools too old
pkrnj has quit [Ping timeout: 268 seconds]
lcdhoffman has quit [Quit: lcdhoffman]
pkrnj has joined #ruby-lang
<whitequark> not sure
<Newbie0086> thanks any
jsullivandigs has joined #ruby-lang
io_syl has quit [Ping timeout: 264 seconds]
gregmoreno has joined #ruby-lang
verto has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
nathanstitt has quit [Quit: I growing sleepy]
gregmoreno has quit [Remote host closed the connection]
jackhammer2022 has quit [Ping timeout: 252 seconds]
gja has joined #ruby-lang
gja has quit [Changing host]
gja has joined #ruby-lang
meizaps has quit [Ping timeout: 252 seconds]
ryez has joined #ruby-lang
jackhammer2022 has joined #ruby-lang
jackhammer2022 has quit [Read error: Operation timed out]
pkrnj has quit [Quit: Textual IRC Client: www.textualapp.com]
DomKM has quit [Quit: Leaving.]
arubin has quit [Quit: Textual IRC Client: www.textualapp.com]
rippa has joined #ruby-lang
tpope_ has left #ruby-lang [#ruby-lang]
jackhammer2022 has joined #ruby-lang
mdedetrich has quit [Quit: Computer has gone to sleep.]
swav has quit [Remote host closed the connection]
swav has joined #ruby-lang
rippa has quit [Ping timeout: 248 seconds]
DomKM has joined #ruby-lang
rippa has joined #ruby-lang
swav has quit [Ping timeout: 276 seconds]
tRAS has joined #ruby-lang
nevill has quit [Quit: nevill]
Linkedipsoul has joined #ruby-lang
meizaps has joined #ruby-lang
jackhammer2022 has quit [Quit: Textual IRC Client: http://www.textualapp.com/]
vxr9 has quit [Quit: Lost terminal]
tRAS has quit [Quit: Mother, did it need to be so high?]
joshuawscott has quit [Quit: joshuawscott]
mdedetrich has joined #ruby-lang
amerine has joined #ruby-lang
erikh has quit [Quit: ZNC - http://znc.sourceforge.net]
erikh has joined #ruby-lang
dingus_khan has quit [Remote host closed the connection]
vlad_starkov has joined #ruby-lang
vlad_starkov has quit [Ping timeout: 260 seconds]
havenwood has joined #ruby-lang
tRAS has joined #ruby-lang
spuk has quit [Quit: Human beings were created by water to transport it uphill.]
gja has quit [Quit: This computer has gone to sleep]
dhruvasagar has joined #ruby-lang
vlad_starkov has joined #ruby-lang
spuk has joined #ruby-lang
tylersmith has quit [Remote host closed the connection]
havenwood has quit [Remote host closed the connection]
mistym has quit [Remote host closed the connection]
jsullivandigs has quit [Remote host closed the connection]
jsullivandigs has joined #ruby-lang
synthetix has quit [Ping timeout: 248 seconds]
havenwood has joined #ruby-lang
ezkl has joined #ruby-lang
ryanf_ has joined #ruby-lang
ryanf_ has quit [Client Quit]
jsullivandigs has quit [Ping timeout: 240 seconds]
toretore has joined #ruby-lang
macmartine has joined #ruby-lang
Mon_Ouie has joined #ruby-lang
mbj has joined #ruby-lang
vlad_starkov has quit [Remote host closed the connection]
rsl has quit [Quit: Computer has gone to sleep.]
tonni has quit [Remote host closed the connection]
Aaaarg has quit [Quit: Aaaarg]
macmartine has quit [Quit: Computer has gone to sleep.]
tomzx_mac has quit [Ping timeout: 260 seconds]
dfdf has joined #ruby-lang
DomKM has quit [Quit: Leaving.]
apeiros has quit [Read error: Connection reset by peer]
apeiros has joined #ruby-lang
Rizzle has quit [Read error: Connection reset by peer]
Rizzle has joined #ruby-lang
mistym has joined #ruby-lang
ryez has quit [K-Lined]
nevill has joined #ruby-lang
Averna has quit [Quit: Leaving.]
tonni has joined #ruby-lang
vlad_starkov has joined #ruby-lang
x0f has quit [Ping timeout: 264 seconds]
swav has joined #ruby-lang
x0f has joined #ruby-lang
JohnBat26 has joined #ruby-lang
apeiros has quit [Remote host closed the connection]
wallerdev has quit [Quit: wallerdev]
tylersmith has joined #ruby-lang
dankest has quit [Quit: Leaving...]
GeissT_ has joined #ruby-lang
vlad_starkov has quit [Remote host closed the connection]
eam has quit [Read error: Connection reset by peer]
GeissT_ has quit [Client Quit]
GeissT_ has joined #ruby-lang
GeissT has quit [Ping timeout: 264 seconds]
GeissT_ has quit [Client Quit]
tylersmith has quit [Ping timeout: 264 seconds]
ffio has joined #ruby-lang
_ffio_ has quit [Ping timeout: 276 seconds]
gja has joined #ruby-lang
gja has joined #ruby-lang
gja has quit [Changing host]
pipework has quit [Remote host closed the connection]
mbj has quit [Ping timeout: 275 seconds]
workmad3 has joined #ruby-lang
workmad3 has quit [Ping timeout: 260 seconds]
swav has quit [Remote host closed the connection]
mytrile has joined #ruby-lang
dfdf has quit [Remote host closed the connection]
smook4 has quit [Ping timeout: 255 seconds]
relix has joined #ruby-lang
havenwood has quit [Remote host closed the connection]
hu45 has joined #ruby-lang
sush24 has joined #ruby-lang
dr_bob has joined #ruby-lang
eam has joined #ruby-lang
woollyams has quit [Ping timeout: 252 seconds]
jsullivandigs has joined #ruby-lang
Wardrop has quit [Quit: Wardrop]
GeissT has joined #ruby-lang
tylersmith has joined #ruby-lang
tonni has quit [Remote host closed the connection]
tbuehlmann has joined #ruby-lang
jsullivandigs has quit [Ping timeout: 252 seconds]
mbj has joined #ruby-lang
ffio has quit [Ping timeout: 252 seconds]
tylersmith has quit [Ping timeout: 268 seconds]
rolfb has joined #ruby-lang
ffio has joined #ruby-lang
mistym has quit [Remote host closed the connection]
smook4 has joined #ruby-lang
vlad_starkov has joined #ruby-lang
skade has joined #ruby-lang
relix has quit [Read error: Connection reset by peer]
relix_ has joined #ruby-lang
vlad_starkov has quit [Ping timeout: 240 seconds]
smook4 has quit [Ping timeout: 255 seconds]
crudson1 has joined #ruby-lang
swav has joined #ruby-lang
dagobah has joined #ruby-lang
vlad_starkov has joined #ruby-lang
vlad_starkov has quit [Remote host closed the connection]
sush24 has quit [Ping timeout: 246 seconds]
dfdf has joined #ruby-lang
sush24 has joined #ruby-lang
jds__ has joined #ruby-lang
hu45 has quit [Ping timeout: 260 seconds]
tonni has joined #ruby-lang
hashkey has joined #ruby-lang
mikewintermute has joined #ruby-lang
jds has quit [Ping timeout: 252 seconds]
GarethAdams has joined #ruby-lang
swav has quit [Remote host closed the connection]
nevill has quit [Quit: nevill]
firstdayonthejob has quit [Quit: WeeChat 0.4.1]
minivan has joined #ruby-lang
nevill has joined #ruby-lang
GarethAdams has quit [Read error: Connection reset by peer]
solars has joined #ruby-lang
Newbie0086 has quit [Quit: 离开]
lsegal has quit [Quit: Quit: Quit: Quit: Stack Overflow.]
charliesome has joined #ruby-lang
solars has quit [Ping timeout: 240 seconds]
Criztian has joined #ruby-lang
bastilian has joined #ruby-lang
barttenbrinke has joined #ruby-lang
dfdf has quit [Remote host closed the connection]
barttenbrinke has quit [Remote host closed the connection]
swav has joined #ruby-lang
apeiros has joined #ruby-lang
relix_ has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
vlad_starkov has joined #ruby-lang
vlad_starkov has quit [Read error: Connection reset by peer]
vlad_starkov has joined #ruby-lang
chendo_ is now known as chendo
chinaboy_rubyfan has joined #ruby-lang
barttenbrinke has joined #ruby-lang
Mon_Ouie has quit [Quit: WeeChat 0.4.1]
chinaboy_rubyfan has quit [Client Quit]
minivan has quit [Quit: minivan]
Newbie0086 has joined #ruby-lang
elia has joined #ruby-lang
<Newbie0086> :)
<yorickpeterse> morning
minivan has joined #ruby-lang
<Newbie0086> this symbol means what?
<Newbie0086> its time to Dinner
glebm has quit [Ping timeout: 276 seconds]
solars has joined #ruby-lang
<Newbie0086> now 4:00 pm
<Newbie0086> i want to make email spoofing by ruby but failed
vlad_starkov has quit [Remote host closed the connection]
jstemmer has joined #ruby-lang
countdigi has quit [Ping timeout: 240 seconds]
<injekt> morning
glebm has joined #ruby-lang
philnyc has quit [Ping timeout: 256 seconds]
Linkedipsoul has quit [Quit: This computer has gone to sleep]
nevill has quit [Quit: nevill]
<yorickpeterse> Newbie0086: stop pasting markov chains in #ruby-lang
<yorickpeterse> this isn't ruby_ebooks
umttumt has joined #ruby-lang
mytrile has quit [Remote host closed the connection]
gnufied has joined #ruby-lang
<zzak_> injekt: hi!
<injekt> zzak_: HI
<gnufied> hy hy
countdigi has joined #ruby-lang
minivan has quit [Quit: minivan]
znz_jp has quit [Ping timeout: 260 seconds]
minivan has joined #ruby-lang
<injekt> zzak_: what's on the agenda for this evening?
<yorickpeterse> what we do every evening
Johz has joined #ruby-lang
<yorickpeterse> trying to take over the world
andrewvos has joined #ruby-lang
<injekt> pinky and the brain brain brain brain brain brain brain brain
relix has joined #ruby-lang
<yorickpeterse> in unrelated news, fuck maven
sush24 has quit [Ping timeout: 264 seconds]
<andrewvos> Oh yeah
<andrewvos> Don't you mean mvn
<andrewvos> mivvin
<andrewvos> mmm ven
<yorickpeterse> the Java build tool that can't actually build stuff
<yorickpeterse> because instead it bitches about something stupid
<yorickpeterse> e.g. it now seems to *insist* that plugins have a version requirement specified
<injekt> I write my maven in nokogiri
<andrewvos> I write my nokogiri in maven
<yorickpeterse> also fuck the new github repo layout
<andrewvos> Totes
<yorickpeterse> They got rid of the single most useful URL: git read-only links for cloning
jsullivandigs has joined #ruby-lang
<yorickpeterse> instead it's now just HTTPs, SVN (lol) and SSH if you have write access
<injekt> it's still read only if you dont own it
<yorickpeterse> and as always there's not really a place to bitch about this other than on Twitter
<yorickpeterse> injekt: yes, but I'd like to use the Git protocol instead of http
<yorickpeterse> mostly just personal preferences
<injekt> sure but if they had all the urls there people would be pissed off too
<injekt> I dont mind it, but for me github isn't for reading code, it's for managing my project. I have my code locally to read it
<injekt> they made reading my code on github easier, and managing my project harder
sush24 has joined #ruby-lang
<yorickpeterse> I don't like how the sidebar collapses on anything but the project dashboard
jsullivandigs has quit [Ping timeout: 264 seconds]
marr has joined #ruby-lang
sush24 has quit [Ping timeout: 264 seconds]
<yorickpeterse> lol
<yorickpeterse> not sure if trolling
<whitequark> yorickpeterse: "What's the difference between ant and maven? The creator of maven apologized."
<whitequark> yorickpeterse: I think trolling.
<whitequark> but that's easy to reply to without inflaming.
<whitequark> i.e. "classes are about organizing your code, and nothing more."
vlad_starkov has joined #ruby-lang
<andrewvos> Yay got a good pull request https://github.com/AndrewVos/eta
hashkey has quit [Ping timeout: 264 seconds]
sush24 has joined #ruby-lang
vlad_starkov has quit [Remote host closed the connection]
tylersmith has joined #ruby-lang
<zzak_> injekt: asakusarb and drinks
<zzak_> lol i almost wrote that as
<zzak_> drbrain inks
<injekt> :D
Guest__ has joined #ruby-lang
Guest__ has left #ruby-lang [#ruby-lang]
tylersmith has quit [Ping timeout: 264 seconds]
Rizzle has quit [Read error: Connection reset by peer]
sush24 has quit [Ping timeout: 264 seconds]
Rizzle has joined #ruby-lang
Voker57 has joined #ruby-lang
hashkey has joined #ruby-lang
<yorickpeterse> whitequark: lol
<yorickpeterse> I saw a good talk yesterday about OO and such
<yorickpeterse> (local Ruby meetup)
<yorickpeterse> andrewvos: what's the eta on it?
<yorickpeterse> :>
sush24 has joined #ruby-lang
<zzak_> controller specs sux
GarethAdams has joined #ruby-lang
<zzak_> too much troll
<andrewvos> yorickpeterse: GOOD JOKE I AM LAUGHING OUT LOUD
<yorickpeterse> My work here is done
<yorickpeterse> Remember, if you need a good pun just light the pun signal
MaddinXx_ has joined #ruby-lang
* yorickpeterse runs off in to the night
dagobah has quit [Read error: Operation timed out]
<yorickpeterse> even though it's 11:14 and sunny
dagobah has joined #ruby-lang
Aaaarg has joined #ruby-lang
sush24 has quit [Ping timeout: 264 seconds]
adambeynon has joined #ruby-lang
sush24 has joined #ruby-lang
kvs has joined #ruby-lang
amerine has quit [Quit: Computer has gone to sleep.]
<andrewvos> hahha
<yorickpeterse> This is why I fucking hate cloning over https:
<yorickpeterse> Username:
<yorickpeterse> IT'S A FUCKING PUBLIC REPOSITORY
<whitequark> yorickpeterse: your answer is... useless
<yorickpeterse> que?
<whitequark> or maybe not
Kero has quit [Ping timeout: 240 seconds]
bastilian has quit [Read error: Connection reset by peer]
bastilian_ has joined #ruby-lang
hogeo has quit [Remote host closed the connection]
bastilian has joined #ruby-lang
bastilian_ has quit [Read error: Connection reset by peer]
dr_bob has quit [Ping timeout: 240 seconds]
<whitequark> I wonder if I should learn Simula...
<yorickpeterse> is it actually still used?
Domon has quit [Remote host closed the connection]
dr_bob has joined #ruby-lang
<whitequark> not really
<whitequark> horrible syntax
skade has quit [Ping timeout: 246 seconds]
skade has joined #ruby-lang
gh72 has joined #ruby-lang
Newbie0086 has quit [Remote host closed the connection]
andrewvos has quit [Ping timeout: 260 seconds]
<whitequark> yorickpeterse: but, Smalltalk has drawn its OO from Simula.
stef_204 has joined #ruby-lang
TvL2386 has joined #ruby-lang
apeiros has quit [Remote host closed the connection]
Criztian has quit [Ping timeout: 240 seconds]
Criztian has joined #ruby-lang
gh72 has quit [Quit: leaving]
andrewvos has joined #ruby-lang
<erikh> unggggh
<erikh> it's almost like you have both so you can use both
<injekt> UNG
<yorickpeterse> lol UML
<injekt> umlol
<whitequark> TurkeyAdapter
<whitequark> LOL
* whitequark headdesks
<whitequark> I can't imagine anyone discussing this with a straight face.
tonni has quit [Remote host closed the connection]
tonni has joined #ruby-lang
tylersmith has joined #ruby-lang
vlad_starkov has joined #ruby-lang
<erikh> fart
<erikh> FartAdapter
<erikh> +gas()
<erikh> +smell()
<erikh> +bonus_content()
sush24 has quit [Ping timeout: 264 seconds]
kvs has quit [Read error: Connection reset by peer]
<yorickpeterse> AbstractFartInterfaceFactoryAdaptorFactoryGenerator
<tbuehlmann> Bean
<tbuehlmann> +setOdor
<yorickpeterse> +getAbstractFartInterfaceFactoryAdaptorFactoryGeneratorGenerator()
<yorickpeterse> method names should be self documenting
* yorickpeterse runs
tylersmith has quit [Ping timeout: 276 seconds]
vlad_starkov has quit [Ping timeout: 256 seconds]
sush24 has joined #ruby-lang
<whitequark> erikh: :D
kvs has joined #ruby-lang
vlad_starkov has joined #ruby-lang
sush24 has quit [Ping timeout: 252 seconds]
barttenbrinke has quit [Remote host closed the connection]
sush24 has joined #ruby-lang
vlad_starkov has quit [Ping timeout: 248 seconds]
mytrile has joined #ruby-lang
<yorickpeterse> import org.apache.commons.httpclient.methods.StringRequestEntity;
<yorickpeterse> haha java
<yorickpeterse> also lol at empty catch() blocks
<yorickpeterse> DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
<yorickpeterse> DocumentBuilder builder = factory.newDocumentBuilder();
<yorickpeterse> hahahaha
ruurd has joined #ruby-lang
<yorickpeterse> I'm just very tempted to rewrite this in Ruby because really all it does is POST shit to a webservice
<yorickpeterse> the actual logic is like 20 LOC
<yorickpeterse> the rest is just Java boilerplate
hogeo has joined #ruby-lang
ditto572 has joined #ruby-lang
hashkey has quit [Read error: Connection reset by peer]
hashkey has joined #ruby-lang
hashkey is now known as Guest91823
jsullivandigs has joined #ruby-lang
Mon_Ouie has joined #ruby-lang
Mon_Ouie has joined #ruby-lang
mdedetrich has quit [Ping timeout: 260 seconds]
mikewintermute has quit [Quit: mikewintermute]
matled- has joined #ruby-lang
matled has quit [Read error: Connection reset by peer]
matled- is now known as matled
Glass_saga has quit [Ping timeout: 264 seconds]
Kabaka has quit [Ping timeout: 240 seconds]
ledestin has quit [Read error: Connection reset by peer]
mdedetrich has joined #ruby-lang
ledestin has joined #ruby-lang
jsullivandigs has quit [Ping timeout: 240 seconds]
* whitequark has insomnia
* whitequark is reading MSDN
<whitequark> it helps.
<whitequark> for example, it is a good idea to read through the description of every memory management function in Windows.
* whitequark is at HeapSetInformation
<mdedetrich> assuming you call some method like this
<mdedetrich> do_stuff(Test)
<mdedetrich> where Test is a class
<mdedetrich> how do you detect, inside do_stuff, is actually a class reference (and not a variable)
<whitequark> mdedetrich: classes and variables do not belong to the same domain
relix has quit [Quit: Textual IRC Client: www.textualapp.com]
<whitequark> you probably meant a regular object.
<whitequark> def do_stuff(klass); if klass.is_a? Class; # do something; end; end
<mdedetrich> whitequark: thanks
<mdedetrich> that worked
<mdedetrich> also what is the typical ruby collection that is an unordered array (or list)
Kabaka has joined #ruby-lang
Guest91823 is now known as hashkey
rippa has quit [Ping timeout: 248 seconds]
<mdedetrich> nvm, got it, ruby has set
pskosinski has joined #ruby-lang
mdedetrich has quit [Ping timeout: 252 seconds]
mdedetrich has joined #ruby-lang
jacktrick has joined #ruby-lang
<kke> can i convert pathname to regular io somehow?
barttenbrinke has joined #ruby-lang
<kke> i got a method that takes content_or_readable as argument and pathname lacks things like .eof? but has .read
<kke> oh, to_io, maybe that works
<kke> sounds too easy
tylersmith has joined #ruby-lang
<jacktrick> ^said everyone new to ruby ever
<jacktrick> :>
<kke> yes, it was awesome in the beginning
<kke> "would be cool if it would work like this" -"wow, it does"
Domon has joined #ruby-lang
barttenbrinke has quit [Ping timeout: 246 seconds]
tylersmith has quit [Ping timeout: 252 seconds]
<kke> ah, actually it didn't, to_io was IO's method, not Pathnames
malev has joined #ruby-lang
<kke> now how come pathname doesn't have .eof? but has .read
<lianj> because eof? would suggest its already an opened io instance of some sort
<yorickpeterse> kke: a pathname to IO?
<yorickpeterse> You mean just a string containing the filepath?
<kke> yeah, seems so, it uses IO.read instead of having an io open already
<yorickpeterse> to_s
<yorickpeterse> >> require 'pathname'; Pathname.new('/foo').to_s
<eval-in> yorickpeterse => "/foo" (https://eval.in/33885)
<kke> yeah looks like i'll need to handle that differently than passing a file/io/stringio because i want to read it buffered
postmodern has quit [Quit: Leaving]
sush24_ has joined #ruby-lang
<yorickpeterse> I'm probably misunderstanding but from what I know you cant convert a Pathname instance to an IO instance
<yorickpeterse> at least not out of the box
Domon has quit [Remote host closed the connection]
sush24 has quit [Ping timeout: 256 seconds]
<rolfb> yorickpeterse: any objects you can send a message with the pathname to do that for you?
verto has joined #ruby-lang
<kke> yeah, File.open
<kke> or IO.open
<yorickpeterse> rolfb: maybe IO and friends as such can take Pathname objects, not sure
<kke> but actually i realized i can just do FileUtils.copy content_or_readable, dest_path if a pathname is passed
<kke> yeah they mostly can
<yorickpeterse> >> require 'pathname'; File.open(Pathname.new('/etc/shadow'), 'r'); # This will raise because there's no filesystem
<eval-in> yorickpeterse => Permission denied - /etc/shadow (Errno::EACCES) ... (https://eval.in/33886)
<yorickpeterse> hm, interesting
umttumt has quit [Remote host closed the connection]
barttenbrinke has joined #ruby-lang
<kke> >> require 'pathname'; Pathname.new('/etc/shadow').open('r') { r.read until r.eof? }
<eval-in> kke => Permission denied - /etc/shadow (Errno::EACCES) ... (https://eval.in/33887)
<kke> or so
umttumt has joined #ruby-lang
<yorickpeterse> oh neat, didn't even know you could directly do that on Pathname
<kke> yeah and .exist? and .directory? and .unlink and things like that, they're awesome
mbj has quit [Read error: Connection reset by peer]
sush24_ has quit [Ping timeout: 268 seconds]
ezkl has quit [Quit: Textual IRC Client: www.textualapp.com]
apeiros has joined #ruby-lang
andrewvos has quit [Ping timeout: 256 seconds]
sush24 has joined #ruby-lang
mbj has joined #ruby-lang
tbuehlmann has quit [Remote host closed the connection]
xxaM has quit [Remote host closed the connection]
barttenbrinke has quit [Remote host closed the connection]
rovert has joined #ruby-lang
mdedetrich has quit [Quit: Computer has gone to sleep.]
mytrile has quit [Remote host closed the connection]
tRAS has quit [Quit: Mother, did it need to be so high?]
swygue has joined #ruby-lang
dhruvasagar has quit [Ping timeout: 260 seconds]
dhruvasagar has joined #ruby-lang
stamina has joined #ruby-lang
ldnunes has joined #ruby-lang
<yorickpeterse> I'm writing Java
<yorickpeterse> somebody kill me please
<yorickpeterse> before I turn into a FactoryMonsterFactory
<yorickpeterse> BufferedWriter w = new BufferedWriter(new OutputStreamWriter(System.out,"UTF-8"));
<yorickpeterse> like...wat
Aaaarg has quit [Quit: Aaaarg]
barttenbrinke has joined #ruby-lang
znz_jp has joined #ruby-lang
hhatch has joined #ruby-lang
io_syl has joined #ruby-lang
<gnufied> the problem is JVM does not support Process.kill() natively
<gnufied> otherwise, you would have been dead by now.
<gnufied> lets wait for OOM error though
<yorickpeterse> fuckit, letting the Java people do this
dhruvasagar has quit [Ping timeout: 264 seconds]
dhruvasagar has joined #ruby-lang
tylersmith has joined #ruby-lang
relix has joined #ruby-lang
ditto572 has quit [Ping timeout: 256 seconds]
relix has quit [Client Quit]
tylersmith has quit [Ping timeout: 264 seconds]
dhruvasagar has quit [Ping timeout: 256 seconds]
dhruvasagar has joined #ruby-lang
<whitequark> pathname is awesome
<whitequark> I wish ruby never used strings for paths at all.
<whitequark> what about... path literals? and URL literals? way more useful than all those perlisms out there.
<whitequark> oh, yes, and more pervasive usage of URL.
yalue has joined #ruby-lang
<whitequark> Rails basically explodes if you try to pass Pathnames or URLs to it.
<yorickpeterse> URLFactoryBuilder
<yorickpeterse> also, brace yourselves:
<yorickpeterse> >> require 'uri' URI.regex
<eval-in> yorickpeterse => /tmp/execpad-370a4dc9665d/source-370a4dc9665d:2: syntax error, unexpected tCONSTANT, expecting keyword_end ... (https://eval.in/33888)
<yorickpeterse> errrr
<yorickpeterse> fail me
<yorickpeterse> >> require 'uri'; URI.regexp
<eval-in> yorickpeterse => / ... (https://eval.in/33889)
<yorickpeterse> ...
<yorickpeterse> oh ha, there's actually a newline
<yorickpeterse> lel
<yorickpeterse> either way, I do agree that "String all the things!" is annoying
dhruvasagar has quit [Ping timeout: 256 seconds]
kvs has quit [Read error: Connection reset by peer]
jacktrick has quit [Quit: Leaving]
andrewvos has joined #ruby-lang
stamina has quit [Ping timeout: 264 seconds]
rolfb has quit [Quit: Leaving...]
<whitequark> awesome regexp
<whitequark> one of the more correct uses of regular expressions.
kvs has joined #ruby-lang
cored has joined #ruby-lang
cored has quit [Changing host]
cored has joined #ruby-lang
<lianj> hope no one uses it to check if the string is 'only' a uri
mdedetrich has joined #ruby-lang
hogeo has quit [Remote host closed the connection]
<whitequark> Next, the program calls CoGetClassObject to get a pointer to IExample.dll's IClassFactory object. Note that we pass the IExample object's GUID as the first argument. We also pass a pointer to our variable classFactory which is where a pointer to the IClassFactory will be returned to us, if all goes well.
adambeynon has quit [Quit: ["Textual IRC Client: www.textualapp.com"]]
rwilcox has quit [Ping timeout: 248 seconds]
<injekt> wat
<yorickpeterse> whitequark: are you suicidal?
<yorickpeterse> Should we get help?
relix has joined #ruby-lang
<yorickpeterse> and don't you dare export the OLE objects on the commandline for internet information
andrewvos has quit [Ping timeout: 252 seconds]
adambeynon has joined #ruby-lang
anekos has quit [Remote host closed the connection]
<yorickpeterse> fuckit, 10 minute nap tiem
anekos has joined #ruby-lang
benlovell has quit [Remote host closed the connection]
<whitequark> yorickpeterse: helps with insomnia
<yorickpeterse> How do you not make it worse? I'd get nightmares reading that
<whitequark> I never seen anything more bland and boring than MSDN.
<yorickpeterse> also pretty sure you can solve that by not dealing with parse.y every night before you go to bed
<whitequark> meh, it's just C++ reinvented before C++ compilers got production quality
<whitequark> then backported back to C++.
vlad_starkov has joined #ruby-lang
rsl has joined #ruby-lang
<whitequark> grmbl
<whitequark> how do I add type annotations to ruby 2.0's method definitions with kwargs?
<whitequark> def foo(Bar baz: 1, Foo foo)?
<whitequark> everything else seems to not work
<whitequark> baz: Bar conflicts with kwarg syntax
<whitequark> variations over def foo(baz => Bar) cannot accomodate kwarg syntax if => is also used for type conversion
<whitequark> as in: def foo(baz: 1 => Bar) is ambiguous: is it (baz: 1) => Bar, or baz: (1 => Bar)
carloslopes has joined #ruby-lang
singpolyma has quit [Ping timeout: 256 seconds]
<charliesome> whitequark: how about
<charliesome> def foo((Bar)baz, (Fixnum)lol)
<whitequark> even more ugly
<whitequark> also related
<whitequark> though, not sure if actually necessary
cored has quit [Quit: leaving]
<yorickpeterse> hmm, that was nice
<whitequark> declaring type of lvars: it can be "Foo foo = 10"
<whitequark> or "foo = 10 => foo"
<whitequark> (inferred from type conversion)
<yorickpeterse> def foo(<Bar>baz, <Foo>foo)
<yorickpeterse> needs <<<more>>>
<whitequark> also related: types of ivars declared inside the class
<whitequark> Foo @bar ?
<whitequark> @bar => Foo ?
<whitequark> I like => because "Foo @bar" can be interpreted as a method call.
cored has joined #ruby-lang
cored has quit [Changing host]
cored has joined #ruby-lang
<whitequark> ruby's grammar leaves very little room for experiments.
<yorickpeterse> wouldn't => conflict with hashes?
<whitequark> yorickpeterse: it never occurs bare
krames has joined #ruby-lang
vlad_starkov has quit [Remote host closed the connection]
adambeynon has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<whitequark> and if it ever occurs in a hash, you're free to disambiguate it with ()
<injekt> zzak_: ping
<yorickpeterse> whitequark: hmmm
<whitequark> I feel that I really need to stop using Ruby's grammar intact and use something way, way simpler instead
<whitequark> it can even allow mechanical transformation from Ruby code
<yorickpeterse> so def increment(number => Integer) => Integer; end
singpolyma has joined #ruby-lang
<whitequark> right now it's def increment(Integer number) => Integer; end
<yorickpeterse> oh and before I forget, please make the type system so that it checks for the ancestor chain (somehow) instead of directly the class
<whitequark> and I don't like how it is inconsistent
<yorickpeterse> that way you could also pass MyInteger (given it extends Integer)
<yorickpeterse> since that's the single most annoying thing of type systems in my opinion: they are far too strict
<whitequark> yorickpeterse: that's inheritance subtyping
<yorickpeterse> also, you can use hungarian notation!
<whitequark> and any sensible type system has it
<yorickpeterse> def iIncrement(iNumber); end
<whitequark> even nonsensical ones. Java, C++, etc.
<yorickpeterse> C++ doesn't have it as far as I'm aware of
<whitequark> it does
<yorickpeterse> ah
smook4 has joined #ruby-lang
carloslopes has quit [Ping timeout: 246 seconds]
mikewintermute has joined #ruby-lang
adambeynon has joined #ruby-lang
tylersmith has joined #ruby-lang
cdelo has joined #ruby-lang
tbuehlmann has joined #ruby-lang
jwollert has joined #ruby-lang
krz has quit [Ping timeout: 240 seconds]
tylersmith has quit [Ping timeout: 256 seconds]
khaase_ has joined #ruby-lang
sush24 has quit [Quit: This computer has gone to sleep]
krz has joined #ruby-lang
<zzak_> injekt: pong
<zzak_> injekt: im at a british pub LOL
<kke> splitting long ifs looks ugly somehow
adambeynon has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<kke> because the next line of conditionals lines up with the code following it
<injekt> zzak_: :D
adambeynon has joined #ruby-lang
<yorickpeterse> zzak_: how long are you in Glorious Dainippon anyway?
sush24 has joined #ruby-lang
breakingthings has joined #ruby-lang
mytrile has joined #ruby-lang
joshuawscott has joined #ruby-lang
<zzak_> injekt: nice!
<zzak_> yorickpeterse: i leave for home, and my cat, sunday
<matti> zzak_: Back in the US?
<matti> zzak_: Or enjoying humid night in Tokyo?
thiagoborges has joined #ruby-lang
<yorickpeterse> zzak_: Ah
<injekt> zzak_: I hope you're drinking something british
<yorickpeterse> zzak_: weren't you going to Euruko as well?
adambeynon has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
swygue has quit [Ping timeout: 240 seconds]
adambeynon has joined #ruby-lang
wmoxam has joined #ruby-lang
apeiros has quit [Remote host closed the connection]
<yorickpeterse> def polymorphic_path(record_or_hash_or_array, options = {})
<yorickpeterse> haha that variable name
adambeynon has quit [Client Quit]
<injekt> I think record would be enough
tkuchiki has quit [Remote host closed the connection]
<whitequark> duh, I really need to work something out with this syntax.
<whitequark> it is really going to end up as a disaster.
<yorickpeterse> Ruby++
<yorickpeterse> Ruby With Types
<whitequark> ruby already has types.
<yorickpeterse> Ruby With Static Types
<yorickpeterse> fine, w/e
<yorickpeterse> now just add macros and templates and you're done :>
<gnufied> i want ruby to support immutable variables and values
<gnufied> a = 10, a = 15 sorry
rippa has joined #ruby-lang
<gnufied> things like that
<gnufied> a = {}
<gnufied> a.update(:crap => "foo") sorry!
<injekt> meh
<gnufied> injekt: not a fan?
<injekt> the first one doesnt make much sense
<Mon_Ouie> A = 10; A = 15
<injekt> that's not mutating the object
<Mon_Ouie> a.freeze
<gnufied> thats why we are talking about two things
<injekt> which is why freeze wouldn't help
<gnufied> 1. immutable objects
<gnufied> 2. immutable references
<injekt> ah
<injekt> well then no I dont agree with 2
<injekt> that's what constants are for
dr_bob has quit [Quit: Leaving.]
<gnufied> constants can always be overridden
<injekt> and 1 is solved by freeze basically
mikewintermute has quit [Quit: mikewintermute]
<gnufied> not really
<injekt> well not entirely
<gnufied> there bunch of edge cases around frozen objects
<gnufied> (last i looked)
<injekt> sounds like you want python
<gnufied> python has immutable references?
<injekt> no I was referring to objects
synthetix has joined #ruby-lang
<gnufied> Mon_Ouie: that just a warning and nobody will use constant for local immutable references will they?
ChinggizKhan has joined #ruby-lang
pipework has joined #ruby-lang
<injekt> I don't know if I see the benefit of local immutable references
<injekt> like at all
atmosx has joined #ruby-lang
<yorickpeterse> immutability isn't a holy grail
<gnufied> injekt: for one, one can guarantee that function is side-effect free?
<yorickpeterse> I probably shouldn't say that on HN
<injekt> heh
<injekt> it would remove a lot of the nice dynamic capabilities of ruby, or any dynamic language
<injekt> erlang has this right?
<gnufied> yes. clojure has it.
<gnufied> I am not saying it has to be made a default behaviour.
<gnufied> I am saying, it should be possible.
<yorickpeterse> I'd also say that by nature those systems would be less memory efficient, though you can probably optimize that to death as well
TvL2386 has quit [Quit: Ex-Chat]
benlovell has joined #ruby-lang
<injekt> why would they be less memory efficient? storing references?
<gnufied> probably he is thinking, updating a object will have to yield a new object
<gnufied> rather than modifying existing one.
<gnufied> he is right, but there are ways to get around that. people have been building functional data structures for decades
scampbell has joined #ruby-lang
<injekt> most languages yield new objects when mutating anyway, including ruby
<gnufied> not really. ruby strings are mutable.
<injekt> right
<gnufied> so as about everything almost.
<gnufied> I am not saying immutable references or objects has to be default. because then we are looking at entirely different language.
<gnufied> they should be possible.
<gnufied> </2 cents>
<yorickpeterse> injekt: due to it being immutable you'd have to create new copies for every modifcation. However, like I said you can optimize for this
<yorickpeterse> up to the point where it might not make a difference
<injekt> im just gonna use go
tonni has quit [Remote host closed the connection]
<gnufied> i have been working very slowly through learning go properly!
umttumt has quit [Remote host closed the connection]
<gnufied> need something to use it for
gix has quit [Ping timeout: 245 seconds]
jwollert has quit [Ping timeout: 260 seconds]
tomzx_mac has joined #ruby-lang
adambeynon has joined #ruby-lang
<yorickpeterse> meanwhile I'm trying to make Rails deal with my contextual based link_to madness
<yorickpeterse> SO CLOSE
<yorickpeterse> SO GOD DAMN CLOSE
jwollert has joined #ruby-lang
<injekt> do you just wake up in the morning and think, "what kind of weird ass shit can i do today?"
<injekt> you always seem to have weird/interesting problems to solve
gix has joined #ruby-lang
<gnufied> ^
<yorickpeterse> injekt: it's called "having a nice job"
<gnufied> and he is really short on co-workers and hence we have to listen. :-)
<yorickpeterse> or "being fucking crazy"
<injekt> I'll go for the later
<gnufied> what is this contextual link_to() yorick/
<injekt> I have a nice job and I dont have these kind of weird problems
<yorickpeterse> tl;dr: this app has "stacked pages" similar to Basecamp (basically contexts), I want link_to and such to deal with that
<yorickpeterse> or at least have a similar helper that can do that
<injekt> rather than writing full paths?
<yorickpeterse> Mind you you can have 4 contexts in a lot of cases
<yorickpeterse> so for each link you'll end up with a case/if-else statement to deal with that
<yorickpeterse> e.g. /contracts/1/users, /companies/2/users, /company_groups/2/users, etc
<gnufied> perhaps those presenters can solve some of the problem?
<yorickpeterse> I'm doing it in a one-liner
<yorickpeterse> at least that's what I want to achieve
<gnufied> as in - you are free to define polymorphic path helpers in them
<yorickpeterse> and I'm actually pretty close
<gnufied> whereas if you do that in models, people willl cry and fall over
<yorickpeterse> contextual_path(:edit, some_user_object) # => takes care of it
minivan has quit [Remote host closed the connection]
<yorickpeterse> I'm doing it in a helper
<gnufied> is defining path helpers in models, just cargo cult?
<gnufied> i mean hating it
<injekt> models should not care about views
<yorickpeterse> I'm currently abusing build_named_route_call for most of the work
<yorickpeterse> and that
fragamus has joined #ruby-lang
<injekt> if you include the url helpers in a model, you should be smacked
<gnufied> injekt: but they don't. they just have a method that a view can use.
<gnufied> injekt: I don't almost 100%.
<injekt> that's what view helpers were built for
<gnufied> but I am not very sure.
<injekt> or presenters if you like them
<injekt> git rebase is like the best thing ever
andrewvos has joined #ruby-lang
<gnufied> there is also polymorphic_url_for or something tbh
<yorickpeterse> injekt: I can never get the hang of it
<injekt> yorickpeterse: it's a god damn beast, so powerful, I only use the basic features
smook4 has quit [Ping timeout: 255 seconds]
<yorickpeterse> I always end up rebasing myself into hell
<yorickpeterse> (Git hell)
<injekt> haha
netShadow has quit [Ping timeout: 276 seconds]
vlad_starkov has joined #ruby-lang
<injekt> I dont do anything magical with it, I dont see myself as advanced with git on any level, it's way too confusing
<injekt> but rebase, rebase is the shit
<yorickpeterse> HAHAHAHA IT WORKS
<injekt> \o/
<yorickpeterse> <insert picture of Frankenstein scene>
<yorickpeterse> contextual_path(:new, :user) or contextual_path(:new, user) (using an object)
<yorickpeterse> one last step: fixing the location of the available contexts, right now these come from a method
<yorickpeterse> but meh, I don't want to define one of those for every controller
vlad_starkov has quit [Remote host closed the connection]
<injekt> what are you building?
<gnufied> yorickpeterse: polymorphic_url didn't do?
<yorickpeterse> No, it slaps too much in front of it
<yorickpeterse> I needed the very last segment of the path, not everything
tylersmith has joined #ruby-lang
<yorickpeterse> so "user_path" instead of /foo/bar/user_path
nathanstitt has joined #ruby-lang
vbatts|work has joined #ruby-lang
mistym has joined #ruby-lang
Uranio has joined #ruby-lang
umttumt has joined #ruby-lang
tylersmith has quit [Ping timeout: 264 seconds]
gja has quit [Quit: This computer has gone to sleep]
relix has quit [Quit: Textual IRC Client: www.textualapp.com]
adambeynon has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
jsullivandigs has joined #ruby-lang
relix has joined #ruby-lang
vbatts|work has quit [Quit: MeSoChatty 0.3.8]
jsullivandigs has quit [Ping timeout: 240 seconds]
x0f has quit [Ping timeout: 246 seconds]
netShadow has joined #ruby-lang
justinmburrous has joined #ruby-lang
x0f has joined #ruby-lang
smook4 has joined #ruby-lang
dhruvasagar has joined #ruby-lang
fragamus has quit [Quit: Computer has gone to sleep.]
krz has quit [Quit: krz]
rovert has quit [Quit: Leaving]
carloslopes has joined #ruby-lang
netShadow has quit [Read error: Connection timed out]
GeissT has quit [Read error: Connection reset by peer]
DomKM has joined #ruby-lang
atmosx has quit [Quit: And so the story goes…]
tonni has joined #ruby-lang
umttumt has quit [Remote host closed the connection]
nathanstitt has quit [Quit: I growing sleepy]
gnufied has quit [Quit: Leaving.]
mdedetrich has quit [Quit: Computer has gone to sleep.]
gregmoreno has joined #ruby-lang
jsullivandigs has joined #ruby-lang
ledestin has quit [Ping timeout: 246 seconds]
synthetix has quit [Read error: Operation timed out]
Uranio has quit [Quit: while you reading this, a kitty dies]
ledestin has joined #ruby-lang
gregmoreno has quit [Remote host closed the connection]
tomzx_mac has quit [Read error: Operation timed out]
randallagordon has quit [Quit: leaving]
randallagordon has joined #ruby-lang
gnufied has joined #ruby-lang
gnufied1 has joined #ruby-lang
wesside has joined #ruby-lang
charliesome has quit [Quit: Textual IRC Client: www.textualapp.com]
cameronbarton has joined #ruby-lang
gnufied has quit [Ping timeout: 248 seconds]
andrewvos has quit [Ping timeout: 264 seconds]
hogeo has joined #ruby-lang
pipework has quit [Remote host closed the connection]
io_syl has quit [Quit: Computer has gone to sleep.]
wallerdev has joined #ruby-lang
wallerdev has quit [Client Quit]
<erikh> he invents them
<erikh> also I'm grumpy
<erikh> fart
nathanstitt has joined #ruby-lang
tylersmith has joined #ruby-lang
justinmburrous has quit [Remote host closed the connection]
justinmburrous has joined #ruby-lang
hogeo has quit [Remote host closed the connection]
tylersmith has quit [Ping timeout: 246 seconds]
ffio_ has joined #ruby-lang
ffio has quit [Ping timeout: 264 seconds]
andrewvos has joined #ruby-lang
gnufied1 has quit [Quit: Leaving.]
dhruvasagar has quit [Ping timeout: 240 seconds]
Squarepy has joined #ruby-lang
cameronbarton has quit [Ping timeout: 250 seconds]
gnufied has joined #ruby-lang
gnufied has quit [Write error: Broken pipe]
gnufied1 has joined #ruby-lang
Uranio has joined #ruby-lang
mytrile has quit [Remote host closed the connection]
andrewvos has quit [Ping timeout: 240 seconds]
dr_bob has joined #ruby-lang
mhenrixon has joined #ruby-lang
carloslopes has quit [Remote host closed the connection]
tbuehlmann has quit [Remote host closed the connection]
dr_bob1 has joined #ruby-lang
bastilian has quit [Quit: Leaving...]
dhruvasagar has joined #ruby-lang
s0ber has quit [Ping timeout: 245 seconds]
amcoder has joined #ruby-lang
skade has quit [Quit: Textual IRC Client: www.textualapp.com]
dr_bob has quit [Ping timeout: 240 seconds]
banisterfiend has joined #ruby-lang
<banisterfiend> Asher: sup
s0ber has joined #ruby-lang
wallerdev has joined #ruby-lang
hogeo has joined #ruby-lang
anonymuse has joined #ruby-lang
arooni-mobile has quit [Ping timeout: 240 seconds]
amcoder has quit [Quit: …quit…]
tonni has quit [Remote host closed the connection]
havenwood has joined #ruby-lang
justinmburrous has quit [Remote host closed the connection]
mytrile has joined #ruby-lang
barttenbrinke has quit [Remote host closed the connection]
dhruvasagar has quit [Ping timeout: 252 seconds]
bastilian has joined #ruby-lang
badgerisk has joined #ruby-lang
gregmoreno has joined #ruby-lang
JpC0utur3 has joined #ruby-lang
krohrbaugh has joined #ruby-lang
carloslopes has joined #ruby-lang
krohrbaugh has quit [Client Quit]
krohrbaugh has joined #ruby-lang
gregmoreno has quit [Ping timeout: 256 seconds]
tylersmith has joined #ruby-lang
dankest has joined #ruby-lang
gnufied1 has quit [Quit: Leaving.]
hogeo has quit [Remote host closed the connection]
arooni-mobile has joined #ruby-lang
__butch__ has joined #ruby-lang
<Uranio> there is any SIMPLE gem for make a twitt?
<ericwood> the twitter gem
<ericwood> but you still have to grapple with OAuth for any and all twitter-related gems
<ericwood> so yay :D:D:D:D
carloslopes has quit [Ping timeout: 256 seconds]
tylersmith has quit [Remote host closed the connection]
Johz has quit [Ping timeout: 240 seconds]
<Uranio> ericwood: yeah, show be cool... but do not support proxy
<Uranio> oauth is not a problem
<ericwood> my mind broke trying to parse that sentence
<Uranio> proyx's support is the problem
<ericwood> elaborate plz!
<Uranio> ericwood: ericwood.mind=Cuban::Lang::WeirdEnglish.new do |input|
<ericwood> ah Cuban WeirdEnglish
<Uranio> the problem is in the proxy... I need to use a proxy
<ericwood> ah, see that I can't help you with
<Uranio> not connecting direct to internet
<ericwood> I don't know anything about proxying
<ericwood> but I feel like that should be done at the OS level
<Uranio> I see..
<ericwood> forward all traffic over the proxy?
<ericwood> but you probably don't want to do that (I wouldn't, either)
<Uranio> everything work, except the twitter gem... what should by the mistery
stef_204 has quit [Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/]
tkuchiki has joined #ruby-lang
ledestin has quit [Ping timeout: 276 seconds]
solars has quit [Ping timeout: 264 seconds]
io_syl has joined #ruby-lang
badgerisk has quit [Ping timeout: 250 seconds]
ledestin has joined #ruby-lang
elia has quit [Ping timeout: 264 seconds]
nathanstitt has quit [Quit: I growing sleepy]
sush24 has quit [Quit: This computer has gone to sleep]
dhruvasagar has joined #ruby-lang
vlad_starkov has joined #ruby-lang
banisterfiend has quit [Remote host closed the connection]
benlovell has quit [Ping timeout: 268 seconds]
banisterfiend has joined #ruby-lang
Criztian has quit [Remote host closed the connection]
nathanstitt has joined #ruby-lang
northelks has quit [Read error: Connection reset by peer]
northelks has joined #ruby-lang
carloslopes has joined #ruby-lang
NemesisD has joined #ruby-lang
<NemesisD> anyone know how to pull the numbers before and after the decimal in a bigdecimal
dr_bob1 has left #ruby-lang [#ruby-lang]
Kero has joined #ruby-lang
<NemesisD> im struggling to remember the term for it. i thought it was the mantissa but im not sure
rue_XIV has quit [Remote host closed the connection]
<banisterfiend> NemesisD: use mod
rue has joined #ruby-lang
<NemesisD> banisterfiend: ah so like integer, decimal = bigdec.divmod(1).map(&:truncate)
torrieri has joined #ruby-lang
<NemesisD> what are the terms for those 2 parts
<banisterfiend> #math ;)
stamina has joined #ruby-lang
workmad3 has joined #ruby-lang
melter has quit [Remote host closed the connection]
saarinen has joined #ruby-lang
dankest has quit [Quit: Linkinus - http://linkinus.com]
marr has quit [Ping timeout: 260 seconds]
mytrile has quit [Remote host closed the connection]
<Squarepy> NemesisD, the definition distinguishes the pre-factor (mantissa) and the exponent (relative to the chosen base)
apeiros has joined #ruby-lang
adambeynon has joined #ruby-lang
krames has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
justinmburrous has joined #ruby-lang
tkuchiki has quit [Remote host closed the connection]
amerine has joined #ruby-lang
bastilian has quit [Quit: Leaving...]
krohrbaugh has quit [Quit: Leaving.]
krohrbaugh has joined #ruby-lang
enQA has joined #ruby-lang
fsvehla has joined #ruby-lang
<injekt> lolmath
<erikh> math math math
<erikh> mathy math
<injekt> math shmath
<injekt> math is hard lets talk concurrency
justinmburrous has quit [Remote host closed the connection]
<erikh> injekt: sadly, that's easier for me
JohnBat26 has quit [Ping timeout: 240 seconds]
justinmburrous has joined #ruby-lang
workmad3 has quit [Ping timeout: 264 seconds]
<injekt> erikh: me too :(
<injekt> and even more sadly not because im awesome at concurrency
hogeo has joined #ruby-lang
<erikh> hehe exactly
<erikh> I FEEL YA BRAH
<injekt> HEY DONT TOUCH THERE
<injekt> classic
<erikh> indeed
<erikh> much pot was smoked during this time in my life
JohnBat26 has joined #ruby-lang
GarethAdams has quit [Quit: Leaving...]
mytrile has joined #ruby-lang
dagobah has quit [Remote host closed the connection]
hogeo has quit [Ping timeout: 276 seconds]
pskosinski has quit [Remote host closed the connection]
tylersmith has joined #ruby-lang
swav has quit [Remote host closed the connection]
mrsolo has joined #ruby-lang
symm- has joined #ruby-lang
ehutzelman has joined #ruby-lang
krames has joined #ruby-lang
flak has joined #ruby-lang
flak is now known as Guest81003
jonahR has joined #ruby-lang
rippa has quit [Ping timeout: 248 seconds]
Guest81003 has left #ruby-lang [#ruby-lang]
rippa has joined #ruby-lang
stamina has quit [Ping timeout: 248 seconds]
tRAS has joined #ruby-lang
sepp2k has joined #ruby-lang
joshuawscott has quit [Quit: joshuawscott]
dhruvasagar has quit [Ping timeout: 256 seconds]
dhruvasagar has joined #ruby-lang
vbatts|work has joined #ruby-lang
vbatts|work has quit [Read error: Connection reset by peer]
spinagon has joined #ruby-lang
dhruvasagar has quit [Ping timeout: 240 seconds]
gnufied has joined #ruby-lang
ruurd has quit [Quit: Leaving...]
rippa has quit [Ping timeout: 248 seconds]
adambeynon has quit [Quit: Textual IRC Client: www.textualapp.com]
gregmoreno has joined #ruby-lang
fedesilva has joined #ruby-lang
marr has joined #ruby-lang
Uranio has quit [Quit: while you reading this, a kitty dies]
joshuawscott has joined #ruby-lang
dhruvasagar has joined #ruby-lang
DomKM has quit [Quit: Leaving.]
tRAS has quit [Quit: Mother, did it need to be so high?]
torrieri has quit [Quit: Leaving...]
havenwood has quit [Read error: Connection reset by peer]
gnufied has quit [Quit: Leaving.]
stamina has joined #ruby-lang
tonni has joined #ruby-lang
mytrile has quit [Remote host closed the connection]
benlovell has joined #ruby-lang
justinmb_ has joined #ruby-lang
benlovell has quit [Client Quit]
firstdayonthejob has joined #ruby-lang
justinmburrous has quit [Ping timeout: 240 seconds]
vlad_starkov has quit [Remote host closed the connection]
segy has quit [*.net *.split]
ohsix has quit [*.net *.split]
robbyoconnor has quit [*.net *.split]
weeb1e has quit [*.net *.split]
pygmael has quit [*.net *.split]
Guest27874 has quit [*.net *.split]
cmckni3 has quit [*.net *.split]
segy has joined #ruby-lang
Guest27874 has joined #ruby-lang
robbyoconnor has joined #ruby-lang
zachlatta has joined #ruby-lang
ohsix has joined #ruby-lang
weeb1e has joined #ruby-lang
pygmael has joined #ruby-lang
rodj has joined #ruby-lang
DomKM has joined #ruby-lang
torrieri has joined #ruby-lang
carloslopes has quit [Remote host closed the connection]
carloslopes has joined #ruby-lang
mbj has quit [Quit: leaving]
zmike123 has joined #ruby-lang
justinmb_ has quit [Remote host closed the connection]
justinmburrous has joined #ruby-lang
mhenrixon has quit [Quit: Textual IRC Client: www.textualapp.com]
justinmburrous has quit [Remote host closed the connection]
<injekt> rd seed
<injekt> er
<injekt> wrong window
ruurd has joined #ruby-lang
enQA_ has joined #ruby-lang
enQA has quit [Quit: Page closed]
fsvehla has quit [Quit: fsvehla]
fsvehla has joined #ruby-lang
ehutzelman has quit [Remote host closed the connection]
DomKM1 has joined #ruby-lang
DomKM has quit [Ping timeout: 264 seconds]
krohrbaugh1 has joined #ruby-lang
krohrbaugh1 has quit [Client Quit]
elia has joined #ruby-lang
justinmburrous has joined #ruby-lang
justinmburrous has quit [Remote host closed the connection]
enQA_ has left #ruby-lang [#ruby-lang]
krohrbaugh1 has joined #ruby-lang
krohrbaugh has quit [Ping timeout: 240 seconds]
Mon_Ouie has quit [Quit: WeeChat 0.4.1]
synthetix has joined #ruby-lang
elia has quit [Quit: Computer has gone to sleep.]
Mon_Ouie has joined #ruby-lang
enQA has joined #ruby-lang
Linkedipsoul has joined #ruby-lang
elia has joined #ruby-lang
mbj has joined #ruby-lang
elia has quit [Client Quit]
enQA has quit [Ping timeout: 250 seconds]
_dumfrie- has quit [Ping timeout: 248 seconds]
dumfries has quit [Ping timeout: 248 seconds]
tbuehlmann has joined #ruby-lang
dhruvasagar has quit [Read error: Connection reset by peer]
ruurd has quit [Quit: Leaving...]
ruurd has joined #ruby-lang
ruurd has quit [Client Quit]
hhatch has quit [Ping timeout: 246 seconds]
pipework has joined #ruby-lang
Squarepy has quit [Quit: Leaving]
sepp2k1 has joined #ruby-lang
sepp2k has quit [Read error: Operation timed out]
krohrbaugh1 has quit [Quit: Leaving.]
krohrbaugh has joined #ruby-lang
Criztian has joined #ruby-lang
pskosinski has joined #ruby-lang
workmad3 has joined #ruby-lang
saarinen has quit [Quit: saarinen]
robbyoconnor has quit [Read error: Connection reset by peer]
adambeynon has joined #ruby-lang
<wnd> mutt
<wnd> darn focus stealers
<wnd> actually, I believe the word is "thief". anyway. carry on.
heftig has quit [Ping timeout: 245 seconds]
Squarepy has joined #ruby-lang
sush24 has joined #ruby-lang
elia has joined #ruby-lang
jsullivandigs has quit [Remote host closed the connection]
jsullivandigs has joined #ruby-lang
carloslopes has quit [Remote host closed the connection]
<apeiros> wnd: cats on youtube again?
arooni-mobile has quit [Remote host closed the connection]
Linkedipsoul has quit [Quit: Leaving]
justinmburrous has joined #ruby-lang
jsullivandigs has quit [Ping timeout: 246 seconds]
justinmburrous has quit [Remote host closed the connection]
Linkedipsoul has joined #ruby-lang
benanne has joined #ruby-lang
jsullivandigs has joined #ruby-lang
postmodern has joined #ruby-lang
dc5ala has joined #ruby-lang
spinagon has quit [Ping timeout: 248 seconds]
tbuehlmann has quit [Remote host closed the connection]
zmike123 has quit [Quit: Выходжу]
gnufied has joined #ruby-lang
swav has joined #ruby-lang
heftig has joined #ruby-lang
andrewvos has joined #ruby-lang
Criztian has quit [Remote host closed the connection]
gnufied has quit [Quit: Leaving.]
pipework has quit [Remote host closed the connection]
adambeynon has quit [Quit: Textual IRC Client: www.textualapp.com]
torrieri has quit [Quit: Leaving...]
cored has quit [Ping timeout: 256 seconds]
<yorickpeterse> github plz
pipework has joined #ruby-lang
Criztian has joined #ruby-lang
cored has joined #ruby-lang
cored has quit [Changing host]
cored has joined #ruby-lang
kstuart has joined #ruby-lang
tdy has quit [Read error: Connection reset by peer]
kstuart has quit [Client Quit]
tdy has joined #ruby-lang
workmad3 has quit [Ping timeout: 246 seconds]
yaroslav has joined #ruby-lang
ffio_ has quit [Ping timeout: 264 seconds]
yaroslav has quit [Client Quit]
saarinen has joined #ruby-lang
Criztian has quit [Remote host closed the connection]
fragamus has joined #ruby-lang
kstuart has joined #ruby-lang
jsullivandigs has quit [Remote host closed the connection]
jsullivandigs has joined #ruby-lang
towski has joined #ruby-lang
torrieri has joined #ruby-lang
shykes has joined #ruby-lang
jsullivandigs has quit [Ping timeout: 256 seconds]
torrieri has quit [Client Quit]
jsullivandigs has joined #ruby-lang
michalr has joined #ruby-lang
MaddinXx_ has quit [Remote host closed the connection]
JohnBat26 has quit [Quit: KVIrc 4.3.1 Aria http://www.kvirc.net/]
lcdhoffman has joined #ruby-lang
lcdhoffman has quit [Client Quit]
lcdhoffman has joined #ruby-lang
michalr has quit [Quit: leaving]
fsvehla has quit [Quit: fsvehla]
ldnunes has quit [Quit: Leaving]
dc5ala has quit [Quit: Ex-Chat]
vlad_starkov has joined #ruby-lang
<andrewvos> Ok so I want to make a cucumber formatter that shows the time remaining in a bar at the bottom of the screen. Suggestions?
<andrewvos> I have so far created a custom formatter that forward calls on to the Pretty formatter
sush24 has quit [Quit: This computer has gone to sleep]
<andrewvos> And I'm trying to write the bar at the bottom but have no idea how to make it work without ruining the ruby output
<banisterfiend> andrewvos: you'er using curses for the bar?
<andrewvos> banisterfiend: Nahh I'm just doing a print "\r" ; print "some shit"; print "\r" so far
<andrewvos> banisterfiend: But perhaps that is a better option
cored has quit [Ping timeout: 256 seconds]
<andrewvos> I kinda want something like tmux does
<andrewvos> For the entire test run
<andrewvos> So far I got this, banisterfiend https://gist.github.com/AndrewVos/5809533
scampbell has quit [Remote host closed the connection]
Squarepy has quit [Quit: Leaving]
torrieri has joined #ruby-lang
kung_fu_mike has joined #ruby-lang
krames has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
cored has joined #ruby-lang
cored has quit [Changing host]
cored has joined #ruby-lang
<kung_fu_mike> When my application spins up, I need to create a class with a name based on a string eg:
<kung_fu_mike> new_class_name = "MyNewClass"
<kung_fu_mike> end
<kung_fu_mike> class new_class_name.constantize
<kung_fu_mike> Can someone point me in the right direction for doing that?
<kung_fu_mike> I am not sure if I should look at eval mixed with const_set in some way
<kung_fu_mike> or what
<injekt> >> Object.const_set("Foo", Class.new).new
<eval-in> injekt => #<Foo:0x41c451bc> (https://eval.in/33932)
sush24 has joined #ruby-lang
<kung_fu_mike> Ah ha, ok, that makes sense
sush24 has quit [Client Quit]
<kung_fu_mike> and is there a way to do it and have the class be a child class?
wmoxam has quit [Ping timeout: 264 seconds]
<kung_fu_mike> Thank you by the way
<kung_fu_mike> maybe like:
torrieri has quit [Ping timeout: 256 seconds]
<apeiros> kung_fu_mike: take a look at Class.new's documentation
<kung_fu_mike> Object.const_set("Foo", Class.new < ParentClass).new
<kung_fu_mike> yeah, I am looking for it now
<kung_fu_mike> That was the starting point I really needed
cameronbarton has joined #ruby-lang
<kung_fu_mike> Object.const_set("ChildExample", Class.new(String))
<kung_fu_mike> Awesome
<kung_fu_mike> thanks again
<kung_fu_mike> (If anyone searches the logs, the line above will make a class that descends from String)
kung_fu_mike has left #ruby-lang [#ruby-lang]
<andrewvos> Ergh
<andrewvos> Anyone know how to return the cursor to the bottom left?
<andrewvos> In terminal
<injekt> move your mouse
kvs has quit [Read error: Connection reset by peer]
<yorickpeterse> andrewvos: move the mouse to the bottom left
<injekt> !
<apeiros> andrewvos: click!
<andrewvos> I CUT YOU BOTH
<yorickpeterse> The Dutch actually had an ad about this
<yorickpeterse> lemme look it up
thiagoborges has quit [Remote host closed the connection]
dingus_khan has joined #ruby-lang
<andrewvos> Curses.curx and Curses.cury
<andrewvos> FACEEEEPALM
stamina has quit [Ping timeout: 256 seconds]
kvs has joined #ruby-lang
rodj has quit [Quit: Page closed]
symm- has quit [Ping timeout: 246 seconds]
cameronbarton has quit [Ping timeout: 250 seconds]
<zenspider> mmmmm curry
krohrbaugh has quit [Quit: Leaving.]
<andrewvos> CURY
krohrbaugh has joined #ruby-lang
<erikh> partial appetizers
breakingthings has quit [Quit: breakingthings]
vbatts|work has joined #ruby-lang
vbatts|work has quit [Client Quit]
torrieri has joined #ruby-lang
__butch__ has quit [Quit: Leaving.]
<zenspider> boo
elia has quit [Quit: Computer has gone to sleep.]
setmeaway has quit [Quit: Leaving]
vlad_starkov has quit [Remote host closed the connection]
wesside has quit [Quit: Ice cream truck!]
krohrbaugh1 has joined #ruby-lang
krohrbaugh has quit [Read error: Connection reset by peer]
heftig_ has joined #ruby-lang
heftig has quit [Quit: Quitting]
pipework has quit [Remote host closed the connection]
heftig_ is now known as heftig
heftig has quit [Client Quit]
heftig has joined #ruby-lang
synthetix has quit [Ping timeout: 264 seconds]
Aloysius1 has quit [Remote host closed the connection]
relix has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
andrewvos has quit [Ping timeout: 256 seconds]
Wardrop has joined #ruby-lang
shykes has left #ruby-lang [#ruby-lang]
elia has joined #ruby-lang
fragamus has quit [Ping timeout: 246 seconds]
FlyingLeap has quit [Quit: No Ping reply in 180 seconds.]
smook4 has quit [Ping timeout: 255 seconds]
FlyingLeap has joined #ruby-lang
estsauver has joined #ruby-lang
x0f has quit [Ping timeout: 264 seconds]
<eam> /win 1
x0f has joined #ruby-lang
benanne has quit [Quit: kbai]
krohrbaugh1 has quit [Quit: Leaving.]
dingus_khan has quit [Remote host closed the connection]
dingus_khan has joined #ruby-lang
fragamus has joined #ruby-lang
x0f has quit [Ping timeout: 248 seconds]
nathanstitt has quit [Quit: I growing sleepy]
x0f has joined #ruby-lang
vlad_starkov has joined #ruby-lang
dingus_khan has quit [Ping timeout: 268 seconds]
mbj has quit [Quit: leaving]
x0f has quit [Ping timeout: 268 seconds]
krohrbaugh has joined #ruby-lang
x0f has joined #ruby-lang
kstuart has quit [Read error: Connection reset by peer]
andrewvos has joined #ruby-lang
kstuart has joined #ruby-lang
scottschecter has quit [Ping timeout: 245 seconds]
joshuawscott has quit [Quit: joshuawscott]
andrewvos has quit [Ping timeout: 252 seconds]
justinmburrous has joined #ruby-lang
anonymuse has quit [Quit: Leaving...]
crudson1 has quit [Quit: Leaving.]
cored has quit [Ping timeout: 264 seconds]
Mon_Ouie has quit [Read error: Operation timed out]
banisterfiend has quit [Read error: Connection reset by peer]
elia has quit [Quit: Computer has gone to sleep.]
krohrbaugh has quit [Quit: Leaving.]
dankest has joined #ruby-lang
synthetix has joined #ruby-lang
dLog_ has joined #ruby-lang
mdedetrich has joined #ruby-lang
dLog has quit [Ping timeout: 268 seconds]
arooni-mobile has joined #ruby-lang
krohrbaugh has joined #ruby-lang
banisterfiend has joined #ruby-lang
robbyoconnor has joined #ruby-lang
rsync has joined #ruby-lang
mrsolo has quit [Ping timeout: 245 seconds]
banisterfiend has quit [Read error: Connection reset by peer]
zachlatta has quit [Quit: Textual IRC Client: www.textualapp.com]
banister_ has joined #ruby-lang
justinmburrous has quit [Remote host closed the connection]
tomzx_mac has joined #ruby-lang
joshuawscott has joined #ruby-lang
saarinen has quit [Quit: saarinen]
saarinen has joined #ruby-lang
elia has joined #ruby-lang
sepp2k1 has quit [Quit: Leaving.]
elia has quit [Ping timeout: 276 seconds]
elia has joined #ruby-lang
dingus_khan has joined #ruby-lang
smook4 has joined #ruby-lang
saarinen has quit [Quit: saarinen]
andrewvos has joined #ruby-lang