apeiros changed the topic of #ruby-lang to: Ruby 2.2.1; 2.1.5; 2.0.0-p643: https://ruby-lang.org || Paste code on https://gist.github.com
j4cknewt has joined #ruby-lang
rikkipitt has quit [Remote host closed the connection]
<hakunin> apeiros: so something like this? any advice on making this cleaner? https://gist.github.com/maxim/cde82e03e648860c92cf
<apeiros> I'd dynamically define initialize
<hakunin> apeiros: that's what i tried first
<hakunin> for some reason members aren't available there
<hakunin> i'm confused why
<hakunin> well, no not confused
Sirupsen has joined #ruby-lang
<apeiros> give me a bit
kfpratt has quit [Remote host closed the connection]
<hakunin> apeiros: i think i see
<hakunin> apeiros: just did it
ur5us has joined #ruby-lang
Lewix has quit [Remote host closed the connection]
<hakunin> apeiros: (refresh gist)
wprice has quit [Quit: wprice]
<apeiros> I tried via self.inherited, but even after super(), members isn't there yet. seems that happens later in the creation of a Struct class. so yeah, .new seems to be the way to go.
intinig has joined #ruby-lang
pwnz0r has quit [Remote host closed the connection]
<hakunin> apeiros: yeah i was fighting with that members thing a bit, read some C code, i think it's really the .new that's being defined in implementation
pwnz0r has joined #ruby-lang
smoitra has quit [Ping timeout: 264 seconds]
smoitra has joined #ruby-lang
intinig has quit [Remote host closed the connection]
<hakunin> no longer fits in a tweet heh
SilkFox_ has joined #ruby-lang
pwnz0r has quit [Ping timeout: 256 seconds]
<hakunin> question is should i make this a gem
<apeiros> hakunin: https://gist.github.com/apeiros/00be2b6f449f7c14368d my past-midnight creation. be gentle ;-)
havenwood has joined #ruby-lang
<hakunin> apeiros: yeah looks the same for the most part :)
<apeiros> oh, forgot to remove the tap
<apeiros> yeah, but I don't create a subclass :)
havenn has quit [Ping timeout: 264 seconds]
<apeiros> but with a subclass, I think my code would semantically look exactly like yours
<hakunin> apeiros: yeah probably, and i just realized that you didn't mean Struct.from_hash, you meant Struct#from_hash
<hakunin> brain glitched
<apeiros> hakunin: nope
<apeiros> Struct.new.superclass # => Struct
<apeiros> it's a class method
<apeiros> Structs are not instances of Struct
<hakunin> yeah that was a bad way to put it
<hakunin> i'm just trying to understand why you calling it "from_hash" and using kwargs
<apeiros> legacy
<apeiros> usage looks the same
<hakunin> so it's really from_kw, not hash
<apeiros> not to the user
<hakunin> right
<apeiros> MyStruct.from_hash foo: 1, bar: 2 # to the user, it's passing a hash
<hakunin> except that it guards
<hakunin> so not exactly
<apeiros> my old from_struct guarded all the same
<apeiros> that's an implementation detail which should not concern the user
<hakunin> like you can't just give it any hash
<hakunin> but yeah
tkuchiki has joined #ruby-lang
<hakunin> i see
<apeiros> as said, you couldn't prior to the rewrite
<apeiros> +either
<hakunin> gotcha
tkuchiki has quit [Remote host closed the connection]
tkuchiki has joined #ruby-lang
<apeiros> you can even invoke it in both ways: h = {k:v,k2:v2}; MyStruct.from_hash(h) and MyStruct.from_hash(**h)
<apeiros> both work
Iskarlar has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<hakunin> apeiros: yeah because ruby accepts hashes there
Sirupsen has quit [Quit: Textual IRC Client: www.textualapp.com]
havenn has joined #ruby-lang
havenn has quit [Remote host closed the connection]
postmodern has joined #ruby-lang
havenwood has quit [Ping timeout: 246 seconds]
intinig has joined #ruby-lang
intinig has quit [Remote host closed the connection]
AlexAltea has joined #ruby-lang
nathanstitt has joined #ruby-lang
pwnz0r_ has joined #ruby-lang
pwnz0r_ has quit [Ping timeout: 250 seconds]
marr has quit [Ping timeout: 246 seconds]
vipaca has joined #ruby-lang
j4cknewt has quit [Remote host closed the connection]
knu has quit [Remote host closed the connection]
ur5us has quit [Remote host closed the connection]
ur5us has joined #ruby-lang
knu has joined #ruby-lang
AlexAltea has quit [Ping timeout: 246 seconds]
ayonkhan has joined #ruby-lang
cornerma1 has joined #ruby-lang
j4cknewt has joined #ruby-lang
imperator has joined #ruby-lang
cornerman has quit [Ping timeout: 256 seconds]
cornerma1 is now known as cornerman
bb010g has quit [Quit: Connection closed for inactivity]
shinnya has quit [Ping timeout: 264 seconds]
Lewix has joined #ruby-lang
Lewix has joined #ruby-lang
imperator has quit [Quit: Leaving]
j4cknewt has quit [Remote host closed the connection]
Sirupsen has joined #ruby-lang
vipaca has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
ta_ has joined #ruby-lang
ta has quit [Read error: Connection reset by peer]
nathanstitt has quit [Quit: I growing sleepy]
j4cknewt has joined #ruby-lang
sankaber has joined #ruby-lang
j4cknewt has quit [Remote host closed the connection]
Caius has quit [Ping timeout: 276 seconds]
Caius has joined #ruby-lang
ledestin has joined #ruby-lang
Lewix has quit [Remote host closed the connection]
snsei has quit [Read error: Connection reset by peer]
snsei has joined #ruby-lang
bruno- has quit [Ping timeout: 245 seconds]
snsei has quit [Remote host closed the connection]
tkuchiki has quit [Quit: Leaving...]
tkuchiki has joined #ruby-lang
ledestin has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Musashi007 has quit [Quit: Musashi007]
Musashi007 has joined #ruby-lang
lytol has quit [Remote host closed the connection]
stef204 has quit [Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/]
sankaber has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
smoitra has quit [Ping timeout: 250 seconds]
smoitra has joined #ruby-lang
riotjones has joined #ruby-lang
wallerdev has quit [Quit: wallerdev]
centrx has quit [Quit: Shutting down, Please wait...]
riotjones has quit [Ping timeout: 245 seconds]
SilkFox_ has quit [Ping timeout: 252 seconds]
ghostpl_ has quit [Remote host closed the connection]
iamninja has quit [Read error: Connection reset by peer]
<hakunin> so maybe we should stop all reimplementing it https://github.com/maxim/kwstruct :) /cc apeiros
iamninja has joined #ruby-lang
charliesome has joined #ruby-lang
waroperator has joined #ruby-lang
arBmind1 has quit [Quit: Leaving.]
JamesDH has joined #ruby-lang
SuMo_D has joined #ruby-lang
martinbmadsen has joined #ruby-lang
shinnya has joined #ruby-lang
Lewix has joined #ruby-lang
Lewix has joined #ruby-lang
lytol has joined #ruby-lang
arooni-mobile has joined #ruby-lang
lytol has quit [Ping timeout: 252 seconds]
Lewix has quit [Remote host closed the connection]
amclain_ has joined #ruby-lang
malconis has quit [Ping timeout: 246 seconds]
amclain has quit [Ping timeout: 245 seconds]
symm- has quit [Ping timeout: 250 seconds]
duderonomy has quit [Ping timeout: 245 seconds]
lytol has joined #ruby-lang
iamninja has quit [Read error: Connection reset by peer]
iamninja has joined #ruby-lang
charliesome has quit [Quit: zzz]
Sirupsen has quit [Quit: Textual IRC Client: www.textualapp.com]
ghostpl_ has joined #ruby-lang
Musashi007 has quit [Quit: Musashi007]
arooni-mobile has quit [Ping timeout: 272 seconds]
ghostpl_ has quit [Ping timeout: 255 seconds]
revath has joined #ruby-lang
symm- has joined #ruby-lang
Forgetful_Lion has quit [Remote host closed the connection]
charliesome has joined #ruby-lang
kfpratt has joined #ruby-lang
Forgetful_Lion has joined #ruby-lang
caseypatrickdris has quit [Remote host closed the connection]
caseypatrickdris has joined #ruby-lang
symm- has quit [Ping timeout: 252 seconds]
hotpancakes has joined #ruby-lang
kfpratt has quit [Ping timeout: 272 seconds]
gix has quit [Ping timeout: 256 seconds]
caseypatrickdris has quit [Remote host closed the connection]
revath has quit [Ping timeout: 246 seconds]
gix has joined #ruby-lang
<hotpancakes> Does anyone know of an easy way to programmatically retrieve and parse an SSL cert? (e.g. given an arbitrary URL, I want to return certificate expiration date)
red_menace has quit [Ping timeout: 252 seconds]
spuk has joined #ruby-lang
ur5us has quit [Remote host closed the connection]
riotjones has joined #ruby-lang
JamesDH has quit [Quit: Textual IRC Client: www.textualapp.com]
Lewix has joined #ruby-lang
bruno- has joined #ruby-lang
riotjones has quit [Ping timeout: 264 seconds]
bruno- has quit [Ping timeout: 244 seconds]
jwaldrip has quit [Ping timeout: 256 seconds]
michael_mbp has quit [Excess Flood]
michael_mbp has joined #ruby-lang
djinni` has quit [Ping timeout: 245 seconds]
jwaldrip has joined #ruby-lang
ur5us has joined #ruby-lang
djinni` has joined #ruby-lang
kfpratt has joined #ruby-lang
hotpancakes has quit [Remote host closed the connection]
j4cknewt has joined #ruby-lang
gwendall has joined #ruby-lang
caseypatrickdris has joined #ruby-lang
tsujp has joined #ruby-lang
hotpanca_ has joined #ruby-lang
hotpancakes has joined #ruby-lang
caseypatrickdris has quit [Ping timeout: 252 seconds]
hotpanca_ has quit [Ping timeout: 272 seconds]
rgb-one has joined #ruby-lang
hotpancakes has quit [Ping timeout: 246 seconds]
charliesome has quit [Quit: zzz]
charliesome has joined #ruby-lang
charliesome has quit [Client Quit]
havenwood has joined #ruby-lang
kfpratt has quit [Ping timeout: 250 seconds]
revath has joined #ruby-lang
hotpancakes has joined #ruby-lang
rgb-one has quit [Remote host closed the connection]
ghostpl_ has joined #ruby-lang
hotpanca_ has joined #ruby-lang
Musashi007 has joined #ruby-lang
hotpancakes has quit [Ping timeout: 246 seconds]
ghostpl_ has quit [Ping timeout: 246 seconds]
hahuang61 has quit [Ping timeout: 272 seconds]
rippa has joined #ruby-lang
smoitra has quit [Remote host closed the connection]
hotpanca_ has quit [Ping timeout: 246 seconds]
CM-Punk has quit [*.net *.split]
lytol has quit [Remote host closed the connection]
ur5us has quit [Remote host closed the connection]
wprice has joined #ruby-lang
Mon_Ouie has joined #ruby-lang
CM-Punk has joined #ruby-lang
JohnBat26 has joined #ruby-lang
ItSANgo has quit [Quit: Leaving...]
Lewix has quit [Remote host closed the connection]
dagda1 has quit [Quit: Textual IRC Client: www.textualapp.com]
wprice has quit [Quit: wprice]
ledestin has joined #ruby-lang
SuMo_D has quit [Remote host closed the connection]
Iskarlar has joined #ruby-lang
codenihal has joined #ruby-lang
ghostpl_ has joined #ruby-lang
shtirlic has quit [Ping timeout: 252 seconds]
ghostpl_ has quit [Ping timeout: 265 seconds]
mathie has quit [Max SendQ exceeded]
shtirlic has joined #ruby-lang
mathie has joined #ruby-lang
wprice has joined #ruby-lang
havenwood has quit [Ping timeout: 244 seconds]
lytol has joined #ruby-lang
duderonomy has joined #ruby-lang
hahuang65 has joined #ruby-lang
havenwood has joined #ruby-lang
ItSANgo has joined #ruby-lang
SuMo_D has joined #ruby-lang
leat has quit [Ping timeout: 265 seconds]
leat has joined #ruby-lang
SuMo_D has quit [Ping timeout: 256 seconds]
wprice has quit [Quit: wprice]
fusillicode1 has quit [Ping timeout: 256 seconds]
riotjones has joined #ruby-lang
amclain_ has quit [Quit: Leaving]
kfpratt has joined #ruby-lang
riotjones has quit [Ping timeout: 256 seconds]
dellavg_ has joined #ruby-lang
duderonomy has quit [Read error: Connection reset by peer]
kfpratt has quit [Ping timeout: 255 seconds]
hahuang65 has quit [Ping timeout: 272 seconds]
leat has quit [Remote host closed the connection]
leat has joined #ruby-lang
ur5us has joined #ruby-lang
matled has quit [Remote host closed the connection]
matled has joined #ruby-lang
TheMoonMaster has quit [Ping timeout: 246 seconds]
TheMoonMaster has joined #ruby-lang
lele is now known as Guest24
wprice has joined #ruby-lang
hotpancakes has joined #ruby-lang
revath has quit [Ping timeout: 256 seconds]
ghostpl_ has joined #ruby-lang
martinbmadsen has quit [Ping timeout: 245 seconds]
hotpancakes has quit [Ping timeout: 264 seconds]
solars has joined #ruby-lang
Vols has joined #ruby-lang
ghostpl_ has quit [Ping timeout: 264 seconds]
thebastl has joined #ruby-lang
revath has joined #ruby-lang
AlexAltea has joined #ruby-lang
marr has joined #ruby-lang
charliesome has joined #ruby-lang
tsujp has quit [Quit: tsujp is snoozing]
ayonkhan has quit [Quit: (null)]
Vols has quit [Quit: Leaving]
tsujp has joined #ruby-lang
smoitra has joined #ruby-lang
gwendall has quit [Remote host closed the connection]
snsei has joined #ruby-lang
JohnBat26 has quit [Ping timeout: 246 seconds]
spuk has quit [Ping timeout: 244 seconds]
spuk has joined #ruby-lang
leat has quit [Ping timeout: 256 seconds]
leat has joined #ruby-lang
ghostpl_ has joined #ruby-lang
caseypatrickdris has joined #ruby-lang
leat has quit [Ping timeout: 255 seconds]
ghostpl_ has quit [Ping timeout: 244 seconds]
caseypatrickdris has quit [Ping timeout: 264 seconds]
leat has joined #ruby-lang
leat has quit [Remote host closed the connection]
codeniha_ has joined #ruby-lang
riotjones has joined #ruby-lang
codenihal has quit [Ping timeout: 264 seconds]
kfpratt has joined #ruby-lang
marr has quit [Ping timeout: 246 seconds]
caseypatrickdris has joined #ruby-lang
riotjones has quit [Ping timeout: 245 seconds]
snsei has quit [Remote host closed the connection]
leat has joined #ruby-lang
kfpratt has quit [Ping timeout: 244 seconds]
martinbmadsen has joined #ruby-lang
codeniha_ has quit [Remote host closed the connection]
snsei has joined #ruby-lang
codenihal has joined #ruby-lang
martinbmadsen has quit [Ping timeout: 256 seconds]
codenihal has quit [Client Quit]
relix has joined #ruby-lang
hahuang65 has joined #ruby-lang
caseypatrickdris has quit [Ping timeout: 252 seconds]
hahuang65 has quit [Ping timeout: 252 seconds]
lytol has quit [Remote host closed the connection]
leat has quit [Ping timeout: 244 seconds]
leat has joined #ruby-lang
hotpancakes has joined #ruby-lang
j4cknewt has quit [Remote host closed the connection]
snsei has quit [Quit: Leaving...I hear my mom calling...]
tkuchiki has quit [Ping timeout: 252 seconds]
havenwood has quit [Ping timeout: 255 seconds]
hotpancakes has quit [Ping timeout: 264 seconds]
leat has quit [Ping timeout: 272 seconds]
ur5us has quit [Remote host closed the connection]
oshosuryaa has joined #ruby-lang
Musashi007 has quit [Quit: Musashi007]
bruno- has joined #ruby-lang
leat has joined #ruby-lang
relix has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
bruno- has quit [Ping timeout: 255 seconds]
fusillicode has joined #ruby-lang
fusillicode1 has joined #ruby-lang
ur5us has joined #ruby-lang
relix has joined #ruby-lang
fusillicode has quit [Ping timeout: 246 seconds]
ur5us has quit [Remote host closed the connection]
leat has quit [Ping timeout: 244 seconds]
leat has joined #ruby-lang
marr has joined #ruby-lang
Musashi007 has joined #ruby-lang
<oshosuryaa> where can i contact mentor of gsoc projects?
solars has quit [Ping timeout: 256 seconds]
rikkipitt has joined #ruby-lang
lytol has joined #ruby-lang
Guest24 is now known as lele
arBmind has joined #ruby-lang
lytol has quit [Ping timeout: 264 seconds]
rikkipitt has quit [Remote host closed the connection]
wprice has quit [Quit: wprice]
rikkipitt has joined #ruby-lang
ghostpl_ has joined #ruby-lang
leat has quit [Remote host closed the connection]
leat has joined #ruby-lang
thebastl has quit [Quit: Leaving...]
codebump has joined #ruby-lang
leat has quit [Ping timeout: 244 seconds]
ghostpl_ has quit [Ping timeout: 256 seconds]
tkuchiki has joined #ruby-lang
lele is now known as Guest24
<codebump> Hi i an having issue requiring mysql in rb file, i have installed using sudo gem install mysql -- --with-mysql-config=/usr/bin/mysql_config, and getting load error no such file mysql
<codebump> can anybody help?
<codebump> also, it works if I create a simple rb file and run but not when i do the same in Kibana 3,0 code
tsujp has quit [Quit: tsujp is snoozing]
michael_mbp has quit [Excess Flood]
wprice has joined #ruby-lang
oshosuryaa has quit [Ping timeout: 246 seconds]
riotjones has joined #ruby-lang
relix has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
michael_mbp has joined #ruby-lang
kfpratt has joined #ruby-lang
leat has joined #ruby-lang
riotjones has quit [Ping timeout: 264 seconds]
tkuchiki has quit [Remote host closed the connection]
kfpratt has quit [Ping timeout: 264 seconds]
SylarRuby has joined #ruby-lang
marr has quit []
relix has joined #ruby-lang
leat has quit [Ping timeout: 265 seconds]
leat has joined #ruby-lang
tsujp has joined #ruby-lang
leat has quit [Ping timeout: 264 seconds]
hotpancakes has joined #ruby-lang
wprice has quit [Quit: wprice]
gwendall has joined #ruby-lang
hotpancakes has quit [Ping timeout: 272 seconds]
wprice has joined #ruby-lang
codebump has quit [Quit: Page closed]
tsujp has quit [Quit: tsujp is snoozing]
kapil___ has joined #ruby-lang
smoitra has quit [Ping timeout: 256 seconds]
rikkipitt has quit [Remote host closed the connection]
rikkipitt has joined #ruby-lang
rikkipitt has quit [Remote host closed the connection]
ghostpl_ has joined #ruby-lang
seank_ has quit []
SuMo_D has joined #ruby-lang
SuMo_D has quit [Remote host closed the connection]
SuMo_D has joined #ruby-lang
seank_ has joined #ruby-lang
ghostpl_ has quit [Ping timeout: 252 seconds]
wprice has quit [Quit: wprice]
wprice has joined #ruby-lang
SuMo_D has quit [Ping timeout: 272 seconds]
revath has quit [Ping timeout: 252 seconds]
SuMo_D has joined #ruby-lang
fusillicode1 has quit [Read error: No route to host]
fusillicode has joined #ruby-lang
fusillicode1 has joined #ruby-lang
SuMo_D has quit [Remote host closed the connection]
riotjones has joined #ruby-lang
SuMo_D has joined #ruby-lang
SuMo_D has quit [Remote host closed the connection]
SuMo_D has joined #ruby-lang
SuMo_D has quit [Remote host closed the connection]
SuMo_D has joined #ruby-lang
SuMo_D has quit [Remote host closed the connection]
SuMo_D has joined #ruby-lang
fusillicode has quit [Ping timeout: 264 seconds]
fusillicode has joined #ruby-lang
bruno- has joined #ruby-lang
riotjones has quit [Ping timeout: 252 seconds]
SuMo_D has quit [Remote host closed the connection]
SuMo_D has joined #ruby-lang
fusillicode1 has quit [Ping timeout: 246 seconds]
martinbmadsen has joined #ruby-lang
SuMo_D has quit [Ping timeout: 244 seconds]
fusillicode1 has joined #ruby-lang
nathanstitt has joined #ruby-lang
fusillicode has quit [Ping timeout: 256 seconds]
nathanstitt has quit [Client Quit]
martinbmadsen has quit [Ping timeout: 246 seconds]
rikkipitt has joined #ruby-lang
wprice has quit [Quit: wprice]
leat has joined #ruby-lang
fusillicode has joined #ruby-lang
lytol has joined #ruby-lang
cornerman has quit [Remote host closed the connection]
cornerman has joined #ruby-lang
hotpancakes has joined #ruby-lang
hakunin_ has joined #ruby-lang
fusillicode1 has quit [Ping timeout: 246 seconds]
hakunin has quit [Read error: Connection reset by peer]
lytol has quit [Ping timeout: 252 seconds]
revath has joined #ruby-lang
hotpancakes has quit [Ping timeout: 272 seconds]
gwendall has quit [Remote host closed the connection]
gwendall has joined #ruby-lang
CatMartyn has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
gwendall has quit [Ping timeout: 272 seconds]
rikkipitt has quit [Read error: Connection reset by peer]
rikkipitt has joined #ruby-lang
CatMartyn has joined #ruby-lang
SuMo_D has joined #ruby-lang
SuMo_D has quit [Remote host closed the connection]
SuMo_D has joined #ruby-lang
SuMo_D has quit [Ping timeout: 265 seconds]
ghostpl_ has joined #ruby-lang
symm- has joined #ruby-lang
tkuchiki has joined #ruby-lang
JohnBat26 has joined #ruby-lang
ghostpl_ has quit [Ping timeout: 256 seconds]
ledestin has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
revath has quit [Ping timeout: 252 seconds]
SuMo_D has joined #ruby-lang
SuMo_D has quit [Remote host closed the connection]
SuMo_D has joined #ruby-lang
tkuchiki has quit [Read error: Connection reset by peer]
SuMo_D has quit [Remote host closed the connection]
SuMo_D has joined #ruby-lang
Forgetful_Lion has quit [Remote host closed the connection]
SuMo_D has quit [Remote host closed the connection]
SuMo_D has joined #ruby-lang
SuMo_D has quit [Remote host closed the connection]
SuMo_D has joined #ruby-lang
wprice has joined #ruby-lang
hotpancakes has joined #ruby-lang
Iskarlar has quit [Read error: Connection reset by peer]
SylarRuby has quit []
Iskarlar has joined #ruby-lang
hahuang65 has joined #ruby-lang
caseypatrickdris has joined #ruby-lang
Iskarlar_ has joined #ruby-lang
hotpancakes has quit [Ping timeout: 256 seconds]
Iskarlar has quit [Ping timeout: 265 seconds]
hahuang65 has quit [Ping timeout: 256 seconds]
rikkipitt has quit [Remote host closed the connection]
gwendall has joined #ruby-lang
cornerma1 has joined #ruby-lang
gwendall has quit [Ping timeout: 272 seconds]
cornerman has quit [Ping timeout: 256 seconds]
cornerma1 is now known as cornerman
SuMo_D has quit [Remote host closed the connection]
SuMo_D has joined #ruby-lang
sankaber has joined #ruby-lang
wprice has quit [Quit: wprice]
rob_ has joined #ruby-lang
SuMo_D has quit [Ping timeout: 244 seconds]
<rob_> hi, if i have a peice of json and a string with a key, e.g: '{ "foo": { "bar": 2 }}' and: 'foo.bar', how can i extract the value '2' using the key (without using eval)?
SuMo_D has joined #ruby-lang
lytol has joined #ruby-lang
<yorickpeterse> >> require 'json'; input = '{ "foo": { "bar": 2 }}'; JSON.load(input)['foo']['bar']
<eval-in_> yorickpeterse => 2 (https://eval.in/302981)
ur5us has joined #ruby-lang
<yorickpeterse> rob_: ^
charliesome has quit [Quit: zzz]
<rob_> yorickpeterse: im not sure how i could get to that point without using eval
<yorickpeterse> I just showed you
<rob_> e.g: s = "['foo']['bar']"; eval "JSON.parse('{ \"foo\": { \"bar\": 2 }}')#{s}"
<rob_> the key is user input
<yorickpeterse> You need a parser for that
lytol has quit [Ping timeout: 252 seconds]
ur5us has quit [Ping timeout: 245 seconds]
<rob_> yorickpeterse: any idea where i could find more info?
<jhass> rob_: just String#split and Enumerable#inject
<yorickpeterse> if the pattern is simply enough you can just use a regexl
<yorickpeterse> * regexp
<yorickpeterse> e.g.
<jhass> >> require 'json'; input = '{ "foo": { "bar": 2 }}'; "foo.bar".split(".").inject(JSON.load(input)['foo']['bar']) {|k, h| h[k] }
<eval-in_> jhass => nil (https://eval.in/302983)
<yorickpeterse> >> "['foo']['bar']".scan(/(\['[^']+'\])+/)
<eval-in_> yorickpeterse => [["['bar']"]] (https://eval.in/302984)
<rob_> jhass: i thought about that but json keys can contain any characters right?
<yorickpeterse> err wait
<yorickpeterse> >> "['foo']['bar']".scan(/(\['([^']+)'\])+/)
<eval-in_> yorickpeterse => [["['bar']", "bar"]] (https://eval.in/302985)
<yorickpeterse> something like that
<jhass> rob_: well, you need a unique token in one way or another
<yorickpeterse> rob_: No, JSON keys can only be strings
rgb-one has joined #ruby-lang
<yorickpeterse> IIRC
<yorickpeterse> Yeah, only strings
<jhass> >> require 'json'; input = '{ "foo": { "bar": 2 }}'; "foo.bar".split(".").inject(JSON.load(input)) {|k, h| h[k] }
<eval-in_> jhass => no implicit conversion of Hash into Integer (TypeError) ... (https://eval.in/302987)
<rob_> yorickpeterse: would it make sense for the input to be in the format of ['foo']['bar']?
<jhass> eh, anyway, something like that
<yorickpeterse> rob_: No, I'd go with an actual Array if possible
shinnya has quit [Ping timeout: 256 seconds]
<yorickpeterse> that is, the input being a Ruby array of ["foo", "bar"]
<jhass> dunno, seems hard to parse
<rob_> ARRAY.new(config)?
<rob_> Array
<yorickpeterse> rob_: I have no idea what "config" is here
<jhass> dot is fine, just allow escaping it
<rob_> it's ['foo', 'bar']
<yorickpeterse> If you use an array you can just do something like `obj = initial; keys.each { |k| obj = obj[k] }`
<yorickpeterse> or this:
<yorickpeterse> >> "['foo']['bar']".scan(/\['([^']+)'\]+/)
<eval-in_> yorickpeterse => [["foo"], ["bar"]] (https://eval.in/302996)
<jhass> >> "foo.bar\.baz".scan(/(([^\.]|\\\.)+/)
<eval-in_> jhass => /tmp/execpad-37402ee039d4/source-37402ee039d4:2: end pattern with unmatched parenthesis: /(([^\.]|\\\.)+/ (https://eval.in/302997)
<yorickpeterse> jhass: lrn2regex
<jhass> meh, not my day
<jhass> >> "foo.bar\\.baz".scan(/([^\.]|\\\.)+/)
<eval-in_> jhass => [["o"], ["\\"], ["z"]] (https://eval.in/302998)
<jhass> okay, I give up *sigh*
kapil___ has quit [Quit: Connection closed for inactivity]
hotpancakes has joined #ruby-lang
ghostpl_ has joined #ruby-lang
hotpancakes has quit [Ping timeout: 244 seconds]
<rob_> jhass: your solution is what im after, infac
<rob_> t
<rob_> as it wont break current users configs
ghostpl_ has quit [Ping timeout: 246 seconds]
<jhass> yeah, just need to make it non-capturing actually
<jhass> >> "foo.bar\\.baz".scan(/(?:[^.]|\\\.)+/)
<eval-in_> jhass => ["foo", "bar\\", "baz"] (https://eval.in/303000)
<jhass> eh, almost I guess
<jhass> ah, right what comes first wins
<jhass> I'm usually better at this, I swear
<jhass> >> "foo.bar\\.baz".scan(/(?:\\\.|[^.])+/)
<eval-in_> jhass => ["foo", "bar\\.baz"] (https://eval.in/303001)
vladgh has joined #ruby-lang
<jhass> that won't handle \\. though (escaped escape before a dot)
symm- has quit [Ping timeout: 252 seconds]
nofxx has quit [Ping timeout: 245 seconds]
hiFriends has quit [Ping timeout: 246 seconds]
red_menace has joined #ruby-lang
smoitra has joined #ruby-lang
Iskarlar_ has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
martinbmadsen has joined #ruby-lang
chouhoulis has joined #ruby-lang
<rob_> jhass, yorickpeterse: thanks for the tips :)
martinbmadsen has quit [Ping timeout: 264 seconds]
<yorickpeterse> np
<bougyman> mornin' yorick
michael_mbp has quit [Excess Flood]
Batty-Alex has joined #ruby-lang
michael_mbp has joined #ruby-lang
|jemc| has joined #ruby-lang
dangerousdave has joined #ruby-lang
<rob_> does this look reasonable? http://hastebin.com/ahifibequt.rb
<jhass> it looks like heroku is crappy again
<jhass> or hastebin, can't decide
<jhass> probably both
micmus has joined #ruby-lang
<rob_> jhass: does it not load for you?
<jhass> 500 unless you remove the .rb
<rob_> bizarre
<jhass> rob_: so I prefer inject over external iteration with a local personally and your has_key method is in Ruby core: Hash#has_key
<jhass> ?
<jhass> (and actually allows nil as a valid value)
<rob_> erk
<rob_> i shouldnt rush
SuMo_D has quit [Remote host closed the connection]
SuMo_D has joined #ruby-lang
<rob_> how about this: http://hastebin.com/fihebawamu.rb
<jhass> not sure why you .dup btw, you don't modify it
dangerousdave has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<jhass> each vs inject I already said
b_hoffman has joined #ruby-lang
SuMo_D has quit [Ping timeout: 265 seconds]
b_hoffman has quit [Client Quit]
SuMo_D has joined #ruby-lang
SuMo_D has quit [Remote host closed the connection]
rikkipitt has joined #ruby-lang
lytol has joined #ruby-lang
revath has joined #ruby-lang
havenwood has joined #ruby-lang
<rob_> how about this? http://hastebin.com/rupusahido.rb
SuMo_D has joined #ruby-lang
SuMo_D has quit [Remote host closed the connection]
<rob_> oops
lytol has quit [Ping timeout: 265 seconds]
SuMo_D has joined #ruby-lang
dangerousdave has joined #ruby-lang
SuMo_D has quit [Remote host closed the connection]
SuMo_D has joined #ruby-lang
SuMo_D has quit [Remote host closed the connection]
dangerousdave has quit [Client Quit]
SuMo_D has joined #ruby-lang
SuMo_D has quit [Remote host closed the connection]
SuMo_D has joined #ruby-lang
SuMo_D has quit [Remote host closed the connection]
SuMo_D_ has joined #ruby-lang
SuMo_D_ has quit [Remote host closed the connection]
gwendall has joined #ruby-lang
SuMo_D has joined #ruby-lang
SuMo_D has quit [Remote host closed the connection]
<jhass> lgtm
<jhass> rob_: ^
<rob_> thanks for your help :)
ohsix has quit [Ping timeout: 272 seconds]
<jhass> just document that you can't have foo\ as key name
ohsix has joined #ruby-lang
havenwood has quit [Ping timeout: 272 seconds]
havenwood has joined #ruby-lang
Mon_Ouie has quit [Ping timeout: 256 seconds]
SuMo_D has joined #ruby-lang
SuMo_D has quit [Remote host closed the connection]
SuMo_D has joined #ruby-lang
SuMo_D has quit [Remote host closed the connection]
SuMo_D has joined #ruby-lang
SuMo_D has quit [Remote host closed the connection]
SuMo_D has joined #ruby-lang
SuMo_D has quit [Remote host closed the connection]
j4cknewt has joined #ruby-lang
j4cknewt has quit [Remote host closed the connection]
dangerousdave has joined #ruby-lang
dangerousdave has quit [Excess Flood]
JohnBat26 has quit [Ping timeout: 264 seconds]
slava__ has joined #ruby-lang
<slava__> \help
slava__ has quit [Remote host closed the connection]
SuMo_D_ has joined #ruby-lang
SuMo_D_ has quit [Remote host closed the connection]
b_hoffman has joined #ruby-lang
SuMo_D_ has joined #ruby-lang
slavapavlutin has joined #ruby-lang
SuMo_D_ has quit [Remote host closed the connection]
SuMo_D_ has joined #ruby-lang
SuMo_D_ has quit [Remote host closed the connection]
revath has quit [Ping timeout: 264 seconds]
SuMo_D_ has joined #ruby-lang
fusillicode1 has joined #ruby-lang
funtobeakangaroo has joined #ruby-lang
smoitra has quit [Quit: Leaving]
fusillicode has quit [Ping timeout: 272 seconds]
fusillicode1 has quit [Read error: Connection reset by peer]
<funtobeakangaroo> is there a way to call a class like a function (since () can't be overridden)?
SuMo_D_ has quit [Remote host closed the connection]
fusillicode has joined #ruby-lang
fusillicode has quit [Client Quit]
fusillicode has joined #ruby-lang
<jhass> funtobeakangaroo: no, but you could define a method with the same name. That's what Ruby core does for String, Integer etc., see Kernel#String, Kernel#Integer and so on. Another popular example is Nokogiri.HTML()
fusillicode has quit [Client Quit]
<funtobeakangaroo> jhass: thanks
fusillicode has joined #ruby-lang
havenwood has quit [Ping timeout: 246 seconds]
ghostpl_ has joined #ruby-lang
fusillicode1 has joined #ruby-lang
dellavg_ has quit [Ping timeout: 264 seconds]
funtobeakangaroo has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client]
sankaber has quit [Quit: Textual IRC Client: www.textualapp.com]
erickwilder has joined #ruby-lang
fusillicode has quit [Ping timeout: 256 seconds]
ghostpl_ has quit [Ping timeout: 246 seconds]
mattwildig has joined #ruby-lang
|jemc| has left #ruby-lang ["WeeChat 1.1.1"]
bruno- has quit [Ping timeout: 252 seconds]
slavapavlutin has left #ruby-lang [#ruby-lang]
sankaber has joined #ruby-lang
sankaber has quit [Client Quit]
slavapavlutin has joined #ruby-lang
slavapavlutin has left #ruby-lang [#ruby-lang]
sankaber has joined #ruby-lang
hotpancakes has joined #ruby-lang
rgb-one has quit [Read error: No route to host]
Batty-Alex has quit [Read error: Connection reset by peer]
slavapavlutin has joined #ruby-lang
slavapavlutin has left #ruby-lang [#ruby-lang]
Batty-Alex__ has joined #ruby-lang
hotpancakes has quit [Ping timeout: 256 seconds]
momomomomo has joined #ruby-lang
momomomomo has quit [Client Quit]
nifoc has quit [Remote host closed the connection]
nifoc has joined #ruby-lang
martinbmadsen has joined #ruby-lang
Musashi007 has quit [Quit: Musashi007]
nifoc has quit [Remote host closed the connection]
nifoc has joined #ruby-lang
j4cknewt has joined #ruby-lang
centrx has joined #ruby-lang
martinbmadsen has quit [Ping timeout: 256 seconds]
lytol has joined #ruby-lang
gwendall has quit [Remote host closed the connection]
symm- has joined #ruby-lang
erickwilder has quit []
hotpancakes has joined #ruby-lang
lytol has quit [Ping timeout: 254 seconds]
revath has joined #ruby-lang
solars has joined #ruby-lang
oceans has joined #ruby-lang
<oceans> hi i am a third year computer science student interested in working on this project "Cross-thread Fiber support". I have prerequisite knowledge about threads, concurrency control and c-programming. I also got the basic idea about fibres and the objective or aim of this project of making fibre of a thread to work in another thread.
<oceans> I would really appreciate if someone please help me through how we can implement this and what should my proposal contain.Thanks in advance.
nifoc has quit [Remote host closed the connection]
<centrx> oceans, This is the Google Summer of Code project?
<oceans> yes
<centrx> oceans, Also see #ruby is another channel
<centrx> I don't know how Fibers would be cross-threaded
<oceans> thnx.
nifoc has joined #ruby-lang
<yxhuvud> oceans: you may be better served in ruby-core for that.
revath has quit [Ping timeout: 250 seconds]
ghostpl_ has joined #ruby-lang
j4cknewt has quit [Remote host closed the connection]
nertzy has joined #ruby-lang
ghostpl_ has quit [Ping timeout: 250 seconds]
steve-la_ has joined #ruby-lang
hotpancakes has quit [Remote host closed the connection]
[H]unt3r has joined #ruby-lang
deol has joined #ruby-lang
b_hoffman has quit [Quit: b_hoffman]
Mon_Ouie has joined #ruby-lang
Mon_Ouie has quit [Changing host]
Mon_Ouie has joined #ruby-lang
hotpancakes has joined #ruby-lang
[H]unt3r has quit [Read error: Connection reset by peer]
[H]unt3r has joined #ruby-lang
revath has joined #ruby-lang
b_hoffman has joined #ruby-lang
hahuang65 has joined #ruby-lang
steve-la_ has quit [Quit: Lingo: www.lingoirc.com]
hahuang65 has quit [Ping timeout: 256 seconds]
havenwood has joined #ruby-lang
mattwildig has quit []
Miphix has quit [Quit: Leaving]
hotpancakes has quit [Remote host closed the connection]
riotjones has joined #ruby-lang
oceans has quit [Ping timeout: 246 seconds]
arooni-mobile has joined #ruby-lang
Miphix has joined #ruby-lang
riotjones has quit [Ping timeout: 245 seconds]
Iskarlar has joined #ruby-lang
silkfox has joined #ruby-lang
centrx has quit [Remote host closed the connection]
micmus has quit [Ping timeout: 252 seconds]
CatMarty_ has joined #ruby-lang
lytol has joined #ruby-lang
CatMartyn has quit [Ping timeout: 256 seconds]
gwendall has joined #ruby-lang
jwaldrip has quit [Quit: Be back later ...]
lytol has quit [Ping timeout: 264 seconds]
gwendall has quit [Ping timeout: 244 seconds]
goshokk has joined #ruby-lang
bruno- has joined #ruby-lang
<goshokk> Hi
<apeiros> hi goshokk
symm- has quit [Read error: Connection reset by peer]
goshokk has left #ruby-lang [#ruby-lang]
ledestin has joined #ruby-lang
symm- has joined #ruby-lang
lytol has joined #ruby-lang
j4cknewt has joined #ruby-lang
b_hoffman has quit [Quit: b_hoffman]
relix has quit [Quit: Textual IRC Client: www.textualapp.com]
b_hoffman has joined #ruby-lang
Sirupsen has joined #ruby-lang
hahuang65 has joined #ruby-lang
Sirupsen has quit [Client Quit]
Rayford has joined #ruby-lang
b_hoffman has quit [Client Quit]
hahuang65 has quit [Ping timeout: 265 seconds]
b_hoffman has joined #ruby-lang
bb010g has joined #ruby-lang
deol has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
goshokk has joined #ruby-lang
martinbmadsen has joined #ruby-lang
Rayford has quit [Quit: Rayford]
marr has joined #ruby-lang
ghostpl_ has joined #ruby-lang
bruno- has quit [Ping timeout: 246 seconds]
martinbmadsen has quit [Ping timeout: 255 seconds]
ghostpl_ has quit [Ping timeout: 245 seconds]
j4cknewt has quit [Remote host closed the connection]
gwendall has joined #ruby-lang
fusillicode1 has quit [Ping timeout: 256 seconds]
micmus has joined #ruby-lang
gwendall has quit [Ping timeout: 272 seconds]
caseypatrickdris has quit [Read error: Connection reset by peer]
caseypat_ has joined #ruby-lang
deol has joined #ruby-lang
caseypat_ has quit [Read error: Connection reset by peer]
caseypatrickdris has joined #ruby-lang
itstooloud has joined #ruby-lang
havenwood has quit [Ping timeout: 264 seconds]
caseypatrickdris has quit [Read error: No route to host]
caseypatrickdris has joined #ruby-lang
havenwood has joined #ruby-lang
nertzy has quit [Quit: This computer has gone to sleep]
j4cknewt has joined #ruby-lang
caral has joined #ruby-lang
silkfox has quit [Ping timeout: 272 seconds]
Guest24 is now known as lele
ur5us has joined #ruby-lang
[H]unt3r has quit [Quit: Leaving]
Missphoenix has joined #ruby-lang
anekant has joined #ruby-lang
solars has quit [Ping timeout: 252 seconds]
Miphix has quit [Ping timeout: 256 seconds]
bruno- has joined #ruby-lang
<anekant> say I want to pass an argument to a class that inherits from test/unit/TestCase, how do I retrieve the argument in the code? can I just add an initialize?
ledestin has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
<anekant> google is slower than irc today
waroperator has quit [Ping timeout: 246 seconds]
j4cknewt has quit [Remote host closed the connection]
b_hoffman has quit [Quit: b_hoffman]
solars has joined #ruby-lang
<anekant> hmm I guess something in TestCase is processing args before I can
LMity has joined #ruby-lang
<anekant> and giving me an "invalid option" error, or "'block in non_options': file not found" error
Sirupsen has joined #ruby-lang
rgb-one has joined #ruby-lang
<anekant> so do I have to read the values I want to pass to the test from a file?
<anekant> seems unnecessarily complicated
<anekant> no one ever wanted to do this before, huh
lytol has quit [Remote host closed the connection]
waroperator has joined #ruby-lang
centrx has joined #ruby-lang
<anekant> so weird, http://stackoverflow.com/questions/11420517/unable-to-pass-argv-through-test-unit-ruby works but only if I use the .include?
relix has joined #ruby-lang
malconis has joined #ruby-lang
gwendall has joined #ruby-lang
Iskarlar has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
vladgh has quit [Remote host closed the connection]
j4cknewt has joined #ruby-lang
vladgh has joined #ruby-lang
[H]unt3r has joined #ruby-lang
vladgh has quit [Client Quit]
silkfox has joined #ruby-lang
vladgh has joined #ruby-lang
<anekant> frustrating, I can see my test didn't work, but ruby reports no errors, a complete success
j4cknewt has quit [Remote host closed the connection]
vladgh has quit [Quit: leaving]
rippa has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
goshokk1 has joined #ruby-lang
goshokk has quit [Ping timeout: 264 seconds]
LMity has quit [Quit: Nettalk6 - www.ntalk.de]
goshokk1 has left #ruby-lang [#ruby-lang]
the_real_intinig has joined #ruby-lang
arBmind has quit [Quit: Leaving.]
sankaber has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
the_real_intinig has quit [Remote host closed the connection]
j4cknewt has joined #ruby-lang
duderonomy has joined #ruby-lang
j4cknewt has quit [Remote host closed the connection]
spuk has quit [Ping timeout: 246 seconds]
Iskarlar has joined #ruby-lang
elia has joined #ruby-lang
postmodern has quit [Quit: Leaving]
ghostpl_ has joined #ruby-lang
shinnya has joined #ruby-lang
revath has quit [Ping timeout: 252 seconds]
lytol has joined #ruby-lang
vladgh has joined #ruby-lang
hotpancakes has joined #ruby-lang
ghostpl_ has quit [Ping timeout: 256 seconds]
lytol has quit [Ping timeout: 255 seconds]
Musashi007 has joined #ruby-lang
martinbmadsen has joined #ruby-lang
martinbmadsen has quit [Ping timeout: 264 seconds]
the_real_intinig has joined #ruby-lang
j4cknewt has joined #ruby-lang
caral has quit [Quit: caral]
blarghlarghl has joined #ruby-lang
hotpancakes has quit [Remote host closed the connection]
<blarghlarghl> How do I find out the UTC offset for a given location on a given day? TZInfo is of no help to me I think (especially because it insists on telling me it's 23:18 UTC right now, I figured it's not particularly trustworthy.)
<jhass> :o if we can longer trust tzinfo, what's left?
<blarghlarghl> Ideally I'd like to get the UTC offset either as a +0n00 string or as a number of seconds - whichever, really.
<blarghlarghl> jhass: It's kinda scary actually.
<jhass> what kind of locations do you have?
<blarghlarghl> jhass:
<blarghlarghl> irb(main):025:0> Time.now
<blarghlarghl> => 2015-03-22 22:20:31 +0000
<blarghlarghl> irb(main):026:0> TZInfo::Timezone.get('Europe/Berlin').current_time_and_period
<blarghlarghl> => [2015-03-22 23:20:42 UTC, #<TZInfo::TimezonePeriod: #<TZInfo::TimezoneTransitionInfo: #<TZInfo::TimeOrDateTime: 1414285200>,#<TZInfo::TimezoneOffsetInfo: 3600,0,CET>>,#<TZInfo::TimezoneTransitionInfo: #<TZInfo::TimeOrDateTime: 1427590800>,#<TZInfo::TimezoneOffsetInfo: 3600,3600,CEST>>>]
<blarghlarghl> So my system is not misconfigured - tzinfo just prints nonsense.
the_real_intinig has quit [Remote host closed the connection]
<blarghlarghl> jhass: Anyway, the thing is, I want to go 'In Paris on April 2nd, what's the UTC offset?' 'In New York on January 5th, what's the UTC offset?'
ur5us has quit []
<jhass> TZInfo::Timezone.get('Europe/Berlin').current_period.offset.utc_offset seems fine to me
hotpancakes has joined #ruby-lang
relix has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<blarghlarghl> jhass: yeah, that works for me too. okay - how do i tell it to give me that for a specific date though?
<jhass> I never used it, let me continue digging :P
<jhass> #period_for_local ?
<blarghlarghl> jhass, i looked at that, but... hm.
<jhass> but?
the_real_intinig has joined #ruby-lang
<blarghlarghl> jhass: I think I'm doing it wrong. TZInfo::Timezone.get('Europe/Berlin').period_for_local(Time.new('2015-06-05 00:00:00')).offset.utc_offset # => 3600
<jhass> oh, dst stuff
<blarghlarghl> Yeah.
<blarghlarghl> that's the thing.
<blarghlarghl> I wish we could kill it with fire.
<jhass> TZInfo::Timezone.get('Europe/Berlin').period_for_local(DateTime.new(2015, 6, 5)).offset.dst? is correct though
nofxx has joined #ruby-lang
nofxx has joined #ruby-lang
<jhass> haha
<jhass> #utc_total_offset
<blarghlarghl> jesus.
<jhass> pry <3
the_real_intinig has quit [Remote host closed the connection]
<jhass> ls the hell out of that stuff
<blarghlarghl> that works!
<blarghlarghl> TZInfo::Timezone.get('Europe/Berlin').period_for_local(DateTime.new(2015, 6, 5)).utc_total_offset # => 7200
<jhass> yep
<blarghlarghl> thanks jhass. i think i couldn't find the forest for the trees.
<jhass> it seems to to_i the arg btw, so anything that returns a unix timestamp on that should be fine
riotjones has joined #ruby-lang
[H]unt3r has left #ruby-lang ["Leaving"]
wprice has joined #ruby-lang
j4cknewt has quit [Remote host closed the connection]
sankaber has joined #ruby-lang
riotjones has quit [Ping timeout: 255 seconds]
hotpancakes has quit [Remote host closed the connection]
wprice has quit [Quit: wprice]
centrx has quit [Remote host closed the connection]
malconis has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
arooni-mobile has quit [Ping timeout: 255 seconds]
x0f has joined #ruby-lang
silkfox has quit [Ping timeout: 272 seconds]
amclain has joined #ruby-lang
charliesome has joined #ruby-lang
x0f has quit [Quit: quit]
x0f has joined #ruby-lang
lytol has joined #ruby-lang
<anekant> has the "Stop processing options so that the remaining options will be passed to the test." feature been discontinued?
lytol has quit [Ping timeout: 255 seconds]
the_real_intinig has joined #ruby-lang
Sirupsen has quit [Quit: Textual IRC Client: www.textualapp.com]
martinbmadsen has joined #ruby-lang
the_real_intinig has quit [Remote host closed the connection]
j4cknewt has joined #ruby-lang
martinbmadsen has quit [Ping timeout: 246 seconds]
silkfox has joined #ruby-lang
silkfox has quit [Ping timeout: 272 seconds]
tockitj has joined #ruby-lang
solars has quit [Ping timeout: 264 seconds]
ohsix has quit [Ping timeout: 256 seconds]
jo__ has joined #ruby-lang
Iskarlar has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
the_real_intinig has joined #ruby-lang
hahuang65 has joined #ruby-lang
the_real_intinig has quit [Remote host closed the connection]
hahuang65 has quit [Ping timeout: 256 seconds]
elia has quit [Quit: Computer has gone to sleep.]
vladgh has quit [Ping timeout: 250 seconds]
vladgh has joined #ruby-lang