jhass changed the topic of #ruby to: Rules & more: http://ruby-community.com || Ruby 2.3.0; 2.2.4; 2.1.8: https://ruby-lang.org || Paste >3 lines of text on https://gist.github.com || log @ http://irclog.whitequark.org/ruby/
Spami has quit [Ping timeout: 244 seconds]
mattwild_ has quit [Remote host closed the connection]
Spami has joined #ruby
wald0 has quit [Ping timeout: 276 seconds]
Bilge has joined #ruby
RealMarc has joined #ruby
shaman42 has joined #ruby
ElderFain has joined #ruby
tubbo has joined #ruby
galeido has joined #ruby
groundnuty has joined #ruby
Coraline has joined #ruby
Garo_ has joined #ruby
Seich has quit [Ping timeout: 268 seconds]
machty has quit [Ping timeout: 268 seconds]
TomyLobo has quit [Ping timeout: 276 seconds]
Seich has joined #ruby
Phanes- has quit [Ping timeout: 268 seconds]
nuck has joined #ruby
freerobby has quit [Quit: Leaving.]
Brando753 has joined #ruby
Suntzu has quit [Ping timeout: 260 seconds]
nuck is now known as Guest22248
doctorly has joined #ruby
twodayslate has quit [Ping timeout: 268 seconds]
rodolfowtf has quit [Ping timeout: 264 seconds]
nickjj_ has joined #ruby
sandstrom has quit [Quit: My computer has gone to sleep.]
Guest22248 has quit [Changing host]
Guest22248 has joined #ruby
nickjj has quit [Ping timeout: 244 seconds]
Phanes has joined #ruby
Phanes has quit [Changing host]
Phanes has joined #ruby
<doctorly> I'm trying to have a method that is given a character, lets say 'a', and then can translate that into 'author'. so I can call something like 'ovj.author' when I am passed 'a'. What method should I look into?
bakedb has joined #ruby
Suntzu has joined #ruby
iooner has quit [Ping timeout: 268 seconds]
<Ox0dea> &ri Abbrev @doctorly
Guest22248 is now known as nuck
wald0 has joined #ruby
uri___ has joined #ruby
amitchellbullard has quit [Ping timeout: 268 seconds]
<doctorly> derpy: thank you!
nando293921 has joined #ruby
amitchellbullard has joined #ruby
ur5us has joined #ruby
iooner has joined #ruby
uri___ has quit [Client Quit]
Spami has quit [Ping timeout: 260 seconds]
20WAAE2CQ has quit [Ping timeout: 261 seconds]
sinkensabe has joined #ruby
sandstrom has joined #ruby
tulak has quit [Remote host closed the connection]
wald0 has quit [Ping timeout: 276 seconds]
<humblespoon> so I'm writing a class Dictionary to store words and their meanings in a hash, but I'm not really sure what I'm doing wrong since when I call a Dictionary.new it contain nil as opposed to an empty hash. Can someone tell me what I'm doing wrong? http://paste2.org/8zLU14dW
n008f4g_ has quit [Ping timeout: 260 seconds]
wald0 has joined #ruby
bqscott has joined #ruby
rubie has joined #ruby
Authenticator has joined #ruby
goodcodeguy has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
<shevy> x = Dictionary.new # => #<Dictionary:0x0000000647e798 @entries={}>
<shevy> the code you showed above will initialize @entries to {}
machty has joined #ruby
twodayslate has joined #ruby
<humblespoon> shevy: so x.entries should return an empty hash instead of nil? cause that's what I was hoping for
Spami has joined #ruby
baweaver has quit [Remote host closed the connection]
<Ox0dea> humblespoon: https://eval.in/526757
Rodya_ has joined #ruby
<Ox0dea> That doesn't look like `nil` to me? :P
<shevy> yeah x.entries # => {}
meinside has quit [Quit: Connection closed for inactivity]
<shevy> humblespoon here is one way how you may have nil
<shevy> Dictionary.new nil # => #<Dictionary:0x0000000646d858 @entries=nil>
solocshaw has quit [Read error: Connection reset by peer]
<Darmani> DONT LISTEN TO OX0DEA
<Darmani> He lies for attention
arthurix has joined #ruby
<shevy> humblespoon but you can check for this in your code too; use a custom setter method for @entries, and if nil is given, either you raise an error, or convert it to the default (empty hash)
Authenticator has quit [Ping timeout: 252 seconds]
rubie has quit [Ping timeout: 252 seconds]
bqscott has quit [Ping timeout: 252 seconds]
Rickmasta has joined #ruby
solocshaw has joined #ruby
armyriad has joined #ruby
<humblespoon> ok thanks shevy, I'll try that. Also I'm bookmarking that site Ox0dea , thanks :)
tekacs has quit [Quit: Disappearing... *poof*]
allcentury has quit [Ping timeout: 264 seconds]
chouhoulis has joined #ruby
kobain has quit [Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/]
<shevy> Darmani you analyze the channel people! :(
<Darmani> war
<Darmani> wat
arthurix_ has quit [Ping timeout: 260 seconds]
<shevy> and you are always willing to go to war about it. I like that
<Darmani> fuck you lol
<shevy> we could split the male programmers into two groups
<shevy> - those with a big bushy beard
n008f4g_ has joined #ruby
<shevy> - and those who envy the former
<Darmani> LOL
<Darmani> I'd definitely be the former.
ramfjord has joined #ruby
isomorphismes has joined #ruby
jenrzzz has joined #ruby
Rodya_ has quit [Ping timeout: 276 seconds]
chouhoulis has quit [Ping timeout: 248 seconds]
rhg135 has joined #ruby
stannard has quit [Remote host closed the connection]
ledestin has quit [Ping timeout: 276 seconds]
fold4 has quit [Ping timeout: 244 seconds]
benlieb has quit [Quit: benlieb]
yonatankoren has joined #ruby
wjimenez5271 has joined #ruby
wedgwood has joined #ruby
diegoviola has joined #ruby
m4rCsi has joined #ruby
drale2k has joined #ruby
pocketprotector has joined #ruby
Guest34101 has joined #ruby
sandstrom has quit [Quit: My computer has gone to sleep.]
nofxx has joined #ruby
jenrzzz has quit [Ping timeout: 276 seconds]
low-profile has joined #ruby
sneakerhax has joined #ruby
pawnbox has quit [Remote host closed the connection]
<nofxx> There's a way to get all classes that inherited from one? Or do I need to self.inherited(klass); subclasses << klass... make mine?
<humblespoon> so the eval.in site is really useful for testing my code. however, I can get my code to run there fine https://eval.in/526761, but when I try running the rspec from my class to check my code it is saying my hash is empty rather than {"fish" =>"aquatic animal"} (paste of the rspec code https://eval.in/526764). Is there something different about... I guess instance variables?
benlieb has joined #ruby
<nofxx> humblespoon, how you're testing? have in mind p will output to stdout
<shevy> humblespoon your code does not add anything
shtirlic has joined #ruby
<shevy> @a.add("fish" => "Aquatic animal")
<shevy> # => #<Dictionary:0x0000000542c5e8 @entries={}>
duckpupp1 has joined #ruby
doctorly has quit [Quit: leaving]
rodolfowtf has joined #ruby
tekacs has joined #ruby
<humblespoon> nofxx: we were given an rspec file from class which I'm executing from command line to check my code.
diegoviola has quit [Quit: WeeChat 1.4]
<shevy> humblespoon exchange .merge with .update and it will have added to @entries
<shevy> #<Dictionary:0x00000000ea0420 @entries={"fish"=>"Aquatic animal"}>
diego1 has joined #ruby
sinkensabe has quit [Read error: Connection reset by peer]
<humblespoon> shevy thanks. Haven't covered .update before. What went wrong with the merge exactly? I think I'm a bit confused about how instance variables work
trosborn has quit [Quit: trosborn]
<shevy> no, you only were calling the wrong method
duckpupp1 has quit [Ping timeout: 244 seconds]
cdg has quit [Remote host closed the connection]
<shevy> if the docu is too boring, only look at the examples :D
<humblespoon> haha ok thanks
pawnbox has joined #ruby
dfockler has quit [Ping timeout: 276 seconds]
kirillzh has joined #ruby
<humblespoon> shevy: oh so .merge returned a new hash and didn't modify the original object. does that mean I could use .merge! instead to modify/update it then?
sergey_makagon has joined #ruby
sepp2k has quit [Read error: Connection reset by peer]
wedgwood has quit [Changing host]
wedgwood has joined #ruby
pocketprotector is now known as Guest66453
wedgwood is now known as Guest36178
eregi has joined #ruby
pawnbox has quit [Ping timeout: 248 seconds]
<shevy> humblespoon yeah I think so, update is probably an alias to .merge! but I find methods without ! easier to read
<shevy> (if they have arguments)
sergey_makagon has quit [Ping timeout: 260 seconds]
intrigueD has quit [Remote host closed the connection]
ndrst has joined #ruby
ndrst is now known as Guest21405
bronson has joined #ruby
peteyg has quit [Ping timeout: 260 seconds]
Snowy has joined #ruby
Noxilex has joined #ruby
dgncn has quit [Quit: Leaving]
eregi has quit [Ping timeout: 255 seconds]
jeanlinux has quit [Ping timeout: 276 seconds]
ReK2GnULinuX has quit [Remote host closed the connection]
eregi has joined #ruby
bronson has quit [Ping timeout: 260 seconds]
sondr3 has joined #ruby
ReK2 has joined #ruby
Mia has joined #ruby
CoderPuppy has quit [Ping timeout: 264 seconds]
p0p0pr37 has joined #ruby
peteyg has joined #ruby
Snowy has quit [Ping timeout: 268 seconds]
intrigueD has joined #ruby
trinaldi has quit [Quit: WeeChat 1.5-dev]
trinaldi has joined #ruby
<Ox0dea> nofxx: https://eval.in/526772
xybre has joined #ruby
ruby[bot] has joined #ruby
cpup has joined #ruby
crank1988 has quit [Read error: Connection reset by peer]
eregi has quit [Ping timeout: 255 seconds]
_kfpratt has joined #ruby
tristanp has joined #ruby
darkf has joined #ruby
kfpratt has quit [Ping timeout: 260 seconds]
lewis1711 has joined #ruby
<lewis1711> how do I map over a hash to get another hash? I want to perform some function on evey value, but leave the keys
<Ox0dea> lewis1711: Do you hate `hash.map { |k, v| [k, v.something_or_other] }.to_h`?
strongcode has joined #ruby
sinkensabe has joined #ruby
Noxilex has quit [Ping timeout: 268 seconds]
UtkarshRay has quit [Ping timeout: 268 seconds]
<lewis1711> Ox0dea, nope, that looks great, but it never showed up when I searched. I was looking for "to_hash". thanks
mattwildig has joined #ruby
<Ox0dea> lewis1711: Ah, well, I was gonna suggest `hash.keys.zip(hash.values.map ...).to_h` if you did.
diego1 has quit [Changing host]
diego1 has joined #ruby
diego1 is now known as diegoviola
crank1988 has joined #ruby
pawnbox has joined #ruby
<Ox0dea> #to_hash is a thing, but it's for telling an object what to do when it gets double-splatted.
crank1988 has quit [Read error: Connection reset by peer]
Channel6 has joined #ruby
fullofcaffeine has quit [Remote host closed the connection]
tristanp has quit [Remote host closed the connection]
mostlybadfly has joined #ruby
intrigueD has quit [Remote host closed the connection]
tristanp has joined #ruby
sinkensabe has quit [Ping timeout: 255 seconds]
nando293921 has quit [Ping timeout: 276 seconds]
darkf has quit [Read error: Connection reset by peer]
pawnbox has quit [Ping timeout: 255 seconds]
darkf has joined #ruby
Authenticator has joined #ruby
Synthead has joined #ruby
rubie has joined #ruby
bqscott has joined #ruby
tristanp has quit [Remote host closed the connection]
brainslug has joined #ruby
unreal has quit [Ping timeout: 276 seconds]
Rickmasta has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
montyboy has quit [Quit: WeeChat 0.4.2]
cj has joined #ruby
crank1988 has joined #ruby
triangles2 has joined #ruby
Rickmasta has joined #ruby
gnarf_ has quit [Excess Flood]
ledestin has joined #ruby
unreal has joined #ruby
gnarf has joined #ruby
triangles3 has quit [Ping timeout: 244 seconds]
sudoubuntu has joined #ruby
TheMoonMaster has quit [Ping timeout: 244 seconds]
chouhoulis has joined #ruby
sudoubuntu has quit [Client Quit]
marr has quit [Ping timeout: 260 seconds]
Rodya_ has joined #ruby
despai has joined #ruby
darkf has quit [Read error: Connection reset by peer]
darkf has joined #ruby
chouhoulis has quit [Ping timeout: 268 seconds]
Outlastsheep has joined #ruby
michael_mbp has joined #ruby
Rodya_ has quit [Ping timeout: 252 seconds]
TheMoonMaster has joined #ruby
rattatmatt has joined #ruby
akem has quit [Remote host closed the connection]
ziyadb has quit [Quit: Connection closed for inactivity]
darkf has quit [Read error: Connection reset by peer]
darkf has joined #ruby
ex0ns has joined #ruby
decaff has joined #ruby
dlitvak has quit [Remote host closed the connection]
pawnbox has joined #ruby
drbrain has quit [Ping timeout: 268 seconds]
drbrain has joined #ruby
bloodwire has joined #ruby
pawnbox has quit [Ping timeout: 276 seconds]
thevaliantx has joined #ruby
darkf has quit [Read error: Connection reset by peer]
justbleed has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
darkf has joined #ruby
michae has joined #ruby
zack6849 has joined #ruby
zack6849 has joined #ruby
ja has joined #ruby
nopolitica has joined #ruby
gsilvapt has joined #ruby
gsilvapt has left #ruby [#ruby]
marxarelli has joined #ruby
marxarelli has quit [Client Quit]
marxarelli has joined #ruby
nogic has joined #ruby
KnownSyntax has quit [Ping timeout: 246 seconds]
KnownSyntax has joined #ruby
KnownSyntax has quit [Changing host]
KnownSyntax has joined #ruby
raz has quit [Excess Flood]
shanemcd has joined #ruby
raz has joined #ruby
raz has quit [Changing host]
raz has joined #ruby
shanemcd has quit [Read error: Connection reset by peer]
nopolitica has quit [Quit: WeeChat 0.4.2]
shanemcd has joined #ruby
mattwildig has quit []
ItSANgo__ has quit [Ping timeout: 244 seconds]
trifling-jest has quit [Read error: Connection reset by peer]
ItSANgo__ has joined #ruby
marxarelli has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
cajone has quit [Ping timeout: 244 seconds]
FooMunki has quit [Quit: FooMunki]
sinkensabe has joined #ruby
Suntzu has quit [Quit: changing servers]
thevaliantx has quit [Quit: Leaving]
braincrash has quit [Read error: Connection reset by peer]
sponjii__ has quit [Ping timeout: 260 seconds]
braincrash has joined #ruby
nando293921 has joined #ruby
sinkensabe has quit [Ping timeout: 260 seconds]
Suntzu has joined #ruby
<cj> is there a reason that ruby doesn't use automake?
eregi has joined #ruby
openstruct has joined #ruby
puerile has joined #ruby
tulak has joined #ruby
kirillzh has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
shanemcd_ has joined #ruby
shanemcd has quit [Read error: Connection reset by peer]
sudoubuntu has joined #ruby
baweaver has joined #ruby
Axy has joined #ruby
Axy has quit [Changing host]
Axy has joined #ruby
tulak has quit [Ping timeout: 268 seconds]
cajone has joined #ruby
sudoubuntu has quit [Client Quit]
bloodwire has quit [Ping timeout: 244 seconds]
Mia has quit [Ping timeout: 268 seconds]
Mia has joined #ruby
Guest34101 has quit [Ping timeout: 268 seconds]
quazimodo has quit [Ping timeout: 260 seconds]
drale2k has quit [Quit: ZNC - http://znc.in]
chouhoulis has joined #ruby
Axy has quit [Ping timeout: 244 seconds]
jeanlinux has joined #ruby
drale2k has joined #ruby
graffix222_ has joined #ruby
baweaver has quit [Ping timeout: 252 seconds]
nolsen has quit [Excess Flood]
openstruct has quit [Ping timeout: 276 seconds]
graffix222 has quit [Ping timeout: 276 seconds]
symm- has quit [Ping timeout: 246 seconds]
fckyoufreenode is now known as Dimik
shanemcd_ has quit [Read error: Connection reset by peer]
ESpiney_ has joined #ruby
n008f4g_ has quit [Ping timeout: 248 seconds]
BtcBen has joined #ruby
shanemcd has joined #ruby
vdamewood has joined #ruby
dlitvak has joined #ruby
jeanlinux has quit [Ping timeout: 260 seconds]
chouhoulis has quit [Ping timeout: 276 seconds]
x77686d has quit [Quit: x77686d]
pawnbox has joined #ruby
puerile has quit []
nolsen has joined #ruby
trifling-jest has joined #ruby
trifling-jest has left #ruby [#ruby]
dlitvak has quit [Ping timeout: 255 seconds]
shanemcd has quit [Ping timeout: 255 seconds]
TomPeed has joined #ruby
TomPeed is now known as justbleed
pawnbox has quit [Ping timeout: 248 seconds]
fold4 has joined #ruby
duckpupp1 has joined #ruby
montyboy has joined #ruby
sudoubuntu has joined #ruby
unreal_ has joined #ruby
QORRiE has quit [Remote host closed the connection]
ur5us has quit [Remote host closed the connection]
duckpupp1 has quit [Ping timeout: 248 seconds]
<shevy> cj for what projects?
unreal has quit [Ping timeout: 244 seconds]
blackmesa has quit [Ping timeout: 244 seconds]
ESpiney_ has quit [Quit: Leaving]
SCHAAP137 has quit [Remote host closed the connection]
triangles3 has joined #ruby
darkf_ has joined #ruby
armyriad has quit [Read error: Connection reset by peer]
Suntzu has quit [Ping timeout: 245 seconds]
brainslug has quit [Ping timeout: 245 seconds]
nogic has quit [Ping timeout: 252 seconds]
TheMoonMaster has quit [Ping timeout: 252 seconds]
armyriad has joined #ruby
wald0 has quit [Ping timeout: 276 seconds]
decaff has quit [Ping timeout: 252 seconds]
triangles2 has quit [Ping timeout: 252 seconds]
cj has quit [Ping timeout: 252 seconds]
bqscott has quit [Ping timeout: 252 seconds]
rubie has quit [Ping timeout: 252 seconds]
Authenticator has quit [Ping timeout: 252 seconds]
sudoubuntu has quit [Ping timeout: 255 seconds]
vdamewood has quit [Ping timeout: 252 seconds]
darkf has quit [Ping timeout: 252 seconds]
ledestin has quit [Ping timeout: 252 seconds]
Synthead has quit [Ping timeout: 252 seconds]
triangles2 has joined #ruby
ramfjord has quit [Ping timeout: 276 seconds]
Suntzu has joined #ruby
Axy has joined #ruby
Axy has quit [Changing host]
Axy has joined #ruby
Mia has quit [Ping timeout: 244 seconds]
nogic has joined #ruby
crank1988_ has joined #ruby
darkf_ has quit [Ping timeout: 268 seconds]
triangles3 has quit [Ping timeout: 268 seconds]
ReK2GnULinuX has joined #ruby
darkf has joined #ruby
rodolfowtf has quit [Ping timeout: 268 seconds]
zeroDi has quit [Quit: WeeChat 1.3]
ReK2 has quit [Ping timeout: 268 seconds]
nfk has quit [Quit: Try memory.free_dirty_pages=true in about:config]
crank1988 has quit [Ping timeout: 255 seconds]
Guest36178 has quit [Ping timeout: 255 seconds]
michael_mbp has quit [Ping timeout: 255 seconds]
ja has quit [Ping timeout: 255 seconds]
yonatankoren has quit [Ping timeout: 255 seconds]
shelling__ has quit [Ping timeout: 268 seconds]
diegoviola has quit [Ping timeout: 255 seconds]
Snowy has joined #ruby
lewis1711 has quit [Ping timeout: 268 seconds]
lewis1711 has joined #ruby
shelling__ has joined #ruby
ruby-lang807 has joined #ruby
fullofcaffeine has joined #ruby
Dreamer3_ has quit [Ping timeout: 312 seconds]
ur5us has joined #ruby
TheMoonMaster has joined #ruby
MeMoc has quit [Quit: Connection closed for inactivity]
Dreamer3_ has joined #ruby
rizenine has joined #ruby
<ruby-lang807> hello, I fear I am experiencing a weird behaviour. I have a master process than opens a database connection and keeps into its state, than spawns a child (through #fork). Now I suspect that when the child terminates, it also closes the database connection because the handle is shared?
sinkensabe has joined #ruby
Guest21405 has quit [Ping timeout: 268 seconds]
djbkd has joined #ruby
<ruby-lang807> does it make sense?
Rickmasta has quit [Ping timeout: 268 seconds]
graphettion has joined #ruby
Snowy has quit [Ping timeout: 276 seconds]
fullofca_ has joined #ruby
benlieb has quit [Quit: benlieb]
trinaldi has quit [Ping timeout: 255 seconds]
montyboy has quit [Ping timeout: 255 seconds]
ItSANgo__ has quit [Ping timeout: 255 seconds]
shtirlic has quit [Ping timeout: 255 seconds]
wjimenez5271 has quit [Ping timeout: 255 seconds]
kam270 has quit [Quit: Leaving]
vdamewood has joined #ruby
shtirlic_ has joined #ruby
fullofca_ has quit [Read error: Connection reset by peer]
fullofca_ has joined #ruby
Spami has quit [Quit: This computer has gone to sleep]
fullofca_ has quit [Remote host closed the connection]
fullofcaffeine has quit [Ping timeout: 276 seconds]
justbleed has quit [Ping timeout: 268 seconds]
sinkensabe has quit [Ping timeout: 276 seconds]
Rodya_ has joined #ruby
shelling__ has quit [Ping timeout: 268 seconds]
nogic has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
vcoinminer has quit [Ping timeout: 268 seconds]
shelling__ has joined #ruby
rflot has quit [Ping timeout: 268 seconds]
pocketprotector has joined #ruby
tcrypt has quit [Ping timeout: 268 seconds]
vcoinminer has joined #ruby
TomPeed has joined #ruby
FastJack has quit [Ping timeout: 268 seconds]
TomPeed is now known as justbleed
rflot has joined #ruby
SegFaultAX has quit [Ping timeout: 268 seconds]
tylersmith has joined #ruby
Guest66453 has quit [*.net *.split]
m4rCsi has quit [*.net *.split]
bcavileer has quit [Ping timeout: 268 seconds]
amitchellbullard has quit [Read error: Connection reset by peer]
amitchellbullard has joined #ruby
FastJack has joined #ruby
Aviio has joined #ruby
SegFaultAX has joined #ruby
rodolfowtf has joined #ruby
bb010g has joined #ruby
rizenine has quit [Remote host closed the connection]
bcavileer has joined #ruby
decaff has joined #ruby
s00pcan_ has quit [Read error: Connection reset by peer]
amitchellbullard has quit [Ping timeout: 268 seconds]
sfr^ has quit [Ping timeout: 268 seconds]
fullofcaffeine has joined #ruby
sfr^ has joined #ruby
sfr^ has quit [Changing host]
sfr^ has joined #ruby
Guest53587 has quit [Ping timeout: 268 seconds]
fold4 has quit [Ping timeout: 256 seconds]
amitchellbullard has joined #ruby
FastJack has quit [Ping timeout: 268 seconds]
TDJACR has joined #ruby
fold4 has joined #ruby
FastJack has joined #ruby
Dreamer3_ has quit [Ping timeout: 244 seconds]
watersoul has quit [Remote host closed the connection]
fullofcaffeine has quit [Read error: Connection reset by peer]
alem0lars has quit [Ping timeout: 268 seconds]
s00pcan_ has joined #ruby
Dreamer3_ has joined #ruby
bakedb has quit [Remote host closed the connection]
bakedb has joined #ruby
FastJack has quit [Ping timeout: 268 seconds]
chouhoulis has joined #ruby
TDJACR has quit [Excess Flood]
bb010g has quit [Ping timeout: 268 seconds]
FastJack has joined #ruby
watersoul has joined #ruby
mostlybadfly has quit [Ping timeout: 268 seconds]
wedgwood has joined #ruby
mostlybadfly has joined #ruby
twodayslate has quit [Ping timeout: 268 seconds]
wedgwood has quit [Changing host]
wedgwood has joined #ruby
wedgwood is now known as Guest94464
bb010g has joined #ruby
fullofcaffeine has joined #ruby
twodayslate has joined #ruby
freerobby has joined #ruby
nogic has joined #ruby
chouhoulis has quit [Ping timeout: 260 seconds]
nogic has quit [Max SendQ exceeded]
nolsen is now known as Edward_Elric
marcosdsanchez has quit [Read error: Connection reset by peer]
nisstyre_ has quit [Ping timeout: 244 seconds]
Edward_Elric is now known as nolsen
nogic has joined #ruby
marcosdsanchez has joined #ruby
bcavileer has quit [Ping timeout: 268 seconds]
nogic has quit [Max SendQ exceeded]
TDJACR has joined #ruby
nogic has joined #ruby
binaryplease has quit [Ping timeout: 276 seconds]
nogic has quit [Max SendQ exceeded]
bcavileer has joined #ruby
Rickmasta has joined #ruby
rodolfowtf has quit [Ping timeout: 268 seconds]
nogic has joined #ruby
rodolfowtf has joined #ruby
nogic has quit [Max SendQ exceeded]
freerobby has quit [Quit: Leaving.]
nogic has joined #ruby
cajone has quit [Ping timeout: 342 seconds]
cj has joined #ruby
<cj> sorry. looks like webber went down.
alem0lars has joined #ruby
<cj> to answer your question: ruby
<cj> ruby does not use automake
<cj> if there's no reason not to, I'll patch something up.
<cj> we can really clean up the makefile system if we move a bunch of the templatization code in to Makefile.am
machty has quit [Ping timeout: 268 seconds]
shtirlic_ has quit [Ping timeout: 390 seconds]
veloutin has quit [Ping timeout: 390 seconds]
blackmesa has joined #ruby
veloutin has joined #ruby
cdg has joined #ruby
cajone has joined #ruby
machty has joined #ruby
nolsen has left #ruby ["##digress - A social channel"]
<shevy> yeah not sure, there is a Makefile.in and a configure.in but no *.ac files
uglybandersnatch has joined #ruby
nando293921 has quit [Ping timeout: 268 seconds]
elifoster has joined #ruby
blackmesa has quit [Ping timeout: 268 seconds]
nando293921 has joined #ruby
cdg has quit [Ping timeout: 276 seconds]
Paradox has quit [Quit: off to herp the derps]
uglybandersnatch has quit [Ping timeout: 244 seconds]
mostlybadfly has quit [Ping timeout: 268 seconds]
Paradox has joined #ruby
mostlybadfly has joined #ruby
bb010g has quit [Ping timeout: 268 seconds]
hiljusti has quit [Ping timeout: 252 seconds]
ropeney has joined #ruby
michaelreed has joined #ruby
<michaelreed> i don't like **ggers and my boss wants me to partner up with one how can i convince my boss to not pair me up with them?
sinkensabe has joined #ruby
<cj> yeah, configure.in should be re-named to configure.ac and the Makefile.in should be generated by automake from Makefile.am
duncannz has quit [Ping timeout: 276 seconds]
Chagel has joined #ruby
bb010g has joined #ruby
nando293921 has quit [Ping timeout: 268 seconds]
Elysia has quit [Ping timeout: 268 seconds]
<havenwood> !ban michaelreed !P racist trolling
michaelreed was kicked from #ruby by ruby[bot] [racist trolling]
machty has quit [Ping timeout: 268 seconds]
<eam_> ruby-lang807: yes, sounds a lot like what's described here? https://github.com/brianmario/mysql2/pull/463
eregi has quit [Ping timeout: 276 seconds]
Chagel has quit [Read error: Connection reset by peer]
<eam_> ruby-lang807: there are a number of ways the handle can be invalidated via the forked copy
Miron has quit [Ping timeout: 268 seconds]
S01780 has quit [Ping timeout: 268 seconds]
Miron has joined #ruby
trosborn has joined #ruby
trosborn has quit [Client Quit]
sinkensabe has quit [Ping timeout: 260 seconds]
arthropododo has quit [Remote host closed the connection]
montyboy has joined #ruby
monoprotic is now known as chembot
chembot is now known as monoprotic
shanemcd has joined #ruby
nisstyre_ has joined #ruby
davedev2_ has quit [Ping timeout: 268 seconds]
<shevy> défini initialize(humeur)
helpa-bot has quit [Remote host closed the connection]
helpa has joined #ruby
pawnbox has joined #ruby
davedev24 has joined #ruby
Suntzu has quit [Quit: changing servers]
S01780 has joined #ruby
benlieb has joined #ruby
Suntzu has joined #ruby
noodle has quit [Ping timeout: 244 seconds]
moei has quit [Quit: Leaving...]
shanemcd has quit [Ping timeout: 260 seconds]
Guest94494 has quit [Changing host]
Guest94494 has joined #ruby
lady3bean has quit [Ping timeout: 244 seconds]
Guest94494 is now known as nitrix
sfr^ has quit [Ping timeout: 268 seconds]
braincrash has quit [Quit: bye bye]
pawnbox has quit [Ping timeout: 276 seconds]
krobzaur_ has joined #ruby
sfr^ has joined #ruby
machty has joined #ruby
lady3bean has joined #ruby
graphettion has quit [Ping timeout: 244 seconds]
b|ackwolf has joined #ruby
graphettion has joined #ruby
noodle has joined #ruby
<b|ackwolf> is there any problem that I read "The Well-Grounded Rubyist First Edition" ?
<b|ackwolf> I meant because it covers 1.9
<shevy> it's ok I guess, the other newer things you'll learn quickly the more code you write on your own
<b|ackwolf> tnx
<shevy> ruby in its base, is actually quite simple. object.method; there are a lot of things in the stdlib/corelib which you probably will discover only when you try to use them
<shevy> like ... .find .grep .detect .reject ... hmm .select ... the slice methods....
cbetta has quit [Ping timeout: 260 seconds]
[spoiler] has quit [Ping timeout: 260 seconds]
Mr_Pancake has quit [Ping timeout: 260 seconds]
tjohnson has quit [Ping timeout: 260 seconds]
c355e3b has quit [Ping timeout: 260 seconds]
imanc has quit [Ping timeout: 260 seconds]
NeverTired has quit [Ping timeout: 260 seconds]
ggherdov has quit [Ping timeout: 260 seconds]
deimos has quit [Ping timeout: 260 seconds]
ELLIOTTCABLE has quit [Ping timeout: 260 seconds]
avdi has quit [Ping timeout: 260 seconds]
x0f has quit [Ping timeout: 260 seconds]
Guest12896_ has quit [Ping timeout: 260 seconds]
LoganG has quit [Ping timeout: 260 seconds]
swgillespie has quit [Ping timeout: 260 seconds]
andersh has quit [Ping timeout: 260 seconds]
incomprehensibly has quit [Ping timeout: 260 seconds]
tonini has quit [Ping timeout: 260 seconds]
cbetta has joined #ruby
lele` has quit [Ping timeout: 260 seconds]
LoganG has joined #ruby
graphettion has quit [Ping timeout: 244 seconds]
err_ok has quit [Ping timeout: 260 seconds]
charles81 has quit [Ping timeout: 260 seconds]
cardoni has quit [Ping timeout: 260 seconds]
Lloyd has quit [Ping timeout: 260 seconds]
sideshowcoder has quit [Ping timeout: 260 seconds]
angiebadillo has quit [Ping timeout: 260 seconds]
alxndr has quit [Ping timeout: 260 seconds]
daxroc has quit [Ping timeout: 260 seconds]
joaomdmoura__ has quit [Ping timeout: 260 seconds]
jimcroft_ has quit [Ping timeout: 260 seconds]
bove has quit [Ping timeout: 260 seconds]
sevenfourk has quit [Ping timeout: 260 seconds]
boxrick1 has quit [Ping timeout: 260 seconds]
golgaroth has quit [Ping timeout: 260 seconds]
jmcc_______ has quit [Ping timeout: 260 seconds]
Arcaire has quit [Ping timeout: 260 seconds]
jabreity has quit [Ping timeout: 260 seconds]
dukedave has quit [Ping timeout: 260 seconds]
thomasfedb_ has quit [Ping timeout: 260 seconds]
baweaver has joined #ruby
tjohnson has joined #ruby
avdi has joined #ruby
graphettion has joined #ruby
alem0lars has quit [Ping timeout: 268 seconds]
schaary has quit [Ping timeout: 268 seconds]
lewis1711 has quit [Ping timeout: 276 seconds]
imanc has joined #ruby
c355e3b has joined #ruby
thevaliantx has joined #ruby
lele has joined #ruby
andersh has joined #ruby
nando293921 has joined #ruby
tulak has joined #ruby
vali has quit [Ping timeout: 268 seconds]
davedev24 has quit []
jimcroft_ has joined #ruby
NeverTired has joined #ruby
sideshowcoder has joined #ruby
deimos has joined #ruby
thomasfedb has joined #ruby
<shevy> I remember that when I started with ruby, I bought the pickaxe... in 2004 or so
<shevy> that was a good investment
bb010g has quit [Ping timeout: 268 seconds]
<shevy> I bought the second pickaxe in ... 2008? 2009? or so... but since I knew most of the stuff already, it was not such a good investment anymore :(
cardoni has joined #ruby
incomprehensibly has joined #ruby
charles81 has joined #ruby
swgillespie has joined #ruby
dukedave has joined #ruby
Arcaire has joined #ruby
err_ok has joined #ruby
passcod has quit [Ping timeout: 313 seconds]
boxrick1 has joined #ruby
jmcc_______ has joined #ruby
joaomdmoura__ has joined #ruby
sevenfourk has joined #ruby
daxroc has joined #ruby
Guest12896_ has joined #ruby
twodayslate has quit [Ping timeout: 268 seconds]
amitchellbullard has quit [Ping timeout: 268 seconds]
jord has quit [Ping timeout: 268 seconds]
angiebadillo has joined #ruby
despai has quit [Quit: This computer has gone to sleep]
thomasfedb has quit [Changing host]
thomasfedb has joined #ruby
kent\n has quit [Quit: No Ping reply in 180 seconds.]
hollywood has quit [Ping timeout: 268 seconds]
gix has quit [Ping timeout: 296 seconds]
gix- has joined #ruby
gix- is now known as gix
vali has joined #ruby
Ebok has quit [Ping timeout: 268 seconds]
kirillzh has joined #ruby
Icey has quit [Remote host closed the connection]
braincrash has joined #ruby
bcavileer has quit [Ping timeout: 268 seconds]
tylersmith has quit [Ping timeout: 268 seconds]
shelling__ has quit [Ping timeout: 268 seconds]
Billias has quit [Ping timeout: 268 seconds]
Lloyd has joined #ruby
shelling__ has joined #ruby
x0f has joined #ruby
amitchellbullard has joined #ruby
rodolfowtf has quit [Ping timeout: 276 seconds]
bb010g has joined #ruby
andersh has quit [Ping timeout: 268 seconds]
sfr^ has quit [Ping timeout: 268 seconds]
golgaroth has joined #ruby
tulak has quit [Ping timeout: 260 seconds]
bove has joined #ruby
Ebok has joined #ruby
schaary has joined #ruby
jabreity has joined #ruby
ddv has quit [Ping timeout: 268 seconds]
sfr^ has joined #ruby
alxndr has joined #ruby
rflot has quit [Ping timeout: 268 seconds]
kent\n has joined #ruby
tylersmith has joined #ruby
Outlastsheep has quit [Ping timeout: 413 seconds]
tinnvec has quit [Quit: No Ping reply in 180 seconds.]
Mr_Pancake has joined #ruby
ggherdov has joined #ruby
hollywood has joined #ruby
Icey has joined #ruby
charles81 has quit [Ping timeout: 268 seconds]
c355e3b has quit [Ping timeout: 268 seconds]
tonini has joined #ruby
twodayslate has joined #ruby
FastJack has quit [Remote host closed the connection]
djbkd has quit [Remote host closed the connection]
[spoiler] has joined #ruby
ddv has joined #ruby
uglybandersnatch has joined #ruby
TDJACR has quit [Ping timeout: 268 seconds]
SegFaultAX has quit [Ping timeout: 268 seconds]
andersh has joined #ruby
golgaroth has quit [Read error: Connection reset by peer]
zipkid has quit [Read error: Connection reset by peer]
incomprehensibly has quit [Ping timeout: 268 seconds]
rattatmatt has quit []
jord has joined #ruby
charles81 has joined #ruby
rflot has joined #ruby
Arcaire has quit [Ping timeout: 268 seconds]
Liothen has quit [Ping timeout: 268 seconds]
chouhoulis has joined #ruby
bcavileer has joined #ruby
FastJack has joined #ruby
Arcaire has joined #ruby
x77686d has joined #ruby
golgaroth has joined #ruby
zipkid has joined #ruby
DanKnox has quit [Ping timeout: 268 seconds]
avdi_ has joined #ruby
incomprehensibly has joined #ruby
jabreity has quit [Ping timeout: 268 seconds]
avdi has quit [Ping timeout: 268 seconds]
cardoni has quit [Ping timeout: 268 seconds]
nickjj_ has quit [Ping timeout: 268 seconds]
avdi_ is now known as avdi
jeanlinux has joined #ruby
ELLIOTTCABLE has joined #ruby
alem0lars has joined #ruby
iooner has quit [Ping timeout: 268 seconds]
c355e3b has joined #ruby
SegFaultAX has joined #ruby
Billias has joined #ruby
machty has quit [Ping timeout: 244 seconds]
safe has joined #ruby
jabreity has joined #ruby
dukedave has quit [Read error: Connection reset by peer]
cardoni has joined #ruby
shelling__ has quit [Ping timeout: 268 seconds]
iooner has joined #ruby
Arcaire has quit [Read error: Connection reset by peer]
spastorino has quit [Read error: Connection reset by peer]
bove_ has joined #ruby
bove has quit [Ping timeout: 268 seconds]
bove_ is now known as bove
iooner has quit [Excess Flood]
Arcaire has joined #ruby
spastorino has joined #ruby
mostlybadfly has quit [Ping timeout: 268 seconds]
chouhoulis has quit [Ping timeout: 260 seconds]
iooner has joined #ruby
noodle has quit [Quit: /quit]
tonini has quit [Ping timeout: 268 seconds]
joaomdmoura__ has quit [Ping timeout: 268 seconds]
dukedave has joined #ruby
LoganG has quit [Quit: robots are cool]
jeanlinux has quit [Ping timeout: 260 seconds]
shelling__ has joined #ruby
DanKnox has joined #ruby
LoganG has joined #ruby
TDJACR has joined #ruby
tinnvec has joined #ruby
amitchellbullard has quit [Ping timeout: 268 seconds]
andersh has quit [Ping timeout: 244 seconds]
Billias has quit [Ping timeout: 268 seconds]
swgillespie has quit [Ping timeout: 268 seconds]
Lightsword has quit [Ping timeout: 268 seconds]
mostlybadfly has joined #ruby
Lightsword has joined #ruby
joaomdmoura__ has joined #ruby
tonini has joined #ruby
ELLIOTTCABLE has quit [Ping timeout: 268 seconds]
twodayslate has quit [Ping timeout: 268 seconds]
deeprave has quit [Ping timeout: 268 seconds]
Billias has joined #ruby
daxroc has quit [Read error: Connection reset by peer]
avdi has quit [Ping timeout: 268 seconds]
Mr_Pancake has quit [Ping timeout: 268 seconds]
angiebadillo has quit [Ping timeout: 268 seconds]
avdi has joined #ruby
Arcaire_ has joined #ruby
Liothen has joined #ruby
Liothen has joined #ruby
Arcaire has quit [Ping timeout: 268 seconds]
alem0lars has quit [Ping timeout: 268 seconds]
ggherdov has quit [Read error: Connection reset by peer]
andersh has joined #ruby
dukedave has quit [Ping timeout: 268 seconds]
daxroc has joined #ruby
angiebadillo has joined #ruby
amitchellbullard has joined #ruby
twodayslate has joined #ruby
swgillespie has joined #ruby
ELLIOTTCABLE has joined #ruby
deeprave has joined #ruby
alem0lars has joined #ruby
rdavila has joined #ruby
SegFaultAX has quit [Ping timeout: 268 seconds]
bb010g has quit [Ping timeout: 268 seconds]
machty has joined #ruby
dukedave has joined #ruby
sdothum has quit [Quit: ZNC - 1.6.0 - http://znc.in]
noodle has joined #ruby
bove has quit [Ping timeout: 268 seconds]
sfr^ has quit [Ping timeout: 268 seconds]
arthur_berg has joined #ruby
Mr_Pancake has joined #ruby
eregi has joined #ruby
S01780 has quit [Ping timeout: 268 seconds]
Liothen has quit [Excess Flood]
mostlybadfly has quit [Ping timeout: 268 seconds]
joaomdmoura__ has quit [Ping timeout: 268 seconds]
Seich has quit [Ping timeout: 268 seconds]
blackmesa has joined #ruby
DarkBushido has quit [Ping timeout: 268 seconds]
mostlybadfly has joined #ruby
sfr^ has joined #ruby
[spoiler] has quit [Ping timeout: 268 seconds]
S01780 has joined #ruby
avdi has quit [Ping timeout: 268 seconds]
hollywood has quit [Ping timeout: 268 seconds]
ggherdov has joined #ruby
Seich has joined #ruby
andersh has quit [Ping timeout: 268 seconds]
cardoni has quit [Ping timeout: 268 seconds]
twistedpixels has quit [Ping timeout: 268 seconds]
bb010g has joined #ruby
machty has quit [Ping timeout: 268 seconds]
DarkBushido has joined #ruby
avdi has joined #ruby
Liothen has joined #ruby
bove has joined #ruby
joaomdmoura__ has joined #ruby
drbrain has quit [Ping timeout: 268 seconds]
SegFaultAX has joined #ruby
Liothen has quit [Excess Flood]
LoganG has quit [Quit: robots are cool]
jabreity has quit [Ping timeout: 268 seconds]
twistedpixels has joined #ruby
terminalrecluse has joined #ruby
twistedpixels has quit [Changing host]
twistedpixels has joined #ruby
Ebok has quit [Ping timeout: 268 seconds]
cardoni has joined #ruby
LoganG has joined #ruby
blackmesa has quit [Ping timeout: 276 seconds]
deeprave has quit [Read error: Connection reset by peer]
incomprehensibly has quit [Ping timeout: 268 seconds]
pmarreck has quit [Ping timeout: 268 seconds]
drbrain has joined #ruby
shelling__ has quit [Ping timeout: 268 seconds]
imanc has quit [Ping timeout: 268 seconds]
Kamilion has quit [Ping timeout: 268 seconds]
<arthur_berg> Hello. I want to learn more about ruby garbage collector and virtual machine of ruby. Is there any articles or books that explain in detail about these things?
deeprave has joined #ruby
pmarreck has joined #ruby
incomprehensibly has joined #ruby
[spoiler] has joined #ruby
alxndr has quit [Ping timeout: 268 seconds]
jabreity has joined #ruby
imanc has joined #ruby
daxroc has quit [Ping timeout: 268 seconds]
iooner has quit [Ping timeout: 268 seconds]
andersh has joined #ruby
hollywood has joined #ruby
machty has joined #ruby
SegFaultAX has quit [Ping timeout: 268 seconds]
shelling__ has joined #ruby
joaomdmoura__ has quit [Ping timeout: 244 seconds]
avdi has quit [Ping timeout: 268 seconds]
sfr^ has quit [Ping timeout: 268 seconds]
lele has quit [Ping timeout: 268 seconds]
joaomdmoura__ has joined #ruby
moei has joined #ruby
arthur_berg has left #ruby [#ruby]
daxroc has joined #ruby
Ebok has joined #ruby
iooner has joined #ruby
SegFaultAX has joined #ruby
avdi has joined #ruby
incomprehensibly has quit [Ping timeout: 268 seconds]
ggherdov has quit [Ping timeout: 268 seconds]
ELLIOTTCABLE has quit [Ping timeout: 268 seconds]
lele has joined #ruby
incomprehensibly has joined #ruby
eregi has quit [Ping timeout: 276 seconds]
sfr^ has joined #ruby
sfr^ has quit [Changing host]
sfr^ has joined #ruby
ELLIOTTCABLE has joined #ruby
Darmani has quit [Ping timeout: 252 seconds]
FastJack has quit [Ping timeout: 268 seconds]
cbetta has quit [Ping timeout: 268 seconds]
joaomdmoura__ has quit [Ping timeout: 268 seconds]
Miron has quit [Ping timeout: 268 seconds]
dcunit3d has joined #ruby
x0f has quit [Ping timeout: 268 seconds]
passcod has joined #ruby
SegFaultAX has quit [Ping timeout: 268 seconds]
cbetta has joined #ruby
SegFaultAX has joined #ruby
S01780 has quit [Ping timeout: 268 seconds]
TDJACR has quit [Ping timeout: 268 seconds]
Mio-chan has quit [Quit: ZNC - http://znc.in]
Miron has joined #ruby
quazimodo has joined #ruby
x0f has joined #ruby
drbrain has quit [Ping timeout: 268 seconds]
alem0lars has quit [Ping timeout: 268 seconds]
joaomdmoura__ has joined #ruby
dukedave has quit [Read error: Connection reset by peer]
Guest21405 has joined #ruby
andersh has quit [Ping timeout: 268 seconds]
golgaroth has quit [Ping timeout: 244 seconds]
S01780 has joined #ruby
FastJack has joined #ruby
charles81 has quit [Ping timeout: 268 seconds]
Mio-chan has joined #ruby
dukedave has joined #ruby
[spoiler] has quit [Ping timeout: 268 seconds]
jimcroft_ has quit [Ping timeout: 268 seconds]
TDJACR has joined #ruby
quazimodo has quit [Remote host closed the connection]
machty has quit [Ping timeout: 244 seconds]
andersh has joined #ruby
deeprave has quit [Ping timeout: 268 seconds]
golgaroth has joined #ruby
quazimodo has joined #ruby
mostlybadfly has quit [Read error: Connection reset by peer]
alxndr has joined #ruby
amitchellbullard has quit [Ping timeout: 268 seconds]
deeprave has joined #ruby
Mia has joined #ruby
iooner has quit [Ping timeout: 268 seconds]
amitchellbullard has joined #ruby
charles81 has joined #ruby
jimcroft_ has joined #ruby
mostlybadfly has joined #ruby
ziyadb has joined #ruby
skweek has joined #ruby
S01780 has quit [Client Quit]
cbetta has quit [Ping timeout: 268 seconds]
jmcc_______ has quit [Ping timeout: 244 seconds]
Axy has quit [Ping timeout: 244 seconds]
cbetta has joined #ruby
alem0lars has joined #ruby
joaomdmoura__ has quit [Ping timeout: 268 seconds]
dnewkerk has joined #ruby
drbrain has joined #ruby
machty has joined #ruby
[spoiler] has joined #ruby
twistedpixels has quit [Ping timeout: 268 seconds]
jmcc_______ has joined #ruby
ELLIOTTCABLE has quit [Ping timeout: 268 seconds]
jabreity has quit [Ping timeout: 268 seconds]
DmitryBochkarev has joined #ruby
joaomdmoura__ has joined #ruby
DanKnox has quit [Excess Flood]
DanKnox has joined #ruby
pawnbox has joined #ruby
iooner has joined #ruby
Mr_Pancake has quit [Ping timeout: 268 seconds]
tonini has quit [Ping timeout: 268 seconds]
jabreity has joined #ruby
terminalrecluse has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Axy has joined #ruby
Axy has quit [Changing host]
Axy has joined #ruby
uglybandersnatch has quit [Ping timeout: 276 seconds]
djbkd has joined #ruby
tonini has joined #ruby
c355e3b has quit [Quit: Connection closed for inactivity]
nisstyre_ has quit [Ping timeout: 268 seconds]
Mia has quit [Ping timeout: 276 seconds]
twistedpixels has joined #ruby
queequeg1 has quit [Remote host closed the connection]
ELLIOTTCABLE has joined #ruby
alxndr has quit [Ping timeout: 268 seconds]
golgaroth has quit [Ping timeout: 268 seconds]
pawnbox has quit [Ping timeout: 276 seconds]
golgaroth has joined #ruby
jabreity has quit [Ping timeout: 268 seconds]
twodayslate has quit [Ping timeout: 268 seconds]
<zacts> arthurix: there was a book, but I've never read it (and I'm a newbie)
<zacts> let me find it though
dojobo has quit [Ping timeout: 240 seconds]
mmasaki has quit [Ping timeout: 240 seconds]
ggherdov has joined #ruby
mmasaki has joined #ruby
Mr_Pancake has joined #ruby
<zacts> oops sorry arthurix
<zacts> my completion got confused
humblespoon has quit [Ping timeout: 252 seconds]
nando293921 has quit [Ping timeout: 260 seconds]
jabreity has joined #ruby
ramfjord has joined #ruby
twodayslate has joined #ruby
alxndr has joined #ruby
krobzaur_ has quit [Ping timeout: 244 seconds]
andersh has quit [Ping timeout: 268 seconds]
machty has quit [Ping timeout: 268 seconds]
Billias has quit [Ping timeout: 268 seconds]
alem0lars has quit [Ping timeout: 268 seconds]
SegFaultAX has quit [Ping timeout: 268 seconds]
bove has quit [Ping timeout: 268 seconds]
iooner has quit [Ping timeout: 268 seconds]
iooner has joined #ruby
mroth has quit [Ping timeout: 244 seconds]
andersh has joined #ruby
Billias has joined #ruby
ponga has joined #ruby
SegFaultAX has joined #ruby
eregi has joined #ruby
sondr3 has quit [Ping timeout: 260 seconds]
Mia has joined #ruby
Mia has quit [Changing host]
Mia has joined #ruby
dojobo has joined #ruby
cardoni has quit [Ping timeout: 268 seconds]
mroth has joined #ruby
deeprave has quit [Ping timeout: 268 seconds]
bove has joined #ruby
alem0lars has joined #ruby
err_ok has quit [Read error: Connection reset by peer]
Axy has quit [Ping timeout: 244 seconds]
cbetta has quit [Ping timeout: 268 seconds]
chouhoulis has joined #ruby
err_ok has joined #ruby
suffice has quit [Ping timeout: 260 seconds]
deeprave has joined #ruby
cbetta has joined #ruby
shtirlic has joined #ruby
jmcc_______ has quit [Ping timeout: 268 seconds]
Axy has joined #ruby
machty has joined #ruby
Kamilion has joined #ruby
cardoni has joined #ruby
jeanlinux has joined #ruby
ELLIOTTCABLE has quit [Ping timeout: 268 seconds]
TDJACR has quit [Ping timeout: 268 seconds]
Mia has quit [Ping timeout: 268 seconds]
jmcc_______ has joined #ruby
chouhoulis has quit [Ping timeout: 276 seconds]
iooner has quit [Ping timeout: 268 seconds]
suffice has joined #ruby
twodayslate has quit [Ping timeout: 268 seconds]
pawnbox has joined #ruby
iooner has joined #ruby
shelling__ has quit [Read error: Connection reset by peer]
Ebok has quit [Quit: Leaving]
jeanlinux has quit [Ping timeout: 260 seconds]
twodayslate has joined #ruby
bove has quit [Ping timeout: 268 seconds]
err_ok has quit [Ping timeout: 268 seconds]
shelling__ has joined #ruby
err_ok has joined #ruby
rdavila has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Axy has quit [Ping timeout: 244 seconds]
ggherdov has quit [Ping timeout: 268 seconds]
iooner has quit [Ping timeout: 268 seconds]
jmcc_______ has quit [Ping timeout: 268 seconds]
SegFaultAX has quit [Ping timeout: 268 seconds]
dukedave has quit [Ping timeout: 268 seconds]
nando293921 has joined #ruby
bove has joined #ruby
ELLIOTTCABLE has joined #ruby
dukedave_ has joined #ruby
bb010g has quit [Quit: Connection closed for inactivity]
Mia has joined #ruby
Mia has joined #ruby
SegFaultAX has joined #ruby
sfr^ has quit [Ping timeout: 268 seconds]
Mio-chan has quit [Ping timeout: 276 seconds]
sinkensabe has joined #ruby
Guest21405 has quit [Ping timeout: 268 seconds]
TDJACR has joined #ruby
vdamewood has quit [Quit: Life beckons.]
benlieb has quit [Quit: benlieb]
jmcc_______ has joined #ruby
blackmesa has joined #ruby
incomprehensibly has quit [Ping timeout: 268 seconds]
Guest21405 has joined #ruby
iooner has joined #ruby
sfr^ has joined #ruby
nisstyre_ has joined #ruby
daxroc has quit [Ping timeout: 268 seconds]
sinkensabe has quit [Ping timeout: 276 seconds]
deeprave has quit [Ping timeout: 268 seconds]
ggherdov has joined #ruby
daxroc has joined #ruby
sorah_ has quit [Ping timeout: 268 seconds]
incomprehensibly has joined #ruby
blackmesa has quit [Ping timeout: 244 seconds]
sorah_ has joined #ruby
cbetta has quit [Ping timeout: 268 seconds]
ramfjord has quit [Ping timeout: 276 seconds]
cbetta has joined #ruby
Snowy has joined #ruby
deeprave has joined #ruby
hogetaro has joined #ruby
Guest34101 has joined #ruby
andersh has quit [Read error: Connection reset by peer]
sfr^ has quit [Ping timeout: 268 seconds]
tonini has quit [Ping timeout: 268 seconds]
ddv has quit [Ping timeout: 268 seconds]
tonini has joined #ruby
andersh has joined #ruby
jabreity has quit [Ping timeout: 268 seconds]
Elysia has joined #ruby
sfr^ has joined #ruby
Elysia has quit [Max SendQ exceeded]
Snowy has quit [Ping timeout: 276 seconds]
Elysia has joined #ruby
ssm has quit [Ping timeout: 268 seconds]
Elysia has quit [Max SendQ exceeded]
jabreity has joined #ruby
ddv has joined #ruby
mroth_ has joined #ruby
SegFaultAX has quit [Ping timeout: 268 seconds]
mroth has quit [Ping timeout: 268 seconds]
machty has quit [Ping timeout: 268 seconds]
mroth_ is now known as mroth
ssm has joined #ruby
LoganG has quit [Quit: robots are cool]
SegFaultAX has joined #ruby
Elysia has joined #ruby
ggherdov has quit [Ping timeout: 268 seconds]
alem0lars has quit [Ping timeout: 268 seconds]
shanemcd has joined #ruby
shanemcd has quit [Remote host closed the connection]
ddv has quit [Ping timeout: 268 seconds]
LoganG has joined #ruby
machty_ has joined #ruby
zz_denym_ has quit [Ping timeout: 268 seconds]
quazimodo has quit [Ping timeout: 244 seconds]
zz_denym_ has joined #ruby
alxndr has quit [Ping timeout: 268 seconds]
ddv has joined #ruby
alem0lars has joined #ruby
solocshaw has quit [Ping timeout: 276 seconds]
Aviio has quit [Remote host closed the connection]
Guest21405 has quit [Ping timeout: 268 seconds]
passcod has quit [Ping timeout: 268 seconds]
alxndr has joined #ruby
michael_mbp has joined #ruby
sergey_makagon has joined #ruby
Rodya_ has quit [Remote host closed the connection]
ur5us has quit [Remote host closed the connection]
PlasmaStar has quit [Ping timeout: 245 seconds]
Guest21405 has joined #ruby
eregi has quit [Ping timeout: 260 seconds]
elifoster has quit [Ping timeout: 276 seconds]
pawnbox has quit [Remote host closed the connection]
sergey_makagon has quit [Ping timeout: 276 seconds]
passcod has joined #ruby
LoganG has quit [Ping timeout: 268 seconds]
LoganG has joined #ruby
eregi has joined #ruby
plonk_ is now known as plonk
PlasmaStar has joined #ruby
sneakerhax has quit [Ping timeout: 260 seconds]
PlasmaStar has quit [Excess Flood]
golgaroth has quit [Ping timeout: 268 seconds]
tulak has joined #ruby
william3 has joined #ruby
PlasmaStar has joined #ruby
saneax has quit [Ping timeout: 268 seconds]
golgaroth has joined #ruby
saneax_AFK has joined #ruby
saneax_AFK is now known as saneax
jimcroft_ has quit [Ping timeout: 268 seconds]
ggherdov has joined #ruby
nogic has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
PlasmaStar has quit [Excess Flood]
Guest21405 has quit [Ping timeout: 268 seconds]
ssm has quit [Ping timeout: 268 seconds]
tulak has quit [Ping timeout: 260 seconds]
william3 has quit [Ping timeout: 276 seconds]
ssm has joined #ruby
jimcroft_ has joined #ruby
nickjj_ has joined #ruby
PlasmaStar has joined #ruby
machty_ has quit [Ping timeout: 268 seconds]
hogetaro has quit [Ping timeout: 268 seconds]
chouhoulis has joined #ruby
thevaliantx has quit [Quit: Leaving]
MatthewsFace has joined #ruby
hogetaro has joined #ruby
iooner has quit [Ping timeout: 268 seconds]
zapata has joined #ruby
sunya7a_ has quit [Ping timeout: 268 seconds]
sunya7a_ has joined #ruby
MatthewsFace has quit [Remote host closed the connection]
gbailey has quit [Ping timeout: 244 seconds]
machty_ has joined #ruby
chouhoulis has quit [Ping timeout: 260 seconds]
iooner has joined #ruby
alem0lars has quit [Ping timeout: 268 seconds]
TDJACR has quit [Ping timeout: 268 seconds]
jmcc_______ has quit [Ping timeout: 268 seconds]
jmcc_______ has joined #ruby
sinkensabe has joined #ruby
alem0lars has joined #ruby
TDJACR has joined #ruby
rippa has joined #ruby
gbailey has joined #ruby
shelling__ has quit [Ping timeout: 244 seconds]
jonee has joined #ruby
MatthewsFace has joined #ruby
Elysia has quit [Ping timeout: 268 seconds]
shelling__ has joined #ruby
sinkensabe has quit [Ping timeout: 240 seconds]
ur5us has joined #ruby
vcoinminer has quit [Ping timeout: 268 seconds]
machty_ has quit [Ping timeout: 268 seconds]
vcoinminer has joined #ruby
dnewkerk has quit [Quit: dnewkerk]
golgaroth has quit [Ping timeout: 268 seconds]
blackmesa has joined #ruby
Rodya_ has joined #ruby
lxsameer has joined #ruby
golgaroth has joined #ruby
err_ok has quit [Read error: Connection reset by peer]
err_ok has joined #ruby
blackmesa has quit [Ping timeout: 244 seconds]
intrigueD has joined #ruby
alem0lars has quit [Ping timeout: 268 seconds]
PlasmaStar has quit [Ping timeout: 268 seconds]
machty_ has joined #ruby
jimcroft_ has quit [Ping timeout: 268 seconds]
alem0lars has joined #ruby
nickjj__ has joined #ruby
Guest34101 has quit [Ping timeout: 276 seconds]
Miron has quit [Ping timeout: 268 seconds]
pawnbox has joined #ruby
nickjj_ has quit [Ping timeout: 268 seconds]
jimcroft_ has joined #ruby
akitada has quit [Ping timeout: 246 seconds]
Miron has joined #ruby
akitada has joined #ruby
PlasmaStar has joined #ruby
joaomdmoura__ has quit [Ping timeout: 268 seconds]
eregi has quit [Ping timeout: 276 seconds]
deeprave has quit [Ping timeout: 268 seconds]
joaomdmoura__ has joined #ruby
sfr^ has quit [Ping timeout: 268 seconds]
pdoherty has joined #ruby
deeprave has joined #ruby
catbusters has quit [Ping timeout: 268 seconds]
dukedave_ has quit [Ping timeout: 268 seconds]
PlasmaStar has quit [Ping timeout: 268 seconds]
sfr^ has joined #ruby
sfr^ has quit [Changing host]
sfr^ has joined #ruby
Channel6 has quit [Quit: Leaving]
spuk has quit [Ping timeout: 246 seconds]
catbusters has joined #ruby
marcosdsanchez has quit [Read error: Connection reset by peer]
okdas has quit [Ping timeout: 246 seconds]
andersh has quit [Ping timeout: 268 seconds]
kent\n has quit [Read error: Connection reset by peer]
Rodya_ has quit [Remote host closed the connection]
kent\n has joined #ruby
jonee has quit [Ping timeout: 248 seconds]
Rodya_ has joined #ruby
x77686d has quit [Quit: x77686d]
andersh has joined #ruby
PlasmaStar has joined #ruby
dukedave_ has joined #ruby
okdas has joined #ruby
okdas has quit [Changing host]
okdas has joined #ruby
thevaliantx has joined #ruby
MrDoctor has quit [Ping timeout: 260 seconds]
Don_John has quit [Read error: Connection reset by peer]
alem0lars has quit [Ping timeout: 268 seconds]
dualbus has quit [Ping timeout: 246 seconds]
iooner has quit [Ping timeout: 268 seconds]
mostlybadfly has quit [Ping timeout: 244 seconds]
MrDoctor has joined #ruby
iooner has joined #ruby
PlasmaStar has quit [Ping timeout: 268 seconds]
alem0lars has joined #ruby
mostlybadfly has joined #ruby
dualbus has joined #ruby
Guest94464 has quit [Ping timeout: 268 seconds]
PlasmaStar has joined #ruby
alxndr has quit [Ping timeout: 268 seconds]
norc has joined #ruby
eregi has joined #ruby
Outlastsheep has joined #ruby
alxndr has joined #ruby
Seich has quit [Ping timeout: 268 seconds]
hollywood has quit [Ping timeout: 268 seconds]
pdoherty has quit [Ping timeout: 244 seconds]
chouhoulis has joined #ruby
Guest41563 has joined #ruby
drbrain has quit [Ping timeout: 268 seconds]
Seich has joined #ruby
safe has quit [Read error: Connection reset by peer]
drbrain has joined #ruby
sinkensabe has joined #ruby
Tempesta has quit [Ping timeout: 246 seconds]
akitada has quit [Ping timeout: 268 seconds]
Tempesta has joined #ruby
jeanlinux has joined #ruby
akitada has joined #ruby
jonee has joined #ruby
hollywood has joined #ruby
ponga has quit [Ping timeout: 268 seconds]
lele has quit [Ping timeout: 268 seconds]
x77686d has joined #ruby
x77686d has quit [Remote host closed the connection]
chouhoulis has quit [Ping timeout: 276 seconds]
iooner has quit [Ping timeout: 268 seconds]
jabreity has quit [Ping timeout: 268 seconds]
drbrain has quit [Ping timeout: 268 seconds]
jabreity has joined #ruby
intrigueD has quit [Remote host closed the connection]
ponga has joined #ruby
sinkensabe has quit [Ping timeout: 276 seconds]
jeanlinux has quit [Ping timeout: 260 seconds]
ziyadb has quit [Read error: Connection reset by peer]
lele has joined #ruby
iooner has joined #ruby
akitada has quit [Ping timeout: 268 seconds]
drbrain has joined #ruby
Rodya_ has quit [Remote host closed the connection]
daxroc has quit [Ping timeout: 268 seconds]
akitada has joined #ruby
MatthewsFace has quit [Remote host closed the connection]
uglybandersnatch has joined #ruby
ponga has quit [Ping timeout: 268 seconds]
ddv has quit [Ping timeout: 268 seconds]
cbetta has quit [Ping timeout: 268 seconds]
ddv has joined #ruby
Guest4638 has quit [Ping timeout: 246 seconds]
cbetta has joined #ruby
daxroc has joined #ruby
jmcc_______ has quit [Ping timeout: 268 seconds]
Paradox has quit [Ping timeout: 268 seconds]
MrDoctor has quit [Remote host closed the connection]
PlasmaStar has quit [Ping timeout: 268 seconds]
Synthead has joined #ruby
ponga has joined #ruby
blackmesa has joined #ruby
uglybandersnatch has quit [Ping timeout: 276 seconds]
Affix has joined #ruby
bqscott has joined #ruby
Affix is now known as Guest21275
eregi has quit [Ping timeout: 248 seconds]
jmcc_______ has joined #ruby
Coldblackice has quit [Ping timeout: 260 seconds]
brainslug has joined #ruby
akitada has quit [Ping timeout: 268 seconds]
lightheaded has joined #ruby
MrDoctor has joined #ruby
Paradox has joined #ruby
akitada has joined #ruby
UserInNeed has quit [Ping timeout: 244 seconds]
Authenticator has joined #ruby
blackmesa has quit [Ping timeout: 244 seconds]
uglybandersnatch has joined #ruby
UserInNeed has joined #ruby
Guest21275 has quit [Ping timeout: 252 seconds]
peteyg has quit [Ping timeout: 276 seconds]
brainslug has quit [Ping timeout: 252 seconds]
sergey_makagon has joined #ruby
Authenticator has quit [Ping timeout: 252 seconds]
bqscott has quit [Ping timeout: 252 seconds]
Synthead has quit [Ping timeout: 252 seconds]
sergey_makagon has quit [Ping timeout: 248 seconds]
Affix-Phobos has joined #ruby
sindork has quit [Ping timeout: 264 seconds]
machty_ has quit [Ping timeout: 268 seconds]
psmolen_ has quit [Ping timeout: 264 seconds]
uglybandersnatch has quit [Ping timeout: 276 seconds]
Coldblackice has joined #ruby
graphettion has quit [Remote host closed the connection]
eregi has joined #ruby
PlasmaStar has joined #ruby
nofxx has quit [Ping timeout: 268 seconds]
lightheaded has quit [Remote host closed the connection]
Google has joined #ruby
infra-red has joined #ruby
MatthewsFace has joined #ruby
eregi has quit [Ping timeout: 276 seconds]
golgaroth has quit [Ping timeout: 268 seconds]
machty_ has joined #ruby
infra-re_ has joined #ruby
PlasmaStar has quit [Ping timeout: 268 seconds]
MatthewsFace has quit [Remote host closed the connection]
DanKnox has quit [Excess Flood]
kent\n has quit [Ping timeout: 268 seconds]
DanKnox has joined #ruby
psmolen has joined #ruby
sindork has joined #ruby
Google is now known as e
infra-red has quit [Ping timeout: 248 seconds]
golgaroth has joined #ruby
akitada has quit [Ping timeout: 268 seconds]
dukedave_ has quit [Ping timeout: 244 seconds]
bqscott has joined #ruby
amitchellbullard has quit [Ping timeout: 268 seconds]
akitada has joined #ruby
kent\n has joined #ruby
PlasmaStar has joined #ruby
dukedave_ has joined #ruby
Guest41563 is now known as CrazEd
CrazEd is now known as Guest13777
jonee has quit [Ping timeout: 268 seconds]
amitchellbullard has joined #ruby
tulak has joined #ruby
bronson has joined #ruby
drale2k has quit [Ping timeout: 268 seconds]
drale2k has joined #ruby
Guest21405 has joined #ruby
Oog has joined #ruby
incomprehensibly has quit [Ping timeout: 268 seconds]
Abrin_AWAY2 has quit [Quit: Nettalk6 - www.ntalk.de]
tulak has quit [Ping timeout: 276 seconds]
peteyg has joined #ruby
bronson has quit [Ping timeout: 276 seconds]
djellemah has joined #ruby
eregi has joined #ruby
Abrin_AWAY has joined #ruby
incomprehensibly has joined #ruby
shanemcd has joined #ruby
chouhoulis has joined #ruby
IanV0rn2341 has joined #ruby
stevemackinnon has joined #ruby
mostlybadfly has quit [Ping timeout: 268 seconds]
zast has quit [Ping timeout: 268 seconds]
mostlybadfly has joined #ruby
IanV0rn2341 has quit [Read error: Connection reset by peer]
Affix-Phobos is now known as Affix
shanemcd has quit [Ping timeout: 260 seconds]
zast has joined #ruby
Affix is now known as Guest24280
chouhoulis has quit [Ping timeout: 260 seconds]
lukebyrne has joined #ruby
andersh has quit [Ping timeout: 268 seconds]
IanV0rn2341 has joined #ruby
eregi has quit [Ping timeout: 268 seconds]
vdamewood has joined #ruby
andersh has joined #ruby
sebyx07 has joined #ruby
<sebyx07> does anyone know how to use java8 lambads in jruby https://gist.github.com/sebyx07/7a116d89e0b7a74a833f/edit ?
nando293921 has quit [Ping timeout: 276 seconds]
norc_ has joined #ruby
b|ackwolf has quit [Ping timeout: 260 seconds]
jimcroft_ has quit [Ping timeout: 268 seconds]
Dimik has quit [Ping timeout: 276 seconds]
infra-re_ has quit []
Elysia has joined #ruby
IanV0rn2341 has quit [Read error: No route to host]
andersh has quit [Ping timeout: 268 seconds]
lukebyrne has quit [Quit: lukebyrne]
vali has quit [Ping timeout: 268 seconds]
norc has quit [Ping timeout: 268 seconds]
codecop has joined #ruby
alem0lars has quit [Ping timeout: 268 seconds]
jimcroft_ has joined #ruby
sfr^ has quit [Ping timeout: 268 seconds]
stevemac_ has joined #ruby
andersh has joined #ruby
stevemackinnon has quit [Read error: Connection reset by peer]
steffkes has joined #ruby
ta__ has quit [Remote host closed the connection]
IanV0rn2341 has joined #ruby
vali has joined #ruby
jeanlinux has joined #ruby
Elysia has quit [Ping timeout: 268 seconds]
akitada has quit [Ping timeout: 268 seconds]
blackmesa has joined #ruby
alem0lars has joined #ruby
sfr^ has joined #ruby
mlehrer has joined #ruby
IanV0rn2341 has quit [Max SendQ exceeded]
cbetta has quit [Ping timeout: 268 seconds]
err_ok has quit [Ping timeout: 268 seconds]
eregi has joined #ruby
Abrin_AWAY has quit [Ping timeout: 276 seconds]
akitada has joined #ruby
cbetta has joined #ruby
err_ok has joined #ruby
codecop has quit [Remote host closed the connection]
blackmesa has quit [Ping timeout: 248 seconds]
djbkd has quit [Remote host closed the connection]
Arcaire_ has quit [Ping timeout: 268 seconds]
Guest21405 has quit [Ping timeout: 268 seconds]
Guest21405 has joined #ruby
jeanlinux has quit [Remote host closed the connection]
jonee has joined #ruby
zenlot1 has quit [Quit: WeeChat 1.1.1]
UserInNeed has quit [Ping timeout: 244 seconds]
sinkensa_ has joined #ruby
eregi has quit [Ping timeout: 276 seconds]
zenlot has joined #ruby
UserInNeed has joined #ruby
Arcaire_ has joined #ruby
Ishido has quit [Remote host closed the connection]
moeabdol3 has joined #ruby
machty_ has quit [Ping timeout: 268 seconds]
UserInNeed has quit [Ping timeout: 248 seconds]
UserInNeed has joined #ruby
Ishido has joined #ruby
lele has quit [Ping timeout: 268 seconds]
lightheaded has joined #ruby
flughafen_ has joined #ruby
PlasmaStar has quit [Ping timeout: 268 seconds]
LoganG has quit [Quit: robots are cool]
andersh has quit [Read error: Connection reset by peer]
DarthGandalf has quit [Ping timeout: 250 seconds]
golgaroth has quit [Read error: Connection reset by peer]
lele has joined #ruby
golgaroth has joined #ruby
MrDoctor has quit [Ping timeout: 246 seconds]
LoganG has joined #ruby
sandstrom has joined #ruby
MrDoctor has joined #ruby
robbyoconnor has joined #ruby
andersh has joined #ruby
akitada has quit [Ping timeout: 268 seconds]
iooner has quit [Ping timeout: 268 seconds]
machty_ has joined #ruby
PlasmaStar has joined #ruby
akitada has joined #ruby
sindork has quit [Ping timeout: 268 seconds]
sindork has joined #ruby
iooner has joined #ruby
djbkd has joined #ruby
marcdel has joined #ruby
cajone has quit [Ping timeout: 276 seconds]
golgaroth has quit [Ping timeout: 268 seconds]
marcdel has quit [Max SendQ exceeded]
b|ackwolf has joined #ruby
arthurnn_ has quit [Ping timeout: 246 seconds]
arthurnn has joined #ruby
sinkensa_ has quit [Remote host closed the connection]
devbug has quit [Read error: Connection reset by peer]
norc__ has joined #ruby
golgaroth has joined #ruby
Guest13777 is now known as CrazEd
incomprehensibly has quit [Ping timeout: 268 seconds]
CrazEd is now known as Guest94713
ggherdov has quit [Ping timeout: 244 seconds]
_ht has joined #ruby
ssm has quit [Ping timeout: 268 seconds]
machty_ has quit [Ping timeout: 268 seconds]
norc_ has quit [Ping timeout: 248 seconds]
incomprehensibly has joined #ruby
kirillzh has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
ssm has joined #ruby
vikas027 has joined #ruby
err_ok has quit [Ping timeout: 268 seconds]
vcoinminer has quit [Ping timeout: 268 seconds]
Spami has joined #ruby
jonee has quit [Ping timeout: 276 seconds]
err_ok has joined #ruby
S01780 has joined #ruby
Oog has quit []
the_drow has joined #ruby
vcoinminer has joined #ruby
TDJACR has quit [Ping timeout: 268 seconds]
marcdel has joined #ruby
marcdel has quit [Max SendQ exceeded]
machty_ has joined #ruby
marcdel has joined #ruby
mroth has quit [Ping timeout: 268 seconds]
gguggi has quit [Ping timeout: 246 seconds]
ggherdov has joined #ruby
bubbys has joined #ruby
mroth has joined #ruby
j3r0 has joined #ruby
DarthGandalf has joined #ruby
chouhoulis has joined #ruby
<vikas027> Hello Everyone, I am trying to XML-RPC as suggested over here https://www.dokuwiki.org/devel:xmlrpc. This code https://dpaste.de/DX9i works fine if I enable everyone to make API calls through which I can login to the dokuwiki. How can I make this code work when I have a particular user 'apiuser' only to make API calls, pls see this https://dpaste.de/Bbsz. I understand that the 'dokuwiki.login' works but not the subsequent commands,
<vikas027> since the scope of the first call ends after it is executed.
sebyx07 has quit [Ping timeout: 276 seconds]
Guest21405 has quit [Ping timeout: 268 seconds]
csaunders has quit [Ping timeout: 264 seconds]
cout has quit [Ping timeout: 244 seconds]
Eiam_ has quit [Ping timeout: 244 seconds]
junior2 has quit [Ping timeout: 244 seconds]
tessier-ashpool has quit [Ping timeout: 244 seconds]
cout has joined #ruby
chouhoulis has quit [Ping timeout: 276 seconds]
csaunders has joined #ruby
tokik has quit [Ping timeout: 244 seconds]
irick has quit [Ping timeout: 244 seconds]
sergey_makagon has joined #ruby
marcdel has quit [Ping timeout: 244 seconds]
pragmatism_ has quit [Ping timeout: 244 seconds]
tessier-ashpool has joined #ruby
dopamean_ has quit [Ping timeout: 244 seconds]
tokik has joined #ruby
justinmcp_ has quit [Ping timeout: 244 seconds]
justinmcp has joined #ruby
tulak has joined #ruby
irick has joined #ruby
UserInNeed has quit [Ping timeout: 244 seconds]
machty_ has quit [Ping timeout: 268 seconds]
ggherdov has quit [Ping timeout: 268 seconds]
ericwood has quit [Ping timeout: 244 seconds]
TDJACR has joined #ruby
mostlybadfly has quit [Ping timeout: 268 seconds]
flughafen_ has quit [Ping timeout: 268 seconds]
dopamean_ has joined #ruby
UserInNeed has joined #ruby
PlasmaStar has quit [Ping timeout: 268 seconds]
whiteline has joined #ruby
cajone has joined #ruby
mostlybadfly has joined #ruby
golgaroth has quit [Ping timeout: 268 seconds]
ggherdov has joined #ruby
PlasmaStar has joined #ruby
pragmatism has joined #ruby
junior2 has joined #ruby
stevemac_ has quit [Remote host closed the connection]
golgaroth has joined #ruby
ta_ has joined #ruby
n008f4g_ has joined #ruby
andersh has quit [Ping timeout: 244 seconds]
marcdel has joined #ruby
blackmesa has joined #ruby
machty_ has joined #ruby
pragmatism has quit [Ping timeout: 245 seconds]
pragmatism has joined #ruby
iooner has quit [Ping timeout: 268 seconds]
Snowy has joined #ruby
flughafen_ has joined #ruby
iooner has joined #ruby
ericwood has joined #ruby
andersh has joined #ruby
iooner has quit [Excess Flood]
lightheaded has quit [Ping timeout: 268 seconds]
iooner has joined #ruby
ta__ has joined #ruby
machty_ has quit [Ping timeout: 268 seconds]
spastorino has quit [Ping timeout: 268 seconds]
pandaant has joined #ruby
Gasher has joined #ruby
jeanlinux has joined #ruby
mroth has quit [Ping timeout: 268 seconds]
Snowy has quit [Ping timeout: 248 seconds]
ta_ has quit [Ping timeout: 260 seconds]
spastorino has joined #ruby
akitada has quit [Ping timeout: 268 seconds]
Arcaire_ has quit [Ping timeout: 244 seconds]
flughafen_ has quit [Ping timeout: 276 seconds]
mroth has joined #ruby
jonee has joined #ruby
ericwood has quit [Remote host closed the connection]
ericwood has joined #ruby
Jeremy1023 has joined #ruby
akitada has joined #ruby
ggherdov has quit [Ping timeout: 268 seconds]
Arcaire_ has joined #ruby
djbkd has quit [Remote host closed the connection]
DanKnox has quit [Excess Flood]
Fridtjof has quit [Ping timeout: 268 seconds]
DanKnox has joined #ruby
FooMunki has joined #ruby
FooMunki has quit [Client Quit]
wedgwood has joined #ruby
FooMunki has joined #ruby
iooner has quit [Ping timeout: 268 seconds]
iooner has joined #ruby
alexherbo2 has quit [Quit: WeeChat 1.4]
ur5us has quit [Remote host closed the connection]
marr has joined #ruby
ta__ has quit [Ping timeout: 245 seconds]
Jeremy1023 has quit [Ping timeout: 276 seconds]
Cohedrin has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Fridtjof has joined #ruby
marr has quit [Client Quit]
LoganG has quit [Ping timeout: 268 seconds]
deeprave has quit [Ping timeout: 268 seconds]
FooMunki has quit [Client Quit]
marr has joined #ruby
FooMunki has joined #ruby
LoganG has joined #ruby
kfpratt has joined #ruby
deeprave has joined #ruby
twodayslate has quit [Ping timeout: 244 seconds]
twodayslate has joined #ruby
_kfpratt has quit [Ping timeout: 276 seconds]
ggherdov has joined #ruby
quazimodo has joined #ruby
steffkes has quit [Ping timeout: 268 seconds]
Contigi777 has quit [Ping timeout: 244 seconds]
tjohnson has quit [Quit: Connection closed for inactivity]
Arcaire_ has quit [Ping timeout: 268 seconds]
akitada has quit [Ping timeout: 268 seconds]
mostlybadfly has quit [Ping timeout: 268 seconds]
Arcaire_ has joined #ruby
Guest94713 is now known as CrazEd
akitada has joined #ruby
sinkensabe has joined #ruby
CrazEd is now known as Guest75271
sinkensabe has quit [Remote host closed the connection]
uglybandersnatch has joined #ruby
vikas027 has left #ruby ["Textual IRC Client: www.textualapp.com"]
mostlybadfly has joined #ruby
<the_drow> What does !!variable means? I'm assuming it's not not. Why would anyone do that?
bronson has joined #ruby
<apeiros> the_drow: "convert" to boolean
<apeiros> >> !!"value"
<ruby[bot]> apeiros: # => /tmp/execpad-9174785478b8/source-9174785478b8:2: warning: string literal in condition ...check link for more (https://eval.in/526817)
<apeiros> meep
<the_drow> Oh
<apeiros> >> x="value"; !!x
<ruby[bot]> apeiros: # => true (https://eval.in/526819)
<apeiros> >> x=nil; !!x
<ruby[bot]> apeiros: # => false (https://eval.in/526820)
<the_drow> That's the strangest syntax I've seen in ruby so far
<the_drow> Oh well
SegFaultAX has quit [Ping timeout: 268 seconds]
machty_ has joined #ruby
DmitryBochkarev has quit [Quit: This computer has gone to sleep]
boxrick1 has quit [Ping timeout: 244 seconds]
ggherdov has quit [Ping timeout: 268 seconds]
DmitryBochkarev has joined #ruby
S01780 has quit [Ping timeout: 268 seconds]
boxrick1 has joined #ruby
bronson has quit [Ping timeout: 260 seconds]
brianherman has joined #ruby
SegFaultAX has joined #ruby
PlasmaStar has quit [Ping timeout: 268 seconds]
atmosx has joined #ruby
S01780 has joined #ruby
tonini has quit [Ping timeout: 268 seconds]
justbleed has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
atmosx has quit [Max SendQ exceeded]
steffkes has joined #ruby
LoganG has quit [Ping timeout: 268 seconds]
chouhoulis has joined #ruby
jonee has quit [Ping timeout: 248 seconds]
LoganG has joined #ruby
quazimodo has quit [Remote host closed the connection]
tonini has joined #ruby
ggherdov has joined #ruby
lele has quit [Ping timeout: 268 seconds]
PlasmaStar has joined #ruby
atmosx has joined #ruby
malcolmva has quit [Ping timeout: 244 seconds]
michae has left #ruby ["WeeChat 1.1.1"]
Seich has quit [Ping timeout: 268 seconds]
chouhoulis has quit [Ping timeout: 276 seconds]
Seich has joined #ruby
justbleed has joined #ruby
machty_ has quit [Ping timeout: 268 seconds]
aredridel has quit [Ping timeout: 268 seconds]
Ankhers has quit [Ping timeout: 244 seconds]
Gasher has quit [Ping timeout: 260 seconds]
quazimodo has joined #ruby
y2mq37 has joined #ruby
lele has joined #ruby
aredridel has joined #ruby
machty_ has joined #ruby
BtcBen has quit [Ping timeout: 276 seconds]
duckpupp1 has joined #ruby
ledestin has joined #ruby
quazimodo has quit [Ping timeout: 268 seconds]
tjbiddle has joined #ruby
ledestin has quit [Client Quit]
Ankhers has joined #ruby
ggherdov has quit [Ping timeout: 268 seconds]
y2mq37 has quit [Ping timeout: 244 seconds]
SegFaultAX has quit [Ping timeout: 268 seconds]
cbetta has quit [Ping timeout: 268 seconds]
ddv has quit [Ping timeout: 268 seconds]
alem0lars has quit [Ping timeout: 268 seconds]
duckpupp1 has quit [Ping timeout: 276 seconds]
y2mq37 has joined #ruby
SegFaultAX has joined #ruby
cbetta has joined #ruby
alem0lars has joined #ruby
ddv has joined #ruby
malcolmva has joined #ruby
Arcaire_ has quit [Ping timeout: 268 seconds]
Gasher has joined #ruby
Pupeno has quit [Remote host closed the connection]
Elysia has joined #ruby
Mio-chan has joined #ruby
lukebyrne has joined #ruby
Authenticator has joined #ruby
drbrain has quit [Ping timeout: 268 seconds]
wjimenez5271 has joined #ruby
drbrain has joined #ruby
lukebyrne has quit [Client Quit]
skade has joined #ruby
Synthead has joined #ruby
linduxed has joined #ruby
Pupeno has joined #ruby
cj__ has joined #ruby
Arcaire_ has joined #ruby
brainslug has joined #ruby
PlasmaStar has quit [Ping timeout: 268 seconds]
Gnut has joined #ruby
ggherdov has joined #ruby
y2mq37 has quit [Ping timeout: 268 seconds]
llua has quit [Ping timeout: 268 seconds]
llua has joined #ruby
tonini has quit [Ping timeout: 268 seconds]
weaksauce has quit [Ping timeout: 244 seconds]
Snowy has joined #ruby
bestie has quit [Ping timeout: 260 seconds]
frode15243 has quit [Ping timeout: 260 seconds]
skade has quit [Ping timeout: 252 seconds]
brainslug has quit [Ping timeout: 252 seconds]
tonini has joined #ruby
Gasher has quit [Read error: Connection reset by peer]
Authenticator has quit [Ping timeout: 252 seconds]
frode15243 has joined #ruby
bestie has joined #ruby
cj__ has quit [Ping timeout: 252 seconds]
Synthead has quit [Ping timeout: 252 seconds]
dlitvak has joined #ruby
steffkes has quit [Ping timeout: 276 seconds]
Snowy has quit [Ping timeout: 260 seconds]
dlitvak has quit [Remote host closed the connection]
steffkes has joined #ruby
steffkes has quit [Changing host]
steffkes has joined #ruby
wjimenez5271 has quit [Ping timeout: 247 seconds]
chris2 has quit [Ping timeout: 264 seconds]
sinkensabe has joined #ruby
Spami has quit [Ping timeout: 244 seconds]
justbleed has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
wjimenez5271 has joined #ruby
SegFaultAX has quit [Ping timeout: 268 seconds]
monashko2 has quit [Remote host closed the connection]
SegFaultAX has joined #ruby
brianherman has quit [Quit: Page closed]
blackmesa has quit [Ping timeout: 248 seconds]
ready has joined #ruby
sinkensabe has quit [Ping timeout: 260 seconds]
Gnut has quit [Ping timeout: 244 seconds]
Coldblackice has quit []
wjimenez5271 has quit [Ping timeout: 248 seconds]
postmodern has quit [Quit: Leaving]
tomphp has joined #ruby
mhoungbo has joined #ruby
tjbiddle has quit [Ping timeout: 276 seconds]
SegFaultAX has quit [Ping timeout: 268 seconds]
laith has joined #ruby
djsmentya has joined #ruby
sandstrom has quit [Quit: My computer has gone to sleep.]
akitada has quit [Ping timeout: 244 seconds]
mlehrer has quit [Quit: Leaving]
wjimenez5271 has joined #ruby
Pupeno has quit [Remote host closed the connection]
alol has quit [Remote host closed the connection]
akitada has joined #ruby
Gasher has joined #ruby
Guest75271 is now known as CrazEd
skade has joined #ruby
CrazEd is now known as Guest17041
SegFaultAX has joined #ruby
uglybandersnatch has quit [Ping timeout: 276 seconds]
chris2 has joined #ruby
peteyg has quit [Ping timeout: 248 seconds]
wjimenez5271 has quit [Ping timeout: 248 seconds]
skade has quit [Client Quit]
bronson has joined #ruby
Spami has joined #ruby
Spami has quit [Client Quit]
tomphp has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
sinkensabe has joined #ruby
astrobunny has joined #ruby
uglybandersnatch has joined #ruby
wjimenez5271 has joined #ruby
hightower2 has quit [Ping timeout: 276 seconds]
sepp2k has joined #ruby
justbleed has joined #ruby
boxrick1 has quit [Ping timeout: 268 seconds]
machty_ has quit [Ping timeout: 268 seconds]
yonatankoren has joined #ruby
pandaant has quit [Remote host closed the connection]
bronson has quit [Ping timeout: 276 seconds]
deeprave has quit [Ping timeout: 268 seconds]
dlitvak has joined #ruby
drbrain has quit [Ping timeout: 268 seconds]
bkxd has joined #ruby
aces1up has joined #ruby
<aces1up> hey, i ususally develop on cloud9 ide.. I was wondering for a ruby standalone what would be a good package/system i can use along with git to auto push my app/gems/etc to my deployment server?
<aces1up> and update etc..
chouhoulis has joined #ruby
boxrick1 has joined #ruby
deeprave has joined #ruby
shtirlic has quit [Ping timeout: 268 seconds]
alem0lars has quit [Ping timeout: 268 seconds]
wjimenez5271 has quit [Ping timeout: 248 seconds]
allcentury has joined #ruby
wjimenez5271 has joined #ruby
Guest21405 has joined #ruby
chouhoulis has quit [Ping timeout: 276 seconds]
machty_ has joined #ruby
thevaliantx_ has joined #ruby
uglybandersnatch has quit [Ping timeout: 260 seconds]
b|ackwolf has quit [Ping timeout: 244 seconds]
shtirlic has joined #ruby
wjimenez5271 has quit [Ping timeout: 248 seconds]
alem0lars has joined #ruby
jimcroft_ has quit [Ping timeout: 268 seconds]
drbrain has joined #ruby
thevaliantx has quit [Quit: Leaving]
jimcroft_ has joined #ruby
wjimenez5271 has joined #ruby
sinkensabe has quit [Read error: Connection reset by peer]
the_last has left #ruby [#ruby]
dlitvak has quit [Remote host closed the connection]
bollullera has joined #ruby
sinkensabe has joined #ruby
golgaroth has quit [Ping timeout: 268 seconds]
trajing has quit [Quit: ZNC - 1.6.0 - http://znc.in]
dlitvak has joined #ruby
Suntzu has quit [Quit: changing servers]
steffkes has quit [Ping timeout: 248 seconds]
golgaroth has joined #ruby
camilasann has quit [Ping timeout: 246 seconds]
twodayslate has quit [Ping timeout: 268 seconds]
bollullera has left #ruby [#ruby]
Suntzu has joined #ruby
dlitvak has quit [Remote host closed the connection]
NeverTired has quit [Quit: Connection closed for inactivity]
wjimenez5271 has quit [Ping timeout: 248 seconds]
dlitvak_ has joined #ruby
aces1up has quit []
camilasan has joined #ruby
akitada has quit [Ping timeout: 268 seconds]
ItSANgo has joined #ruby
andersh has quit [Ping timeout: 268 seconds]
wjimenez5271 has joined #ruby
MrDoctor has quit [Ping timeout: 260 seconds]
bkxd has quit [Ping timeout: 268 seconds]
twodayslate has joined #ruby
mhoungbo has quit [Ping timeout: 276 seconds]
dlitvak_ has quit [Remote host closed the connection]
blackmesa has joined #ruby
trifling-jest has joined #ruby
andersh has joined #ruby
Seich has quit [Ping timeout: 268 seconds]
vdamewood has quit [Quit: Life beckons.]
akitada has joined #ruby
binaryplease has joined #ruby
nickjj__ is now known as nickjj
Pupeno has joined #ruby
steffkes has joined #ruby
steffkes has joined #ruby
chris2 has quit [Ping timeout: 268 seconds]
Seich has joined #ruby
wedgwood has quit [Ping timeout: 268 seconds]
alxndr has quit [Ping timeout: 268 seconds]
wjimenez5271 has quit [Ping timeout: 248 seconds]
jimcroft_ has quit [Ping timeout: 268 seconds]
alxndr has joined #ruby
shelling__ has quit [Ping timeout: 268 seconds]
dionysus69 has joined #ruby
sinkensabe has quit [Remote host closed the connection]
LoganG has quit [Ping timeout: 268 seconds]
wjimenez5271 has joined #ruby
jimcroft_ has joined #ruby
LoganG has joined #ruby
dlitvak has joined #ruby
sfr^ has quit [Ping timeout: 268 seconds]
ta_ has joined #ruby
shelling__ has joined #ruby
mathappan has joined #ruby
sfr^ has joined #ruby
sinkensabe has joined #ruby
mathappan has left #ruby [#ruby]
moeabdol3 has quit [Quit: WeeChat 1.4]
mathappan has joined #ruby
FooMunki has quit [Quit: FooMunki]
j3r0 has quit [Ping timeout: 268 seconds]
FooMunki has joined #ruby
j3r0 has joined #ruby
ta_ has quit [Ping timeout: 276 seconds]
nickjj has quit [Ping timeout: 268 seconds]
tk__ has joined #ruby
alxndr has quit [Ping timeout: 268 seconds]
deeprave has quit [Ping timeout: 268 seconds]
wjimenez5271 has quit [Ping timeout: 248 seconds]
deeprave has joined #ruby
alxndr has joined #ruby
trajing has joined #ruby
mhoungbo has joined #ruby
moeabdol has joined #ruby
saneax has quit [Ping timeout: 268 seconds]
symm- has joined #ruby
saneax_AFK has joined #ruby
saneax_AFK is now known as saneax
wjimenez5271 has joined #ruby
catbusters has quit [Ping timeout: 268 seconds]
TDJACR has quit [Ping timeout: 268 seconds]
sinkensabe has quit [Read error: Connection reset by peer]
catbusters has joined #ruby
TDJACR has joined #ruby
TDJACR has quit [Changing host]
TDJACR has joined #ruby
thevaliantx_ has quit [Quit: Leaving]
michael_mbp has quit [Ping timeout: 268 seconds]
niko has quit [Quit: Reconnecting]
despai has joined #ruby
niko has joined #ruby
tylersmith has quit [Ping timeout: 268 seconds]
Guest17041 is now known as CrazEd
CrazEd is now known as Guest59879
despai has quit [Client Quit]
trinaldi has joined #ruby
justbleed has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
sinkensabe has joined #ruby
tomphp has joined #ruby
tylersmith has joined #ruby
incomprehensibly has quit [Ping timeout: 268 seconds]
klaas_ is now known as klaas
bronson has joined #ruby
sandstrom has joined #ruby
chris2 has joined #ruby
Pupeno has quit [Remote host closed the connection]
wjimenez5271 has quit [Ping timeout: 248 seconds]
incomprehensibly has joined #ruby
dlitvak has quit [Remote host closed the connection]
wjimenez5271 has joined #ruby
s00pcan_ has quit [Ping timeout: 276 seconds]
elaptics is now known as elaptics`away
sinkensabe has quit [Read error: Connection reset by peer]
malcolmva has quit [Ping timeout: 276 seconds]
sinkensabe has joined #ruby
bronson has quit [Ping timeout: 260 seconds]
scalper has joined #ruby
<scalper> hey
<scalper> Unable to locate package libapache2-mod-ruby
<scalper> i tried sudo apt-get install libapache2-mod-ruby
twistedpixels has quit [Ping timeout: 268 seconds]
<scalper> what is wrong?
dlitvak has joined #ruby
blackmesa has quit [Ping timeout: 248 seconds]
Pupeno has joined #ruby
twistedpixels has joined #ruby
eregi has joined #ruby
Spami has joined #ruby
<Gasher> hi, how to access the string if I'm modifying the String object prototype?
intrigueD has joined #ruby
s00pcan_ has joined #ruby
<apeiros> Gasher: sure you didn't want #javascript?
chouhoulis has joined #ruby
<Gasher> apeiros; I know how to do it in JS, but I don't know how to do it in Ruby
ready has quit [Remote host closed the connection]
<apeiros> because ruby doesn't do prototypical OO
<Gasher> I used JS terminology
despai has joined #ruby
<apeiros> ruby's self is =~ js' this
<Gasher> I have an assignment where I have to add a function to the string class
<Gasher> *String
<Gasher> so do I just use self to get the string?
<apeiros> yes
<Gasher> ok, thanks
<apeiros> be aware that modifying core classes is a code smell
tlaxkit has joined #ruby
<Gasher> what do you mean exactly?
william3 has joined #ruby
<apeiros> I mean that you should not do it unless you know what you're doing
<apeiros> and given your apparent level of expertise, I'd doubt that you do
<apeiros> (not meant as an offense)
wjimenez5271 has quit [Ping timeout: 248 seconds]
catbusters has quit [Ping timeout: 268 seconds]
s00pcan_ has quit [Read error: Connection reset by peer]
eregi has quit [Ping timeout: 260 seconds]
incomprehensibly has quit [Ping timeout: 268 seconds]
trifling-jest has quit [Quit: Leaving]
chouhoulis has quit [Ping timeout: 248 seconds]
<Gasher> apeiros; yeah sure. it's just that I'm on a website that gives assignments and that one included adding a method to the prototype (as I call it)
sfr^ has quit [Ping timeout: 268 seconds]
<apeiros> to the class
mlehrer has joined #ruby
<apeiros> there's no prototype
<apeiros> classes and modules are the containers for methods (no functions either)
binaryplease has quit [Quit: WeeChat 1.4]
catbusters has joined #ruby
johnmilton has joined #ruby
binaryplease has joined #ruby
<Gasher> yeah, to the String class
wjimenez5271 has joined #ruby
* Gasher is a JS developer that hates JS and loves Ruby
<apeiros> um, you don't need to do any allegiance vows in here ;-)
dlitvak has quit [Remote host closed the connection]
mintux has joined #ruby
johnmilton has quit [Max SendQ exceeded]
<Gasher> I know, but that's my true view
incomprehensibly has joined #ruby
johnmilton has joined #ruby
dlitvak has joined #ruby
binaryplease has quit [Client Quit]
trajing has quit [Quit: ZNC - 1.6.0 - http://znc.in]
s00pcan_ has joined #ruby
sfr^ has joined #ruby
johnmilton has quit [Max SendQ exceeded]
malcolmva has joined #ruby
DmitryBochkarev has quit [Quit: This computer has gone to sleep]
sergey_makagon has quit [Remote host closed the connection]
sinkensabe has quit [Read error: Connection reset by peer]
catbusters has quit [Ping timeout: 268 seconds]
binaryplease has joined #ruby
sevin has quit [Ping timeout: 268 seconds]
sinkensabe has joined #ruby
catbusters has joined #ruby
wjimenez5271 has quit [Ping timeout: 248 seconds]
DmitryBochkarev has joined #ruby
ready has joined #ruby
wjimenez5271 has joined #ruby
william3 has quit [Ping timeout: 276 seconds]
mikeiniowa has quit [Remote host closed the connection]
johnmilton has joined #ruby
mikeiniowa has joined #ruby
sfr^ has quit [Ping timeout: 268 seconds]
bkxd has joined #ruby
golgaroth has quit [Ping timeout: 268 seconds]
william3 has joined #ruby
sinkensabe has quit [Remote host closed the connection]
johnmilton has quit [Max SendQ exceeded]
duderonomy has joined #ruby
golgaroth has joined #ruby
wjimenez5271 has quit [Ping timeout: 248 seconds]
wjimenez5271 has joined #ruby
johnmilton has joined #ruby
houhouli_ has joined #ruby
c355e3b has joined #ruby
trajing has joined #ruby
decoponio has joined #ruby
sfr^ has joined #ruby
tfitts has joined #ruby
valeri_ufo has quit [Ping timeout: 264 seconds]
pfg has quit [Ping timeout: 264 seconds]
SirFunk has quit [Ping timeout: 264 seconds]
fumduq has quit [Ping timeout: 264 seconds]
bougyman has quit [Ping timeout: 264 seconds]
sinkensabe has joined #ruby
sinkensabe has quit [Read error: Connection reset by peer]
bafbomb_ has joined #ruby
sjums_ has joined #ruby
humd1ng3r has quit [Ping timeout: 264 seconds]
Lildirt has quit [Ping timeout: 264 seconds]
julieeharshaw has quit [Ping timeout: 264 seconds]
Amnez777 has quit [Ping timeout: 264 seconds]
wnd has quit [Ping timeout: 264 seconds]
bmn has quit [Ping timeout: 264 seconds]
houhoulis has quit [Ping timeout: 264 seconds]
bogdanteleaga has quit [Ping timeout: 264 seconds]
sjums has quit [Ping timeout: 264 seconds]
sjohnsen has quit [Ping timeout: 264 seconds]
gsingh93 has quit [Ping timeout: 264 seconds]
skakri has quit [Ping timeout: 264 seconds]
Fire-Dragon-DoL has quit [Ping timeout: 264 seconds]
sinkensabe has joined #ruby
quazimodo has joined #ruby
decoponi_ has joined #ruby
gregf__ has quit [Ping timeout: 264 seconds]
crankharder has quit [Ping timeout: 264 seconds]
gypsydave5 has quit [Ping timeout: 264 seconds]
bhaak has quit [Ping timeout: 264 seconds]
Sp4rKy has quit [Ping timeout: 264 seconds]
janno has quit [Ping timeout: 264 seconds]
tfittsy has quit [Ping timeout: 264 seconds]
mozzarel1 has quit [Ping timeout: 264 seconds]
Guest88480 has quit [Ping timeout: 264 seconds]
apeiros has quit [Ping timeout: 264 seconds]
_ko1 has quit [Ping timeout: 264 seconds]
Papierkorb has quit [Ping timeout: 264 seconds]
eam_ has quit [Ping timeout: 264 seconds]
C0deMaver1ck_ has quit [Ping timeout: 264 seconds]
M-Techni1 has quit [Ping timeout: 264 seconds]
jtoy has quit [Ping timeout: 264 seconds]
rvchangue has quit [Ping timeout: 264 seconds]
gregf has quit [Ping timeout: 264 seconds]
johnny56_ has quit [Ping timeout: 264 seconds]
Steve_Jo1 has quit [Ping timeout: 264 seconds]
lnx has quit [Ping timeout: 264 seconds]
bafbomb has quit [Ping timeout: 264 seconds]
Shapeshifter has quit [Ping timeout: 264 seconds]
iszak has quit [Ping timeout: 264 seconds]
avelldiroll has quit [Ping timeout: 264 seconds]
majoh has quit [Ping timeout: 264 seconds]
Nilium has quit [Ping timeout: 264 seconds]
j0bk has quit [Ping timeout: 264 seconds]
modin has quit [Ping timeout: 264 seconds]
bkxd has quit [Ping timeout: 260 seconds]
wnd has joined #ruby
houhoulis has joined #ruby
wlanboy has quit [Ping timeout: 264 seconds]
nlsun has quit [Ping timeout: 264 seconds]
brixen has quit [Ping timeout: 264 seconds]
fumk has quit [Ping timeout: 264 seconds]
Roa has quit [Ping timeout: 264 seconds]
RushPL has quit [Ping timeout: 264 seconds]
Guest82989 has quit [Ping timeout: 264 seconds]
sirecote_ has quit [Ping timeout: 264 seconds]
YaknotiS has quit [Ping timeout: 264 seconds]
kies^ has quit [Ping timeout: 264 seconds]
sauvin has quit [Ping timeout: 264 seconds]
kies has quit [Ping timeout: 264 seconds]
decoponyo has quit [Ping timeout: 264 seconds]
Scient has quit [Ping timeout: 264 seconds]
sarbs has quit [Ping timeout: 264 seconds]
xMopxShell has quit [Ping timeout: 264 seconds]
ghormoon_ has quit [Ping timeout: 264 seconds]
cats has quit [Ping timeout: 264 seconds]
yokel has quit [Ping timeout: 264 seconds]
stan has quit [Ping timeout: 264 seconds]
giraffe has quit [Ping timeout: 264 seconds]
Silex has quit [Ping timeout: 264 seconds]
Djole has quit [Ping timeout: 264 seconds]
ahuman has quit [Ping timeout: 264 seconds]
nug has quit [Ping timeout: 264 seconds]
lguardiola has quit [Ping timeout: 264 seconds]
programmerq has quit [Ping timeout: 264 seconds]
CustosLimen has quit [Ping timeout: 264 seconds]
bluntman has quit [Ping timeout: 264 seconds]
MuffinPimp has quit [Ping timeout: 264 seconds]
bier has quit [Ping timeout: 264 seconds]
Bish has quit [Ping timeout: 264 seconds]
__main__ has quit [Ping timeout: 264 seconds]
cookiez has quit [Ping timeout: 264 seconds]
heinrich5991 has quit [Ping timeout: 264 seconds]
sarlalian has quit [Ping timeout: 264 seconds]
jtoy has joined #ruby
eam has joined #ruby
lnx has joined #ruby
iszak has joined #ruby
pushcx has joined #ruby
iszak has quit [Changing host]
iszak has joined #ruby
janno has joined #ruby
pushcx is now known as Guest29949
Shapeshifter has joined #ruby
Roa has joined #ruby
bhaak has joined #ruby
fumk has joined #ruby
decoponi_ has quit [Max SendQ exceeded]
Sp4rKy has joined #ruby
mathappan has quit [Read error: Connection reset by peer]
valeri_ufo has joined #ruby
awk has joined #ruby
__main__ has joined #ruby
julieeharshaw has joined #ruby
avdi has quit [Ping timeout: 260 seconds]
crankharder has joined #ruby
yokel has joined #ruby
c355e3b has quit [Ping timeout: 268 seconds]
cdg has joined #ruby
sinkensabe has quit [Remote host closed the connection]
awk is now known as Guest97959
pfg has joined #ruby
decoponio has quit [Ping timeout: 257 seconds]
dukedave_ has quit [Ping timeout: 257 seconds]
deimos has quit [Ping timeout: 257 seconds]
bestie has quit [Ping timeout: 276 seconds]
ELLIOTTCABLE has quit [Ping timeout: 276 seconds]
cardoni has quit [Ping timeout: 276 seconds]
angiebadillo has quit [Ping timeout: 276 seconds]
sarbs has joined #ruby
hyperdrive has quit [Ping timeout: 246 seconds]
sevin has joined #ruby
decoponyo has joined #ruby
fumduq has joined #ruby
jonee has joined #ruby
mroth has quit [Ping timeout: 260 seconds]
daxroc has quit [Ping timeout: 260 seconds]
Lloyd has quit [Ping timeout: 260 seconds]
angiebadillo has joined #ruby
zipkid has quit [Ping timeout: 276 seconds]
schaary has quit [Ping timeout: 276 seconds]
Guest12896_ has quit [Ping timeout: 276 seconds]
gizmore has joined #ruby
krzkrzkrz has joined #ruby
ahuman has joined #ruby
sfr^ has quit [Ping timeout: 268 seconds]
spastorino has quit [Ping timeout: 268 seconds]
Lloyd has joined #ruby
Bish_ has joined #ruby
beawesomeinstead has quit [Ping timeout: 260 seconds]
deimos has joined #ruby
houhouli_ has quit [Ping timeout: 276 seconds]
swgillespie has quit [Ping timeout: 276 seconds]
beawesomeinstead has joined #ruby
Snowy has joined #ruby
skakri has joined #ruby
zipkid has joined #ruby
RushPL has joined #ruby
dukedave_ has joined #ruby
jtdoncas has quit [Ping timeout: 244 seconds]
Djole has joined #ruby
Djole has quit [Changing host]
Djole has joined #ruby
sjohnsen has joined #ruby
rflot has quit [Ping timeout: 276 seconds]
Papierkorb has joined #ruby
MuffinPimp has joined #ruby
brixen has joined #ruby
Scient has joined #ruby
Internet1riend has quit [Ping timeout: 260 seconds]
bougyman has joined #ruby
bestie has joined #ruby
j0bk has joined #ruby
C0deMaver1ck has joined #ruby
codecop has joined #ruby
cats has joined #ruby
Nilium has joined #ruby
Guest12896_ has joined #ruby
swgillespie has joined #ruby
humd1ng3r has joined #ruby
_ko1 has joined #ruby
ELLIOTTCABLE has joined #ruby
hyperdrive has joined #ruby
C0deMaver1ck is now known as Guest88888
lguardiola has joined #ruby
Lildirt has joined #ruby
skweek has quit [Read error: Connection reset by peer]
svkurowski has quit [Ping timeout: 246 seconds]
bmn has joined #ruby
bafbomb_ has quit [Ping timeout: 268 seconds]
tonini has quit [Ping timeout: 268 seconds]
daxroc has joined #ruby
bier has joined #ruby
SirFunk has joined #ruby
machty_ has quit [Ping timeout: 268 seconds]
S01780 has quit [Ping timeout: 268 seconds]
bafbomb has joined #ruby
wjimenez5271 has quit [Ping timeout: 248 seconds]
sirecote has joined #ruby
cardoni has joined #ruby
spastorino has joined #ruby
rflot has joined #ruby
rvchangue has joined #ruby
crankharder has quit [Ping timeout: 268 seconds]
wjimenez5271 has joined #ruby
giraffe has joined #ruby
schaary has joined #ruby
svkurowski has joined #ruby
xMopxShell has joined #ruby
decoponyo has quit [Ping timeout: 244 seconds]
mroth has joined #ruby
Fire-Dragon-DoL has joined #ruby
decoponio has joined #ruby
tonini has joined #ruby
avdi has joined #ruby
wlanboy has joined #ruby
twodayslate has quit [Ping timeout: 268 seconds]
DarkBushido has quit [Ping timeout: 268 seconds]
axisys has quit [Ping timeout: 268 seconds]
heinrich5991 has joined #ruby
nlsun has joined #ruby
jimcroft_ has quit [Ping timeout: 268 seconds]
Snowy has quit [Ping timeout: 276 seconds]
sjums_ has quit [Ping timeout: 276 seconds]
sjums has joined #ruby
gnarld_ has joined #ruby
humd1ng3r has quit [Ping timeout: 247 seconds]
M-Technic has joined #ruby
c355e3b has joined #ruby
humd1ng3r has joined #ruby
bestie has quit [Ping timeout: 268 seconds]
beawesomeinstead has quit [Ping timeout: 268 seconds]
jimcroft_ has joined #ruby
SirFunk has quit [Ping timeout: 268 seconds]
Guest21405 has quit [Ping timeout: 268 seconds]
ddv has quit [Ping timeout: 268 seconds]
DarkBushido has joined #ruby
gsingh93 has joined #ruby
twodayslate has joined #ruby
malcolmva has quit [Ping timeout: 276 seconds]
bestie has joined #ruby
ht_ has joined #ruby
Amnez777 has joined #ruby
bafbomb has quit [Ping timeout: 268 seconds]
majoh has joined #ruby
bafbomb has joined #ruby
YaknotiS has joined #ruby
stan has joined #ruby
jonee has quit [Ping timeout: 276 seconds]
ddv has joined #ruby
tomphp has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
gregf has joined #ruby
Silex has joined #ruby
scalper has quit [Quit: Page closed]
avelldiroll has joined #ruby
skade has joined #ruby
bluntman has joined #ruby
amitchellbullard has quit [Ping timeout: 268 seconds]
apeiros has joined #ruby
CustosLimen has joined #ruby
kies has joined #ruby
Steve_Jo1 has joined #ruby
wjimenez5271 has quit [Ping timeout: 249 seconds]
sfr^ has joined #ruby
c355e3b_ has joined #ruby
programmerq has joined #ruby
sarlalian has joined #ruby
c355e3b has quit [Ping timeout: 268 seconds]
_ht has quit [Ping timeout: 268 seconds]
c355e3b_ is now known as c355e3b
crankharder has joined #ruby
gypsydave5 has joined #ruby
gregf__ has joined #ruby
golgaroth has quit [Read error: Connection reset by peer]
sauvin has joined #ruby
twodayslate has quit [Ping timeout: 268 seconds]
daxroc has quit [Ping timeout: 268 seconds]
zipkid has quit [Ping timeout: 268 seconds]
angiebadillo has quit [Ping timeout: 268 seconds]
err_ok has quit [Read error: Connection reset by peer]
spastorino has quit [Read error: Connection reset by peer]
wjimenez5271 has joined #ruby
beawesomeinstead has joined #ruby
Lloyd has quit [Ping timeout: 268 seconds]
mozzarel1 has joined #ruby
ELLIOTTCABLE has quit [Read error: Connection reset by peer]
mostlybadfly has quit [Read error: Connection reset by peer]
cardoni has quit [Read error: Connection reset by peer]
golgaroth has joined #ruby
sideshowcoder has quit [Read error: Connection reset by peer]
cbetta has quit [Read error: Connection reset by peer]
bestie has quit [Read error: Connection reset by peer]
avdi has quit [Ping timeout: 268 seconds]
tonini has quit [Ping timeout: 268 seconds]
deimos has quit [Ping timeout: 268 seconds]
Guest12896_ has quit [Ping timeout: 268 seconds]
pfg has quit [Ping timeout: 268 seconds]
catbusters has quit [Ping timeout: 268 seconds]
deeprave has quit [Ping timeout: 268 seconds]
alxndr has quit [Ping timeout: 268 seconds]
Seich has quit [Ping timeout: 268 seconds]
drbrain has quit [Ping timeout: 268 seconds]
SegFaultAX has quit [Ping timeout: 268 seconds]
jabreity has quit [Ping timeout: 268 seconds]
pmarreck has quit [Ping timeout: 268 seconds]
Billias has quit [Ping timeout: 268 seconds]
tpendragon has quit [Ping timeout: 268 seconds]
Arcaire_ has quit [Read error: Connection reset by peer]
jimcroft_ has quit [Read error: Connection reset by peer]
dukedave_ has quit [Read error: Connection reset by peer]
LoganG has quit [Quit: robots are cool]
c355e3b has quit [Read error: Connection reset by peer]
andersh has quit [Read error: Connection reset by peer]
shiver has quit [Quit: No Ping reply in 180 seconds.]
DarkBushido has quit [Ping timeout: 268 seconds]
rflot has quit [Ping timeout: 268 seconds]
Nilium has quit [Ping timeout: 268 seconds]
tylersmith has quit [Ping timeout: 268 seconds]
zz_denym_ has quit [Ping timeout: 268 seconds]
ctrlrsf has quit [Ping timeout: 268 seconds]
shanemcd has joined #ruby
SirFunk has joined #ruby
Guest29949 has quit [Ping timeout: 260 seconds]
schaary has quit [Ping timeout: 268 seconds]
incomprehensibly has quit [Ping timeout: 268 seconds]
twistedpixels has quit [Ping timeout: 268 seconds]
alem0lars has quit [Ping timeout: 268 seconds]
ponga has quit [Ping timeout: 268 seconds]
imanc has quit [Ping timeout: 268 seconds]
bogdanteleaga has joined #ruby
cdg has quit [Read error: Network is unreachable]
sfr^ has quit [Ping timeout: 268 seconds]
mroth has quit [Ping timeout: 268 seconds]
chris2 has quit [Ping timeout: 268 seconds]
saneax has quit [Ping timeout: 268 seconds]
j3r0 has quit [Ping timeout: 268 seconds]
camilasan has quit [Ping timeout: 268 seconds]
aredridel has quit [Ping timeout: 268 seconds]
DanKnox has quit [Ping timeout: 268 seconds]
vcoinminer has quit [Ping timeout: 268 seconds]
sorah_ has quit [Ping timeout: 268 seconds]
Gasher has quit [Quit: Leaving]
cdg has joined #ruby
TDJACR has quit [Ping timeout: 268 seconds]
llua has quit [Ping timeout: 268 seconds]
Miron has quit [Ping timeout: 268 seconds]
Kamilion has quit [Ping timeout: 268 seconds]
Phanes has quit [Ping timeout: 268 seconds]
jmcc_______ has quit [Ping timeout: 244 seconds]
pushcx_ has joined #ruby
daxroc has joined #ruby
shiver has joined #ruby
shiver has quit [Changing host]
shiver has joined #ruby
ddv has quit [Ping timeout: 268 seconds]
Nilium has joined #ruby
spastorino has joined #ruby
twodayslate has joined #ruby
Spami has quit [Quit: This computer has gone to sleep]
Spami has joined #ruby
alxndr has joined #ruby
err_ok has joined #ruby
LoganG has joined #ruby
rflot has joined #ruby
Lloyd has joined #ruby
llua has joined #ruby
jmcc_______ has joined #ruby
jimcroft_ has joined #ruby
sfr^ has joined #ruby
sfr^ has quit [Changing host]
sfr^ has joined #ruby
ddv has joined #ruby
dukedave_ has joined #ruby
twistedpixels has joined #ruby
mroth has joined #ruby
Seich has joined #ruby
c355e3b has joined #ruby
Billias has joined #ruby
Phanes has joined #ruby
Phanes has quit [Changing host]
Phanes has joined #ruby
shanemcd has quit [Ping timeout: 248 seconds]
camilasan has joined #ruby
vcoinminer has joined #ruby
incomprehensibly has joined #ruby
tonini has joined #ruby
drbrain has joined #ruby
tylersmith has joined #ruby
tonini has quit [Read error: Connection reset by peer]
charles81 has quit [Read error: Connection reset by peer]
Arcaire_ has joined #ruby
Guest12896_ has joined #ruby
DanKnox has joined #ruby
wjimenez5271 has quit [Ping timeout: 249 seconds]
mozzarel1 has quit [Ping timeout: 268 seconds]
j3r0 has joined #ruby
pmarreck has joined #ruby
imanc has joined #ruby
SegFaultAX has joined #ruby
deimos has joined #ruby
sorah_ has joined #ruby
S01780 has joined #ruby
DarkBushido has joined #ruby
ctrlrsf has joined #ruby
boxrick1 has quit [Read error: Connection reset by peer]
jord has quit [Read error: Connection reset by peer]
sevenfourk has quit [Read error: Connection reset by peer]
zz_denym_ has joined #ruby
djsmentya has quit [Quit: djsmentya]
chris2 has joined #ruby
schaary has joined #ruby
Miron has joined #ruby
Guest59879 is now known as CrazEd
avdi has joined #ruby
mostlybadfly has joined #ruby
pfg has joined #ruby
Amnez777 has quit [Ping timeout: 268 seconds]
bestie has joined #ruby
CrazEd is now known as Guest925
cbetta has joined #ruby
angiebadillo has joined #ruby
wjimenez5271 has joined #ruby
twodayslate has quit [Ping timeout: 244 seconds]
cardoni has joined #ruby
alem0lars has joined #ruby
malcolmva has joined #ruby
zipkid has joined #ruby
charles81 has joined #ruby
amitchellbullard has joined #ruby
aredridel has joined #ruby
deeprave has joined #ruby
tonini has joined #ruby
ponga has joined #ruby
minimalism has quit [Ping timeout: 260 seconds]
sideshowcoder has joined #ruby
iooner has quit [Ping timeout: 268 seconds]
ponga has quit [Client Quit]
iooner has joined #ruby
TDJACR has joined #ruby
vcoinminer has quit [Ping timeout: 268 seconds]
andersh has joined #ruby
jord has joined #ruby
sevenfourk has joined #ruby
boxrick1 has joined #ruby
catbusters has joined #ruby
stannard has joined #ruby
ELLIOTTCABLE has joined #ruby
Amnez777 has joined #ruby
bronson has joined #ruby
jabreity has joined #ruby
skade has quit [Ping timeout: 244 seconds]
shanemcd has joined #ruby
blackmesa has joined #ruby
Guest34101 has joined #ruby
vcoinminer has joined #ruby
djsmentya has joined #ruby
mhoungbo has quit [Ping timeout: 260 seconds]
twodayslate has joined #ruby
Amnez777 has quit [Max SendQ exceeded]
Amnez777 has joined #ruby
saneax_AFK has joined #ruby
machty_ has joined #ruby
saneax_AFK is now known as saneax
bronson has quit [Ping timeout: 260 seconds]
ytti has joined #ruby
ziyadb has joined #ruby
<ytti> http://p.ip.fi/2LCV - post run
<ytti> [1] pry(#<Test>)> ObjectSpace.each_object.select{|o|o.class == Thread}.map{|o|ObjectSpace.memsize_of(o)}.count
<ytti> => 10001
<ytti> why?
blackmesa has quit [Ping timeout: 276 seconds]
<ytti> i would expect the Threds to be GCd
hightower has joined #ruby
ceej has quit [Ping timeout: 244 seconds]
hyperdrive has quit [Ping timeout: 276 seconds]
vcoinminer has quit [Ping timeout: 268 seconds]
chouhoulis has joined #ruby
ceej has joined #ruby
vcoinminer has joined #ruby
tpendragon has joined #ruby
Nilium has quit [Ping timeout: 244 seconds]
<hanmac> ytti: why do you ".map{|o|ObjectSpace.memsize_of(o)}" ?
Nilium has joined #ruby
<ytti> hanmac, i wanted to see how much each thread uses memory
norc__ has quit [Ping timeout: 276 seconds]
<ytti> hanmac, my main question is, why do they even appear there
<ytti> hanmac, threads are long gone
<hanmac> yeah but in that currently you dont use the memsize ...
<ytti> yeah because i added .count
<hanmac> also just use ObjectSpace.each_object(Thread) to get the Threads, so you dont need select
<ytti> i didn't bother removed the earlier part
<ytti> thanks, but this is not really addressing the issue i'm having
<hanmac> ytti: you might try it in irb or plain ruby to see if there is a smiliar result
<ytti> i expect count to be 1, not 10001
<ytti> yes, the results remain
chouhoulis has quit [Ping timeout: 276 seconds]
tfittsy has joined #ruby
<apeiros> ytti: GC isn't immediate. objects can be collected any time, even long after they stop being in use.
<hanmac> otherwise try to run GC.start before, because the Threads might not be GC'd yet
<ytti> apeiros, even if i do: deleted.each { |thread| thread.terminate; GC.start
<ytti> apeiros, result is same
<apeiros> ytti: thread.terminate doesn't mean it's no longer referenced
tfitts has quit [Ping timeout: 268 seconds]
<ytti> apeiros, how can i avoid it being referred?
<apeiros> stop having them in your array
sandstrom has quit [Quit: My computer has gone to sleep.]
tk__ has quit [Quit: ばいばい]
hyperdrive has joined #ruby
<apeiros> "how do I stop referencing thing?" - well, obviously by not referencing them
machty_ has quit [Ping timeout: 268 seconds]
shanemcd has quit [Ping timeout: 276 seconds]
<ytti> apeiros, it's local array, which goes out of scope
sdothum has joined #ruby
<apeiros> and you do the GC test in your binding pry within the same local scope?
axisys has joined #ruby
<ytti> apeiros, yes, but intention is not to delete the current batch, intention is to delete the previous
<ytti> apeiros, yet at the end of run, i have 10001 Threads
brixen has quit [Ping timeout: 260 seconds]
<ytti> apeiros, http://p.ip.fi/Tii3
<ytti> apeiros, can you produce results where ObjectSpace does get rid of Threads in similar code?
<ytti> or really, any code running threads
<ytti> this is ruby 2.3 for what's it is worth
MrDoctor has joined #ruby
Dragooon has joined #ruby
sandstrom has joined #ruby
stannard has quit [Remote host closed the connection]
<ytti> i fear this is expected behaviour
Arcaire_ has quit [Ping timeout: 268 seconds]
mozzarel1 has joined #ruby
ElFerna_ has joined #ruby
brixen has joined #ruby
ruby-lang807 has quit [Ping timeout: 252 seconds]
<apeiros> ytti: $ ruby -e 'ary = Array.new(100) { Thread.new {sleep 1} }; p ObjectSpace.each_object(Thread).count; ary.each(&:join); ary.clear; GC.start; p ObjectSpace.each_object(Thread).count'
<apeiros> prints 101, then 1
machty_ has joined #ruby
Arcaire_ has joined #ruby
<ytti> apeiros, i don't understand why in my example it wouldn't be out of scope
skade has joined #ruby
skade has quit [Client Quit]
junior2 has quit [Ping timeout: 244 seconds]
<ytti> apeiros, funny, just adding deleted.clear in the code, and GC works (not running it manually)
junior2 has joined #ruby
<ytti> apeiros, but deleted clearly goes out-of-scope after the while loop
darkf has quit [Quit: Leaving]
SenpaiSilver has quit [Ping timeout: 244 seconds]
PlasmaStar has joined #ruby
michael_mbp has joined #ruby
gnarld_ is now known as nug
houhoulis has quit [Remote host closed the connection]
<ytti> apeiros, http://p.ip.fi/75yc
<ytti> by
wedgwood has joined #ruby
<ytti> apeiros, what on earth is keeping the #delete_if elements, they're not even returned
wjimenez5271 has quit [Ping timeout: 250 seconds]
lxsameer has quit [Quit: Leaving]
Guest12896_ has quit [Ping timeout: 268 seconds]
wedgwood has quit [Changing host]
wedgwood has joined #ruby
wedgwood is now known as Guest1609
wjimenez5271 has joined #ruby
deeprave has quit [Ping timeout: 268 seconds]
deeprave has joined #ruby
Synthead has joined #ruby
ElFerna_ has quit [Ping timeout: 276 seconds]
djsmentya has quit [Quit: djsmentya]
brainslug has joined #ruby
cdg has quit [Remote host closed the connection]
livcd has quit [Changing host]
livcd has joined #ruby
Guest12896_ has joined #ruby
aef has joined #ruby
cj__ has joined #ruby
<ytti> aah
joaomdmoura__ has quit [Ping timeout: 244 seconds]
amitchellbullard has quit [Ping timeout: 268 seconds]
<ytti> i think this might be pry's fault
<ytti> the first time i invoke pry run-time, i see sensible amount of threads
<ytti> regardless how long i've been running
<ytti> the second time i invoke pry run-time, i see nonsensical amount of threads
nicoulaj has joined #ruby
Authenticator has joined #ruby
<ytti> i'm guessing pry might be storing the references somewhere
<ytti> let's see if rbtrace is more reliable for runtime poking
amitchellbullard has joined #ruby
ta_ has joined #ruby
rtl has quit [Remote host closed the connection]
joaomdmoura__ has joined #ruby
Kamilion has joined #ruby
mhoungbo has joined #ruby
LoganG has quit [Ping timeout: 268 seconds]
william3 has quit [Ping timeout: 268 seconds]
LoganG has joined #ruby
despai has quit [Quit: This computer has gone to sleep]
decoponyo has joined #ruby
william3 has joined #ruby
brainslug has quit [Ping timeout: 252 seconds]
Synthead has quit [Ping timeout: 252 seconds]
decoponio has quit [Ping timeout: 244 seconds]
Authenticator has quit [Ping timeout: 252 seconds]
cj__ has quit [Ping timeout: 252 seconds]
rdavila has joined #ruby
<ytti> rbtrace -p 70334 -e 'Thread.new{p ObjectSpace.each_object.select{|o|o.class == Thread}.map{|o|ObjectSpace.memsize_of(o)}.count}'
_ht has joined #ruby
<ytti> yeah this shows sensible numbers, regardless of what type of code i run
<Ox0dea> You can just say `ObjectSpace.each_object(Thread)`, for what that's worth.
ht_ has quit [Ping timeout: 276 seconds]
ta_ has quit [Ping timeout: 260 seconds]
djsmentya has joined #ruby
Guest34101 has quit [Ping timeout: 276 seconds]
<ytti> yeah i know
shanemcd has joined #ruby
<ytti> i'm just poking at the sizes of individual threads as well
ghormoon has joined #ruby
djsmentya has quit [Client Quit]
<Ox0dea> But you're throwing that information away?
bougyman has quit [Ping timeout: 276 seconds]
<ytti> i'm running it sometimes without #count
<ytti> sometimes with it
rtl has joined #ruby
<ytti> same issue when people complain about grep|wc -l :)
MrDoctor has quit [Ping timeout: 276 seconds]
MrDoctor has joined #ruby
cookiez has joined #ruby
johnny56_ has joined #ruby
<Ox0dea> "Doing things the wrong way builds character."
malcolmva has quit [Ping timeout: 248 seconds]
modin has joined #ruby
Guest34101 has joined #ruby
wjimenez5271 has quit [Ping timeout: 246 seconds]
eregi has joined #ruby
jeanlinux has quit [Remote host closed the connection]
bougyman has joined #ruby
jeanlinux has joined #ruby
unreal_ is now known as unreal
wjimenez5271 has joined #ruby
twodayslate has quit [Ping timeout: 268 seconds]
eregi has quit [Ping timeout: 276 seconds]
jeanlinux has quit [Ping timeout: 260 seconds]
araujo has joined #ruby
araujo has joined #ruby
twodayslate has joined #ruby
solars has joined #ruby
malcolmva has joined #ruby
bronson has joined #ruby
rdavila has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
skade has joined #ruby
dlitvak has quit [Remote host closed the connection]
laith has quit [Quit: Leaving.]
ht_ has joined #ruby
sfr^ has quit [Ping timeout: 268 seconds]
dgncn has joined #ruby
_ht has quit [Ping timeout: 260 seconds]
bronson has quit [Ping timeout: 260 seconds]
eregi has joined #ruby
sfr^ has joined #ruby
cdg has joined #ruby
bestie has quit [Ping timeout: 268 seconds]
bestie has joined #ruby
solocshaw has joined #ruby
chouhoulis has joined #ruby
steffkes has quit [Ping timeout: 276 seconds]
rdavila has joined #ruby
eregi has quit [Ping timeout: 248 seconds]
symm- has quit [Ping timeout: 244 seconds]
laith has joined #ruby
cdg has quit [Ping timeout: 246 seconds]
DoubleMalt has joined #ruby
steffkes has joined #ruby
steffkes has joined #ruby
chouhoulis has quit [Ping timeout: 260 seconds]
Guest1609 has quit [Ping timeout: 246 seconds]
rdavila has quit [Client Quit]
tonini has quit [Ping timeout: 268 seconds]
francuz has joined #ruby
tonini has joined #ruby
saneax is now known as saneax_AFK
ja has joined #ruby
stannard has joined #ruby
shanemcd_ has joined #ruby
<francuz> hello everyone, i'm pretty new to ruby and would want to ask for a few keywords to help me with my searches,
stannard has quit [Ping timeout: 276 seconds]
shanemcd_ has quit [Ping timeout: 260 seconds]
<francuz> i have a structure where i have a few programs running on one or several machines, and would like them to communicate(probably via an API if i understood well), but whenever i search for API with ruby i find a lot of things only about rails and not about "ruby only" programs,
Axy has joined #ruby
<francuz> is it called another way or ? (structure would be like http://postimg.org/image/pyca99lub/, not all ruby programs so it cannot be one big programs)(requests have parameters of course)
biberu has joined #ruby
bkxd has joined #ruby
jeanlinux has joined #ruby
j3r0 has quit [Ping timeout: 268 seconds]
svkurowski has quit [Ping timeout: 244 seconds]
lele has quit [Ping timeout: 244 seconds]
mlehrer has quit [Ping timeout: 248 seconds]
francuz_ has joined #ruby
dionysus69 has quit [Ping timeout: 244 seconds]
x0f has quit [Ping timeout: 244 seconds]
cfloare has quit [Ping timeout: 244 seconds]
mhenrixon has quit [Ping timeout: 244 seconds]
Flipez has quit [Ping timeout: 244 seconds]
deeprave has quit [Ping timeout: 260 seconds]
iamdevnul has quit [Ping timeout: 260 seconds]
wnd has quit [Ping timeout: 244 seconds]
ready has quit [Ping timeout: 244 seconds]
Mia has quit [Ping timeout: 244 seconds]
madhatter has quit [Ping timeout: 244 seconds]
mc_fail has quit [Ping timeout: 244 seconds]
aep has quit [Ping timeout: 244 seconds]
yxhuvvd has quit [Ping timeout: 244 seconds]
RushPL has quit [Ping timeout: 244 seconds]
tomaz___ has quit [Ping timeout: 244 seconds]
biberu has quit []
biberu has joined #ruby
dionysus69 has joined #ruby
n008f4g_ has quit [Ping timeout: 244 seconds]
pookie_ has quit [Ping timeout: 244 seconds]
rodolfowtf has joined #ruby
TomyLobo has joined #ruby
deeprave has joined #ruby
iamdevnul has joined #ruby
cfloare has joined #ruby
wnd has joined #ruby
claw_ has quit [Ping timeout: 244 seconds]
wedgwood_ has joined #ruby
nicoulaj has quit [Remote host closed the connection]
madhatter has joined #ruby
olspookishmagus has joined #ruby
gagrio has quit [Ping timeout: 244 seconds]
bkxd has quit [Ping timeout: 260 seconds]
olspookishmagus is now known as Guest4103
bubbys has quit [Ping timeout: 244 seconds]
wjimenez5271 has quit [Ping timeout: 246 seconds]
jmcc_______ has quit [Ping timeout: 268 seconds]
akitada has quit [Ping timeout: 244 seconds]
claw has joined #ruby
francuz_ has quit [Ping timeout: 252 seconds]
RushPL has joined #ruby
dukedave_ has quit [Ping timeout: 268 seconds]
lele has joined #ruby
wjimenez5271 has joined #ruby
linduxed has quit [Ping timeout: 244 seconds]
mhenrixon has joined #ruby
aep has joined #ruby
mostlybadfly has quit [Ping timeout: 268 seconds]
yonatankoren has quit [Ping timeout: 268 seconds]
Flipez has joined #ruby
x0f has joined #ruby
svkurowski has joined #ruby
Domaldel has joined #ruby
dukedave_ has joined #ruby
akitada has joined #ruby
jmcc_______ has joined #ruby
mostlybadfly has joined #ruby
saneax_AFK is now known as saneax
flughafen_ has joined #ruby
boxrick1 has quit [Ping timeout: 268 seconds]
mc_fail has joined #ruby
n008f4g_ has joined #ruby
boxrick1 has joined #ruby
Guest21405 has joined #ruby
charles81 has quit [Ping timeout: 268 seconds]
tomaz___ has joined #ruby
steffkes has quit [Ping timeout: 246 seconds]
yxhuvvd has joined #ruby
ELLIOTTCABLE has quit [Ping timeout: 268 seconds]
freerobby has joined #ruby
<shevy> francuz depends on what you need; drb distributed ruby perhaps
bubbys has joined #ruby
euoia_ has quit [Quit: leaving]
<shevy> then you also have ruby daemons
rflot has quit [Ping timeout: 268 seconds]
mlehrer has joined #ruby
charles81 has joined #ruby
yonatankoren has joined #ruby
ELLIOTTCABLE has joined #ruby
gagrio has joined #ruby
jtdoncas has joined #ruby
Arcaire_ has quit [Ping timeout: 268 seconds]
andersh has quit [Ping timeout: 268 seconds]
ready has joined #ruby
<francuz> for now : i have a program that read a lot of stuff and parse it and fill a DB with the info, and i have another program that read the DB and do some actions, and a third program that just communicate with my phone to send me some data,
p0p0pr37 has quit [Read error: Connection reset by peer]
rflot has joined #ruby
Arcaire_ has joined #ruby
<francuz> i put 3 flag in the db and made a cron so the programs will check every 2 minutes, and do actions if the flags are up(and than change the flag so the other programs will know what to do), but i know it's not the way to go,
steffkes has joined #ruby
andersh has joined #ruby
ht_ has quit [Ping timeout: 268 seconds]
<francuz> just need a way to transmit "do 'action 3' now with the numer '72'" from a program to another(i'm checking the drb thing now)
<Ox0dea> francuz: Sounds like you want IPC? https://github.com/kschiess/cod
tomphp has joined #ruby
<francuz> not totally sure it's exactly what i need but it looks very good :D, and mostly : i now know the keywords i needed to make my searches, thanks a lot,
flughafen_ has quit [Ping timeout: 268 seconds]
flughafen_ has joined #ruby
intrigueD has quit [Remote host closed the connection]
tomphp has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
shanemcd_ has joined #ruby
sipster has joined #ruby
MrDoctor has quit [Ping timeout: 250 seconds]
linduxed has joined #ruby
zack6849 has quit [Quit: Leaving]
nfk has joined #ruby
Guest34101 has quit [Ping timeout: 276 seconds]
rdavila has joined #ruby
jeanlinux has quit [Ping timeout: 260 seconds]
QORRiE has joined #ruby
<havenwood> good morn!
MrDoctor has joined #ruby
tomphp has joined #ruby
ruby-lang879 has joined #ruby
eregi has joined #ruby
chouhoulis has joined #ruby
despai has joined #ruby
freerobby has quit [Quit: Leaving.]
uglybandersnatch has joined #ruby
shanemcd_ has quit [Remote host closed the connection]
eregi has quit [Ping timeout: 260 seconds]
zack6849 has joined #ruby
zack6849 has quit [Changing host]
zack6849 has joined #ruby
chouhoulis has quit [Ping timeout: 260 seconds]
<ruby-lang879> Hello, how to directly read ri files under my Ruby installation directory such as ~/.rbenv/versions/2.3.0/share/ri/2.3.0/system
despai has quit [Client Quit]
uglybandersnatch has quit [Ping timeout: 244 seconds]
shanemcd_ has joined #ruby
akitada has quit [Ping timeout: 268 seconds]
flughafen_ has quit [Ping timeout: 260 seconds]
intrigueD has joined #ruby
Dragooon has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
akitada has joined #ruby
laith has quit [Quit: Leaving.]
stannard has joined #ruby
DoubleMalt has quit [Remote host closed the connection]
spuk has joined #ruby
ELLIOTTCABLE has quit [Ping timeout: 246 seconds]
ruby-lang879 has quit []
jeanlinux has joined #ruby
mintux has left #ruby [#ruby]
william3 has quit [Remote host closed the connection]
william3 has joined #ruby
ELLIOTTCABLE has joined #ruby
lightheaded has joined #ruby
m4rCsi has joined #ruby
william3 has quit [Ping timeout: 260 seconds]
flughafen_ has joined #ruby
lightheaded has quit [Ping timeout: 246 seconds]
dravine has quit [Read error: Connection reset by peer]
dravine_ has joined #ruby
blackmesa has joined #ruby
anirban has joined #ruby
shanemcd_ has quit [Remote host closed the connection]
laith has joined #ruby
shanemcd_ has joined #ruby
laith has left #ruby [#ruby]
MrDoctor has quit [Ping timeout: 260 seconds]
nando293921 has joined #ruby
araujo has quit [Quit: Leaving]
<n1colas> Hello
s00pcan_ has quit [Read error: Connection reset by peer]
twintail has joined #ruby
rdavila has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
ljames has joined #ruby
<havenwood> n1colas: g'mornin
Barzogh has quit [Quit: leaving]
Authenticator has joined #ruby
Synthead has joined #ruby
brainslug has joined #ruby
s00pcan_ has joined #ruby
lightheaded has joined #ruby
lightheaded has quit [Remote host closed the connection]
lightheaded has joined #ruby
rdavila has joined #ruby
diegoviola has joined #ruby
DmitryBochkarev has quit [Quit: This computer has gone to sleep]
cj__ has joined #ruby
ropeney has quit [Quit: Leaving]
rodolfowtf has quit [Quit: No Ping reply in 180 seconds.]
rodolfowtf has joined #ruby
william3 has joined #ruby
shanemcd_ has quit [Remote host closed the connection]
johnmilton has quit [Quit: Namaste]
jeanlinux has quit [Remote host closed the connection]
skade has quit [Quit: Computer has gone to sleep.]
i8igmac has joined #ruby
Jackneill has joined #ruby
meinside has joined #ruby
shanemcd_ has joined #ruby
skade has joined #ruby
rdavila has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
lightheaded has quit [Remote host closed the connection]
jeanlinux has joined #ruby
kknight has joined #ruby
jeanlinux has quit [Ping timeout: 260 seconds]
chris2 has quit [Quit: trotz alledem!]
tomphp has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
the_drow has quit [Quit: This computer has gone to sleep]
jonee has joined #ruby
Mon_Ouie has quit [Ping timeout: 260 seconds]
eljimmy has quit [Read error: Connection reset by peer]
chouhoulis has joined #ruby
eljimmy has joined #ruby
cpup has quit [Ping timeout: 260 seconds]
Aviio has joined #ruby
chouhoulis has quit [Ping timeout: 276 seconds]
cpup has joined #ruby
kknight has quit [Quit: Leaving]
chris2 has joined #ruby
idefine has joined #ruby
v1n has quit [Quit: WeeChat 1.0.1]
v0n has joined #ruby
elifoster has joined #ruby
francuz has quit [Ping timeout: 252 seconds]
dcunit3d has quit [Ping timeout: 276 seconds]
bkxd has joined #ruby
drbrain has quit [Ping timeout: 268 seconds]
drbrain has joined #ruby
hinbody has quit [Ping timeout: 276 seconds]
bkxd has quit [Ping timeout: 268 seconds]
Djole has quit [Ping timeout: 244 seconds]
hinbody has joined #ruby
Djole has joined #ruby
Snowy has joined #ruby
Spami has quit [Quit: Leaving]
DmitryBochkarev has joined #ruby
akitada has quit [Ping timeout: 260 seconds]
jmcc_______ has quit [Ping timeout: 260 seconds]
deeprave has quit [Ping timeout: 260 seconds]
papercod1 has quit [Ping timeout: 244 seconds]
moeabdol1 has joined #ruby
solars has quit [Ping timeout: 246 seconds]
jmcc_______ has joined #ruby
deeprave has joined #ruby
Snowy has quit [Ping timeout: 268 seconds]
idefine has quit [Remote host closed the connection]
akitada has joined #ruby
fn2187__ has quit [Ping timeout: 244 seconds]
Muz_ has quit [Ping timeout: 244 seconds]
moeabdol has quit [Ping timeout: 248 seconds]
fn2187__ has joined #ruby
nogic has joined #ruby
nogic has quit [Max SendQ exceeded]
augcesar[2] has joined #ruby
nogic has joined #ruby
Muz has joined #ruby
nogic has quit [Max SendQ exceeded]
arlek has joined #ruby
nogic has joined #ruby
intrigueD has quit [Remote host closed the connection]
tylersmith has quit [Ping timeout: 268 seconds]
binaryplease1 has joined #ruby
drbrain has quit [Ping timeout: 268 seconds]
zeroDi has joined #ruby
cpup has quit [Ping timeout: 260 seconds]
tylersmith has joined #ruby
cpup has joined #ruby
j3r0 has joined #ruby
drbrain has joined #ruby
binaryplease has quit [Ping timeout: 268 seconds]
djbkd has joined #ruby
mozzarel1 is now known as mozzarella
Pupeno has quit [Remote host closed the connection]
nofxx has joined #ruby
papercod1 has joined #ruby
vikaton has joined #ruby
Aviio has quit [Read error: Connection reset by peer]
Aviio has joined #ruby
vbatts|work has quit [Ping timeout: 244 seconds]
eregi has joined #ruby
augcesar[2] has quit [Quit: Hey!]
vbatts|work has joined #ruby
elifoster has quit [Ping timeout: 260 seconds]
lightheaded has joined #ruby
tlaxkit has quit [Quit: ¡Adiós!]
djbkd has quit [Remote host closed the connection]
terminalrecluse has joined #ruby
sebyx07 has joined #ruby
sebyx07 has left #ruby [#ruby]
dionysus69 has quit [Remote host closed the connection]
dionysus69 has joined #ruby
eregi has quit [Ping timeout: 260 seconds]
idefine has joined #ruby
BtcBen has joined #ruby
devbug has joined #ruby
stannard has quit [Remote host closed the connection]
Abrin_AWAY has joined #ruby
b|ackwolf has joined #ruby
johnmilton has joined #ruby
<b|ackwolf> how can I install ruby1.9.1 using rvm. I'm running Fedora 23 on my machine.
binaryplease1 has quit [Quit: WeeChat 1.4]
symm- has joined #ruby
<diegoviola> don't use rvm, use chruby/ruby-install
binaryplease has joined #ruby
rodolfowtf has quit [Ping timeout: 246 seconds]
<havenwood> b|ackwolf: Are you sure you want Ruby 1.9.1? That was never a stable Ruby. It's the ABI number for 1.9.2 and 1.9.3 though (both of which are past end of life). Why do you want 1.9.1?
codecop has quit [Remote host closed the connection]
idefine has quit [Ping timeout: 268 seconds]
<b|ackwolf> havenwood, I'm reading The Well-Grounded Rubyist first edition.
BtcBen has quit [Ping timeout: 276 seconds]
<havenwood> b|ackwolf: The examples that don't work on modern Ruby aren't useful any longer. I'd suggest using Ruby 2.3 and accepting that some of the first examples won't work.
<havenwood> b|ackwolf: Most will work.
<Aviio> havenwood: I was just about to say that
<b|ackwolf> havenwood, okay then I install latest version.
<Aviio> Kinda seems counter-productive to gimp yourself with an older version of ruby when learning
<b|ackwolf> tnx
<havenwood> b|ackwolf: rvm get head && rvm install ruby-2.3.0
bronson has joined #ruby
* hanmac uses ruby-head
chouhoulis has joined #ruby
despai has joined #ruby
Robtop__ has joined #ruby
elifoster has joined #ruby
last_staff has joined #ruby
bronson has quit [Ping timeout: 260 seconds]
ohaibbq has joined #ruby
<Ox0dea> hanmac: Does that mean trunk?
kies^ has joined #ruby
pwnd_nsfw` has quit [Ping timeout: 260 seconds]
<hanmac> Ox0dea: yeah my ruby is 0 days old
<Ox0dea> Find a use case for NoMethodError#private_call? yet?
chouhoulis has quit [Ping timeout: 268 seconds]
<Ox0dea> I guess it's probably for did_you_mean.
<shevy> \o/
Rodya_ has joined #ruby
despai has quit [Quit: This computer has gone to sleep]
peteyg has joined #ruby
shanemcd_ has quit [Remote host closed the connection]
shanemcd_ has joined #ruby
mhoungbo has quit [Ping timeout: 246 seconds]
pawnbox has quit [Remote host closed the connection]
i8igmac has quit [Ping timeout: 248 seconds]
ur5us has joined #ruby
duckpupp1 has joined #ruby
sergey_makagon has joined #ruby
shanemcd_ has quit [Ping timeout: 276 seconds]
Ebok has joined #ruby
duckpupp1 has quit [Ping timeout: 276 seconds]
quazimodo has quit [Ping timeout: 260 seconds]
Aviio has quit [Remote host closed the connection]
Dimik has joined #ruby
n008f4g_ has quit [Ping timeout: 276 seconds]
Dragooon has joined #ruby
mhoungbo has joined #ruby
wtiger has joined #ruby
<wtiger> Hi!
<wtiger> what are some cool resources for learning intermediate and advanced ruby?
Gasher has joined #ruby
<shevy> wtiger havenwood reads other people's code
<shevy> I myself am too lazy for that... there are some good blog entries here and there... hmm .... things like https://banisterfiend.wordpress.com/ but they are kind of scattered all over the www
Xiti has joined #ruby
<shevy> you can also peek at source code like of rack
<wtiger> has anyone completed ruby bits courses on code school?
<wtiger> shevy: ok
Eiam has joined #ruby
<wtiger> *tried
wtiger has quit [Quit: WeeChat 1.4]
saneax is now known as saneax_AFK
mhoungbo has quit [Ping timeout: 260 seconds]
intrigueD has joined #ruby
codecop has joined #ruby
terlar has quit [Ping timeout: 244 seconds]
skade has quit [Quit: Computer has gone to sleep.]
Eiam has quit [Quit: ╯°□°)╯︵ǝpouǝǝɹɟ]
blackmesa has quit [Ping timeout: 260 seconds]
stannard has joined #ruby
meinside has quit [Quit: Connection closed for inactivity]
eregi has joined #ruby
n008f4g_ has joined #ruby
stannard has quit [Ping timeout: 246 seconds]
ta_ has joined #ruby
krzkrzkrz has quit [Ping timeout: 276 seconds]
eregi has quit [Ping timeout: 276 seconds]
Dragooon has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
chouhoulis has joined #ruby
rodolfowtf has joined #ruby
ta_ has quit [Ping timeout: 246 seconds]
Rodya_ has quit [Remote host closed the connection]
ruby-lang256 has joined #ruby
<ruby-lang256> hello
chouhoulis has quit [Ping timeout: 276 seconds]
LoneHerm_ has joined #ruby
<havenwood> ruby-lang256: hi
fostertheweb has joined #ruby
<ruby-lang256> I am new to programming and I have been studying using both ruby monk and codeacademy to learn Ruby. However, I am struggling to implement what it is I have learned. I feel as if i understand a lot of the synthax that it is I have been reading about but putting it to use is still a struggle for.
DmitryBochkarev has quit [Quit: This computer has gone to sleep]
<ruby-lang256> My big question is how can I help myself start to really grasp and use Ruby comfortably are there any recommendations?
<Ox0dea> ruby-lang256: Do the Koans: http://rubykoans.com/
houhoulis has joined #ruby
<adaedra> Use it, do some projects, work in other projects
<havenwood> ruby-lang256: +1 for the Koans, ask here when you get stuck!
pawnbox has joined #ruby
<havenwood> ruby-lang256: You might review Chris Pine's Learn to Program and make sure you're comfortable with those foundations: https://pine.fm/LearnToProgram/
duckpupp1 has joined #ruby
<ruby-lang256> I appreciate it I have come across both rubykoans and Chris Pine's Learn to Program but I'll make sure to check them out again and actually go through them
lagweezl1 is now known as lagweezle
pawnbox has quit [Ping timeout: 246 seconds]
steffkes has quit [Ping timeout: 260 seconds]
baweaver has quit [Remote host closed the connection]
n008f4g_ has quit [Ping timeout: 244 seconds]
Gasher has quit [Ping timeout: 244 seconds]
arlek has quit [Ping timeout: 268 seconds]
bkxd has joined #ruby
mhoungbo has joined #ruby
n008f4g_ has joined #ruby
duckpupp1 has quit [Ping timeout: 276 seconds]
mooru has joined #ruby
Guest34101 has joined #ruby
cdg has joined #ruby
cdg has quit [Remote host closed the connection]
cdg has joined #ruby
bkxd has quit [Ping timeout: 246 seconds]
infoget has joined #ruby
mhoungbo has quit [Ping timeout: 246 seconds]
Pupeno has joined #ruby
Snowy has joined #ruby
despai has joined #ruby
flughafen_ has quit [Ping timeout: 246 seconds]
steffkes has joined #ruby
<shevy> ruby-lang256 the hardest but by far the best way is to write as much code on your own, programming is something applied for the most part... unless you are in the algorithm/math department
Pupeno has quit [Ping timeout: 260 seconds]
flughafen_ has joined #ruby
Gasher has joined #ruby
Snowy has quit [Ping timeout: 246 seconds]
ardian has quit [Changing host]
ardian has joined #ruby
sergey_makagon has quit [Remote host closed the connection]
dlitvak has joined #ruby
dlitvak has quit [Remote host closed the connection]
skade has joined #ruby
Noob has joined #ruby
IanMalcolm has quit [Max SendQ exceeded]
IanMalcolm has joined #ruby
sergey_makagon has joined #ruby
ProofTechnique has quit [Quit: ZNC http://znc.in]
<hanmac> shevy the best way is to study the code until its part of you: https://49.media.tumblr.com/a7bfc9c21a8984a12a87770e15dc8648/tumblr_mmzavpOVEn1s38n8zo1_500.gif
dlitvak has joined #ruby
<kaleido> i find it helps to try to reverse someones ruby as well
ProofTechnique has joined #ruby
<Noob> I have a question about creating methods in a model using ruby on rails
ruby-lang391 has joined #ruby
<hanmac> Noob: try #rubyonrails
Noob has left #ruby [#ruby]
Noob has joined #ruby
<ruby-lang391> Hey guys quick question. I came across this strange syntax. some string >= ?0. term[0] >= ?0 && term[0] <= ?9; where term[0] is a char
<ruby-lang391> what does ?0 mean?
Noob has left #ruby [#ruby]
<havenwood> >> ?0
<ruby[bot]> havenwood: # => "0" (https://eval.in/527015)
<havenwood> ruby-lang391: It's a "character literal."
<adaedra> 18>> ?0
<ruby[bot]> adaedra: # => 48 (https://eval.in/527017)
mhoungbo has joined #ruby
<ruby-lang391> so it's asking if it is a character?
<adaedra> No, it's a one-char shorter way way of writing a 1-character long string.
b|ackwolf has quit [Ping timeout: 260 seconds]
<adaedra> ?0 is '0', ?9 is '9'
<ruby[bot]> adaedra: I don't see no is, whom should I tell about 0?
<havenwood> ruby-lang391: It used to be different in Ruby 1.8, like adaedra points out.
<adaedra> go home ruby[bot], you're drunk.
<ruby-lang391> >> puts ?0 == '0'
sergey_makagon has quit [Client Quit]
<havenwood> ruby-lang391: #=> true
<adaedra> You need to be registered to use the bot. :)
<havenwood> #>> true
<havenwood> #=> nil
diegoviola has quit [Quit: WeeChat 1.4]
intrigueD has quit [Remote host closed the connection]
<havenwood> >> ?0 == '0123'.chr
<ruby[bot]> havenwood: # => true (https://eval.in/527021)
pawnbox has joined #ruby
dionysus69 has quit [Remote host closed the connection]
dionysus69 has joined #ruby
<havenwood> ruby[bot]: But yeah, it's just a single char String - but a plain old String nonetheless.
<adaedra> ?justabot
<ruby[bot]> I'm just a bot. You don't need to address me.
Dimik has quit [Ping timeout: 276 seconds]
<adaedra> :p
<havenwood> ruby<tab>
blackmesa has joined #ruby
<Ox0dea> > I don't see no is
<havenwood> Who should we tell about the 0 anyways?
diegoviola has joined #ruby
skade has quit [Ping timeout: 260 seconds]
infoget has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
pawnbox has quit [Ping timeout: 276 seconds]
peteyg has quit [Ping timeout: 268 seconds]
mooru has quit [Quit: Textual IRC Client: www.textualapp.com]
Pupeno has joined #ruby
b|ackwolf has joined #ruby
nickjj has joined #ruby
ruby-lang391 has quit [Ping timeout: 252 seconds]
LoneHerm_ has quit [Remote host closed the connection]
Guest34101 has quit [Ping timeout: 248 seconds]
LoneHerm_ has joined #ruby
LoneHerm_ has quit [Remote host closed the connection]
Mon_Ouie has joined #ruby
Domaldel has quit [Ping timeout: 260 seconds]
rodolfowtf has quit [Ping timeout: 260 seconds]
stannard has joined #ruby
Domaldel has joined #ruby
blackmes1 has joined #ruby
Qureshi has joined #ruby
vikaton has quit [Ping timeout: 260 seconds]
iamdevnul has quit [Ping timeout: 260 seconds]
tomphp has joined #ruby
rodolfowtf has joined #ruby
lele has quit [Ping timeout: 260 seconds]
Danielss89 has quit [Excess Flood]
iamdevnul has joined #ruby
lele has joined #ruby
Danielss89 has joined #ruby
vikaton has joined #ruby
Cohedrin has joined #ruby
blackmesa has quit [Ping timeout: 260 seconds]
dionysus69 has quit [Ping timeout: 246 seconds]
stannard has quit [Ping timeout: 250 seconds]
kent\n has quit [Ping timeout: 248 seconds]
bousquet has joined #ruby
bronson has joined #ruby
<flughafen_> is there a way i can access the array if i just did a block using ['foo', 'bar'].each { foo } or do i have to assign it to a variable?
pawnbox has joined #ruby
chouhoulis has joined #ruby
<Ox0dea> flughafen_: There's always #tap.
Arcaire_ has quit [Ping timeout: 260 seconds]
dukedave_ has quit [Ping timeout: 260 seconds]
uglybandersnatch has joined #ruby
<flughafen_> thanks Ox0dea i'll look at #tab
<flughafen_> p
rodolfowtf has quit [Read error: Connection reset by peer]
bousquet has quit [Client Quit]
Danielss89 has quit [Max SendQ exceeded]
Arcaire_ has joined #ruby
dukedave_ has joined #ruby
Danielss89 has joined #ruby
shanemcd_ has joined #ruby
bronson has quit [Ping timeout: 246 seconds]
rodolfowtf has joined #ruby
<flughafen_> Ox0dea: do you mean like ['foo', 'bar'].tap { |o] o.each { do stuff? }}
pawnbox has quit [Ping timeout: 260 seconds]
chouhoulis has quit [Ping timeout: 260 seconds]
<Ox0dea> flughafen_: If that's the behavior you're looking for?
uglybandersnatch has quit [Ping timeout: 248 seconds]
p0p0pr37 has joined #ruby
tomphp has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
<flughafen_> yes, Ox0dea , i'm testing it in pry
ss_much has joined #ruby
<havenwood> Qureshi: Did you try following the instructions in that warning already or not yet?
tomphp has joined #ruby
<shevy> lol
<flughafen_> hey shevy
diegoviola has quit [Quit: WeeChat 1.4]
Qureshi has quit []
kirillzh has joined #ruby
Qureshi has joined #ruby
fostertheweb has quit [Ping timeout: 276 seconds]
tomphp has quit [Client Quit]
<flughafen_> Ox0dea: ok, that is working... wtf is up with pry? i tried it.and was getting no output then i puts something, and now all of a sudden i'm getting output in pry!
<Ox0dea> ¯\_(ツ)_/¯
infernix has quit [Ping timeout: 260 seconds]
duckpupp1 has joined #ruby
<shevy> yo flughafen_ ... you are twice here!
<shevy> always good to have a backup airport
rikai_ is now known as rikai
<flughafen_> planes flying in and out!
LoneHerm_ has joined #ruby
baweaver has joined #ruby
<shevy> Qureshi are you a bot
peteyg has joined #ruby
hakunin_ has joined #ruby
<Papierkorb> shevy: Someone should teach helpa or some other bot to auto-complain when someone cross-posts without telling so
lightheaded has quit []
duckpupp1 has quit [Ping timeout: 276 seconds]
fostertheweb has joined #ruby
dlitvak has quit [Remote host closed the connection]
knight- has quit [Ping timeout: 244 seconds]
hakunin has quit [Ping timeout: 244 seconds]
knight_ has joined #ruby
cout has quit [Ping timeout: 244 seconds]
cout has joined #ruby
<havenwood> ?crosspost Qureshi
<ruby[bot]> Qureshi: Please do not crosspost without at least telling so and mentioning provided suggestions and their outcome in all channels. Experience shows that people don't do either, and not doing so is considered rude.
<havenwood> Qureshi: Did you try what the warning suggested already?
kies has quit [Ping timeout: 244 seconds]
jtoy has quit [Ping timeout: 244 seconds]
ur5us has quit [Remote host closed the connection]
<Qureshi> I did not understand what the bot is stating, sorry?
baweaver has quit [Ping timeout: 250 seconds]
<Qureshi> I am looking for help so posted here and on another programming channel
fedexo has joined #ruby
<Qureshi> what is crosspost?
jtoy has joined #ruby
intrigueD has joined #ruby
benlieb has joined #ruby
<havenwood> Qureshi: It's just pasting the same question in multiple channels. It's fine as long as you say in the channels when you do it, so folk researching your question know if it's already been answered or is being discussed.
<Qureshi> oh ok thank you, I apologize
<Qureshi> no one has responded as yet , is there anyone who can assist me with this?
SHyx0rmZ has quit [Remote host closed the connection]
<havenwood> Qureshi: No worries. Did you already `bundle config --delete bin` and follow the "upgrade" path the Rails warning proposes?
dlitvak has joined #ruby
<Qureshi> yes, I followed that
sauvin has quit [Quit: Leaving]
<Qureshi> it states no rakefile found
<Qureshi> when I previously installed the rake gem
lele has quit [Ping timeout: 260 seconds]
lele has joined #ruby
djbkd has joined #ruby
sauvin has joined #ruby
Domaldel has quit [Ping timeout: 260 seconds]
sauvin has quit [Changing host]
sauvin has joined #ruby
<havenwood> Qureshi: A Rakefile is a file containing Ruby code related to Rake tasks. The Rake gem is a gem.
<havenwood> Qureshi: So you have a new error you haven't shown yet?
terminalrecluse has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Domaldel has joined #ruby
<Qureshi> I uninstalled rails, then reinstalled it, and tried to run rails new appname and it produced the same error, then I did the bundle config --delete
<Qureshi> and then the next step as stated and it produced this error
SHyx0rmZ has joined #ruby
ur5us has joined #ruby
<Qureshi> Qureshis-MacBook-Pro:~ Qureshi$ rake rails:update:bin
<Qureshi> rake aborted!
<Qureshi> No Rakefile found (looking for: rakefile, Rakefile, rakefile.rb, Rakefile.rb)
<Qureshi> /Users/Qureshi/.rvm/gems/jruby-1.7.19/bin/jruby_executable_hooks:15:in `(root)'
<Qureshi> (See full trace by running task with --trace)
Asher has quit [Quit: Leaving.]
LoneHerm_ has quit [Remote host closed the connection]
Asher has joined #ruby
sauvin has quit [Read error: Connection reset by peer]
blackmes1 has quit [Ping timeout: 250 seconds]
<havenwood> Qureshi: Seems you're not running the command from the root dir of the app. Check that you are?
kies has joined #ruby
moeabdol2 has joined #ruby
<Qureshi> im not able to create the app itself when I type rails new appname it is giving an error, so I cant enter the app directory
sauvin has joined #ruby
moeabdol1 has quit [Ping timeout: 246 seconds]
<havenwood> Qureshi: What version of Rails is your rails bin running?: rails -v
Guest18607 is now known as ruurd
<Qureshi> its giving me the same error when I try to run this as well.
<Qureshi> Qureshis-MacBook-Pro:~ Qureshi$ rails -v
<Qureshi> Looks like your app's ./bin/rails is a stub that was generated by Bundler.
<Qureshi> In Rails 4, your app's bin/ directory contains executables that are versioned
<Qureshi> like any other source code, rather than stubs that are generated on demand.
<Qureshi> Here's how to upgrade:
<Qureshi> bundle config --delete bin # Turn off Bundler's stub generator
<Qureshi> rake rails:update:bin # Use the new Rails 4 executables
<Qureshi> git add bin # Add bin/ to source control
<Qureshi> You may need to remove bin/ from your .gitignore as well.
<Qureshi> When you install a gem whose executable you want to use in your app,
<Qureshi> generate it and add it to source control:
<Qureshi> bundle binstubs some-gem-name
<Qureshi> git add bin/new-executable
zeroDi has quit [Quit: WeeChat 1.3]
<Qureshi> LoadError: no such file to load -- /Users/Qureshi/config/boot
<Qureshi> require at org/jruby/RubyKernel.java:1071
<Qureshi> exec_app_rails at /Users/Qureshi/.rvm/gems/jruby-1.7.19/gems/railties-4.2.5.1/lib/rails/app_rails_loader.rb:44
<Qureshi> loop at org/jruby/RubyKernel.java:1507
<Qureshi> exec_app_rails at /Users/Qureshi/.rvm/gems/jruby-1.7.19/gems/railties-4.2.5.1/lib/rails/app_rails_loader.rb:34
<Qureshi> (root) at /Users/Qureshi/.rvm/gems/jruby-1.7.19/gems/railties-4.2.5.1/lib/rails/cli.rb:5
<havenwood> Qureshi: Please don't paste more than three lines of text here.
<Qureshi> require at org/jruby/RubyKernel.java:1071
<Qureshi> (root) at /Users/Qureshi/.rvm/gems/jruby-1.7.19/gems/railties-4.2.5.1/bin/rails:1
<Qureshi> load at org/jruby/RubyKernel.java:1087
<Qureshi> (root) at /Users/Qureshi/.rvm/gems/jruby-1.7.19/gems/railties-4.2.5.1/bin/rails:9
<Qureshi> eval at org/jruby/RubyKernel.java:1107
<Qureshi> (root) at /Users/Qureshi/.rvm/gems/jruby-1.7.19/bin/jruby_executable_hooks:15
<Qureshi> I apologize
<Qureshi> ok understood
jonee has quit [Ping timeout: 260 seconds]
Ishido has quit [Quit: Roads? Where We're Going We Don't Need Roads.]
Ebok has quit [Quit: Leaving]
<havenwood> Qureshi: I'd suggest creating a Gist with the full steps you've taken and the errors you're getting. Then show those to the folk in the #rubyonrails channel. Keep updating your Gist as you try new commands and get new errors.
<flughafen_> what the hell
<havenwood> Qureshi: https://gist.github.com
<Qureshi> ok I will do this
<Qureshi> thanks
SHyx0rmZ has quit [Remote host closed the connection]
codecop has quit [Remote host closed the connection]
<flughafen_> is it better/safer to override inspect or to_s of a class for pretty outputtingof an object?
lightheaded has joined #ruby
idefine has joined #ruby
sipster has quit [Quit: Leaving]
<hanmac> flughafen_ i think the best way might be to do both
<havenwood> flughafen_: p is to inspect as puts is to to_s
<flughafen_> ok, thanks
Suntzu has quit [Quit: changing servers]
brijesh has joined #ruby
Suntzu has joined #ruby
Pupeno has quit [Remote host closed the connection]
SHyx0rmZ has joined #ruby
<flughafen_> what is called when I just do puts obj?
davedev24 has joined #ruby
idefine has quit [Ping timeout: 276 seconds]
benlieb has quit [Quit: benlieb]
nerium has joined #ruby
Don_John has joined #ruby
<Gasher> hi, I want to use a function from my own module but it doesn't work: http://pastebin.com/W3n5Li8e
<ruby[bot]> Gasher: we in #ruby do not like pastebin.com, I reposted your paste to gist for you: https://gist.github.com/9db1661fb18eed3b04b0
<ruby[bot]> Gasher: pastebin.com loads slowly for most, has ads which are distracting and has terrible formatting.
<havenwood> Gasher: Gist the code that's failing?
<Gasher> did you see the bot's message?
LoneHerm_ has joined #ruby
<havenwood> Gasher: I mean: formulator.rb
flopsec has joined #ruby
<flughafen_> Gasher: yeah, let's see what code called this
<Gasher> I think it explains everything
infernix has joined #ruby
<Gasher> okay, I know what's wrong
<Gasher> damn it's difficult to work on multiple languages...
<Gasher> or no
<havenwood> Gasher: Yeah, we don't know what `Formulae.pythagoras(n1, n2)` returns, but presumably not a String
<havenwood> Gasher: Interpolate it into your String
aryaching has joined #ruby
Liothen has joined #ruby
<havenwood> >> puts "OMG" "WTF" "BBQ"
<ruby[bot]> havenwood: # => OMGWTFBBQ ...check link for more (https://eval.in/527064)
<Ox0dea> But not like that!
<Gasher> yeah, I don't know why I didn't interpolate it
<havenwood> No, not like that
shanemcd_ has quit [Remote host closed the connection]
Don_John_ has joined #ruby
nerium has quit [Quit: nerium]
vikaton has quit [Quit: Connection closed for inactivity]
benlieb has joined #ruby
<havenwood> #{}
<Gasher> yeah, I know
dlitvak has quit [Remote host closed the connection]
<havenwood> flughafen_: obj gets #to_s called, then if it doesn't end in a "\n" one gets printed as well
Don_John has quit [Ping timeout: 250 seconds]
<havenwood> flughafen_: thought it's not quite so straight up, that's the general case
<havenwood> though*
<Gasher> looks like the site I used was written in 1.8.5 :e
<Gasher> *with
sneakerhax has joined #ruby
<flughafen_> thanks havenwood
shanemcd_ has joined #ruby
flopsec has quit [Quit: Leaving]
<havenwood> flughafen_: The new line added at the end comes up in multithreading, since the implicit \n is printed separately from the obj Like if you run this a few times you're likely to get no newline or multiple in a row a few times: 12.times { Thread.new { puts "smurfy!" } }
<havenwood> flughafen_: But change from implicit to explicit new line, "smurfy" to "smurfy\n" , and then that won't happen. They print together.
<havenwood> flughafen_: The former is like: print "smurfy!", "\n"
shanemcd_ has quit [Ping timeout: 250 seconds]
<havenwood> Anyways, just an aside.
kknight has joined #ruby
dlitvak has joined #ruby
Azure has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
chouhoulis has joined #ruby
diegoviola has joined #ruby
chouhoulis has quit [Ping timeout: 250 seconds]
freerobby has joined #ruby
<flughafen_> ok, thanks
<flughafen_> havenwood: so include new lines all the time?
<flughafen_> in to_s or inspect
<Ox0dea> Definitely not.
<havenwood> flughafen_: No, just something to be aware of.
Pupeno has joined #ruby
<flughafen_> ok.
Azure has joined #ruby
al2o3-cr has joined #ruby
pawnbox has joined #ruby
* flughafen_ is the king of ruby now
despai has quit [Quit: This computer has gone to sleep]
<Ox0dea> flughafen_: https://eval.in/527089
<Ox0dea> That should help you sit a little more comfortably on your throne.
<Ox0dea> Whether a king should sit comfortably or not is a matter for debate, I suppose.
despai has joined #ruby
rodolfowtf has quit [Quit: No Ping reply in 180 seconds.]
despai has quit [Client Quit]
duckpupp1 has joined #ruby
Pupeno has quit [Remote host closed the connection]
davedev24 has quit []
LoneHerm_ has quit [Remote host closed the connection]
pawnbox has quit [Ping timeout: 250 seconds]
rodolfowtf has joined #ruby
rodolfowtf has quit [Max SendQ exceeded]
webus has joined #ruby
LoneHerm_ has joined #ruby
Pupeno has joined #ruby
brijesh has quit [Ping timeout: 260 seconds]
rodolfowtf has joined #ruby
rodolfowtf has quit [Max SendQ exceeded]
bkxd has joined #ruby
rodolfowtf has joined #ruby
duckpupp1 has quit [Ping timeout: 250 seconds]
idefine has joined #ruby
sonja has joined #ruby
heavyside has joined #ruby
<heavyside> yeah rubby whatsup
<heavyside> hi rbuy whatsup? inggers dats whatsup
<sonja> my script is too slow... i need to refactor it
<heavyside> i kill inggers roll
gigetoo has quit [Ping timeout: 260 seconds]
<heavyside> i bill inggers oh
nogic has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<heavyside> i slice dem inggers up until they hop back home
bkxd has quit [Ping timeout: 250 seconds]
<heavyside> african inggers, lets put thtme where they belong
gigetoo has joined #ruby
<heavyside> back in the dirt wherer they ksin is from
<havenwood> !ban heavyside !P racist trolling
heavyside was kicked from #ruby by ruby[bot] [racist trolling]
BtcBen has joined #ruby
marcdel has quit [Ping timeout: 276 seconds]
<havenwood> Sonja: What's the slow part?
idefine has quit [Ping timeout: 246 seconds]
Snowy has joined #ruby
eregi has joined #ruby
<flughafen_> thanks Ox0dea
<Ox0dea> Sure thing.
fostertheweb has quit [Quit: Textual IRC Client: www.textualapp.com]
mattwildig has joined #ruby
william3 has quit [Remote host closed the connection]
Snowy has quit [Ping timeout: 276 seconds]
ericn81 has joined #ruby
eregi has quit [Ping timeout: 260 seconds]
armyriad has quit [Ping timeout: 260 seconds]
eam_ has joined #ruby
<Papierkorb> Does someone know where to report ruby-lang.org/ bugs? https://www.ruby-lang.org/de/community/mailing-lists/ the "Wöchentliche Zusammenfassung" and the "Ruby-Forum.org" links direct to a weird or 404 page respectively
<Papierkorb> No idea if the EN page is broken too.
brixen has quit [Ping timeout: 248 seconds]
nlsun has quit [Ping timeout: 248 seconds]
Fire-Dragon-DoL has quit [Ping timeout: 248 seconds]
swgillespie has quit [Ping timeout: 248 seconds]
MuffinPimp has quit [Ping timeout: 248 seconds]
shelling__ has quit [Ping timeout: 248 seconds]
irick has quit [Ping timeout: 248 seconds]
IanMalcolm has quit [Ping timeout: 248 seconds]
Djole has quit [Ping timeout: 248 seconds]
apeiros has quit [Ping timeout: 248 seconds]
SHyx0rmZ has quit [Ping timeout: 248 seconds]
spastorino has quit [Ping timeout: 248 seconds]
bogdanteleaga has quit [Ping timeout: 248 seconds]
bier has quit [Ping timeout: 248 seconds]
eam has quit [Ping timeout: 248 seconds]
djellemah has quit [Ping timeout: 248 seconds]
dualbus has quit [Ping timeout: 248 seconds]
dlitvak has quit [Ping timeout: 248 seconds]
sauvin has quit [Ping timeout: 248 seconds]
CustosLimen has quit [Ping timeout: 248 seconds]
YaknotiS has quit [Ping timeout: 248 seconds]
Mio-chan has quit [Ping timeout: 248 seconds]
vikas027 has joined #ruby
Djole has joined #ruby
Djole has quit [Changing host]
Djole has joined #ruby
armyriad has joined #ruby
MuffinPimp has joined #ruby
MalcolmReynolds has joined #ruby
CustosLim3n has joined #ruby
irick has joined #ruby
bogdanteleaga has joined #ruby
YaknotiS has joined #ruby
djellemah has joined #ruby
nlsun has joined #ruby
Fire-Dragon-DoL has joined #ruby
william3 has joined #ruby
sauvin has joined #ruby
bier_ has joined #ruby
shelling__ has joined #ruby
apeiros has joined #ruby
dlitvak has joined #ruby
ElFerna_ has joined #ruby
Mio-chan has joined #ruby
ldg has joined #ruby
swgillespie has joined #ruby
Pupeno has quit [Remote host closed the connection]
spastorino has joined #ruby
dualbus has joined #ruby
brixen has joined #ruby
bb010g has joined #ruby
<Papierkorb> thanks
ruby-lang112 has joined #ruby
<Papierkorb> havenwood: Is their redmine also the right place to start a discussion on adding new ruby language-level features?
<Papierkorb> Or is some ML the right place for the first stop?
<havenwood> Papierkorb: Yup, it's the place to propose.
<Papierkorb> kk
Keltia has joined #ruby
tekacs has quit [Ping timeout: 244 seconds]
gaf_ has quit [Ping timeout: 244 seconds]
Karunamon has quit [Ping timeout: 244 seconds]
unsymbol_ has quit [Ping timeout: 244 seconds]
z3uS has quit [Ping timeout: 244 seconds]
pawnbox has joined #ruby
ElFerna_ has quit [Ping timeout: 246 seconds]
`derpy has quit [Ping timeout: 244 seconds]
DenSchub has quit [Ping timeout: 244 seconds]
Eiam has joined #ruby
ruby-lang112 has left #ruby [#ruby]
skade has joined #ruby
rvchangue has quit [Ping timeout: 244 seconds]
matp has quit [Ping timeout: 244 seconds]
Keltia_ has quit [Ping timeout: 244 seconds]
david2 has quit [Ping timeout: 244 seconds]
ruisanto1 has quit [Ping timeout: 244 seconds]
oddmunds has quit [Ping timeout: 244 seconds]
snapcase has quit [Ping timeout: 244 seconds]
<shevy> oh the dude who was here yesterday
<shevy> cj or so
<shevy> he indeed fixed stuff
<shevy> oh he is here too :)
eregi has joined #ruby
<shevy> that's like lightning speed
bweston92 has quit [Ping timeout: 244 seconds]
Guest33981 has quit [Ping timeout: 244 seconds]
sysanthrope has quit [Ping timeout: 244 seconds]
slackR has quit [Ping timeout: 244 seconds]
tekacs has joined #ruby
DenSchub has joined #ruby
zeroDivisible has quit [Ping timeout: 244 seconds]
unsymbol has joined #ruby
vikas027 has left #ruby ["Textual IRC Client: www.textualapp.com"]
ruisantos has joined #ruby
sysanthrope has joined #ruby
slackR has joined #ruby
z3uS has joined #ruby
hackeron has quit [Ping timeout: 244 seconds]
pawnbox has quit [Ping timeout: 260 seconds]
hackeron has joined #ruby
TomyLobo has quit [Ping timeout: 260 seconds]
Karunamon has joined #ruby
`derpy has joined #ruby
eregi has quit [Ping timeout: 260 seconds]
LoneHerm_ has quit [Remote host closed the connection]
Biohazard has joined #ruby
aspiers has quit [Ping timeout: 244 seconds]
Biohazard is now known as Guest59455
gaf_ has joined #ruby
rvchangue has joined #ruby
kgutteridge has joined #ruby
ljarvis has quit [Ping timeout: 244 seconds]
ljarvis has joined #ruby
kknight has quit [Ping timeout: 246 seconds]
fourq_ has left #ruby ["twip"]
snapcase has joined #ruby
flughafen_ has quit [Ping timeout: 246 seconds]
trosborn has joined #ruby
pushcx_ is now known as pushcx
matp has joined #ruby
david2 has joined #ruby
pushcx has quit [Changing host]
pushcx has joined #ruby
flughafen_ has joined #ruby
bweston92 has joined #ruby
MatthewsFace has joined #ruby
LoneHerm_ has joined #ruby
oddmunds has joined #ruby
mlehrer has quit [Ping timeout: 276 seconds]
zeroDivisible has joined #ruby
snapcase has quit [Ping timeout: 244 seconds]
MatthewsFace has quit [Remote host closed the connection]
aryaching has quit [Read error: Connection reset by peer]
lightheaded has quit []
william3 has quit [Remote host closed the connection]
MatthewsFace has joined #ruby
rodolfowtf has quit [Ping timeout: 246 seconds]
idefine has joined #ruby
aryaching has joined #ruby
chouhoulis has joined #ruby
bronson has joined #ruby
hangelo has joined #ruby
intrigueD has quit [Remote host closed the connection]
snapcase has joined #ruby
william3 has joined #ruby
idefine has quit [Ping timeout: 250 seconds]
bronson has quit [Ping timeout: 260 seconds]
chouhoulis has quit [Ping timeout: 276 seconds]
ur5us has quit [Remote host closed the connection]
william3 has quit [Ping timeout: 246 seconds]
rippa has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
ur5us has joined #ruby
kloeri_ is now known as kloeri
duckpupp1 has joined #ruby
davedev24 has joined #ruby
aspiers has joined #ruby
karapetyan has joined #ruby
ruby-lang256 has quit [Ping timeout: 252 seconds]
snapcase has quit [Ping timeout: 244 seconds]
snapcase has joined #ruby
ixti has joined #ruby
despai has joined #ruby
baweaver has joined #ruby
nogic has joined #ruby
flughafen_ has quit [Ping timeout: 250 seconds]
duckpupp1 has quit [Ping timeout: 246 seconds]
despai has quit [Client Quit]
Arcaire_ is now known as Arcaire
dravine_ has quit [Read error: Connection reset by peer]
__chris has joined #ruby
marcdel has joined #ruby
pawnbox has joined #ruby
nogic has quit [Client Quit]
dravine has joined #ruby
baweaver has quit [Ping timeout: 250 seconds]
webus has quit [Quit: Ухожу я от вас (xchat 2.4.5 или старше)]
__chris has quit [Client Quit]
marcdel has quit [Ping timeout: 260 seconds]
decoponyo has quit [Quit: Leaving...]
pawnbox has quit [Ping timeout: 260 seconds]
j0n3 has joined #ruby
j0n3 has quit [Remote host closed the connection]
solocshaw has quit [Ping timeout: 276 seconds]
sandstrom has quit [Quit: My computer has gone to sleep.]
j0n3 has joined #ruby
Eising_ is now known as Eising
techietrash_ has quit [Changing host]
techietrash_ has joined #ruby
snapcase has quit [Ping timeout: 244 seconds]
techietrash_ is now known as techietrash
snapcase has joined #ruby
Vingador has joined #ruby
j3r0 has quit [Ping timeout: 246 seconds]
johnmilton has quit [Ping timeout: 260 seconds]
blah has joined #ruby
MeMoc has joined #ruby
djbkd has quit [Quit: Leaving...]
blah has quit [Read error: Connection reset by peer]
ElFerna_ has joined #ruby
fullofcaffeine has quit [Remote host closed the connection]
johnmilton has joined #ruby
fullofcaffeine has joined #ruby
rahult has joined #ruby
blackmes1 has joined #ruby
fullofcaffeine has quit [Remote host closed the connection]
fullofcaffeine has joined #ruby
aryaching has quit [Read error: Connection reset by peer]
shanemcd_ has joined #ruby
eregi has joined #ruby
snapcase has quit [Ping timeout: 244 seconds]
snapcase has joined #ruby
LoneHerm_ has quit [Read error: Connection reset by peer]
Eiam has quit [Quit: ╯°□°)╯︵ǝpouǝǝɹɟ]
shanemcd_ has quit [Ping timeout: 246 seconds]
bkxd has joined #ruby
Jackneill has quit [Ping timeout: 276 seconds]
chouhoulis has joined #ruby
gsilvapt has joined #ruby
gsilvapt has left #ruby [#ruby]
bkxd has quit [Ping timeout: 248 seconds]
chouhoulis has quit [Remote host closed the connection]
Guest4103 has quit [Ping timeout: 276 seconds]
Mon_Ouie has quit [Quit: WeeChat 1.4]
olspookishmagus has joined #ruby
olspookishmagus is now known as Guest63537
neanderslob has quit [Read error: Connection reset by peer]
QORRiE has quit [Remote host closed the connection]
nogic has joined #ruby
ta has joined #ruby
nogic has quit [Max SendQ exceeded]
LoneHerm_ has joined #ruby
nogic has joined #ruby
nogic has quit [Max SendQ exceeded]
lubekpl has joined #ruby
lubekpl has quit [Client Quit]
elifoster has quit [Ping timeout: 260 seconds]
Spami has joined #ruby
nogic has joined #ruby
lubekpl has joined #ruby
aryaching has joined #ruby
nogic has quit [Max SendQ exceeded]
nogic has joined #ruby
nogic has quit [Max SendQ exceeded]
ElFerna_ has quit [Ping timeout: 260 seconds]
nogic has joined #ruby
johnmilton has quit [Ping timeout: 250 seconds]
nogic has quit [Max SendQ exceeded]
nogic has joined #ruby
nogic has quit [Max SendQ exceeded]
platzhirsch has joined #ruby
nogic has joined #ruby
nogic has quit [Max SendQ exceeded]
steffkes has quit [Ping timeout: 276 seconds]
eregi has quit [Ping timeout: 260 seconds]
zenlot1 has joined #ruby
moeabdol2 has quit [Ping timeout: 250 seconds]
uglybandersnatch has joined #ruby
gizless has joined #ruby
imanc has left #ruby [#ruby]
tw1sted has quit [Changing host]
tw1sted has joined #ruby
zenlot has quit [Ping timeout: 276 seconds]
hangelo has quit [Quit: Yaaic - Yet another Android IRC client - http://www.yaaic.org]
<cj> thanks, shevy!
Guest34101 has joined #ruby
gizmore has quit [Ping timeout: 260 seconds]
<cj> shevy: I've been on freenode since '95 almost without exception. Welcome to my network :-)
eregi has joined #ruby
Channel6 has joined #ruby
Aviio has joined #ruby
n008f4g_ has quit [Ping timeout: 246 seconds]
saneax_AFK is now known as saneax
johnmilton has joined #ruby
duckpupp1 has joined #ruby
eregi has quit [Ping timeout: 246 seconds]
Aviio has quit [Remote host closed the connection]
chouhoulis has joined #ruby
KnownSyntax has quit [Ping timeout: 260 seconds]
KnownSyntax has joined #ruby
KnownSyntax has quit [Changing host]
KnownSyntax has joined #ruby
duckpupp1 has quit [Ping timeout: 260 seconds]
skweek has joined #ruby
vikas027 has joined #ruby
gizless has quit [Quit: KVIrc 4.9.1 Aria http://www.kvirc.net/]
uglybandersnatch has quit [Ping timeout: 246 seconds]
vikas027 has left #ruby [#ruby]
Snowy has joined #ruby
Noxilex has joined #ruby
Guest93253 has quit [Changing host]
Guest93253 has joined #ruby
Guest93253 is now known as paultreny
jawr has left #ruby [#ruby]
Aviio has joined #ruby
baweaver has joined #ruby
kgutteridge has quit [Quit: kgutteridge]
podman has joined #ruby
Snowy has quit [Ping timeout: 248 seconds]
chipotle has joined #ruby
brijesh has joined #ruby
narendasan has joined #ruby
arlek has joined #ruby
n008f4g_ has joined #ruby
intrigueD has joined #ruby
skweek has quit [Remote host closed the connection]
Brando753 has quit [Ping timeout: 240 seconds]
dgncn has quit [Quit: Leaving]
huyderman has quit [Ping timeout: 260 seconds]
peteyg has quit [Ping timeout: 260 seconds]
jolts has quit [Ping timeout: 276 seconds]
s00pcan_ has quit [Ping timeout: 260 seconds]
skweek has joined #ruby
skade has quit [Quit: Computer has gone to sleep.]
jolts has joined #ruby
jolts has quit [Excess Flood]
Brando753 has joined #ruby
jolts has joined #ruby
Noxilex has quit [Ping timeout: 246 seconds]
LoneHerm_ has quit [Remote host closed the connection]
LoneHerm_ has joined #ruby
huyderman has joined #ruby
LoneHerm_ has quit [Remote host closed the connection]
cdg has quit [Remote host closed the connection]
trosborn has quit [Quit: trosborn]
solocshaw has joined #ruby
lubekpl has quit [Quit: Textual IRC Client: www.textualapp.com]
Brando753 has quit [Ping timeout: 248 seconds]
dlitvak has quit [Remote host closed the connection]
ericn81 has quit [Remote host closed the connection]
Aviio_ has joined #ruby
DmitryBochkarev has joined #ruby
Brando753 has joined #ruby
biberu has quit []
Aviio has quit [Ping timeout: 276 seconds]
wwwbukolaycom has joined #ruby
Zacketh is now known as Zackio
dunj3 has joined #ruby
freerobby has quit [Quit: Leaving.]
despai has joined #ruby
pawnbox has joined #ruby
fedexo has quit [Ping timeout: 250 seconds]
Aviio has joined #ruby
Aviio has quit [Client Quit]
Aviio_ has quit [Ping timeout: 248 seconds]
pawnbox has quit [Ping timeout: 250 seconds]
Brando753 has quit [Ping timeout: 240 seconds]
davedev2_ has joined #ruby
ElFerna_ has joined #ruby
mattwildig has quit [Remote host closed the connection]
DmitryBochkarev has quit [Quit: This computer has gone to sleep]
allcentury has quit [Ping timeout: 260 seconds]
kirillzh has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
davedev24 has quit [Ping timeout: 268 seconds]
intrigueD has quit [Remote host closed the connection]
Brando753 has joined #ruby
ElFerna_ has quit [Ping timeout: 260 seconds]
dcunit3d has joined #ruby
j3r0 has joined #ruby
bronson has joined #ruby
devbug_ has joined #ruby
__chris has joined #ruby
crdpink2 has joined #ruby
y2mq37 has joined #ruby
crdpink has quit [Ping timeout: 264 seconds]
devbug has quit [Ping timeout: 246 seconds]
platzhirsch has left #ruby [#ruby]
bronson has quit [Ping timeout: 260 seconds]
__chris has quit [Client Quit]
kam270 has joined #ruby
sonja has quit []
kam270 has quit [Max SendQ exceeded]
infoget has joined #ruby
infoget has left #ruby ["Textual IRC Client: www.textualapp.com"]
kam270 has joined #ruby
trosborn has joined #ruby
firstdayonthejob has quit [Ping timeout: 260 seconds]
kam270 has quit [Remote host closed the connection]
cj has quit [Ping timeout: 276 seconds]
duckpupp1 has joined #ruby
cj__ has quit [Ping timeout: 252 seconds]
shanemcd_ has joined #ruby
Rodya_ has joined #ruby
cj has joined #ruby
cj__ has joined #ruby
uglybandersnatch has joined #ruby
shanemcd_ has quit [Remote host closed the connection]
shanemcd_ has joined #ruby
pawnbox has joined #ruby
duckpupp1 has quit [Ping timeout: 248 seconds]
rahult has quit [Read error: Connection reset by peer]