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?
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]
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 :)
<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
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
<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]
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]
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]
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]
<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)
<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]
<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)
<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?
<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]
<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!
<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
<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.
<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]
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]