baweaver changed the topic of #ruby to: Rules & more: https://ruby-community.com | Ruby 2.5.1, 2.4.4, 2.3.7, 2.6.0-preview1: https://www.ruby-lang.org | Paste 4+ lines of text to https://gist.github.com | Rails questions? Ask in #RubyOnRails | Books: https://goo.gl/wpGhoQ | Logs: https://irclog.whitequark.org/ruby
dcunit3d has quit [Ping timeout: 276 seconds]
dogweather has quit [Remote host closed the connection]
caleBOT__ has joined #ruby
caleBOT_ has joined #ruby
houhoulis has joined #ruby
dogweather has joined #ruby
caleBO___ has quit [Ping timeout: 248 seconds]
caleBOT has quit [Ping timeout: 248 seconds]
marr has quit [Remote host closed the connection]
emilford has joined #ruby
jcarl43 has quit [Quit: WeeChat 2.1]
dstrunk has joined #ruby
dionysus69 has quit [Ping timeout: 248 seconds]
chocoelho_ has joined #ruby
alfiemax has joined #ruby
RougeR has quit [Ping timeout: 256 seconds]
dogweather has quit [Ping timeout: 255 seconds]
dogweather has joined #ruby
cagomez has quit [Remote host closed the connection]
jokke1 has quit [Ping timeout: 250 seconds]
jokke1 has joined #ruby
cagomez has joined #ruby
alfiemax has quit [Ping timeout: 256 seconds]
mikecmpbll has quit [Ping timeout: 265 seconds]
emilford has quit [Ping timeout: 256 seconds]
mikecmpbll has joined #ruby
Puppet_ has joined #ruby
cagomez has quit [Ping timeout: 256 seconds]
Puppet_ has quit [Client Quit]
dogweather has quit [Remote host closed the connection]
cagomez has joined #ruby
dogweather has joined #ruby
Puppet_ has joined #ruby
nowhere_man has quit [Remote host closed the connection]
cagomez has quit [Ping timeout: 268 seconds]
nowhere_man has joined #ruby
jenrzzz has quit [Ping timeout: 240 seconds]
nitric has quit [Ping timeout: 255 seconds]
jenrzzz has joined #ruby
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
Puppet_ has quit [Read error: Connection reset by peer]
Puppet_ has joined #ruby
darkhanb has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
tdy has quit [Ping timeout: 260 seconds]
dogweather has quit []
ta_ has joined #ruby
raynold has joined #ruby
apeiros has quit [Ping timeout: 240 seconds]
n0m4d1c has joined #ruby
Ian has joined #ruby
Ian is now known as Guest25716
caleBOT__ has quit []
caleBOT_ has quit []
dviola has quit [Quit: WeeChat 2.1]
tdy has joined #ruby
sysop has joined #ruby
TinkerT has quit [Quit: ZNC 1.7.x-nightly-20180417-9f196ee4 - https://znc.in]
sysop is now known as Guest53467
TinkerT has joined #ruby
Azure has quit [Read error: Connection reset by peer]
Azure|dc has joined #ruby
cagomez has joined #ruby
jameser has joined #ruby
ta_ has quit [Ping timeout: 260 seconds]
RougeR has joined #ruby
jameser has quit [Client Quit]
jameser has joined #ruby
cagomez has quit [Ping timeout: 264 seconds]
jenrzzz_ has joined #ruby
Yxhuvud has quit [Quit: No Ping reply in 180 seconds.]
Yxhuvud has joined #ruby
jenrzzz has quit [Ping timeout: 260 seconds]
jenrzzz_ has quit [Ping timeout: 260 seconds]
darkhanb has joined #ruby
jameser has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
cyberg has quit [Quit: Leaving]
Guest53467 has quit [Quit: Leaving]
dinfuehr has quit [Ping timeout: 264 seconds]
dinfuehr has joined #ruby
alfiemax has joined #ruby
Asher has quit [Read error: Connection reset by peer]
Yxhuvud has quit [Quit: No Ping reply in 180 seconds.]
kapil___ has joined #ruby
Yxhuvud has joined #ruby
gizmore|2 has joined #ruby
roamingdog has quit [Remote host closed the connection]
roamingdog has joined #ruby
roamingdog has quit [Remote host closed the connection]
roamingdog has joined #ruby
gizmore has quit [Ping timeout: 256 seconds]
roamingdog has quit [Remote host closed the connection]
roamingdog has joined #ruby
roamingdog has quit [Remote host closed the connection]
roamingdog has joined #ruby
mrush has joined #ruby
roamingdog has quit [Remote host closed the connection]
roamingdog has joined #ruby
roamingdog has quit [Remote host closed the connection]
banisterfiend has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
nicesignal has quit [Remote host closed the connection]
banisterfiend has joined #ruby
<garyserj> What does this mean if 3==3 then "gg" end Like no puts for example.
nicesignal has joined #ruby
arekushi has quit [Read error: Connection reset by peer]
Yxhuvud has quit [Quit: No Ping reply in 180 seconds.]
Yxhuvud has joined #ruby
<mozzarella> garyserj: it means the branch evaluates to "gg"
<havenwood> garyserj: You could write that: 'gg' if 3 == 3
<havenwood> garyserj: Or: 3 == 3 && 'gg'
<havenwood> garyserj: The statement will return `'gg'` or `nil`.
<mozzarella> >> puts (if true then 1 else 2 end)
<ruby[bot]> mozzarella: # => 1 ...check link for more (https://eval.in/1003033)
<Vashy> garyserj, it returns the string "gg"
<Vashy> oh someone already said that nvm
<havenwood> You could shorten it to: "gg"
<havenwood> TruffleRuby would!
jsrtr has quit [Ping timeout: 246 seconds]
jsrtr has joined #ruby
<garyserj> yes I understand programming languages, but ruby seems a bit different in the statement returning something
alfiemax has quit [Remote host closed the connection]
<garyserj> suppose I have a function r=def abc1; puts "gg"; end Then can I execute it through r?
<mozzarella> constructs that would be statements in other languages are expressions in ruby
alfiemax has joined #ruby
<mozzarella> def returns a symbol AFAIK
<mozzarella> the name of the function
<mozzarella> >> def abc1; end
<ruby[bot]> mozzarella: # => :abc1 (https://eval.in/1003034)
<havenwood> >> r=def abc1; puts "gg"; end; public_send r
<ruby[bot]> havenwood: # => private method `abc1' called for main:Object (NoMethodError) ...check link for more (https://eval.in/1003035)
<havenwood> >> r=def abc1; puts "gg"; end; send r
<ruby[bot]> havenwood: # => gg ...check link for more (https://eval.in/1003036)
jameser has joined #ruby
<havenwood> for some reason eval.in doesn't see public methods on main
jameser has quit [Client Quit]
<havenwood> 20>> def old; end
<ruby[bot]> havenwood: # => nil (https://eval.in/1003038)
<havenwood> 21>> def new; end
<ruby[bot]> havenwood: # => :new (https://eval.in/1003039)
_aeris_ has quit [Ping timeout: 255 seconds]
<mozzarella> thought the behavior had changed… glad to know I'm not crazy
n0m4d1c has quit [Ping timeout: 264 seconds]
<garyserj> thanks
houhoulis has quit []
_aeris_ has joined #ruby
cadillac_ has quit [Ping timeout: 255 seconds]
cadillac_ has joined #ruby
jameser has joined #ruby
cschneid_ has joined #ruby
alfiemax has quit [Remote host closed the connection]
rkazak has joined #ruby
chocoelho_ has quit [Quit: Konversation terminated!]
jameser has quit [Client Quit]
alfiemax has joined #ruby
cschneid_ has quit [Ping timeout: 256 seconds]
alfiemax_ has joined #ruby
xuanrui has joined #ruby
alfiemax has quit [Ping timeout: 256 seconds]
cadillac_ has quit [Quit: I quit]
cadillac_ has joined #ruby
cthu| has joined #ruby
AJA4350 has quit [Quit: AJA4350]
cthulchu_ has quit [Ping timeout: 240 seconds]
ipee has quit [Read error: Connection reset by peer]
bmurt has joined #ruby
nielsk_ has quit [Quit: So Long, and Thanks for All the Fish]
quobo has quit [Quit: Connection closed for inactivity]
chris349 has joined #ruby
chris349 has quit [Client Quit]
Cyrus has joined #ruby
chris349 has joined #ruby
<chris349> I have a rake task that runs fine from a crontab, but its getting to complex so I want to move it to a shell script. I copy all the env variables from my crontab, such as RAILS_ENV, but when I run the script it errors out because its not running in the right RAILS_ENV
<chris349> Why is it ignoring this from a shell script but working fine in a crontab?
Dimik has joined #ruby
nielsk has joined #ruby
cadillac_ has quit [Ping timeout: 268 seconds]
alfiemax_ has quit [Ping timeout: 250 seconds]
<elomatreb> Are you absolutely sure you're setting the rails env correctly? (i.e. is it actually exported?)
cadillac_ has joined #ruby
arekushi has joined #ruby
<chris349> eldritch, I dont export it in the crontab. Whats the right way to export it in a shell script?
ta_ has joined #ruby
mroutis has quit [Remote host closed the connection]
sanscoeur has joined #ruby
jacky has joined #ruby
cadillac_ has quit [Ping timeout: 250 seconds]
cadillac_ has joined #ruby
rkazak has quit [Quit: Sleep.....ing....]
jenrzzz has joined #ruby
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
caleBOT_ has joined #ruby
caleBOT has joined #ruby
gix has joined #ruby
cadillac_ has quit [Ping timeout: 260 seconds]
cadillac_ has joined #ruby
gix- has quit [Ping timeout: 240 seconds]
RougeR has quit [Ping timeout: 260 seconds]
dinfuehr has quit [Ping timeout: 240 seconds]
dinfuehr has joined #ruby
govg has joined #ruby
ta_ has quit [Ping timeout: 240 seconds]
dinfuehr has quit [Ping timeout: 240 seconds]
jenrzzz has quit [Ping timeout: 264 seconds]
dinfuehr has joined #ruby
twe4ked has quit [Ping timeout: 265 seconds]
twe4ked has joined #ruby
kapil___ has quit [Quit: Connection closed for inactivity]
bmurt has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
dinfuehr has quit [Ping timeout: 268 seconds]
cadillac_ has quit [Ping timeout: 260 seconds]
dinfuehr has joined #ruby
cadillac_ has joined #ruby
Asher has joined #ruby
sanscoeur has quit [Remote host closed the connection]
papajo has joined #ruby
<elomatreb> chris349: Sorry, missed your reply. You need to either call it in the line where you invoke rails (RAILS_ENV=something rake sometask), or export the variable in general (export RAILS_ENV=something). Otherwise it's local to your shell script, and spawned child processes do not know about it
ciscam has quit [Ping timeout: 256 seconds]
ciscam has joined #ruby
shynoob has joined #ruby
<shynoob> what's the best linux distro to run on server for rails deployment??
cadillac_ has quit [Ping timeout: 256 seconds]
cadillac_ has joined #ruby
roamingdog has joined #ruby
darkhanb has quit [Ping timeout: 256 seconds]
roamingdog has quit [Ping timeout: 268 seconds]
jameser has joined #ruby
donofrio has quit [Remote host closed the connection]
lytol has quit [Remote host closed the connection]
jameser has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
tacoboy has joined #ruby
mikecmpbll has quit [Quit: inabit. zz.]
shynoob has quit [Quit: Leaving]
xuanrui has quit [Quit: Leaving]
cadillac_ has quit [Read error: Connection reset by peer]
segy has quit [Quit: ZNC - http://znc.in]
ryzokuken has joined #ruby
cadillac_ has joined #ruby
segy has joined #ruby
jameser has joined #ruby
al2o3-cr has quit [Ping timeout: 240 seconds]
rkazak has joined #ruby
arescorpio has quit [Quit: Leaving.]
papajo has quit []
cadillac_ has quit [Ping timeout: 256 seconds]
raynold has quit [Quit: Connection closed for inactivity]
cadillac_ has joined #ruby
sauvin has joined #ruby
jameser has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
SuperLag has quit [Quit: leaving]
SuperLag has joined #ruby
agent_white has quit [Quit: bbl]
roamingdog has joined #ruby
cadillac_ has quit [Ping timeout: 248 seconds]
roamingdog has quit [Ping timeout: 260 seconds]
cadillac_ has joined #ruby
jameser has joined #ruby
roamingdog has joined #ruby
qnaal has joined #ruby
\void has quit [Quit: So long, and thanks for all the fish.]
konsolebox has quit [Ping timeout: 240 seconds]
jameser has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
rippa has joined #ruby
konsolebox has joined #ruby
ta_ has joined #ruby
<Vashy> I'm trying to write my first gem, to parse the output of "lspci"
<Vashy> so I had ruby mine create a new gem project for me
<Vashy> I decided to name the project ruby-lspci
<Vashy> but it ended up creating a module structure kind of like this: Ruby::Lspci
<Vashy> is it bad to have the top level module be called Ruby?
<baweaver> Probably.
<baweaver> high chance of someone else intersecting it by accident
<Vashy> ok
<Vashy> I'll have to refactor then
<baweaver> you could always make Lspci the top namespace as well
<Vashy> yeah I think that's what I'll have to do
<baweaver> dashes in a gem name indicate parent -> child
<Vashy> also, is there documentation or convention on how a project should be structured?
<Vashy> oic I didn't know that
<Vashy> baweaver, if I refactor the code to no longer use the Ruby namespace, is it okay to keep the name of the project/gem as 'ruby-lspci' ?
<baweaver> you'll anger the eldergods
<baweaver> na, probably fine
<Vashy> =) cool
<baweaver> I've seen other people do the same thing
<Vashy> I'll reread the naming conventions page on rubygems just to make sure
<baweaver> Personally I find it redundant
<baweaver> by merit of installing or making a gem it's known to be ruby
<Vashy> true
andikr has joined #ruby
DTZUZO_ has quit [Ping timeout: 240 seconds]
zautomata1 has joined #ruby
zautomata has quit [Ping timeout: 240 seconds]
howdoi has joined #ruby
roamingdog has quit [Remote host closed the connection]
qnaal has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
kmurphy4 has quit [Quit: kmurphy4]
ta_ has quit [Ping timeout: 260 seconds]
<elomatreb> Vashy: The Rubygems guides recommend underscores for word separation: https://guides.rubygems.org/name-your-gem/
jameser has joined #ruby
<Vashy> yeah I was just reading that
<Vashy> thanks elomatreb =)
jameser has quit [Client Quit]
alex has joined #ruby
twe4ked has quit [Ping timeout: 246 seconds]
twe4ked has joined #ruby
sylario has quit [Quit: Connection closed for inactivity]
SeepingN has quit [Quit: The system is going down for reboot NOW!]
tvw has joined #ruby
Sonar1 has quit [Quit: WeeChat 2.1]
suukim has joined #ruby
blackmesa has joined #ruby
armyriad has quit [Read error: Connection reset by peer]
agent_white has joined #ruby
armyriad has joined #ruby
ciscam has quit [Ping timeout: 250 seconds]
apeiros has joined #ruby
ciscam has joined #ruby
schleppel has joined #ruby
konsolebox has quit [Ping timeout: 265 seconds]
RedNifre has joined #ruby
caleBOT_ has quit [Remote host closed the connection]
caleBOT has quit [Remote host closed the connection]
caleBOT has joined #ruby
caleBOT_ has joined #ruby
caleBOT_ has quit [Ping timeout: 240 seconds]
caleBOT has quit [Ping timeout: 240 seconds]
dionysus69 has joined #ruby
cadillac_ has quit [Ping timeout: 256 seconds]
cadillac_ has joined #ruby
RedNifre has quit [Ping timeout: 260 seconds]
<Vashy> published a gem and got 6 downloads in a few mins...
<Vashy> is that normal? bots crawling or something?
cadillac_ has quit [Ping timeout: 260 seconds]
Dimik has quit []
cadillac_ has joined #ruby
hanmac has joined #ruby
banisterfiend has quit [Ping timeout: 256 seconds]
Immune has joined #ruby
kmurphy4 has joined #ruby
Immune has quit [Client Quit]
<hanmac> in case of https://bugs.ruby-lang.org/issues/14249 is there someone else beside me that uses this? str[match_str]
drale2k_ has joined #ruby
Immune has joined #ruby
Immune has quit [Client Quit]
kmurphy4 has quit [Ping timeout: 248 seconds]
qnaal has joined #ruby
c0ncealed1 has quit [Read error: Connection reset by peer]
c0ncealed1 has joined #ruby
marr has joined #ruby
cadillac_ has quit [Ping timeout: 240 seconds]
ur5us has joined #ruby
blackmesa has quit [Ping timeout: 250 seconds]
ur5us has quit [Remote host closed the connection]
ur5us has joined #ruby
cadillac_ has joined #ruby
apparition has joined #ruby
<dminuoso> hanmac: Why would you use or rely on this
qnaal has quit [Quit: Textual IRC Client: www.textualapp.com]
cadillac_ has quit [Read error: Connection reset by peer]
Janky has quit []
cadillac_ has joined #ruby
zautomata1 has quit [Quit: WeeChat 1.9.1]
ta_ has joined #ruby
tomphp has joined #ruby
rkazak has quit [Quit: Sleep.....ing....]
ryzokuken has quit [Remote host closed the connection]
emilford has joined #ruby
biberu has joined #ruby
TomyLobo has joined #ruby
conta has joined #ruby
ur5us has quit [Remote host closed the connection]
jamesaxl has joined #ruby
ur5us has joined #ruby
mikecmpbll has joined #ruby
tvw has quit []
ur5us has quit [Ping timeout: 240 seconds]
ta_ has quit [Ping timeout: 240 seconds]
DTZUZO_ has joined #ruby
DTZUZO_ has quit [Ping timeout: 255 seconds]
minimalism has quit [Quit: minimalism]
qnaal has joined #ruby
Quentinius has joined #ruby
<apeiros> hanmac: I'm aware this exists, but I've never used it and I don't remember seeing it in use. I think I'd use String#include? instead of String#[String] (at least I can't imagine a use case where it's not a test for inclusion)
ellcs has joined #ruby
gr33n7007h has joined #ruby
gr33n7007h is now known as al2o3-cr
<apeiros> otoh I don't see a reason to remove it just because somebody got confused
<dminuoso> apeiros: A language shouldn't clean up its mess and toss out old and bad garbage?
* dminuoso eyeballs C and JavaScript
<apeiros> dminuoso: it should. but I wouldn't call String#[String] a high priority target in that
Quentinius has quit [Ping timeout: 255 seconds]
cadillac_ has quit [Read error: Connection reset by peer]
cadillac_ has joined #ruby
dionysus69 has quit [Ping timeout: 276 seconds]
amar has joined #ruby
plexigras has joined #ruby
roamingdog has joined #ruby
emilford has quit [Quit: Lost terminal]
joro_ has joined #ruby
ineb has quit [Remote host closed the connection]
<joro_> hi guys, does anyone know how network_interface gem works ?
ineb has joined #ruby
roamingdog has quit [Ping timeout: 256 seconds]
<joro_> the problem is that it returns the wrong network interface
ciscam has quit [Ping timeout: 260 seconds]
RedNifre has joined #ruby
caleBOT_ has joined #ruby
caleBOT__ has joined #ruby
ciscam has joined #ruby
c_nick has joined #ruby
cschneid_ has joined #ruby
cschneid_ has quit [Ping timeout: 256 seconds]
mohsen_1 has joined #ruby
conta has quit [Ping timeout: 264 seconds]
tomphp has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
tomphp has joined #ruby
caleBOT__ has quit [Ping timeout: 246 seconds]
caleBOT_ has quit [Ping timeout: 246 seconds]
<al2o3-cr> joro_: how so?
<al2o3-cr> NetworkInterface.interfaces returns an array of interfaces names.
sameerynho has joined #ruby
jnollette has quit [Remote host closed the connection]
<joro_> al2o3-cr, i am not familliar with ruby to be honnest, i just found this https://pastebin.com/FeqFS98r
<ruby[bot]> joro_: we in #ruby do not like pastebin.com, it loads slowly for most, has ads which are distracting and has terrible formatting. Please use https://gist.github.com
jnollette has joined #ruby
<joro_> how to paste in https://gist.github.com
c_nick has quit [Quit: ciaos]
<apeiros> sadly since a few weeks ago they require registration for gist :(
qnaal has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
<apeiros> we might change the bot's reaction to pastebin due to that :-/
<joro_> i have reg in github
plexigras has quit [Ping timeout: 268 seconds]
<al2o3-cr> joro_: make sure you're logged in then.
<apeiros> then all you have to do is go to gist.github.com, log in and paste
Zaab1t has joined #ruby
plexigras has joined #ruby
ipe has joined #ruby
RedNifre has quit [Ping timeout: 264 seconds]
<joro_> #{interface} return wlp1s0 which is wrong due to fact that ip addr returns wlp2s0
<al2o3-cr> joro_: that isn't even using the network_interface gem. that is loading yaml with returns a hash then accessing the key network_interface from the secrets hash.
<al2o3-cr> *which
<joro_> i was just guessing, but any idea why does it return wlp1s0 ?
<al2o3-cr> take a look at the secrets.yml
<joro_> ok, i found it, thanks you
<al2o3-cr> what a useless use of cat
karapetyan has joined #ruby
drale2k_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<joro_> how else...can you get the nameserver except from resolv.conf then ?
RedNifre has joined #ruby
<apeiros> joro_: eh, cat | grep -> just grep the file directly
apparition has quit [Quit: Bye]
<apeiros> or in plain ruby: File.read("/etc/resolv.conf").scan(/^nameserver (.*)/).map(&:first) # there may be nicer solutions than this
donofrio has joined #ruby
<apeiros> oh, right: File.foreach("/etc/resolv.conf").grep(/^nameserver (.*)/) { $1 }
tomphp has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<joro_> will that work if resolv.conf requires root ?
<apeiros> if your shellout works, this will work too
<apeiros> unless you setuid'ed your cat, which would be a terrible idea.
<joro_> vim /etc/resolv.conf doesnt work
<apeiros> "doesn't work" is a useless description.
<joro_> it requires sudo
ellcs has quit [Ping timeout: 240 seconds]
karapetyan has quit [Remote host closed the connection]
karapetyan has joined #ruby
<apeiros> I don't know what vim tries to do. but apparently more than just read the file.
<joro_> it depends on the mode
<apeiros> anyway, your subshell does not have more rights than the application running the subshell. so again: if your shellout works, this will work too
<apeiros> and I mean you can just like… try it?
<joro_> it's not a big deal... i was just asking al2o3-cr about the useless cat... i am not familliar with ruby at all
kies^ has quit [Ping timeout: 264 seconds]
<apeiros> …
<apeiros> I explained you?
<apeiros> 12:27 apeiros: joro_: eh, cat | grep -> just grep the file directly
<joro_> apeiros, thanks you :) why do you need to be mad ?
<apeiros> why you think I am?
<al2o3-cr> joro_: hes not mad, he turns green when hes mad :P
<apeiros> I have to asks somebody to take a picture of me when I'm mad, I want to see that 😂
<apeiros> *ask
<al2o3-cr> haha ;)
karapetyan has quit [Remote host closed the connection]
schneider has joined #ruby
<al2o3-cr> joro_: require 'resolv'; Resolv::DNS::Config.new.lazy_initialize.nameserver_port # will get you an array of namerservers and ports
ur5us has joined #ruby
drale2k_ has joined #ruby
ur5us has quit [Ping timeout: 250 seconds]
<al2o3-cr> joro_: you can read, you just can't write to resolv.conf without root priviledges
<joro_> al2o3-cr, yes, my mistake
<al2o3-cr> joro_: no worries. ;)
InfinityFye has joined #ruby
<joro_> guys, is ruby-gmail secured ?
guille-moe has joined #ruby
postmodern has quit [Remote host closed the connection]
ellcs has joined #ruby
ellcs has left #ruby [#ruby]
ipe has quit [Quit: Leaving]
InfinityFye has left #ruby ["Leaving"]
ciscam has quit [Ping timeout: 264 seconds]
guille-moe has quit [Ping timeout: 268 seconds]
ciscam has joined #ruby
al2o3-cr has quit [Ping timeout: 240 seconds]
prutheus has joined #ruby
<prutheus> Hello. I want to exit an if block before reaching end if an condition inside the if block matches.
<prutheus> how to break out of an if block? with break, it does not work
<apeiros> prutheus: put the rest of the code in another if/end
<apeiros> alternatively: gist your code
<prutheus> nah, i jsut wrap the code inside the if into a labmda block where i can use break inside
<apeiros> mid code break/returns are spaghetti code. you shouldn't do that. but it's of course your decision.
<prutheus> why should i not do that?
alex has quit [Ping timeout: 255 seconds]
<apeiros> google "spaghetti code", there are most certainly good existing explanations
<prutheus> but hwy is that bad code? https://bpaste.net/show/b66c5fada1e1
alex has joined #ruby
<apeiros> as said, google spaghetti code. in short: because it's convoluted and hard to read. which in turn makes it hard to maintain.
<prutheus> but is my example ahrd to read? no
<prutheus> its absolute easy and logical
<apeiros> if you say so.
<prutheus> so i dotn know how else i should program that piece
prutheus has quit [Quit: Page closed]
<apeiros> apparently it's already the pinnacle of logic and ease. so there's no need.
RedNifre has quit [Ping timeout: 246 seconds]
GodFather has quit [Quit: Ex-Chat]
segy has quit [Quit: ZNC - http://znc.in]
gheegh has joined #ruby
schneider has quit [Quit: WeeChat 2.0.1]
GodFather_ has quit [Remote host closed the connection]
segy has joined #ruby
GodFather has joined #ruby
caleBOT_ has joined #ruby
caleBOT has joined #ruby
samosaphile has joined #ruby
caleBOT_ has quit [Ping timeout: 240 seconds]
caleBOT has quit [Ping timeout: 240 seconds]
samosaphile has quit [Quit: Page closed]
ta_ has joined #ruby
jsaak has quit [Ping timeout: 264 seconds]
physicist__ has quit [Quit: Lost terminal]
RedNifre has joined #ruby
GodFather has quit [Ping timeout: 248 seconds]
Asher has quit [Ping timeout: 268 seconds]
RedNifre has quit [Ping timeout: 240 seconds]
gr33n7007h has joined #ruby
gr33n7007h is now known as al2o3-cr
dr3w_ has joined #ruby
cagomez has joined #ruby
physicist__ has joined #ruby
GodFather has joined #ruby
cagomez has quit [Ping timeout: 255 seconds]
ldepandis has joined #ruby
qnaal has joined #ruby
jottr has joined #ruby
RougeR has joined #ruby
RougeR has joined #ruby
RougeR has quit [Changing host]
Guest15510 has quit [Quit: ZNC 1.6.5 - http://znc.in]
za1b1tsu_ has joined #ruby
qnaal has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
ta_ has quit [Ping timeout: 264 seconds]
jottr has quit [Ping timeout: 264 seconds]
AJA4350 has joined #ruby
ur5us has joined #ruby
DTZUZO_ has joined #ruby
ur5us has quit [Ping timeout: 240 seconds]
Mike11 has joined #ruby
houhoulis has joined #ruby
houhouli_ has joined #ruby
Asher has joined #ruby
houhoulis has quit [Ping timeout: 256 seconds]
Asher has quit [Ping timeout: 255 seconds]
jameser has joined #ruby
andikr has quit [Remote host closed the connection]
joro_ has quit [Quit: Leaving]
jameser has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
drale2k_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
voxxit has quit [*.net *.split]
nfsnobody has quit [*.net *.split]
venmx has joined #ruby
jottr has joined #ruby
ldepandis has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
nullmoose[m] has quit [Ping timeout: 255 seconds]
iceskins[m] has quit [Ping timeout: 246 seconds]
velu_aon[m] has quit [Ping timeout: 260 seconds]
redlegion[m] has quit [Ping timeout: 256 seconds]
Hanma[m] has quit [Ping timeout: 256 seconds]
zalipuha[m] has quit [Ping timeout: 255 seconds]
haylon_ has quit [Ping timeout: 255 seconds]
KevinMGranger has quit [Ping timeout: 255 seconds]
failednoose[m] has quit [Ping timeout: 255 seconds]
torarne has quit [Ping timeout: 255 seconds]
turt2live has quit [Ping timeout: 240 seconds]
m27frogy has quit [Quit: ZNC - https://znc.in]
luna_x[m] has quit [Ping timeout: 255 seconds]
Giphy[m] has quit [Ping timeout: 255 seconds]
m27frogy has joined #ruby
aviraldg has quit [Ping timeout: 256 seconds]
jonjits[m] has quit [Ping timeout: 256 seconds]
intheclouddan has quit [Ping timeout: 256 seconds]
ciscam has quit [Ping timeout: 240 seconds]
gil_ has quit [Ping timeout: 240 seconds]
d^sh has quit [Ping timeout: 260 seconds]
nfsnobody has joined #ruby
voxxit has joined #ruby
jottr has quit [Ping timeout: 248 seconds]
dinfuehr has quit [Ping timeout: 260 seconds]
quobo has joined #ruby
dinfuehr has joined #ruby
ciscam has joined #ruby
d^sh has joined #ruby
gil_ has joined #ruby
gheegh has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
jsaak has joined #ruby
alfiemax has joined #ruby
Mike11 has quit [Quit: Leaving.]
DoubleMalt has joined #ruby
DoubleMalt has quit [Read error: Connection reset by peer]
redlegion[m] has joined #ruby
konsolebox has joined #ruby
n0m4d1c has joined #ruby
Janky has joined #ruby
roamingdog has joined #ruby
caleBOT has joined #ruby
caleBOT_ has joined #ruby
drale2k_ has joined #ruby
roamingdog has quit [Ping timeout: 256 seconds]
Asher has joined #ruby
caleBOT_ has quit [Ping timeout: 260 seconds]
jottr has joined #ruby
caleBOT has quit [Ping timeout: 260 seconds]
gheegh has joined #ruby
apeiros has quit [Ping timeout: 268 seconds]
redlegion has quit [Remote host closed the connection]
redlegion has joined #ruby
Asher has quit [Ping timeout: 256 seconds]
jottr has quit [Ping timeout: 255 seconds]
nickjj has quit [Read error: Connection reset by peer]
RedNifre has joined #ruby
n0m4d1c has quit [Remote host closed the connection]
nickjj has joined #ruby
apeiros has joined #ruby
apparition has joined #ruby
<hanmac> apeiros: the difference is the return value
intheclouddan has joined #ruby
iceskins[m] has joined #ruby
Hanma[m] has joined #ruby
aviraldg has joined #ruby
jonjits[m] has joined #ruby
Giphy[m] has joined #ruby
torarne has joined #ruby
velu_aon[m] has joined #ruby
luna_x[m] has joined #ruby
failednoose[m] has joined #ruby
haylon_ has joined #ruby
turt2live has joined #ruby
KevinMGranger has joined #ruby
nullmoose[m] has joined #ruby
zalipuha[m] has joined #ruby
coderphive has joined #ruby
alfiemax has quit [Remote host closed the connection]
ellcs has joined #ruby
venmx has quit [Ping timeout: 240 seconds]
Dimik has joined #ruby
RedNifre has quit [Read error: Connection reset by peer]
venmx has joined #ruby
ta_ has joined #ruby
alfiemax has joined #ruby
za1b1tsu_ has quit [Ping timeout: 264 seconds]
gheegh has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Dimik has quit [Ping timeout: 240 seconds]
rkazak has joined #ruby
ellcs has quit [Ping timeout: 260 seconds]
DoubleMalt has joined #ruby
DoubleMalt has quit [Remote host closed the connection]
pilne has quit [Read error: Connection reset by peer]
ryzokuken has joined #ruby
pilne has joined #ruby
RedNifre has joined #ruby
RougeR has quit [Ping timeout: 250 seconds]
arekushi has quit [Quit: Gateway shutdown]
venmx has quit [Ping timeout: 256 seconds]
nickjj has quit [Read error: Connection reset by peer]
<apeiros> hanmac: sure. but when do you need that? you already have the needle. almost certainly in a variable even.
arekushi has joined #ruby
qnaal has joined #ruby
houhouli_ has quit []
<apeiros> and .include? is much more communicative about the intent
<apeiros> much more intent revealing?
apparition has quit [Quit: Bye]
<hanmac> str[needle] || otherStr vs str.include?(needle) ? needle : otherStr ?
<konsolebox> ^ i prefer the first
<apeiros> I prefer second
<apeiros> mostly because I know ~70%+ of ruby devs would have to consult docs to understand the first
alex has quit [Quit: WeeChat 2.1]
<apeiros> falls into the category: don't write clever code.
qnaal has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
RougeR has joined #ruby
RougeR has joined #ruby
RougeR has quit [Changing host]
za1b1tsu_ has joined #ruby
houhoulis has joined #ruby
ta_ has quit [Ping timeout: 240 seconds]
<konsolebox> apeiros: you honestly find that clever and never wrote a code like that? because i find that very basic when it comes to scripting.
<konsolebox> it also has similar "cleverness" to ||=. actually, it's less.
za1b1tsu_ has quit [Ping timeout: 260 seconds]
amar has quit [Ping timeout: 256 seconds]
Asher has joined #ruby
nickjj has joined #ruby
dstrunk has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
ramfjord has joined #ruby
<al2o3-cr> it's not clever code it's ruby ;)
caleBOT_ has joined #ruby
caleBOT has joined #ruby
caleBO___ has joined #ruby
caleBOT__ has joined #ruby
nickjj has quit [Read error: Connection reset by peer]
kmurphy4_ has joined #ruby
gheegh has joined #ruby
caleBOT_ has quit [Ping timeout: 264 seconds]
caleBOT has quit [Ping timeout: 264 seconds]
goepsilongo has joined #ruby
nickjj has joined #ruby
amar has joined #ruby
RedNifre has quit [Ping timeout: 276 seconds]
qnaal has joined #ruby
<konsolebox> al2o3-cr: both methods are ruby and are well-documented. one is just frowned upon by the "community" because of a collective philosophy or myth, or laziness to learn complete ruby programming knowledge. like a tribunal, they try to define how ruby should work.
<al2o3-cr> konsolebox: aye, and i'd agree String#[] has my vote :p
<al2o3-cr> but each to their own.
dstrunk has joined #ruby
<al2o3-cr> but not that it matters.
gheegh has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<al2o3-cr> if they're a ruby dev they should know this shit tbqf
<Omnilord> If the language provides a useful tool, and new developers don't know how to use it, then yes, they will have to reach for the docs. How else will they learn the language?
<havenwood> >> hay = 'xyz'; needle = 'y'; hay[needle].equal? needle
<ruby[bot]> havenwood: # => false (https://eval.in/1003167)
za1b1tsu_ has joined #ruby
Dimik has joined #ruby
<al2o3-cr> >> hay = 'xyz'; needle = 'y'; hay[needle].eql? needle
<ruby[bot]> al2o3-cr: # => true (https://eval.in/1003168)
<havenwood> my point is it's a different object
<apeiros> konsolebox: ||= is an established idiom. String#[String] is not.
<konsolebox> al2o3-cr: i think i misread what you said. i thought you referred to ||= not being clever but ruby, hence i tried to explain that ||= is as documented as ||, in the sense that || can be used to define a fallback value..
<havenwood> >> hay = 'xyz'; needle = 'y'; hay[needle].object_id != needle.object_id
<ruby[bot]> havenwood: # => true (https://eval.in/1003169)
<al2o3-cr> konsolebox: no worries, yeah was slightly confused there for a minute
<konsolebox> apeiros: yes obviously, but i compared not by how one is established or not, but the complexity on their mechanism.
<havenwood> Cleverness aside, it's allocating new Strings.
<al2o3-cr> havenwood: i see your point now
<konsolebox> *compared them
<apeiros> konsolebox: in that case, you're missing the point completely
<apeiros> code readability vs cleverness is not depending on the complexity of the involved mechanism.
<apeiros> or rather, not only
<al2o3-cr> obviously String#[] return a new sub-string.
<konsolebox> apeiros: because one became more popular?
<apeiros> konsolebox: still missing the point
<apeiros> you can use concise clever constructs if they're popular
<konsolebox> yeah, whatever you think i'm missing is trivial
<apeiros> if it's not popular, be explicit
<apeiros> and String#[String] is not popular and everything else than explicit.
<al2o3-cr> anyway discussion aside, it's a beutiful day to today :)
<apeiros> yupp, that's why I was just jogging :D
<konsolebox> apeiros: well popularity is not the only factor in my opinion. it's also about the requirement for being a basic ruby programmer, and how easy it is to follow code. especially if they are just using basic syntax. it doesn't even involve multiple methods.
za1b1tsu_ has quit [Ping timeout: 248 seconds]
<al2o3-cr> apeiros: keep it up, you'll be running marathons soon ;P
<apeiros> al2o3-cr: I already ran half marathons
<apeiros> but I don't think I'll ever run marathons
<al2o3-cr> apeiros: what's that 13 mile?
<apeiros> what's a mile? :-p
<apeiros> 21km
<al2o3-cr> impressive ;)
<apeiros> I plan to finally run it <2h this year
<al2o3-cr> yeah 21km is roughly 13 mile ;P
<apeiros> ok :)
<apeiros> 1.6km/mile, right?
<al2o3-cr> aye.
<apeiros> konsolebox: yes, I'd expect any halfway decent ruby programmer to be able to follow it. but code where I have to look up half of the methods in order to understand it is - even if I can perfectly follow it - not readable code.
robertot1 has joined #ruby
<apeiros> that's also one reason while extracting into methods is a great pattern (and another where I don't know whether it's even got a name: assign to well named local variables). it gives information about intent. which means even if I don't know one or two methods, I can infer from context.
qnaal has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
<havenwood> I'd not use String#[match_str] unless I meant to create a new substring object.
redlegion has quit [Remote host closed the connection]
<havenwood> We could patch it to return match_str, but that'd be breaking behavior.
redlegion has joined #ruby
<apeiros> havenwood: you mean when you want a copy?
<havenwood> ya
<konsolebox> havenwood: yeah, i admit you got a winning point about the new instance
<apeiros> out of curiosity: do you have examples where you used it like that?
<havenwood> apeiros: no, i'd probably end up writing it more explicitly
<apeiros> :D
<apeiros> ok, I did giggle a bit there
* apeiros brb
gheegh has joined #ruby
dstrunk has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
gheegh has quit [Client Quit]
gheegh has joined #ruby
rkazak has quit [Quit: Sleep.....ing....]
amar has quit [Ping timeout: 265 seconds]
<al2o3-cr> >> $$-->{0}[]<--$$/$$
<ruby[bot]> al2o3-cr: # => false (https://eval.in/1003171)
conta has joined #ruby
cagomez has joined #ruby
conta has quit [Ping timeout: 256 seconds]
venmx has joined #ruby
caleBO___ has quit [Remote host closed the connection]
caleBOT__ has quit [Remote host closed the connection]
caleBOT has joined #ruby
caleBOT_ has joined #ruby
caleBOT_ has quit [Read error: Connection reset by peer]
caleBOT has quit [Read error: Connection reset by peer]
dstrunk has joined #ruby
za1b1tsu_ has joined #ruby
gheegh has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
venmx has quit [Ping timeout: 256 seconds]
RedNifre has joined #ruby
gheegh has joined #ruby
za1b1tsu_ has quit [Ping timeout: 240 seconds]
robertot1 has quit [Read error: Connection reset by peer]
alfiemax has quit [Remote host closed the connection]
robertot1 has joined #ruby
caleBOT has joined #ruby
caleBOT has quit [Remote host closed the connection]
caleBOT has joined #ruby
caleBOT_ has joined #ruby
caleBOT__ has joined #ruby
caleBO___ has joined #ruby
alfiemax has joined #ruby
caleBOT_ has quit [Ping timeout: 250 seconds]
caleBOT has quit [Ping timeout: 250 seconds]
gheegh has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
alfiemax has quit [Ping timeout: 260 seconds]
venmx has joined #ruby
gheegh has joined #ruby
dionysus69 has joined #ruby
robertot1 has quit [Ping timeout: 250 seconds]
orbyt_ has joined #ruby
conta has joined #ruby
conta has quit [Client Quit]
alfiemax has joined #ruby
guille-moe has joined #ruby
houhoulis has quit [Remote host closed the connection]
alfiemax has quit [Ping timeout: 240 seconds]
robertot1 has joined #ruby
guille-moe has quit [Ping timeout: 246 seconds]
caleBO___ has quit []
caleBOT__ has quit []
drale2k_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
cadillac_ has quit [Ping timeout: 240 seconds]
coderphive has quit [Quit: coderphive]
conta has joined #ruby
cyberg has joined #ruby
ta_ has joined #ruby
cadillac_ has joined #ruby
conta has quit [Client Quit]
ramfjord has quit [Ping timeout: 248 seconds]
robertot1 has quit [Ping timeout: 256 seconds]
sphenxes has joined #ruby
conta has joined #ruby
conta has quit [Client Quit]
guille-moe has joined #ruby
robertot1 has joined #ruby
crankharder has quit [Ping timeout: 250 seconds]
Puppet___ has joined #ruby
Puffball has quit [Remote host closed the connection]
conta has joined #ruby
venmx has quit [Ping timeout: 256 seconds]
Puppet_ has quit [Ping timeout: 256 seconds]
conta has quit [Client Quit]
robertot1 has quit [Ping timeout: 265 seconds]
dr3w_ has joined #ruby
conta has joined #ruby
conta has quit [Client Quit]
guille-moe has quit [Ping timeout: 250 seconds]
alfiemax has joined #ruby
garyserj has quit [Read error: Connection reset by peer]
garyserj has joined #ruby
guille-moe has joined #ruby
gheegh has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
gheegh has joined #ruby
za1b1tsu_ has joined #ruby
robertot1 has joined #ruby
conta has joined #ruby
conta has quit [Client Quit]
gheegh has quit [Client Quit]
conta has joined #ruby
conta has quit [Client Quit]
za1b1tsu_ has quit [Ping timeout: 240 seconds]
guille-moe has quit [Ping timeout: 264 seconds]
robertot1 has quit [Ping timeout: 240 seconds]
gheegh has joined #ruby
alfiemax_ has joined #ruby
alfiemax has quit [Read error: Connection reset by peer]
ta_ has quit [Ping timeout: 260 seconds]
robertot1 has joined #ruby
alfiemax_ has quit [Remote host closed the connection]
Sembei has joined #ruby
RedNifre has quit [Ping timeout: 250 seconds]
Pisuke has quit [Ping timeout: 260 seconds]
robertot1 has quit [Ping timeout: 246 seconds]
conta has joined #ruby
conta has quit [Client Quit]
gheegh has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
conta has joined #ruby
RedNifre has joined #ruby
gheegh has joined #ruby
gheegh has quit [Client Quit]
suukim has quit [Quit: Konversation terminated!]
tomphp has joined #ruby
conta has quit [Quit: conta]
za1b1tsu_ has joined #ruby
dionysus69 has quit [Ping timeout: 260 seconds]
conta has joined #ruby
robertot1 has joined #ruby
conta has quit [Ping timeout: 264 seconds]
RougeR has quit [Ping timeout: 268 seconds]
robertot1 has quit [Ping timeout: 246 seconds]
sepp2k has joined #ruby
robertot1 has joined #ruby
sphenxes has quit [Read error: Connection reset by peer]
govg has quit [Ping timeout: 264 seconds]
sphenxes has joined #ruby
govg has joined #ruby
ramfjord has joined #ruby
gheegh has joined #ruby
ramfjord has quit [Ping timeout: 256 seconds]
roamingdog has joined #ruby
Emmanuel_Chanel has quit [Quit: Leaving]
robertot1 has quit [Ping timeout: 250 seconds]
robertot1 has joined #ruby
tomphp has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
robertot1 has quit [Ping timeout: 240 seconds]
sphenxes has quit [Ping timeout: 256 seconds]
drale2k_ has joined #ruby
caleBOT_ has joined #ruby
caleBOT has joined #ruby
sphenxes has joined #ruby
dionysus69 has joined #ruby
cagomez has quit [Remote host closed the connection]
cagomez has joined #ruby
gheegh has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
cagomez has quit [Remote host closed the connection]
cagomez has joined #ruby
tomphp has joined #ruby
sameerynho has quit [Ping timeout: 260 seconds]
tomphp has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
tomphp has joined #ruby
tomaw has quit [Quit: Quitting]
amar has joined #ruby
tomphp has quit [Client Quit]
gheegh has joined #ruby
tomaw has joined #ruby
cagomez has quit [Remote host closed the connection]
cagomez has joined #ruby
kies^ has joined #ruby
caleBOT_ has quit [Remote host closed the connection]
caleBOT has quit [Remote host closed the connection]
caleBOT_ has joined #ruby
caleBOT has joined #ruby
cagomez has quit [Ping timeout: 248 seconds]
kmurphy4_ has quit [Quit: kmurphy4_]
robertot1 has joined #ruby
caleBOT_ has quit [Ping timeout: 250 seconds]
caleBOT has quit [Ping timeout: 250 seconds]
tomphp has joined #ruby
rkazak has joined #ruby
kmurphy4_ has joined #ruby
za1b1tsu_ has quit [Ping timeout: 264 seconds]
conta has joined #ruby
caleBOT_ has joined #ruby
caleBOT has joined #ruby
caleBO___ has joined #ruby
caleBOT__ has joined #ruby
vladdypwnz has joined #ruby
rkazak has quit [Quit: Sleep.....ing....]
riskish has joined #ruby
caleBOT_ has quit [Ping timeout: 240 seconds]
caleBOT has quit [Ping timeout: 240 seconds]
sepp2k has quit [Ping timeout: 240 seconds]
sepp2k1 has joined #ruby
sepp2k1 has quit [Client Quit]
roamingdog has quit [Remote host closed the connection]
drale2k_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
ta_ has joined #ruby
ryzokuken has quit [Remote host closed the connection]
vladdypwnz has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
robertot1 has quit [Quit: WeeChat 2.1]
vladdypwnz has joined #ruby
vladdypwnz has quit [Client Quit]
robertothais has joined #ruby
vladdypwnz has joined #ruby
vladdypwnz has quit [Client Quit]
Zaab1t1 has joined #ruby
Zaab1t has quit [Ping timeout: 260 seconds]
Zaab1t1 is now known as Zaab1t
lytol has joined #ruby
minimalism has joined #ruby
Emmanuel_Chanel has joined #ruby
Emmanuel_Chanel has quit [Max SendQ exceeded]
Emmanuel_Chanel has joined #ruby
dipnlik has quit [Quit: Connection closed for inactivity]
RougeR has joined #ruby
RougeR has joined #ruby
RougeR has quit [Changing host]
DoubleMalt has joined #ruby
DoubleMalt has quit [Remote host closed the connection]
ellcs has joined #ruby
rivalomega has joined #ruby
coderphive has joined #ruby
caleBO___ has quit [Remote host closed the connection]
caleBOT__ has quit [Remote host closed the connection]
caleBOT has joined #ruby
caleBOT_ has joined #ruby
conta has quit [Ping timeout: 265 seconds]
caleBOT_ has quit [Ping timeout: 256 seconds]
caleBOT has quit [Ping timeout: 256 seconds]
dionysus69 has quit [Ping timeout: 268 seconds]
ryzokuken has joined #ruby
caleBOT has joined #ruby
caleBOT_ has joined #ruby
caleBO___ has joined #ruby
caleBOT__ has joined #ruby
ta_ has quit [Remote host closed the connection]
ta_ has joined #ruby
BTRE has quit [Ping timeout: 256 seconds]
robertothais has quit [Ping timeout: 255 seconds]
caleBOT_ has quit [Ping timeout: 265 seconds]
caleBOT has quit [Ping timeout: 265 seconds]
lytol has quit [Remote host closed the connection]
rippa has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
zapata has quit [Read error: Connection reset by peer]
zapata has joined #ruby
ramfjord has joined #ruby
gheegh has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
amar_ has joined #ruby
rivalomega has quit [Read error: Connection reset by peer]
ramfjord has quit [Ping timeout: 246 seconds]
rivalomega has joined #ruby
howdoi has quit [Quit: Connection closed for inactivity]
sammi` has quit [Quit: Lost terminal]
amar has quit [Ping timeout: 248 seconds]
guille-moe has joined #ruby
roamingdog has joined #ruby
sammi` has joined #ruby
robertothais has joined #ruby
guille-moe has quit [Ping timeout: 246 seconds]
alex`` has joined #ruby
tdy has quit [Ping timeout: 240 seconds]
eckhardt has joined #ruby
weaksauce has quit [Ping timeout: 250 seconds]
armyriad has quit [Quit: Leaving]
robertothais has quit [Ping timeout: 246 seconds]
guille-moe has joined #ruby
Quentinius has joined #ruby
Quentinius has quit [Client Quit]
jready has joined #ruby
rivalomega has quit [Remote host closed the connection]
ellcs has quit [Ping timeout: 256 seconds]
kmurphy4_ has quit [Quit: kmurphy4_]
lytol has joined #ruby
tomphp has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
denkweise has joined #ruby
guille-moe has quit [Ping timeout: 240 seconds]
dipnlik has joined #ruby
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
orbyt_ has joined #ruby
mohsen_1 has quit [Quit: Connection closed for inactivity]
sphenxes has quit [Quit: Leaving]
oleo has joined #ruby
biberu has quit []
robertothais has joined #ruby
tomphp has joined #ruby
oleo has quit [Quit: Leaving]
BTRE has joined #ruby
roamingdog has quit [Remote host closed the connection]
ramfjord has joined #ruby
Azure|dc has quit [Read error: Connection reset by peer]
Azure has joined #ruby
ramfjord has quit [Ping timeout: 248 seconds]
kapil___ has joined #ruby
schleppel has quit [Quit: Konversation terminated!]
GodFather has quit [Ping timeout: 240 seconds]
dviola has joined #ruby
riskish has quit [Quit: Textual IRC Client: www.textualapp.com]
garyserj has quit [Read error: Connection reset by peer]
garyserj has joined #ruby
robertothais has quit [Ping timeout: 256 seconds]
oleo has joined #ruby
GodFather has joined #ruby
rkazak has joined #ruby
jready has quit [Remote host closed the connection]
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
robertothais has joined #ruby
tomphp has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
tdy has joined #ruby
orbyt_ has joined #ruby
weaksauce has joined #ruby
robertothais has quit [Ping timeout: 256 seconds]
kmurphy4_ has joined #ruby
Zaab1t has quit [Quit: Zaab1t]
tomphp has joined #ruby
CrazyEddy has quit [Remote host closed the connection]
plexigras has quit [Ping timeout: 260 seconds]
joro_ has joined #ruby
jnollette has quit [Ping timeout: 255 seconds]
eckhardt has quit [Quit: Textual IRC Client: www.textualapp.com]
jnollette has joined #ruby
tomphp has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
dr3w_ has joined #ruby
RedNifre has quit [Quit: ZZ]
roamingdog has joined #ruby
ellcs has joined #ruby
roamingdog has quit [Ping timeout: 256 seconds]
tdy has quit [Ping timeout: 248 seconds]
coderphive has quit [Quit: coderphive]
tdy has joined #ruby
rivalomega has joined #ruby
d^sh has quit [Ping timeout: 276 seconds]
d^sh has joined #ruby
dcunit3d has joined #ruby
rivalomega has quit [Ping timeout: 240 seconds]
Azure has quit [Read error: Connection reset by peer]
Azure has joined #ruby
roamingdog has joined #ruby
dcunit3d has quit [Ping timeout: 250 seconds]
dipnlik has quit [Quit: Connection closed for inactivity]
cagomez has joined #ruby
ramfjord has joined #ruby
ramfjord has quit [Ping timeout: 256 seconds]
physicist__ has quit [Quit: Lost terminal]
kapil___ has quit [Quit: Connection closed for inactivity]
tehgeek72 has joined #ruby
s3nd1v0g1us has joined #ruby
s3nd1v0g1us has quit [Max SendQ exceeded]
s3nd1v0g1us has joined #ruby
s3nd1v0g1us has quit [Max SendQ exceeded]
nicesignal has quit [Remote host closed the connection]
s3nd1v0g1us has joined #ruby
s3nd1v0g1us has quit [Max SendQ exceeded]
nicesignal has joined #ruby
s3nd1v0g1us has joined #ruby
joro_ has quit [Remote host closed the connection]
ellcs has quit [Ping timeout: 256 seconds]
jready has joined #ruby
ur5us has joined #ruby
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
rkazak has quit [Quit: Sleep.....ing....]