havenwood changed the topic of #ruby to: Rules & more: http://ruby-community.com || Ruby 2.3.0; 2.2.4; 2.1.8; 2.0.0-p648: https://ruby-lang.org || Paste >3 lines of text on https://gist.github.com || log @ http://irclog.whitequark.org/ruby/
mary5030_ has quit [Remote host closed the connection]
zambini has quit [Quit: Leaving.]
AckZ has quit [Ping timeout: 240 seconds]
c355e3b has quit [Ping timeout: 240 seconds]
mary5030 has joined #ruby
namxam has joined #ruby
lianj has joined #ruby
lianj has quit [Changing host]
lianj has joined #ruby
Azulinho has quit [Ping timeout: 276 seconds]
LoneHerm_ has quit [Remote host closed the connection]
LoneHermit has joined #ruby
cmckee has quit [Quit: cmckee]
v0n has joined #ruby
El3ktra has joined #ruby
Insti has quit [Ping timeout: 240 seconds]
AckZ has joined #ruby
Insti has joined #ruby
Insti has quit [Changing host]
Insti has joined #ruby
c355e3b has joined #ruby
LoneHermit has quit [Remote host closed the connection]
nerium has quit [Ping timeout: 240 seconds]
nerium_ is now known as nerium
blandflakes has joined #ruby
lost has joined #ruby
asccigcc has quit [Quit: asccigcc]
william3 has joined #ruby
weemsledeux has joined #ruby
namxam has quit [Remote host closed the connection]
<lost> Wondering if anyone is able to help understand this, also be a rails mentor in the future please message will pay as per hourly basis :)
tuelz has quit [Ping timeout: 276 seconds]
mary5030 has quit [Ping timeout: 276 seconds]
dudedudeman has quit [Quit: dudedudeman]
ur5us has quit [Remote host closed the connection]
baweaver has quit [Remote host closed the connection]
asccigcc has joined #ruby
grill has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
ledestin has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
william3 has quit [Ping timeout: 245 seconds]
musicnode has joined #ruby
kies^ has joined #ruby
blackmes1 has quit [Quit: WeeChat 1.4]
blackmesa has joined #ruby
FernandoBasso has quit [Quit: Leaving]
andchar has quit [Quit: WeeChat 1.3]
BlkDynmt has quit [Quit: BlkDynmt]
sandstrom has quit [Read error: Connection reset by peer]
namxam has joined #ruby
tuelz has joined #ruby
yoongkang has quit [Remote host closed the connection]
sandstrom has joined #ruby
robbyoconnor has quit [Ping timeout: 250 seconds]
asccigcc has quit [Quit: asccigcc]
unreal_ has joined #ruby
freerobby has quit [Quit: Leaving.]
BlkDynmt has joined #ruby
namxam has quit [Remote host closed the connection]
unreal has quit [Ping timeout: 250 seconds]
tvw has quit [Ping timeout: 245 seconds]
kies^ has quit [Ping timeout: 240 seconds]
devbug has quit [Ping timeout: 250 seconds]
baweaver has joined #ruby
freerobby has joined #ruby
decoponio has quit [Quit: Leaving...]
machinewar has joined #ruby
<machinewar> when is attr_accessor actually called? when you instantiate an object?
TomPeed has joined #ruby
akkmaxon has joined #ruby
Spami has quit [Quit: This computer has gone to sleep]
<volty> everything gets called as soon as it's read
karapetyan has joined #ruby
robbyoconnor has joined #ruby
akkmaxon has left #ruby [#ruby]
<volty> class defines a class, def defines a method, attr_accessor is a method call
<machinewar> when does it get read?
holman has quit [Quit: holman]
<machinewar> when I load the file?
<volty> yes
<machinewar> volty: thanks
<volty> yw
LoneHerm_ has joined #ruby
goodroot has joined #ruby
akkmaxon has joined #ruby
TomPeed is now known as justbleed
griffindy has joined #ruby
firstdayonthejob has quit [Ping timeout: 240 seconds]
ThomaSs_ has quit [Ping timeout: 256 seconds]
codezomb has joined #ruby
sandstrom has quit [Quit: My computer has gone to sleep.]
<codezomb> trying to use Resolv::DNS and getresources in my system. However, it doesn't seem to resolve anything. Would there be any system level dependency that I could possibly be missing?
<codezomb> nslookup exists, and can resolve the addresses
<codezomb> ruby 2.2.4p230
maletor has quit [Quit: Textual IRC Client: www.textualapp.com]
ur5us has joined #ruby
sandstrom has joined #ruby
<drbrain> codezomb: example code?
<codezomb> @drbrain: Resolv::DNS.open { |dns| dns.getresources('google.com', Resolv::DNS::Resource::IN::MX) }
<codezomb> returns an empty array
visudo has joined #ruby
<drbrain> so your code is right
blackmesa has quit [Ping timeout: 272 seconds]
<codezomb> drbrain right, I know it should resolve. It resolves in my plain vm. However, trying it within a docker container (alpine linux) I get an empty result set. I assumed I could be missing some system dependency.
namxam has joined #ruby
<drbrain> what's in your /etc/resolv.conf?
<codezomb> if nslookup works, I would assume this should work :/
akkmaxon has quit [Quit: akkmaxon]
ramfjord_ has quit [Ping timeout: 272 seconds]
<codezomb> drbrain `nameserver 10.0.2.3`, which is my docker host. This host can also resolve.
<codezomb> from a system level it all resolves
joonty has joined #ruby
<drbrain> what about: Resolv::DNS.open(nameserver: %w[8.8.8.8]) { |dns| dns.getresources('google.com', Resolv::DNS::Resource::IN::MX) }
volty has quit [Quit: Konversation terminated!]
<codezomb> yeah, I just changed my resolv.conf to 8.8.8.8, and it seems to work...
<codezomb> 0.o
<drbrain> I've heard of mysterious DNS issues with VMs in general
<codezomb> back to flipping tables I suppose (╯°□°)╯︵ ┻━┻
<drbrain> yeah, computers
<codezomb> thanks for the sanity check :)
tomchapin has joined #ruby
kaleido has quit [Quit: Textual IRC Client: www.textualapp.com]
tomchapin has quit [Client Quit]
RickHull has joined #ruby
joonty has quit [Ping timeout: 265 seconds]
lemur has joined #ruby
ellistaa has joined #ruby
stannard has joined #ruby
<ellistaa> i’m trying to write a delete method for my binary search tree. using this as an example: http://1.bp.blogspot.com/-Y8DihvLIiLM/UJak6Io1flI/AAAAAAAAAsI/88SbtX_EW6Q/s1600/binarySearchTree.png if i want to delete 12. i’m guessing id move 15 up … but how do i deal with 9 8 and 10? do i add them to 13 or do i move 17 up to be siblings with 9?
A124 has quit [Quit: '']
lemur has quit [Ping timeout: 250 seconds]
sandstrom has quit [Quit: My computer has gone to sleep.]
stannard has quit [Ping timeout: 260 seconds]
A124 has joined #ruby
sandstrom has joined #ruby
kaleido has joined #ruby
goodroot has quit [Ping timeout: 250 seconds]
tomphp has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Coldblackice has quit [Ping timeout: 260 seconds]
ESpiney_ has joined #ruby
cryptocoder has joined #ruby
MyMind has joined #ruby
TomyLobo has quit [Disconnected by services]
Keltia_ has joined #ruby
karapetyan has quit [Remote host closed the connection]
arian0n- has joined #ruby
Zarthus_ has joined #ruby
mwlang_ has joined #ruby
bove_ has joined #ruby
benoror_ has joined #ruby
braderhart_ has joined #ruby
SilentEcho has joined #ruby
akitada_ has joined #ruby
Liam- has joined #ruby
Guest4184_____ has joined #ruby
nibbo has quit [Ping timeout: 260 seconds]
yaewa has joined #ruby
vcoinminer__ has joined #ruby
nwhirschfeld has joined #ruby
ohcibi_ has joined #ruby
borkdude_ has joined #ruby
Sebastia1Thorn has joined #ruby
zipkid_ has joined #ruby
jmcc_______ has joined #ruby
speaking1ode has joined #ruby
kiki_lam1 has joined #ruby
goezz has joined #ruby
thesheff17_ has joined #ruby
kaleido_ has joined #ruby
Petazz_ has joined #ruby
yosafbridge` has joined #ruby
cbetta_ has joined #ruby
jxf_ has joined #ruby
sts__ has joined #ruby
kaleido_ has quit [Client Quit]
stryek_ has joined #ruby
funnel_ has joined #ruby
plsk has joined #ruby
tommylom1ykins has joined #ruby
droptone_ has joined #ruby
shadeslayer_ has joined #ruby
Ariadeno has joined #ruby
Ariadeno is now known as Guest15367
Sucks has joined #ruby
zenspider has joined #ruby
govg_ has joined #ruby
gf3_ has joined #ruby
rfv_ has joined #ruby
bestie_ has joined #ruby
frode15243_ has joined #ruby
ckrailo_ has joined #ruby
cstrahan_ has joined #ruby
namxam has quit [Remote host closed the connection]
ekaleido has joined #ruby
zambini has joined #ruby
jimeh_ has joined #ruby
frankS2_ has joined #ruby
pizzaops_ has joined #ruby
ramblinpeck_ has joined #ruby
benlakey_ has joined #ruby
spastorino_ has joined #ruby
im0b_ has joined #ruby
iamdevnul_ has joined #ruby
howdoi_ has joined #ruby
S01780__ has joined #ruby
glowcoil_ has joined #ruby
vbatts|w` has joined #ruby
Nightmare has joined #ruby
idefine has joined #ruby
elaptics` has joined #ruby
Fridtjof has joined #ruby
perryh has joined #ruby
perryh has quit [Changing host]
perryh has joined #ruby
svkurowski_ has joined #ruby
nchambers^ has joined #ruby
ceej_ has joined #ruby
akkad_ has joined #ruby
ghormoon_ has joined #ruby
samuelkadolph_ has joined #ruby
heftig_ has joined #ruby
Jello_Raptor_ has joined #ruby
mighty_gorilla has joined #ruby
hfp__work has joined #ruby
phantummm has quit [Ping timeout: 256 seconds]
slackR- has joined #ruby
giraffe_ has joined #ruby
joneshf-laptop has joined #ruby
ekaleido has quit [Client Quit]
netwoodle has joined #ruby
ramfjord has joined #ruby
giraffe_ is now known as Guest95671
JoshL_ has joined #ruby
phantummm has joined #ruby
juddey has quit [Ping timeout: 256 seconds]
sandstrom has quit [*.net *.split]
kaleido has quit [*.net *.split]
El3ktra has quit [*.net *.split]
flughafen_ has quit [*.net *.split]
arescorpio has quit [*.net *.split]
anekos has quit [*.net *.split]
moei has quit [*.net *.split]
govg has quit [*.net *.split]
pedahzur has quit [*.net *.split]
howdoi has quit [*.net *.split]
ceej has quit [*.net *.split]
mwlang has quit [*.net *.split]
babblebre has quit [*.net *.split]
ESpiney has quit [*.net *.split]
treaki has quit [*.net *.split]
treaki__ has quit [*.net *.split]
Liam` has quit [*.net *.split]
Sembei has quit [*.net *.split]
BTRE has quit [*.net *.split]
benoror has quit [*.net *.split]
jimeh has quit [*.net *.split]
ICantCook has quit [*.net *.split]
heftig has quit [*.net *.split]
ohcibi has quit [*.net *.split]
eggoez has quit [*.net *.split]
giraffe has quit [*.net *.split]
akkad has quit [*.net *.split]
djellemah has quit [*.net *.split]
elaptics has quit [*.net *.split]
Jello_Raptor has quit [*.net *.split]
Nanuq has quit [*.net *.split]
gagrio has quit [*.net *.split]
svkurowski has quit [*.net *.split]
shadeslayer has quit [*.net *.split]
ramblinpeck has quit [*.net *.split]
chris2 has quit [*.net *.split]
Couch has quit [*.net *.split]
noodle has quit [*.net *.split]
hfp_work has quit [*.net *.split]
joast has quit [*.net *.split]
nchambers has quit [*.net *.split]
Trieste has quit [*.net *.split]
perry has quit [*.net *.split]
akitada has quit [*.net *.split]
zipkid has quit [*.net *.split]
slackR has quit [*.net *.split]
SilentEc1 has quit [*.net *.split]
plsk_ has quit [*.net *.split]
zenspider_ has quit [*.net *.split]
gf3 has quit [*.net *.split]
samuelkadolph has quit [*.net *.split]
skullcrasher has quit [*.net *.split]
sts has quit [*.net *.split]
kiki_lamb has quit [*.net *.split]
SebastianThorn has quit [*.net *.split]
Guest10495 has quit [*.net *.split]
nwhirschfeld_ has quit [*.net *.split]
Keltia has quit [*.net *.split]
droptone has quit [*.net *.split]
yxhuvud has quit [*.net *.split]
funnel has quit [*.net *.split]
benlakey has quit [*.net *.split]
cstrahan has quit [*.net *.split]
pizzaops has quit [*.net *.split]
boxrick1 has quit [*.net *.split]
borkdude has quit [*.net *.split]
speakingcode has quit [*.net *.split]
Guest4184____ has quit [*.net *.split]
rfv has quit [*.net *.split]
jxf has quit [*.net *.split]
Zarthus has quit [*.net *.split]
HaythamKenway has quit [*.net *.split]
Silex has quit [*.net *.split]
hollywood has quit [*.net *.split]
Fridtjof_ has quit [*.net *.split]
arian0n has quit [*.net *.split]
kalz has quit [*.net *.split]
Liothen has quit [*.net *.split]
programmerq has quit [*.net *.split]
troter______ has quit [*.net *.split]
S01780_ has quit [*.net *.split]
bttf has quit [*.net *.split]
frankS2 has quit [*.net *.split]
spastorino has quit [*.net *.split]
iamdevnul has quit [*.net *.split]
braderhart has quit [*.net *.split]
vcoinminer_ has quit [*.net *.split]
bcavileer_ has quit [*.net *.split]
ckrailo has quit [*.net *.split]
bestie has quit [*.net *.split]
frode15243 has quit [*.net *.split]
glowcoil has quit [*.net *.split]
cbetta has quit [*.net *.split]
Guest85414______ has quit [*.net *.split]
pmarreck has quit [*.net *.split]
im0b has quit [*.net *.split]
bove has quit [*.net *.split]
mikolalysenko has quit [*.net *.split]
jabreity has quit [*.net *.split]
thesheff17 has quit [*.net *.split]
jmcc______ has quit [*.net *.split]
JoshL has quit [*.net *.split]
ghormoon has quit [*.net *.split]
stryek has quit [*.net *.split]
El3ktra_ has joined #ruby
johnny56 has quit [*.net *.split]
yosafbridge has quit [*.net *.split]
Petazz has quit [*.net *.split]
tommylommykins has quit [*.net *.split]
St1gma has quit [*.net *.split]
modin has quit [*.net *.split]
cookiez has quit [*.net *.split]
benoror_ is now known as benoror
mwlang_ is now known as mwlang
samuelkadolph_ is now known as samuelkadolph
akkad_ is now known as akkad
netwoodle is now known as noodle
hfp__work is now known as hfp_work
slackR- is now known as slackR
Guest95671 is now known as giraffe
Liam- is now known as Liam`
gf3_ is now known as gf3
troter_______ has joined #ruby
treaki__ has joined #ruby
perryh is now known as perry
funnel_ is now known as funnel
ceej_ is now known as ceej
skullcrasher has joined #ruby
jimeh_ is now known as jimeh
benlakey_ is now known as benlakey
treaki has joined #ruby
Couch has joined #ruby
Silex has joined #ruby
bestie_ is now known as bestie
BTRE has joined #ruby
anekos has joined #ruby
kalz has joined #ruby
frode15243_ is now known as frode15243
musicnode has quit [Quit: musicnode]
flughafen_ has joined #ruby
zipkid_ is now known as zipkid
iamdevnul_ is now known as iamdevnul
ckrailo_ is now known as ckrailo
spastorino_ is now known as spastorino
djellemah has joined #ruby
pmarreck has joined #ruby
programmerq has joined #ruby
howdoi_ is now known as howdoi
ramblinpeck_ is now known as ramblinpeck
yqt has quit [Ping timeout: 240 seconds]
cbetta_ is now known as cbetta
gagrio has joined #ruby
chris2 has joined #ruby
william3 has joined #ruby
nibbo has joined #ruby
ellistaa has quit [Quit: ellistaa]
zacstewart has quit [Ping timeout: 256 seconds]
tuelz has quit [Ping timeout: 272 seconds]
cstrahan_ is now known as cstrahan
rfv_ is now known as rfv
Guest85414______ has joined #ruby
glowcoil_ is now known as glowcoil
jxf_ is now known as jxf
pizzaops_ is now known as pizzaops
boxrick1 has joined #ruby
akitada_ is now known as akitada
im0b_ is now known as im0b
mikolalysenko has joined #ruby
thesheff17_ is now known as thesheff17
bttf has joined #ruby
bove_ is now known as bove
jabreity has joined #ruby
braderhart_ is now known as braderhart
babblebre has joined #ruby
bcavileer_ has joined #ruby
cookiez has joined #ruby
yxhuvud has joined #ruby
modin has joined #ruby
Nanuq has joined #ruby
St1gma has joined #ruby
Liothen has joined #ruby
bcavileer_ has quit [Changing host]
bcavileer_ has joined #ruby
babblebre has quit [Changing host]
babblebre has joined #ruby
duckpuppy has joined #ruby
KensoDev has quit []
gbgdev has joined #ruby
musicnode has joined #ruby
cryptocoder has quit []
Trieste has joined #ruby
zacstewart has joined #ruby
frankS2_ is now known as frankS2
musicnode has quit [Client Quit]
_seanc_ has quit [Quit: _seanc_]
musicnode has joined #ruby
johnny56 has joined #ruby
sandstrom has joined #ruby
musicnode has quit [Client Quit]
william3 has quit [Ping timeout: 240 seconds]
paradisaeidae has joined #ruby
fostertheweb has joined #ruby
ellistaa has joined #ruby
RobertBirnie has quit [Ping timeout: 260 seconds]
troulouliou_div2 has joined #ruby
blandflakes has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client]
babblebre has quit [Quit: Connection closed for inactivity]
robbyoconnor has quit [Read error: Connection reset by peer]
Guest38 has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
blandflakes has joined #ruby
skcin7_ has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
yoongkang has joined #ruby
sneakerhax has quit [Quit: Leaving]
mjuszczak has quit []
kaleido has joined #ruby
barajasfab has quit [Remote host closed the connection]
pawnbox has joined #ruby
ellistaa has quit [Quit: ellistaa]
mjuszczak has joined #ruby
fostertheweb has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
robbyoconnor has joined #ruby
ramfjord has quit [Ping timeout: 276 seconds]
<kaleido> hrm
baweaver has quit [Remote host closed the connection]
yoongkang has quit [Ping timeout: 240 seconds]
duckpuppy has quit [Ping timeout: 240 seconds]
mfb2 has quit [Remote host closed the connection]
troulouliou_div2 has quit [Quit: Leaving]
sandstrom has quit [Quit: My computer has gone to sleep.]
duckpuppy has joined #ruby
pawnbox has quit [Ping timeout: 240 seconds]
fostertheweb has joined #ruby
sandstrom has joined #ruby
ellistaa has joined #ruby
mjuszczak has quit []
kcahj has quit [Quit: kcahj]
lipoqil has quit [Quit: Connection closed for inactivity]
dlitvak has joined #ruby
visudo has quit [Quit: visudo]
dlitvak has quit [Ping timeout: 245 seconds]
robbyoconnor has quit [Quit: Konversation terminated!]
robbyoconnor has joined #ruby
wheresmyjetpack has joined #ruby
kalopsian has quit [Ping timeout: 250 seconds]
william3 has joined #ruby
cschneid_ has quit [Remote host closed the connection]
jhack has joined #ruby
<jimmtt> why does ruby have exception but not throw an exception on out of bounds array access
jhack has quit [Client Quit]
<jimmtt> exceptions
kiki_lam1 is now known as kiki_lamb
<jimmtt> seems like poor design
freerobby has quit [Read error: Connection reset by peer]
freerobby has joined #ruby
crdpink has joined #ruby
paradisaeidae has quit [Read error: Connection reset by peer]
crdpink2 has quit [Ping timeout: 250 seconds]
paradisaeidae has joined #ruby
william3 has quit [Ping timeout: 256 seconds]
barhum2013 has joined #ruby
rkazak has joined #ruby
sandstrom has quit [Quit: My computer has gone to sleep.]
machinewar has quit [Remote host closed the connection]
Jardayn has quit [Quit: Leaving]
Guest66976 has quit [Quit: Nuck Off]
marr has quit [Ping timeout: 240 seconds]
IrishGringo has joined #ruby
sandstrom has joined #ruby
ur5us has quit [Remote host closed the connection]
ellistaa has quit [Quit: ellistaa]
aupadhye has quit [Quit: Leaving]
zacstewart has quit [Ping timeout: 264 seconds]
zacstewart has joined #ruby
pawnbox has joined #ruby
ur5us has joined #ruby
ur5us has quit [Read error: No route to host]
ur5us has joined #ruby
<kent\n> jimmtt: what is "Out of bounds" in your mind in a dynamic language where arrays have non-fixed length that are self extending?
zeroDivisible has quit [Quit: WeeChat 1.3]
<kent\n> and what are you doing that you'd expect such an error?
<Ox0dea> Ruby Arrays do have a fixed length, mind.
<kent\n> By that I mean, you can assign to a random offset and ruby by design makes that happen
<kent\n> ruby -e 'x = []; x[5] = 1; p x[6] ' # eg
<jimmtt> a=[1,2] followed by a[2] returns nil
<kent\n> right, but the question for me is, "why are you doing a[2]"
pawnbox has quit [Ping timeout: 250 seconds]
<kaleido> because a[2] doesnt exist
<jimmtt> even if you can assign to wherever you want, accessing something that hasn't been defined yet seems like it should be some kind of error
<kaleido> a[0] is 1
<jimmtt> there are lots of ways for bad array indexing to happen by accident
<kent\n> I agree mostly, I'm not arguing that, I'm just trying to work out what you're doing that leads you to this.
<kent\n> Like a common reason you'd be doing it is you're doing C-Style iteration instead of using .each
<jimmtt> I was just doing things in a ruby interpreter to get a feel for it
<kaleido> mmm, .each
<Ox0dea> jimmtt: Here's the great thing about Ruby: https://eval.in/510065
ur5us has quit [Ping timeout: 256 seconds]
<jimmtt> there are times where, even if a language has these kinds of convenient iterators, you want to loop with an index because the position is significant to the operations you're doing on the elements
<Ox0dea> jimmtt: And in that case we have #each_with_index. :)
ruk` has joined #ruby
<Ox0dea> And, well, #with_index for the general case.
<Ox0dea> >> [1,2,3].map.with_index { |element, i| element * i }
<jimmtt> I guess that would cover that
<Ox0dea> Eventually...
<ruby[bot]> Ox0dea: # => [0, 2, 6] (https://eval.in/510066)
gruz0 has quit [Quit: This computer has gone to sleep]
sandstrom has quit [Quit: My computer has gone to sleep.]
yoongkang has joined #ruby
symm-_ has joined #ruby
symm- has quit [Ping timeout: 250 seconds]
<kent\n> yeah. I'm not say so much that you shouldn't be accessing array indexes, just usually if you're doing things and getting the wrong results, there's a /chance/ there's already a better way to do what you're doing.
<jimmtt> but I think the likelihood of encountering bad array indexing is orthogonal to whether or not it should throw an exception
<jimmtt> unless it's a performance concern
<jimmtt> well I don't think it would be a performance concern
sandstrom has joined #ruby
skcin7 has joined #ruby
<kent\n> I would still agree that does-not-exist-but-fetched-anyway would probably be useful if it did throw an exception, but there's a lot of things in Ruby that "could" be useful and "could" give more strict behaviour with exceptions that some people would very much dislike and would break existing (valid) code
blackgoat_ has quit [Ping timeout: 240 seconds]
tuelz has joined #ruby
ruk` has quit [Read error: Connection reset by peer]
<Ox0dea> >> [42].fetch 1 rescue $! # jimmtt
<ruby[bot]> Ox0dea: # => #<IndexError: index 1 outside of array bounds: -1...1> (https://eval.in/510067)
<kent\n> for instance, given that: x = []; x[5] = 1; p x[1] # returns nil, and does not throw an exception despite the fact you never set x[1], then maybe it doesn't matter that x[6] returns nil
<Ox0dea> Just use #fetch everywhere instead of #[].
<Ox0dea> kent\n: That's something different, though.
nuck has joined #ruby
<Ox0dea> Arrays *have* to be contiguous, but that doesn't mean they have to appear to be infinitely long.
nuck is now known as Guest8935
<kent\n> Its different, sure, but depending on how you use the array, it might not matter. If your interface treats "nil" and "no such index" the same way, then having the latter react the same as the former is fine.
duckpuppy has quit [Ping timeout: 240 seconds]
<kent\n> Would it be /good/ design? Can't say for sure.
<Ox0dea> It's just the tradeoff Ruby makes.
<Ox0dea> Easy > simple is the game.
<jimmtt> cool, Ox0dea
william3 has joined #ruby
tuelz has quit [Ping timeout: 265 seconds]
<Ox0dea> jimmtt: Same interface for Hash, for reference.
<kent\n> anyway, simple only exists as a concept if you want to achieve very little ;). Most the time "simple" is "A lot of complexity hiding behind an easy interface", so its simple as long as you don't look too hard :)
<Ox0dea> Bollocks.
<Ox0dea> Lisp is simple, and they used to write entire operating systems therein.
kalopsian has joined #ruby
<jimmtt> well C is also relatively simple
<kent\n> But its not exactly "simple" to achieve anything you desire in lisp. But I will agree that this is probably me seeing different interpretations of the words than you :)
<Ox0dea> kent\n: No, it *is* simple; it's just *hard*.
<kent\n> Yeah. I do understand what you mean. I just don't see "lisp code" and think "this is simple".
<Ox0dea> ...
ponga has quit []
<jimmtt> there are different domains to be simple or not in
freerobby has quit [Quit: Leaving.]
<Ox0dea> We're obviously talking about programming languages?
<jimmtt> yes, in the context of programming languages
<Radar> ?popcorn
<ruby[bot]> It's popcorn time!
joast has joined #ruby
<jimmtt> it seems like ruby's main website says to just install it with the package manager but I get an old version that way and don't see any explicit newer versions in apt-cache search
<jimmtt> guess I'm going to have to either find a deb of it or compile it
<Radar> jimmtt: Ubuntu?
<jimmtt> debian amd64
<Radar> Close enough.
william3 has quit [Ping timeout: 250 seconds]
hahuang65 has quit [Ping timeout: 240 seconds]
<Radar> ?ubuntu jimmtt
<ruby[bot]> jimmtt: Ubuntu installation guide for Ruby + Rails: http://ryanbigg.com/2014/10/ubuntu-ruby-ruby-install-chruby-and-you/
<Radar> That'll net you the latest Ruby.
<kent\n> Its too easy to conflate simple/easy for me. Like if somebody says "it has a simple interface", that also tends to imply "its easy to use", but I see that as "simplicity is hiding the complexity" quite frequently.
<jimmtt> apt-get is outdated now?
<kent\n> Ox0dea: but anyway, ILY dude(ette)? , don't hate me :p
phantummm has quit [Ping timeout: 276 seconds]
RobertBirnie has joined #ruby
<Ox0dea> kent\n: Nah, we're cool. You just need some learnin's. :)
sandstrom has quit [Quit: My computer has gone to sleep.]
<Ox0dea> I do hope you find the time to watch that someday.
<Ox0dea> tl;dr: complexity == entanglement of pieces, simplicity == harmony of ideas.
skcin7 has quit [Max SendQ exceeded]
Antiarc has quit [Ping timeout: 260 seconds]
<Ox0dea> Entangling pieces makes things look easy at the surface; harmonizing disparate ideas is hard.
sandstrom has joined #ruby
skcin7 has joined #ruby
slawrence00 has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
slawrence00 has joined #ruby
tomchapin has joined #ruby
zambini has quit [Quit: Leaving.]
<kent\n> great. I see more reasons to goad people into calling me a nazi in my future :D
<Ox0dea> I'm afraid I don't follow.
<kent\n> I'm going to nit pick about this one day and tempt somebody calling me a grammar nazi :(
skcin7 has quit [Max SendQ exceeded]
<Ox0dea> It's not even a grammatical distinction; they're completely distinct notions.
<kent\n> I know. Sadly, "Grammar Nazi" is itself an overloaded term that includes spelling, punctuation, and use of the wrong word for a concept :D
skcin7 has joined #ruby
IrishGringo has quit [Ping timeout: 245 seconds]
baweaver has joined #ruby
<kent\n> the irony^WJuxtaposition of that last one is a beautiful thing.
chouhoulis has quit [Remote host closed the connection]
RobertBirnie has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
mfb2 has joined #ruby
PlasmaStar has quit [Ping timeout: 240 seconds]
<Ox0dea> Related: "nazi" is a common noun in that phrase. You should only capitalize the word in reference to the political party. ^_^
zacstewart has quit [Ping timeout: 240 seconds]
<kent\n> :D
<Ox0dea> Consider Ruby's switch statement semantics: case equality lets you write complex branching logic with embarrassing ease, but if you unrolled one of any moderate size to its essential components, it would look spaghetti as fuck.
zacstewart has joined #ruby
tlaxkit has joined #ruby
blandflakes has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client]
<kent\n> can confirm. I recently attempted to do similarly without perl5.10+'s switch structure. Realised it was a dumb mess and I rewrote it using a dispatch table :P
baweaver has quit [Ping timeout: 260 seconds]
mfb2 has quit [Ping timeout: 250 seconds]
<kent\n> sometimes when you think you want conditions, you really want polymorphism of some description.
<Ox0dea> It's all goto at the bottom. :)
<kent\n> Yeah. Just making the code "nice" is the hard part :D
<Ox0dea> In Ruby? Surely you jest.
blandflakes has joined #ruby
houhoulis has joined #ruby
<kent\n> Nah. You can write a mess easily in any language without thinking.
bithon has joined #ruby
<kent\n> I can write a mess in ruby easily too
<Ox0dea> I've got you beat there.
aaron_ has joined #ruby
<llua> is that a helicopter?
<llua> near the top
<Ox0dea> It is many things, to include a todo app written in Sinatra.
<aaron_> hello :)
Antiarc has joined #ruby
<Ox0dea> But yes, that's the roflcopter floating over all.
<kent\n> If I had some time to spare I'm sure I could work out what that says. But ETOOMUCHEFFORT
kalopsian has quit [Ping timeout: 264 seconds]
kies^ has joined #ruby
<kent\n> Usually the first pass I make at every solution is garbage, and I have to sit down and refactor it till I'm happy with it.
sandstrom has quit [Quit: My computer has gone to sleep.]
<Ox0dea> Someone really needs more Rich Hickey in his life. :)
<Ox0dea> His philosophy is "needs more hammock time".
<kent\n> I do appreciate the amount of time spent sleeping improving problem solving, but that doesn't actually help me not write bad code.
<Ox0dea> Er, I didn't mean to imply that you should use sleep as a thinking tool.
<Ox0dea> Genuinely thinking about the problem you want to solve before touching a keyboard *will* help you not write bad code.
sandstrom has joined #ruby
<kent\n> Oh I do, for weeks, easily. But that's usually about the higher level concepts and interface, not implementation details. Problems in implementation I don't seem to be able to work out "which is the best way to do this" until I try a few things.
jbrhbr has quit [Quit: Leaving.]
<Ox0dea> Sounds contradictory, but okay.
<kent\n> Because I have to see how it looks in order to know if its any good.
idefine has quit [Read error: Connection reset by peer]
<kent\n> Its cool to flesh out an idea in your head first, but it doesn't always work when you put it in to practice, because the brain is a spongy piece of meatware with bugs.
<Ox0dea> Neurophagy is frowned upon, mind.
howdoi has quit [Quit: Connection closed for inactivity]
<aaron_> hey guys :) I'm just curious how I could get started learning ruby. I've had some programming experience in the past, but nowadays I'm just a front-end web guy.
kalopsian has joined #ruby
<Ox0dea> aaron_: What does that mean?
idefine has joined #ruby
<jimmtt> I've always found the best way to learn languages is to just start using htem
oetjenj has quit [Ping timeout: 240 seconds]
zzz_ has joined #ruby
<jimmtt> maybe use ruby to solve some projecteuler problems
<Radar> aaron_: Do you have Ruby installed on your machine?
<aaron_> Yeah I managed to install Ruby and Rails on my machine, easier with linux than windows :P
<Radar> aaron_: I have a blog post with some resources in it: http://ryanbigg.com/2015/04/getting-started-with-ruby-and-rails/
<aaron_> That's awesome! thank you so much :-)
joonty has joined #ruby
<Radar> no worries :)
oetjenj has joined #ruby
stannard has joined #ruby
arescorpio has joined #ruby
<Ox0dea> Radar: Is https://pine.fm/LearnToProgram/ too watered-down to make the list?
<Radar> Ox0dea: It hasn't been updated in yonks
duckpuppy has joined #ruby
<Ox0dea> Fair dos.
Coldblackice has joined #ruby
<aaron_> Just looked at a chapter of "Well Grounded Rubyist", looks awesome :) Would you recommend starting with that book?
<Radar> Also: check out these Linux install instructions: https://pine.fm/LearnToProgram/chap_00.html
<Radar> aaron_: Absolutely
<Ox0dea> Koans first. :P
<Radar> Ox0dea: I think those install instructions are a blight :P
<Radar> Well-Grounded and Koans are on par with each other imo
<jimmtt> Radar, trying to build ruby like this keeps failing on the rdoc step. I tried prefacing the installation command with RUBY_CONFIGURE_OPTS=--disable-install-doc as a post I found suggested but that didn't help
<Radar> Well-Grounded will explain it better.
<Radar> ?gist jimmtt
<ruby[bot]> jimmtt: https://gist.github.com - Multiple files, syntax highlighting, even automatically with matching filenames, can be edited
<Radar> jimmtt: The complete output please
<Ox0dea> Radar: Those are really bad. I didn't know those were there. :<
baweaver has joined #ruby
<Ox0dea> jimmtt: make install-nodoc
joonty has quit [Ping timeout: 264 seconds]
<Radar> Ox0dea: I'm of a mind to "fork" the book, replace the install instructions with mine, bump the Ruby versions and leave the rest untouched.
<jimmtt> make install -nodoc?
<Ox0dea> No.
<jimmtt> it said there was no rule for install-nodoc
<Ox0dea> That's not good.
<Ox0dea> I definitely have that rule here.
stannard has quit [Ping timeout: 265 seconds]
hnagamin has joined #ruby
arooni_______ has joined #ruby
baweaver has quit [Ping timeout: 240 seconds]
goodroot has joined #ruby
sandstrom has quit [Quit: My computer has gone to sleep.]
aaron_ has quit [Quit: Leaving]
frem has quit [Quit: Connection closed for inactivity]
sandstrom has joined #ruby
hnagamin has quit [Ping timeout: 256 seconds]
ICantCook has joined #ruby
<Radar> Alright, going back to reading Sanderson's new book. Probably will not be online much for the next week or so. Toodles :)
goodroot has quit [Ping timeout: 240 seconds]
<Ox0dea> Au revoir.
wolffles has joined #ruby
unreal_ is now known as unreal
nisstyre has joined #ruby
BlkDynmt has quit [Quit: BlkDynmt]
govg_ has quit [Ping timeout: 272 seconds]
Anderson69s has joined #ruby
The_Phoenix has joined #ruby
sandstrom has quit [Quit: My computer has gone to sleep.]
Anderson69s has quit [Client Quit]
goodroot has joined #ruby
PlasmaStar has joined #ruby
nisstyre has quit [Changing host]
nisstyre has joined #ruby
sandstrom has joined #ruby
fostertheweb has quit [Quit: Textual IRC Client: www.textualapp.com]
rkazak has quit [Quit: Sleep.....ing....]
baweaver has joined #ruby
cdg has joined #ruby
baweaver has quit [Remote host closed the connection]
<jimmtt> Ox0dea, can I just get this precompiled somewhere
goodroot has quit [Ping timeout: 264 seconds]
<Ox0dea> jimmtt: Er, there's this thing for Ubuntu users: https://www.brightbox.com/docs/ruby/ubuntu/
<Ox0dea> The PPA system is the same, so it should work just fine for Debian.
<Ox0dea> I won't claim to know what all they've done to tailor the install to Ubuntu users, so caveat emptor.
symm- has joined #ruby
symm-_ has quit [Ping timeout: 276 seconds]
PlasmaStar has quit [Ping timeout: 264 seconds]
cdg has quit [Ping timeout: 260 seconds]
rkazak has joined #ruby
arthropododo has quit [Remote host closed the connection]
PlasmaStar has joined #ruby
FooMunki has quit [Quit: FooMunki]
<jimmtt> that's resulting in "Failed to fetch http://ppa.launchpad.net/brightbox/ruby-ng/ubuntu/dists/jessie/main/binary-amd64/Packages", which I only find one reference to on google with no resolution
<jimmtt> after the apt-get update
hahuang65 has joined #ruby
<jimmtt> seems like I can probalby just replace jessie with something else
chouhoulis has joined #ruby
<jimmtt> I can probably just use wheezy instead of jessie
<jimmtt> actually none of these are here
s00pcan has quit [Ping timeout: 260 seconds]
sandstrom has quit [Quit: My computer has gone to sleep.]
<jimmtt> replacing with trusty seems to have worked
s00pcan has joined #ruby
sandstrom has joined #ruby
symm- has quit [Quit: Leaving...]
hahuang65 has quit [Ping timeout: 250 seconds]
<Ox0dea> Here's hoping this fella's as trusty as he looks: http://www.altinawildlife.com/portals/0/tahr-home-page.jpg
jgt1 has quit [Ping timeout: 250 seconds]
BlkDynmt has joined #ruby
chouhoulis has quit [Ping timeout: 260 seconds]
wolffles has quit [Quit: wolffles]
Tempesta has quit [Quit: See ya!]
<jimmtt> I always end up having to take the sudo's out of these guides because I just do them as root
SCHAAP137 has quit [Remote host closed the connection]
PlasmaStar has quit [Ping timeout: 264 seconds]
mjuszczak has joined #ruby
<jimmtt> guide said to install libmysqlclient-dev before installing the mysql12 gem so that the native extensions won't fail to compile but they still fail to compile lol
<Ox0dea> ¯\_(ツ)_/¯
sdothum has quit [Quit: ZNC - 1.6.0 - http://znc.in]
diegoviola has quit [Quit: GTK+ is a acronym]
PlasmaStar has joined #ruby
nodejunkie has joined #ruby
arooni_______ has left #ruby ["Leaving"]
paradisaeidae has quit [Quit: ChatZilla 0.9.92 [Firefox 44.0/20160123151951]]
mjuszczak has quit [Ping timeout: 264 seconds]
_seanc_ has joined #ruby
ebit has joined #ruby
<ebit> would it be possible to create a local users using ruby
aarontak has joined #ruby
mfb2 has joined #ruby
wheresmyjetpack has quit [Ping timeout: 250 seconds]
joonty has joined #ruby
sandstrom has quit [Quit: My computer has gone to sleep.]
weemsledeux has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
jimmtt is now known as jimmt_
jimmt_ is now known as jimmtt
BlkDynmt has quit [Quit: BlkDynmt]
nodejunkie has quit [Ping timeout: 265 seconds]
sandstrom has joined #ruby
blandflakes has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client]
speakingcode has joined #ruby
mfb2 has quit [Ping timeout: 276 seconds]
baweaver has joined #ruby
joonty has quit [Ping timeout: 245 seconds]
blackgoat_ has joined #ruby
<kent\n> Like, Kernel.system('sudo', 'useradd', ... ) ? # NB: Be really careful, system + sudo is a really nice exploit target.
<jimmtt> seems like I also needed the -dev ruby version
darkxploit has joined #ruby
mjuszczak has joined #ruby
baweaver has quit [Ping timeout: 250 seconds]
tjohnson has quit [Quit: Connection closed for inactivity]
yoongkang has quit [Remote host closed the connection]
mjuszczak has quit []
hnagamin has joined #ruby
piotrj_ has joined #ruby
hnagamin has quit [Read error: Connection reset by peer]
devbug has joined #ruby
piotrj has quit [Ping timeout: 260 seconds]
_djbkd has joined #ruby
lyoshajapan has joined #ruby
tlaxkit has quit [Quit: ¡Hasta luego!]
aarontak has quit [Quit: Leaving]
elifoster has quit [Ping timeout: 240 seconds]
lyoshajapan has quit [Remote host closed the connection]
braincrash has quit [Quit: bye bye]
htmldrum has joined #ruby
idefine has quit [Read error: Connection reset by peer]
mjuszczak has joined #ruby
htmldrum_ has quit [Ping timeout: 256 seconds]
idefine has joined #ruby
justbleed has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
goodroot has joined #ruby
yoongkang has joined #ruby
codezomb has quit [Ping timeout: 250 seconds]
Tempesta has joined #ruby
zast has joined #ruby
goodroot has quit [Ping timeout: 256 seconds]
htmldrum has quit [Ping timeout: 240 seconds]
average has joined #ruby
average has left #ruby [#ruby]
Dimik has quit [Ping timeout: 260 seconds]
jbrhbr has joined #ruby
htmldrum has joined #ruby
braincrash has joined #ruby
pawnbox has joined #ruby
treaki_ has joined #ruby
iateadonut has joined #ruby
dexter_ has quit [Ping timeout: 240 seconds]
dextertzu has quit [Ping timeout: 245 seconds]
htmldrum has quit [Ping timeout: 240 seconds]
nerium has quit [Quit: nerium]
barhum2013 has quit [Quit: barhum2013]
chouhoulis has joined #ruby
treaki has quit [Ping timeout: 276 seconds]
treaki__ has quit [Ping timeout: 276 seconds]
pawnbox has quit [Ping timeout: 240 seconds]
treaki has joined #ruby
jbrhbr has quit [Ping timeout: 245 seconds]
jbrhbr has joined #ruby
chouhoulis has quit [Ping timeout: 264 seconds]
goodroot has joined #ruby
sandstrom has quit [Quit: My computer has gone to sleep.]
sandstrom has joined #ruby
n00bdev has joined #ruby
htmldrum has joined #ruby
william3 has joined #ruby
devbug has quit [Ping timeout: 250 seconds]
arescorpio has quit [Quit: Leaving.]
jbrhbr has quit [Ping timeout: 256 seconds]
devbug has joined #ruby
TomPeed has joined #ruby
nfk has quit [Quit: Try memory.free_dirty_pages=true in about:config]
govg has joined #ruby
william3 has quit [Ping timeout: 245 seconds]
idefine has quit []
rkazak has quit [Quit: Sleep.....ing....]
htmldrum has quit [Ping timeout: 272 seconds]
enitiz has joined #ruby
jottr has quit [Ping timeout: 256 seconds]
bithon has quit [Ping timeout: 276 seconds]
zacstewart has quit [Ping timeout: 265 seconds]
zacstewart has joined #ruby
joonty has joined #ruby
jottr has joined #ruby
dain has joined #ruby
TomPeed has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
gix has quit [Ping timeout: 272 seconds]
duckpuppy has quit [Ping timeout: 276 seconds]
joonty has quit [Ping timeout: 250 seconds]
n00bdev has quit []
sandstrom has quit [Quit: My computer has gone to sleep.]
lyoshajapan has joined #ruby
jottr has quit [Ping timeout: 250 seconds]
mjuszczak has quit []
dain has quit [Client Quit]
juddey has joined #ruby
baweaver has joined #ruby
sandstrom has joined #ruby
gix has joined #ruby
mjuszczak has joined #ruby
Ebok has joined #ruby
LoneHerm_ has quit [Remote host closed the connection]
dlitvak has joined #ruby
dextertzu has joined #ruby
mjuszczak has quit [Client Quit]
The_Phoenix has quit [Read error: No route to host]
gbgdev has quit [Remote host closed the connection]
symm- has joined #ruby
andrew has joined #ruby
The_Phoenix has joined #ruby
juddey has quit [Ping timeout: 265 seconds]
dlitvak has quit [Remote host closed the connection]
arup_r has joined #ruby
william3 has joined #ruby
fedexo has joined #ruby
goodroot has quit [Ping timeout: 265 seconds]
oetjenj has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
dextertzu has quit [Ping timeout: 240 seconds]
CloCkWeRX has joined #ruby
CloCkWeRX has left #ruby [#ruby]
ledestin has joined #ruby
andrew is now known as at46
william3 has quit [Ping timeout: 276 seconds]
dexter_ has joined #ruby
arup_r has quit [Read error: Connection reset by peer]
Sucks has quit [Ping timeout: 250 seconds]
The_Phoenix has quit [Read error: No route to host]
tomchapin has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
blackgoat_ has quit [Read error: Connection reset by peer]
blackgoat_ has joined #ruby
The_Phoenix has joined #ruby
sandstrom has quit [Quit: My computer has gone to sleep.]
astrobun_ has joined #ruby
jbrhbr has joined #ruby
The_Phoenix has quit [Read error: No route to host]
sandstrom has joined #ruby
The_Phoenix has joined #ruby
astrobun_ has quit [Remote host closed the connection]
kalopsian has quit [Ping timeout: 240 seconds]
astrobun_ has joined #ruby
_djbkd has quit [Quit: My people need me...]
enitiz has quit [Quit: Leaving]
Coldblackice has quit [Ping timeout: 240 seconds]
duckpuppy has joined #ruby
triangles has joined #ruby
zacstewart has quit [Ping timeout: 256 seconds]
djbkd has quit [Quit: Leaving...]
goodroot has joined #ruby
nullFxn has joined #ruby
wolffles has joined #ruby
CloCkWeRX has joined #ruby
kalopsian has joined #ruby
skcin7 has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
pdoherty has quit [Ping timeout: 240 seconds]
zacstewart has joined #ruby
djbkd has joined #ruby
sandstrom has quit [Quit: My computer has gone to sleep.]
lost has quit [Ping timeout: 265 seconds]
hahuang65 has joined #ruby
sandstrom has joined #ruby
chouhoulis has joined #ruby
tomchapin has joined #ruby
duckpuppy has quit [Ping timeout: 272 seconds]
dlitvak has joined #ruby
ledestin has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
hahuang65 has quit [Ping timeout: 260 seconds]
william3 has joined #ruby
zzz_ has quit [Remote host closed the connection]
heftig_ is now known as heftig
chouhoulis has quit [Ping timeout: 276 seconds]
The_Phoenix has quit [Quit: Leaving.]
dextertzu has joined #ruby
iateadonut has quit [Ping timeout: 265 seconds]
ESpiney_ has quit [Ping timeout: 240 seconds]
jbrhbr has quit [Quit: Leaving.]
RobertBirnie has joined #ruby
william3 has quit [Ping timeout: 245 seconds]
lost has joined #ruby
symm- has quit [Ping timeout: 240 seconds]
at46 has quit [Remote host closed the connection]
sandstrom has quit [Quit: My computer has gone to sleep.]
kellenevan has joined #ruby
FelixFire619 has joined #ruby
sandstrom has joined #ruby
<FelixFire619> following this guide https://www.digitalocean.com/community/tutorials/how-to-get-started-with-jekyll-on-an-ubuntu-vps "gem install jekyll capistrano" gives me
<FelixFire619> The program 'gem' can be found in the following packages:
<FelixFire619> * ruby
<FelixFire619> * rubygems
<FelixFire619> Try: apt-get install <selected package>
<FelixFire619> Any idea's folks?
LoneHerm_ has joined #ruby
kellenevan1 has joined #ruby
joonty has joined #ruby
goodroot has quit [Ping timeout: 276 seconds]
CloCkWeRX has left #ruby [#ruby]
arup_r has joined #ruby
yfeldblu_ has quit [Remote host closed the connection]
kellenevan2 has joined #ruby
jottr has joined #ruby
kellenevan has quit [Ping timeout: 260 seconds]
<adam12> FelixFire619: You installed `rvm` using method above?
<FelixFire619> um
kellenevan1 has quit [Ping timeout: 240 seconds]
<FelixFire619> i did the on your vps #1
<adam12> the command that starts with `curl`
<FelixFire619> skipped nginx
<FelixFire619> ran curl -L https://get.rvm.io | bash -s stable --ruby=2.0.0
<FelixFire619> is the error
RobertBirnie has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
joonty has quit [Ping timeout: 256 seconds]
<adam12> No errors from running that command?
<FelixFire619> does it need to be a non-root user
<havenwood> FelixFire619: What do you get for?: rvm current
<FelixFire619> no
<adam12> Most of the time you run it as your own user.
<FelixFire619> Curl = good
<FelixFire619> lemme dbl check
<adam12> But I don't run rvm so can't validate that, tbh.
<FelixFire619> yes gem install jekyll capistrano first line /w error
<FelixFire619> The program 'gem' can be found in the following packages:
<FelixFire619> * ruby
<FelixFire619> * rubygems
<havenwood> FelixFire619: RVM doesn't like being run as root. What do you get for?: rvm current
<FelixFire619> error
jottr has quit [Ping timeout: 256 seconds]
<FelixFire619> lemme try something brb
pawnbox has joined #ruby
RobertBirnie has joined #ruby
lost has quit [Ping timeout: 260 seconds]
LoneHerm_ has quit [Remote host closed the connection]
yonatankoren has quit [Read error: Connection reset by peer]
<havenwood> FelixFire619: Here's a guide to setting up latest stable Ruby with a simple, modern set of tools that are an alternative to RVM: http://ryanbigg.com/2014/10/ubuntu-ruby-ruby-install-chruby-and-you/
<FelixFire619> thank toy
<FelixFire619> you
pawnbox has quit [Ping timeout: 256 seconds]
sandstrom has quit [Quit: My computer has gone to sleep.]
gambl0re has joined #ruby
sandstrom has joined #ruby
UtkarshRay has quit [Remote host closed the connection]
zacstewart has quit [Ping timeout: 256 seconds]
yoongkang has quit [Remote host closed the connection]
yoongkang has joined #ruby
jimmtt has quit [Ping timeout: 250 seconds]
william3 has joined #ruby
barhum2013 has joined #ruby
zacstewart has joined #ruby
yoongkang has quit [Ping timeout: 276 seconds]
Channel6 has joined #ruby
william3 has quit [Ping timeout: 245 seconds]
tomchapin has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
sandstrom has quit [Quit: My computer has gone to sleep.]
lemur has joined #ruby
futilegames has joined #ruby
sandstrom has joined #ruby
sgambino has joined #ruby
RobertBirnie has quit [Quit: Textual IRC Client: www.textualapp.com]
ProofTechnique has joined #ruby
Outlastsheep has joined #ruby
lemur has quit [Ping timeout: 240 seconds]
yonatankoren has joined #ruby
Bloomer has joined #ruby
kalopsian has quit [Ping timeout: 264 seconds]
futilegames has quit [Quit: futilegames]
zacstewart has quit [Ping timeout: 256 seconds]
mfb2 has joined #ruby
william3 has joined #ruby
UtkarshRay has joined #ruby
zacstewart has joined #ruby
blackgoat_ has quit [Ping timeout: 240 seconds]
LoneHerm_ has joined #ruby
william3 has quit [Ping timeout: 245 seconds]
chouhoulis has joined #ruby
dexter_ has quit [Quit: WeeChat 1.3]
mfb2 has quit [Ping timeout: 276 seconds]
griffindy has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
arup_r has quit [Ping timeout: 240 seconds]
dextertzu has quit [Ping timeout: 245 seconds]
chouhoulis has quit [Ping timeout: 240 seconds]
darkf has joined #ruby
pawnbox has joined #ruby
sandstrom has quit [Quit: My computer has gone to sleep.]
dlitvak has quit [Ping timeout: 260 seconds]
hahuang65 has joined #ruby
sandstrom has joined #ruby
lxsameer has joined #ruby
lyoshajapan has quit [Remote host closed the connection]
pawnbox has quit [Ping timeout: 264 seconds]
astrobun_ has quit [Remote host closed the connection]
dlitvak has joined #ruby
<wolffles> hey Ox0dea you there?
rmrrn has joined #ruby
rmrrn has quit [Changing host]
rmrrn has joined #ruby
yoongkang has joined #ruby
at46 has joined #ruby
astrobun_ has joined #ruby
astrobu__ has joined #ruby
sgambino has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
at46 has quit [Ping timeout: 265 seconds]
joonty has joined #ruby
astrobun_ has quit [Ping timeout: 265 seconds]
stannard has joined #ruby
dlitvak has quit [Remote host closed the connection]
jottr has joined #ruby
arup_r has joined #ruby
centrx has quit [Remote host closed the connection]
sandstrom has quit [Quit: My computer has gone to sleep.]
joonty has quit [Ping timeout: 265 seconds]
stannard has quit [Ping timeout: 276 seconds]
sandstrom has joined #ruby
weemsledeux has joined #ruby
jottr has quit [Ping timeout: 260 seconds]
astrobu__ has quit [Remote host closed the connection]
hahuang65 has quit [Ping timeout: 240 seconds]
Waheedi has quit [Quit: Waheedi]
aspire has joined #ruby
PedramT has joined #ruby
aspire has quit [Client Quit]
astrobun_ has joined #ruby
yfeldblum has joined #ruby
pawnbox has joined #ruby
juddey has joined #ruby
moeabdol has quit [Ping timeout: 276 seconds]
sandstrom has quit [Quit: My computer has gone to sleep.]
pawnbox has quit [Ping timeout: 276 seconds]
Channel6 has quit [Quit: Leaving]
mrsolo_ has joined #ruby
sandstrom has joined #ruby
pawnbox has joined #ruby
x77686d has quit [Quit: x77686d]
pawnbox has quit [Remote host closed the connection]
pawnbox has joined #ruby
ebit has quit [Ping timeout: 240 seconds]
skcin7 has joined #ruby
lyoshajapan has joined #ruby
Abrin has quit [Ping timeout: 276 seconds]
zapata has quit [Quit: WeeChat 1.3]
giftmusic has joined #ruby
Coldblackice has joined #ruby
futilegames has joined #ruby
zapata has joined #ruby
yaewa has quit [Quit: Leaving...]
x77686d has joined #ruby
zambini has joined #ruby
moei has joined #ruby
sandstrom has quit [Quit: My computer has gone to sleep.]
tomchapin has joined #ruby
sandstrom has joined #ruby
mrsolo_ has quit [Quit: This computer has gone to sleep]
chouhoulis has joined #ruby
zast has quit [Remote host closed the connection]
davedev2_ has quit []
chouhoulis has quit [Ping timeout: 265 seconds]
karapetyan has joined #ruby
aryaching has joined #ruby
giftmusic has quit [Quit: later]
william3 has joined #ruby
speakingcode has quit [Ping timeout: 264 seconds]
sandstrom has quit [Quit: My computer has gone to sleep.]
at46 has joined #ruby
william3 has quit [Ping timeout: 245 seconds]
speakingcode has joined #ruby
sandstrom has joined #ruby
<Ebok> If I have an array of Integers, and I need to join every pair of them into an array... ex: [0,0,1,0,1,1] => [[0,0],[0,1],[1,1]] Does anyone have any suggestions?
astrobun_ has quit [Remote host closed the connection]
<Ebok> Hrm. I didnt expect that to respond to me.
astrobun_ has joined #ruby
astrobu__ has joined #ruby
astrobun_ has quit [Read error: Connection reset by peer]
at46 has quit [Ping timeout: 265 seconds]
Xeago has joined #ruby
dextertzu has joined #ruby
rkazak has joined #ruby
jottr has joined #ruby
djbkd has quit [Quit: Leaving...]
aryaching has quit [Ping timeout: 240 seconds]
Xeago has quit [Ping timeout: 240 seconds]
aryaching has joined #ruby
<havenwood> Ebok: >> [0,0,1,0,1,1].each_slice(2).to_a
jottr has quit [Ping timeout: 260 seconds]
<Ebok> Oh sweet.
<Ebok> I forgot each_slice even existed
slawrence00 has quit [Ping timeout: 256 seconds]
hahuang65 has joined #ruby
arup_r has quit []
sandstrom has quit [Quit: My computer has gone to sleep.]
_seanc_ has quit [Quit: _seanc_]
troulouliou_dev has joined #ruby
sandstrom has joined #ruby
djbkd has joined #ruby
arlek_ has joined #ruby
zacstewart has quit [Ping timeout: 256 seconds]
Abrin has joined #ruby
blur3d has joined #ruby
arlek has quit [Ping timeout: 256 seconds]
zacstewart has joined #ruby
LoneHerm_ has quit [Remote host closed the connection]
wolffles has quit [Quit: wolffles]
visudo has joined #ruby
x77686d has quit [Quit: x77686d]
mdw has joined #ruby
sandstrom has quit [Quit: My computer has gone to sleep.]
Spami has joined #ruby
sandstrom has joined #ruby
lyoshajapan has quit [Remote host closed the connection]
_ht has joined #ruby
Dimik has joined #ruby
mikolalysenko has quit [Ping timeout: 240 seconds]
mikolalysenko has joined #ruby
mdw has quit [Quit: Sleeping Zzzzz]
treaki has quit [Ping timeout: 260 seconds]
alnewkirk has joined #ruby
chouhoulis has joined #ruby
wolffles has joined #ruby
idefine has joined #ruby
fedexo has quit [Ping timeout: 240 seconds]
duckpuppy has joined #ruby
sandstrom has quit [Quit: My computer has gone to sleep.]
amclain has quit [Quit: Leaving]
jud has joined #ruby
chouhoulis has quit [Ping timeout: 272 seconds]
tomchapin has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
sandstrom has joined #ruby
tomchapin has joined #ruby
PedramT has quit [Remote host closed the connection]
duckpuppy has quit [Ping timeout: 276 seconds]
zacstewart has quit [Ping timeout: 256 seconds]
<zacts> hello rubyists
ledestin has joined #ruby
zacstewart has joined #ruby
Spami has quit [Quit: This computer has gone to sleep]
Abrin has quit [Quit: Nettalk6 - www.ntalk.de]
tomchapin has quit [Client Quit]
william3 has joined #ruby
pawnbox has quit [Remote host closed the connection]
pawnbox has joined #ruby
zambini has quit [Quit: Leaving.]
pawnbox has quit [Remote host closed the connection]
pawnbox has joined #ruby
at46 has joined #ruby
tomchapin has joined #ruby
william3 has quit [Ping timeout: 245 seconds]
astrobu__ has quit [Remote host closed the connection]
wolffles has quit [Quit: wolffles]
idefine has quit [Remote host closed the connection]
<triangles> sup zacts
<triangles> how you doin
at46 has quit [Ping timeout: 265 seconds]
piotrj_ has quit [Ping timeout: 250 seconds]
jottr has joined #ruby
sandstrom has quit [Quit: My computer has gone to sleep.]
chussenot has joined #ruby
<zacts> I'm doin' alright
<zacts> =)
<zacts> I'm just reading this pragmatic book on Ruby2 cli apps
mdw has joined #ruby
weemsledeux has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
skade has joined #ruby
bigkevmcd has quit [Quit: Outta here...]
<shevy> Ebok I forget .each_slice too, all the time
<shevy> the name is so hard to remember
sandstrom has joined #ruby
wolffles has joined #ruby
jottr has quit [Ping timeout: 276 seconds]
akkmaxon has joined #ruby
<Ebok> I'll have to stop forgetting that one though. Its the answer to almost every single simple boardgame question I run into.
<Ebok> lol
jgt1 has joined #ruby
<Ebok> At least the last three, discounting my test-driven Ruby Tree learning.
<Ebok> experiment-driven* is probably more accurate
william3 has joined #ruby
zacstewart has quit [Ping timeout: 256 seconds]
idefine has joined #ruby
william3 has quit [Ping timeout: 245 seconds]
zacstewart has joined #ruby
yoongkang has quit [Remote host closed the connection]
baweaver has quit [Remote host closed the connection]
idefine has quit [Ping timeout: 276 seconds]
robbyoconnor has quit [Read error: Connection reset by peer]
robbyoconnor has joined #ruby
visudo has quit [Quit: visudo]
firstdayonthejob has joined #ruby
<shevy> I am trying to trick my brain into thinking that it is called .chunk
<shevy> then I can use this as "how to make an array split into separate chunks of equal size
sandstrom has quit [Quit: My computer has gone to sleep.]
Nawn has joined #ruby
william3 has joined #ruby
sandstrom has joined #ruby
<apeiros> better learn the word slice ;-)
<apeiros> how can I slice an array into equal sized slices
Nawn has quit [Client Quit]
Trynemjoel has joined #ruby
<shevy> yeah
lxsameer has quit [Ping timeout: 256 seconds]
nofxx has quit [Ping timeout: 250 seconds]
juddey has quit [Ping timeout: 272 seconds]
futilegames has quit [Quit: futilegames]
lxsameer has joined #ruby
oetjenj has joined #ruby
devbug has quit [Read error: Connection reset by peer]
Macaveli has joined #ruby
webus has joined #ruby
Nawn has joined #ruby
codecop has joined #ruby
lyoshajapan has joined #ruby
Nawn has left #ruby [#ruby]
Nawn has joined #ruby
Nawn has left #ruby [#ruby]
drptbl has joined #ruby
zacstewart has quit [Ping timeout: 256 seconds]
Tempesta has quit [Quit: See ya!]
PedramT has joined #ruby
lyoshajapan has quit [Remote host closed the connection]
lyoshajapan has joined #ruby
zacstewart has joined #ruby
futilegames has joined #ruby
aryaching has quit [Read error: No route to host]
yoongkang has joined #ruby
chussenot has quit [Quit: chussenot]
barhum2013 has quit [Quit: barhum2013]
barhum2013 has joined #ruby
BaroMeter has joined #ruby
lyoshajapan has quit [Remote host closed the connection]
chouhoulis has joined #ruby
chussenot has joined #ruby
futilegames has quit [Client Quit]
juddey has joined #ruby
marr has joined #ruby
drptbl has quit [Quit: My MAC has gone to sleep. zZz..]
Trynemjoel has quit [Ping timeout: 250 seconds]
aryaching has joined #ruby
The_Phoenix has joined #ruby
LoneHerm_ has joined #ruby
chouhoulis has quit [Ping timeout: 260 seconds]
Trynemjoel has joined #ruby
wolffles has quit [Quit: wolffles]
mauricio has joined #ruby
drptbl has joined #ruby
<zacts> apparently the etymology of the word 'splice' means to bring things together, I think historically
<zacts> oh slice
* zacts is sleepy just a bit
skade_ has joined #ruby
* zacts is a sleepy word nerd
skade has quit [Ping timeout: 240 seconds]
LoneHerm_ has quit [Ping timeout: 250 seconds]
Ishido has joined #ruby
Dimik has quit [Ping timeout: 245 seconds]
Macaveli has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
juddey has quit [Ping timeout: 245 seconds]
aryaching has quit [Ping timeout: 276 seconds]
at46 has joined #ruby
piotrj has joined #ruby
aryaching has joined #ruby
robbyoconnor has quit [Quit: Konversation terminated!]
robbyoconnor has joined #ruby
robbyoconnor has quit [Read error: Connection reset by peer]
skade_ has quit [Quit: Computer has gone to sleep.]
jgt1 has quit [Quit: WeeChat 1.3]
at46 has quit [Ping timeout: 265 seconds]
Cohedrin has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Macaveli has joined #ruby
drptbl has quit [Quit: My MAC has gone to sleep. zZz..]
al2o3-cr has joined #ruby
jottr has joined #ruby
gbgdev_ has joined #ruby
<shevy> lol
<shevy> see!
ramfjord has joined #ruby
robbyoconnor has joined #ruby
william3 has quit [Remote host closed the connection]
<shevy> in genetics, splicing is used to put exons (transcribed from a gene) together, which was a term borrowed from earlier movie-makers splicing their movies/film on those big weird circular things together... like you know, old cinemas
william3 has joined #ruby
jottr has quit [Ping timeout: 265 seconds]
tenderlove has quit [Ping timeout: 240 seconds]
william3 has quit [Remote host closed the connection]
rdark has joined #ruby
lyoshajapan has joined #ruby
drptbl has joined #ruby
FernandoBasso has joined #ruby
DoubleMalt has joined #ruby
jbrhbr has joined #ruby
william3 has joined #ruby
Macaveli has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
arup_r has joined #ruby
PedramT has quit [Ping timeout: 240 seconds]
PedramT has joined #ruby
Cohedrin has joined #ruby
baweaver has joined #ruby
skade has joined #ruby
zeroDivisible has joined #ruby
toretore has quit [Ping timeout: 240 seconds]
lyoshajapan has quit [Ping timeout: 276 seconds]
domgetter has joined #ruby
The_Phoenix has quit [Quit: Leaving.]
baweaver has quit [Ping timeout: 250 seconds]
Ishido has quit [Remote host closed the connection]
sftrabbit has joined #ruby
skade has quit [Quit: Computer has gone to sleep.]
Snowy has joined #ruby
karapetyan has quit [Remote host closed the connection]
karapetyan has joined #ruby
karapetyan has quit [Remote host closed the connection]
Ishido has joined #ruby
karapetyan has joined #ruby
Support_ has joined #ruby
CloCkWeRX has joined #ruby
Support_ has quit [Excess Flood]
d10n-work has quit [Quit: Connection closed for inactivity]
Support_ has joined #ruby
sandstrom has quit [Quit: My computer has gone to sleep.]
Mon_Ouie has joined #ruby
sandstrom has joined #ruby
codecop has quit [Remote host closed the connection]
djbkd has quit [Remote host closed the connection]
codecop has joined #ruby
jbrhbr has quit [Quit: Leaving.]
mfb2 has joined #ruby
Druid has joined #ruby
PedramT has quit [Remote host closed the connection]
Druid has left #ruby ["Quit message"]
PedramT has joined #ruby
PedramT has quit [Remote host closed the connection]
PedramT has joined #ruby
<shevy> anyone happens to know how perl or python call a similar operation on an Array? e. g. .each_slice()
mfb2 has quit [Ping timeout: 276 seconds]
chouhoulis has joined #ruby
tenderlove has joined #ruby
duckpuppy has joined #ruby
zacstewart has quit [Ping timeout: 256 seconds]
zacstewart has joined #ruby
gbgdev_ has quit [Remote host closed the connection]
chouhoulis has quit [Ping timeout: 276 seconds]
sepp2k has joined #ruby
dextertzu has quit [Ping timeout: 250 seconds]
duckpuppy has quit [Ping timeout: 240 seconds]
sandstrom has quit [Quit: My computer has gone to sleep.]
dextertzu has joined #ruby
william3 has quit [Remote host closed the connection]
<shevy> ok a ruby question now
<shevy> this url provides a text file attachment - in the browser, I can click on save and it will be saved:
<shevy> how can I grab this via open-uri or somehow else? e. g. to obtain this programmatically
<shevy> pp yields this when I use open() with that URL:
<shevy> I suppose it is stored in: "content-disposition"=>["attachment; filename=sequence.fasta"]
<shevy> hmm
chussenot has quit [Quit: chussenot]
tomphp has joined #ruby
sandstrom has joined #ruby
krz has joined #ruby
blackmesa has joined #ruby
chussenot has joined #ruby
at46 has joined #ruby
rkazak has quit [Quit: Sleep.....ing....]
mdw has quit [Quit: Sleeping Zzzzz]
Cohedrin has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
<shevy> oha... let me try
<shevy> cool
<shevy> that works
<shevy> thanks al2o3-cr
<al2o3-cr> yw shevy
Snowy has quit []
stannard has joined #ruby
at46 has quit [Ping timeout: 265 seconds]
jottr has joined #ruby
<arup_r> any trick you people know to hide public IP in IRC, mine is visible :( I am using LimeChat client
stannard has quit [Ping timeout: 240 seconds]
zacstewart has quit [Ping timeout: 265 seconds]
enkristoffer has joined #ruby
Xeago has joined #ruby
<apeiros> arup_r: get a cloak
DoubleMalt has quit [Ping timeout: 264 seconds]
<arup_r> is it a plugin ?
william3 has joined #ruby
zacstewart has joined #ruby
<jhass> apeiros: arup_r note that a cloak is not bullet proof
<jhass> arup_r: you ask for it in #freenode
<arup_r> ok
<jhass> make sure to use SASL authentication, it's useless for hiding the IP otherwise
<jhass> and even then a bit questionable still
jottr has quit [Ping timeout: 272 seconds]
<arup_r> jhass: I enables SASL .. last time you helped me to do it.. :)
<jhass> I don't memorize such stuff
Support_ has left #ruby [#ruby]
<arup_r> np.. :)
DoubleMalt has joined #ruby
sandstrom has quit [Quit: My computer has gone to sleep.]
moei has quit [Read error: Connection reset by peer]
moei has joined #ruby
william3 has quit [Ping timeout: 245 seconds]
sandstrom has joined #ruby
namxam has joined #ruby
DoubleMalt has quit [Remote host closed the connection]
treaki has joined #ruby
akkmaxon has quit [Quit: akkmaxon]
puria has joined #ruby
TomyLobo has joined #ruby
neanderslob has quit [Remote host closed the connection]
marr has quit [Ping timeout: 272 seconds]
mauricio has quit [Remote host closed the connection]
felixal has joined #ruby
drptbl has quit [Quit: My MAC has gone to sleep. zZz..]
neanderslob has joined #ruby
william3 has joined #ruby
chussenot has quit [Quit: chussenot]
Nigel is now known as G
tomphp has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
mdw has joined #ruby
sandstrom has quit [Quit: My computer has gone to sleep.]
mauricio has joined #ruby
william3 has quit [Ping timeout: 245 seconds]
blackmesa has quit [Quit: WeeChat 1.4]
sandstrom has joined #ruby
mauricio has quit [Remote host closed the connection]
arlek_ has quit [Ping timeout: 265 seconds]
PedramT has quit [Remote host closed the connection]
skade has joined #ruby
mdw has quit [Ping timeout: 240 seconds]
chussenot has joined #ruby
syk has joined #ruby
symm- has joined #ruby
webus has quit [Quit: Ухожу я от вас (xchat 2.4.5 или старше)]
mdw has joined #ruby
mdw has quit [Client Quit]
krz has quit [Ping timeout: 276 seconds]
PedramT has joined #ruby
ramfjord has quit [Ping timeout: 260 seconds]
chouhoulis has joined #ruby
PedramT has quit [Remote host closed the connection]
PedramT has joined #ruby
tomphp has joined #ruby
crazydiamond has joined #ruby
SCHAAP137 has joined #ruby
chouhoulis has quit [Ping timeout: 264 seconds]
<shevy> jhass are you still writing crystal code?
<jhass> I have a bunch of Crystal projects that I need to keep up to date, so yeah
Brklyn has joined #ruby
ta_ has joined #ruby
ta has quit [Read error: Connection reset by peer]
Brklyn has quit [Ping timeout: 240 seconds]
Zarthus_ is now known as Zarthus
PedramT has quit [Remote host closed the connection]
at46 has joined #ruby
spider-mario has joined #ruby
krz has joined #ruby
PedramT has joined #ruby
FooMunki has joined #ruby
PedramT has quit [Remote host closed the connection]
PedramT has joined #ruby
at46 has quit [Ping timeout: 265 seconds]
Pupeno has joined #ruby
Pupeno has quit [Changing host]
Pupeno has joined #ruby
jottr has joined #ruby
PedramT has quit [Remote host closed the connection]
rdark has quit [Ping timeout: 264 seconds]
jottr has quit [Ping timeout: 276 seconds]
lyoshajapan has joined #ruby
baweaver has joined #ruby
mauricio has joined #ruby
gregf has quit [Quit: WeeChat 1.4]
ht__ has joined #ruby
namxam has quit [Remote host closed the connection]
firstdayonthejob has quit [Ping timeout: 240 seconds]
lyoshajapan has quit [Ping timeout: 245 seconds]
tape88 has quit [Quit: Textual IRC Client: www.textualapp.com]
karapetyan has quit [Remote host closed the connection]
krz has quit [Ping timeout: 240 seconds]
k13nox has joined #ruby
zarubin has joined #ruby
baweaver has quit [Ping timeout: 240 seconds]
Xeago has quit [Remote host closed the connection]
sdothum has joined #ruby
domgetter has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client]
Ebok has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
pawnbox has quit [Ping timeout: 240 seconds]
rippa has joined #ruby
piotrj has quit [Remote host closed the connection]
lyoshajapan has joined #ruby
tomphp has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
piotrj has joined #ruby
blackgoat_ has joined #ruby
pawnbox has joined #ruby
Arnvald has joined #ruby
lyoshajapan has quit [Ping timeout: 276 seconds]
karapetyan has joined #ruby
htmldrum has joined #ruby
Pupeno has quit [Remote host closed the connection]
LoneHerm_ has joined #ruby
ht__ has quit [Quit: Konversation terminated!]
treaki_ has quit [Ping timeout: 240 seconds]
Pupeno has joined #ruby
firstdayonthejob has joined #ruby
htmldrum has quit [Ping timeout: 250 seconds]
LoneHerm_ has quit [Ping timeout: 265 seconds]
tomphp has joined #ruby
gruz0 has joined #ruby
skade has quit [Quit: Computer has gone to sleep.]
chouhoulis has joined #ruby
ferr has joined #ruby
whiteline has quit [Ping timeout: 240 seconds]
duckpuppy has joined #ruby
tomphp has quit [Client Quit]
drptbl has joined #ruby
idefine has joined #ruby
houhoulis has quit [Remote host closed the connection]
william3 has joined #ruby
ccaffeini has quit [Remote host closed the connection]
ht__ has joined #ruby
PedramT has joined #ruby
chouhoulis has quit [Ping timeout: 265 seconds]
pdoherty has joined #ruby
zacstewart has quit [Ping timeout: 276 seconds]
darkxploit has quit [Ping timeout: 245 seconds]
jottr has joined #ruby
william3 has quit [Ping timeout: 245 seconds]
idefine has quit [Ping timeout: 240 seconds]
duckpuppy has quit [Ping timeout: 276 seconds]
Tempesta has joined #ruby
PedramT_ has joined #ruby
PedramT has quit [Ping timeout: 260 seconds]
Arnvald has quit []
ht__ has quit [Quit: Konversation terminated!]
zacstewart has joined #ruby
The_Phoenix has joined #ruby
ccaffeini has joined #ruby
PedramT_ has quit [Ping timeout: 264 seconds]
SCHAAP137 has quit [Remote host closed the connection]
at46 has joined #ruby
dextertzu has quit [Read error: Connection reset by peer]
stannard has joined #ruby
darkxploit has joined #ruby
at46 has quit [Ping timeout: 265 seconds]
Ebok has joined #ruby
stannard has quit [Ping timeout: 264 seconds]
yoongkang has quit [Remote host closed the connection]
sftrabbit has quit [Quit: sftrabbit]
bkxd has joined #ruby
sftrabbit has joined #ruby
sftrabbit has quit [Client Quit]
yoongkang has joined #ruby
namxam has joined #ruby
mjuszczak has joined #ruby
karapetyan has quit [Remote host closed the connection]
dextertzu has joined #ruby
chris2 has quit [Ping timeout: 240 seconds]
ht__ has joined #ruby
syk has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
ccaffeini has quit [Ping timeout: 250 seconds]
Pupeno has quit [Remote host closed the connection]
Pupeno has joined #ruby
lipoqil has joined #ruby
ht__ has quit [Client Quit]
william3 has joined #ruby
ccaffeini has joined #ruby
CloCkWeRX1 has joined #ruby
CloCkWeRX1 has quit [Client Quit]
CloCkWeRX has quit [Quit: Leaving.]
CloCkWeRX2 has joined #ruby
sftrabbit has joined #ruby
krz has joined #ruby
syk has joined #ruby
bkxd has quit [Ping timeout: 256 seconds]
yoongkang has quit [Remote host closed the connection]
ht__ has joined #ruby
aryaching has quit [Read error: No route to host]
william3 has quit [Ping timeout: 245 seconds]
yoongkang has joined #ruby
chris2 has joined #ruby
arup_r has quit []
tomphp has joined #ruby
zapata has quit [Ping timeout: 240 seconds]
ledestin has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
symm- has quit [Quit: Leaving...]
bkxd has joined #ruby
fumk has quit [Remote host closed the connection]
fumk has joined #ruby
namxam has quit [Remote host closed the connection]
kalopsian has joined #ruby
fumk has quit [Remote host closed the connection]
aryaching has joined #ruby
karapetyan has joined #ruby
LoneHermit has joined #ruby
newbie22 has joined #ruby
zapata has joined #ruby
fumk has joined #ruby
Pupeno has quit [Quit: Leaving...]
barhum2013 has quit [Quit: barhum2013]
LoneHermit has quit [Ping timeout: 240 seconds]
drptbl has quit [Quit: My MAC has gone to sleep. zZz..]
pdoherty has quit [Ping timeout: 240 seconds]
despai has joined #ruby
chouhoulis has joined #ruby
tomphp has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
ht__ has quit [Quit: Konversation terminated!]
william3 has joined #ruby
chouhoulis has quit [Ping timeout: 250 seconds]
namxam has joined #ruby
tomphp has joined #ruby
drptbl has joined #ruby
futilegames has joined #ruby
william3 has quit [Ping timeout: 245 seconds]
newbie22 has quit [Quit: Leaving]
jottr has quit [Read error: Connection reset by peer]
lxsameer has quit [Quit: Leaving]
jottr has joined #ruby
ht__ has joined #ruby
namxam has quit [Ping timeout: 264 seconds]
Sirithcam has joined #ruby
chussenot has quit [Quit: chussenot]
FernandoBasso has quit [Quit: Leaving]
piotrj has quit [Remote host closed the connection]
piotrj has joined #ruby
at46 has joined #ruby
shredding has joined #ruby
harushimo has joined #ruby
at46 has quit [Ping timeout: 265 seconds]
<harushimo> i'm doing an gem install of jekyll from the gem repo. I get an error saying I need to have developments tools installed. Does ruby 2.3 have a seperate development tool package?
cjbischof_ has joined #ruby
aryaching has quit [Read error: Connection reset by peer]
lucasb has joined #ruby
DoubleMalt has joined #ruby
blackgoat_ has quit [Quit: WeeChat 1.3]
cjbischof_ has quit [Client Quit]
k13nox has quit [Remote host closed the connection]
pwnd_nsfw` is now known as pwnd_nsfw
despai has quit [Quit: This computer has gone to sleep]
chussenot has joined #ruby
sdothum has quit [Quit: ZNC - 1.6.0 - http://znc.in]
sdothum has joined #ruby
UtkarshRay has quit [Quit: Leaving]
baweaver has joined #ruby
Sirithcam has quit [Quit: Leaving]
<jhass> no but debian/ubuntu usually does
<jhass> however I don't think 2.3 is packaged up there?
bkxd has quit [Ping timeout: 250 seconds]
decoponio has joined #ruby
<jhass> harushimo: got some more context?
fumk has quit [Remote host closed the connection]
baweaver has quit [Ping timeout: 250 seconds]
<harushimo> i'm sending a gist right now
mjuszczak has quit []
I has joined #ruby
I is now known as Guest63628
al2o3-cr has quit [Ping timeout: 250 seconds]
<nickjj> does anyone know if the redirect addon for jekyll supports subdomains? the jekyll channel is pretty dead and it's not something i can personally test atm
karapetyan has quit [Remote host closed the connection]
<harushimo> I posted the question there too
<harushimo> this seems its an ruby problem
karapetyan has joined #ruby
fumk has joined #ruby
<harushimo> its checking for development tools
<harushimo> does 2.3 come with some development tools
<jhass> harushimo: given it fails during installing the ffi gem I'd bet on libffi-dev, libffi-devel or whatever the package is called on your distribution
<harushimo> or is that package specific?
shredding has quit [Ping timeout: 240 seconds]
<jhass> if that doesn't help we gotta see the log files mentioned
<harushimo> did you want me open that mkmf.log?
<jhass> not yet
ht__ has quit [Quit: Konversation terminated!]
ht__ has joined #ruby
karapetyan has quit [Ping timeout: 245 seconds]
futilegames has quit [Quit: futilegames]
SenpaiSilver has quit [Quit: Leaving]
<harushimo> here is the rvm requirements installation screen
SMarcus has joined #ruby
SMarcus has left #ruby [#ruby]
<harushimo> libffi-dev was installed
dseitz has joined #ruby
futilegames has joined #ruby
nodejunkie has joined #ruby
SCHAAP137 has joined #ruby
<jhass> if you confirmed it's indeed installed, then it's time for a look at mkmf.log
<harushimo> i checked again by doing an apt-get installed. The message I got: libffi-dev is already at the newest version
<harushimo> let me open that file
ht__ has quit [Quit: Konversation terminated!]
<harushimo> here is the log file
arup_r has joined #ruby
hlegius has quit [Quit: Textual IRC Client: www.textualapp.com]
<harushimo> can you tell me what this log file saying? It seems that it can't find it
<harushimo> I can't anyone on the jekyll team yet.
<harushimo> brb
<jhass> harushimo: install libgmp-dev or gmp-dev or whatever the package is
k13nox has joined #ruby
<harushimo> okay
<harushimo> how did you find that
<jhass> /usr/bin/ld: cannot find -lgmp
<harushimo> got it
<harushimo> thank you
<jhass> you're welcome
erichmenge has quit [Quit: Arrivederci!]
<harushimo> yep thats it
<harushimo> it worked
arthropododo has joined #ruby
cdg has joined #ruby
chouhoulis has joined #ruby
duckpuppy has joined #ruby
futilegames has quit [Ping timeout: 240 seconds]
vikas027 has joined #ruby
chouhoulis has quit [Ping timeout: 265 seconds]
duckpuppy has quit [Ping timeout: 240 seconds]
namxam has joined #ruby
summonagus has joined #ruby
chussenot has quit [Quit: chussenot]
chussenot has joined #ruby
namxam has quit [Ping timeout: 256 seconds]
k13nox has quit [Remote host closed the connection]
at46 has joined #ruby
futilegames has joined #ruby
whiteline has joined #ruby
<shevy> :D
cschneid_ has joined #ruby
k13nox has joined #ruby
<lucasb> :)
solars has joined #ruby
at46 has quit [Ping timeout: 265 seconds]
ht__ has joined #ruby
skcin7 has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Jardayn has joined #ruby
lyoshajapan has joined #ruby
ferr has quit [Ping timeout: 250 seconds]
CloCkWeRX2 has quit [Quit: Leaving.]
<pantato> quit
drptbl has quit [Remote host closed the connection]
BaroMeter has quit [Remote host closed the connection]
PedramT has joined #ruby
PedramT has quit [Remote host closed the connection]
PedramT_ has joined #ruby
lyoshajapan has quit [Ping timeout: 264 seconds]
tuelz has joined #ruby
PedramT_ has quit [Remote host closed the connection]
ebit has joined #ruby
al2o3-cr has joined #ruby
troulouliou_dev has quit [Quit: Leaving]
Guest63628 has quit [Quit: This computer has gone to sleep]
PedramT has joined #ruby
zacstewart has quit [Ping timeout: 256 seconds]
tuelz has quit [Ping timeout: 256 seconds]
PedramT has quit [Remote host closed the connection]
PedramT has joined #ruby
Ebok has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
zacstewart has joined #ruby
FAMAS has joined #ruby
<FAMAS> greetings to all
<felixal> hello
<FAMAS> ruby social channel link needed
dudedudeman has joined #ruby
The_Phoenix has quit [Quit: Leaving.]
PedramT_ has joined #ruby
LoneHerm_ has joined #ruby
nchambers^ is now known as nchambers
PedramT has quit [Ping timeout: 250 seconds]
IrishGringo has joined #ruby
FAMAS has left #ruby [#ruby]
klaas has quit [Remote host closed the connection]
The_Phoenix has joined #ruby
kentnl has joined #ruby
kent\n has quit [Ping timeout: 250 seconds]
kentnl has quit [Changing host]
kentnl has joined #ruby
kentnl is now known as kent\n
The_Phoenix has quit [Client Quit]
PedramT_ has quit [Ping timeout: 240 seconds]
LoneHerm_ has quit [Ping timeout: 250 seconds]
PedramT has joined #ruby
iateadonut has joined #ruby
yoongkang has quit [Remote host closed the connection]
FernandoBasso has joined #ruby
PedramT has quit [Remote host closed the connection]
tomphp has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
_seanc_ has joined #ruby
PedramT has joined #ruby
vikas027 has quit [Read error: Connection reset by peer]
PedramT has quit [Remote host closed the connection]
PedramT has joined #ruby
krobzaur has joined #ruby
PedramT has quit [Remote host closed the connection]
The_Phoenix has joined #ruby
piotrj has quit [Remote host closed the connection]
symm- has joined #ruby
praveen has joined #ruby
chouhoulis has joined #ruby
chussenot has quit [Quit: chussenot]
PedramT has joined #ruby
duckpuppy has joined #ruby
dexter-tzu has joined #ruby
william3 has joined #ruby
pawnbox has quit [Remote host closed the connection]
chouhoulis has quit [Ping timeout: 240 seconds]
pawnbox has joined #ruby
PedramT has quit [Ping timeout: 264 seconds]
lyoshajapan has joined #ruby
duckpuppy has quit [Ping timeout: 276 seconds]
griffindy has joined #ruby
sankaber has joined #ruby
william3 has quit [Ping timeout: 245 seconds]
ht__ has quit [Quit: Konversation terminated!]
ht__ has joined #ruby
futilegames has quit [Ping timeout: 265 seconds]
namxam has joined #ruby
pawnbox has quit [Remote host closed the connection]
pawnbox has joined #ruby
mdw has joined #ruby
IrishGringo has quit [Ping timeout: 245 seconds]
dtordable has quit [Quit: leaving]
namxam has quit [Ping timeout: 260 seconds]
at46 has joined #ruby
futilegames has joined #ruby
dtordable has joined #ruby
at46 has quit [Ping timeout: 265 seconds]
ht__ has quit [Quit: Konversation terminated!]
despai has joined #ruby
weemsledeux has joined #ruby
k13nox has quit [Remote host closed the connection]
dtordable has quit [Client Quit]
UtkarshRay has joined #ruby
k13nox has joined #ruby
griffindy has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
symm- has quit [Ping timeout: 265 seconds]
SenpaiSilver has joined #ruby
tvw has joined #ruby
treaki has quit [Ping timeout: 245 seconds]
summonagus has quit [Ping timeout: 240 seconds]
symm- has joined #ruby
karapetyan has joined #ruby
sandstrom has quit [Ping timeout: 264 seconds]
atmosx has joined #ruby
IrishGringo has joined #ruby
sandstrom has joined #ruby
bensarz has joined #ruby
bkxd has joined #ruby
baweaver has joined #ruby
zacstewart has quit [Ping timeout: 256 seconds]
klaas_ has joined #ruby
Waheedi has joined #ruby
bensarz has quit [Read error: Connection reset by peer]
lyoshajapan has quit [Remote host closed the connection]
lyoshajapan has joined #ruby
idefine has joined #ruby
bkxd has quit [Ping timeout: 264 seconds]
darkf_ has joined #ruby
baweaver has quit [Ping timeout: 240 seconds]
summonagus has joined #ruby
zacstewart has joined #ruby
mdw has quit [Quit: Sleeping Zzzzz]
darkf has quit [Ping timeout: 250 seconds]
bensarz has joined #ruby
Waheedi has quit [Ping timeout: 276 seconds]
zzz has joined #ruby
zzz is now known as Guest75297
idefine has quit [Ping timeout: 240 seconds]
lyoshajapan has quit [Ping timeout: 256 seconds]
IrishGringo has quit [Read error: Connection reset by peer]
mauricio has quit [Remote host closed the connection]
sandstrom has quit [Read error: Connection reset by peer]
treaki has joined #ruby
uri_ has joined #ruby
x77686d has joined #ruby
tomphp has joined #ruby
jottr has quit [Quit: WeeChat 1.4]
summonagus has quit [Ping timeout: 256 seconds]
despai has quit [Quit: This computer has gone to sleep]
jimmtt has joined #ruby
yoongkang has joined #ruby
Voyage has joined #ruby
<Voyage> where is database.yml
<kaleido> wherever you put it?
tomphp has quit [Client Quit]
<Voyage> I am just installing redmine and getting the following error
<Voyage> Determining debian-sys-maint password from /etc/mysql/debian.cnf: succeeded.
<Voyage> Please configure your config/database.yml first
<Voyage> Could not find gem 'rails (~> 4.1.4) ruby' in any of the gem sources listed in
<Voyage> your Gemfile or available on this machine.
<jhass> ask #debian since they packaged it up
htmldrum has joined #ruby
davedev24 has joined #ruby
Xeago has joined #ruby
<atmosx> Voyage: config/database.yml
<Voyage> atmosx, where is config?
<atmosx> Voyage: in the redmine directory which has a regular rails project structure
Waheedi has joined #ruby
<Voyage> atmosx, where is redmine?
<Voyage> atmosx, its not even installed yet. I gues
duckpuppy has joined #ruby
arup_r has quit [Remote host closed the connection]
<atmosx> Well probably
yoongkang has quit [Ping timeout: 260 seconds]
dudedudeman has quit [Quit: dudedudeman]
rkazak has joined #ruby
arup_r has joined #ruby
htmldrum has quit [Ping timeout: 250 seconds]
<atmosx> Try this: mkdir -p $HOME/code/ && cd $HOME/code; wget http://www.redmine.org/releases/redmine-3.2.0.tar.gz && tar zxvf redmine-3.2.0.tar.gz && cd redmine* && ls config/database.yml
futilegames has quit [Quit: futilegames]
<atmosx> I wouldn't use ubuntu's/debian's ruby for anything though. Better some pkg manager or vanilla installation
<Voyage> so its in redmine home?
Xeago has quit [Remote host closed the connection]
praveen has quit [Remote host closed the connection]
krobzaur has quit [Ping timeout: 240 seconds]
<atmosx> Voyage: that code will download the file and uncompress it, are you familiar with linux or ruby at all?
<atmosx> Voyage: If not, it's going to be tricky.
<Voyage> a little
uri_ has quit [Quit: --]
sandstrom has joined #ruby
praveen has joined #ruby
duckpuppy has quit [Ping timeout: 240 seconds]
summonagus has joined #ruby
phantummm has joined #ruby
uri_ has joined #ruby
wheresmyjetpack has joined #ruby
zacstewart has quit [Ping timeout: 264 seconds]
tomphp has joined #ruby
chouhoulis has joined #ruby
zacstewart has joined #ruby
uri_ has quit [Client Quit]
kfpratt has quit []
kalopsian has quit [Ping timeout: 256 seconds]
summonagus has quit [Ping timeout: 250 seconds]
devgiant has joined #ruby
sandstro_ has joined #ruby
william3 has joined #ruby
mikeiniowa has quit [Remote host closed the connection]
kalopsian has joined #ruby
mikeiniowa has joined #ruby
f4cl3y has quit [Ping timeout: 250 seconds]
chouhoulis has quit [Ping timeout: 276 seconds]
<atmosx> Voyage: I see what you're doing, try: apt-get install ruby-rails-4.0
<atmosx> before giving those commands
<Voyage> k
<atmosx> although apt-get should handle this
<atmosx> as a dependency, can't for sure
sandstrom has quit [Ping timeout: 245 seconds]
Azure|dc has joined #ruby
<Voyage> same message again
blackmesa has joined #ruby
pdoherty has joined #ruby
visudo has joined #ruby
Azure has quit [Ping timeout: 250 seconds]
namxam has joined #ruby
william3 has quit [Ping timeout: 245 seconds]
dlitvak has joined #ruby
karapetyan has quit [Remote host closed the connection]
Biopandemic has joined #ruby
piotrj has joined #ruby
futilegames has joined #ruby
dlitvak_ has joined #ruby
<Voyage> atmosx, any clues?
mdw has joined #ruby
futilegames has quit [Client Quit]
<Voyage> atmosx, $ bundle update rails
<Voyage> Could not locate Gemfile
namxam has quit [Ping timeout: 240 seconds]
at46 has joined #ruby
iateadonut has quit [Quit: Leaving.]
stannard has joined #ruby
dlitvak has quit [Ping timeout: 276 seconds]
<atmosx> Voyage: this must be done in the redmine directory
<atmosx> find / -name 'redmine'
<Voyage> where is the redmine directory?
<Voyage> ok
lyoshajapan has joined #ruby
dlitvak has joined #ruby
sonOfRa has quit [Max SendQ exceeded]
<Voyage> atmosx, I have /etc/redmine empty dir
<atmosx> Voyage: no, that's not it.
dlitvak_ has quit [Ping timeout: 265 seconds]
pawnbox_ has joined #ruby
summonagus has joined #ruby
praveen__ has joined #ruby
<Voyage> atmosx, then?
sonOfRa has joined #ruby
<Voyage> /usr/share/redmine
<Voyage> ?
at46 has quit [Ping timeout: 265 seconds]
<Voyage> atmosx, :/usr/share/redmine/config$ ls
<Voyage> additional_environment.rb.example boot.rb environment.rb initializers routes.rb
<Voyage> application.rb configuration.yml.example environments locales settings.yml
stannard has quit [Ping timeout: 272 seconds]
pawnbox has quit [Ping timeout: 240 seconds]
newbie22 has joined #ruby
william3 has joined #ruby
praveen has quit [Ping timeout: 256 seconds]
<atmosx> yes /usr/share/redmine
mrsolo_ has joined #ruby
IrishGringo has joined #ruby
<Voyage> it has no database.yml
<Voyage> I am going to create one
nofxx has joined #ruby
summonagus has quit [Ping timeout: 240 seconds]
william3 has quit [Ping timeout: 245 seconds]
<Voyage> atmosx, do I need to restart anything because its giving same error again
FelixFire619 has left #ruby ["Leaving"]
<ebit> what does chomp do in ruby
govg has quit [Ping timeout: 256 seconds]
klaas_ is now known as klaas
<eam> ebit: it removes a trailing newline
despai has joined #ruby
LoneHermit has joined #ruby
User458764 has joined #ruby
User458764 has quit [Max SendQ exceeded]
<atmosx> Voyage: can't tell for sure, what's happening.
User458764 has joined #ruby
<Voyage> same error again. looks like datagase.yml has no effect. I am rebooting
<User458764> Hello is there another way to do this https://github.com/jarmo/require_all?
govg has joined #ruby
<ebit> I made this script to add users in ruby but when ever I compile it it gives me a error http://chopapp.com/#nwf00ddf
<lucasb> what did you write in database.yml?
<User458764> I want to load an entire lib/ directory
zacstewart has quit [Read error: Connection reset by peer]
zacstewa_ has joined #ruby
tuelz has joined #ruby
kalopsian has quit [Ping timeout: 256 seconds]
<shevy> User458764 usual way is to have the .rb require the other .rb files
<shevy> you can also use e. g. Dir['*.rb']
<User458764> shevy I use 'require' inside Dir['*.rb']?
LoneHermit has quit [Ping timeout: 276 seconds]
<shevy> no, the Dir[] example will give you the files that you can then batch-require
<shevy> I mean yeah
<User458764> shevy ok :)
<shevy> Dir[proper_path_here'*.rb'].each {|file| require file }
codecop has quit [Remote host closed the connection]
<shevy> eww forgot a +
ljames has joined #ruby
<shevy> the example given for require_all is not necessary by the way
<shevy> require File.dirname(__FILE__)
<shevy> if you have it as a gem
<shevy> require 'name_of_gem_here/foo.rb' # would then work if foo.rb exists there
codecop has joined #ruby
Azure|dc has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
mjuszczak has joined #ruby
bensarz has quit [Quit: Textual IRC Client: www.textualapp.com]
<shevy> seems to be a popular gem: https://rubygems.org/gems/require_all
<shevy> their one example uses a very similar example to Dir[] -> Dir.glob("blah/**/*.rb")
tuelz has quit [Ping timeout: 276 seconds]
al2o3-cr has quit [Ping timeout: 264 seconds]
praveen__ has quit [Ping timeout: 245 seconds]
dlitvak_ has joined #ruby
darkf_ is now known as darkf
freerobby has joined #ruby
william3 has joined #ruby
<Voyage> can anyone help? http://pastie.org/10701958#12-13
mjuszczak has quit [Client Quit]
summonagus has joined #ruby
jbrhbr has joined #ruby
Azure has joined #ruby
dlitvak has quit [Ping timeout: 256 seconds]
kellenevan2 has quit [Read error: Connection reset by peer]
kellenevan2 has joined #ruby
moeabdol has joined #ruby
IrishGringo has quit [Read error: Connection reset by peer]
william3 has quit [Ping timeout: 245 seconds]
gbgdev has joined #ruby
Jackneill has joined #ruby
arquebus has joined #ruby
<newbie22> yeah, can someone help me, I am curious, how you guys help ..
<newbie22> someone help him
<newbie22> help Voyage
uri_ has joined #ruby
<pwnd_nsfw> Voyage, it does mention you don't have the correct version of rails amirite
jbrhbr1 has joined #ruby
<Voyage> pwnd_nsfw, it didnt said anyting about version but maybe. So how can i resolve?
jbrhbr has quit [Ping timeout: 264 seconds]
gruz0 has quit [Ping timeout: 264 seconds]
<pwnd_nsfw> Could not find gem 'rails (~> 4.1.4)' in any of the gem sources listed in your
<pwnd_nsfw> Gemfile or available on this machine.
darkf has quit [Ping timeout: 250 seconds]
darkf_ has joined #ruby
<Voyage> hm. how can I know which version of rails I have?
<pwnd_nsfw> rails -v
<pwnd_nsfw> in terminal/console
mrsolo_ has quit [Quit: This computer has gone to sleep]
<Voyage> $ rails -v
<Voyage> Please configure your config/database.yml first
<Voyage> Rails 4.1.14.1
mrsolo_ has joined #ruby
codecop has quit [Remote host closed the connection]
tomchapin has quit [Quit: Textual IRC Client: www.textualapp.com]
arquebus has quit [Quit: Textual IRC Client: www.textualapp.com]
newbie22 has quit [Quit: Leaving]
zacstewa_ has quit [Ping timeout: 260 seconds]
rodfersou has joined #ruby
Guest8935 has quit [Changing host]
Guest8935 has joined #ruby
<Voyage> pwnd_nsfw, how to install mysql2?
<Voyage> Could not find gem 'mysql2 (~> 0.3.11)' in any of the gem sources listed in your Gemfile or available on this machine.
kellenevan3 has joined #ruby
<pwnd_nsfw> l2gemfile
Guest8935 is now known as nuck
<Voyage> command not found
<pwnd_nsfw> lololol
<Voyage> iam new at ruby :)
gruz0 has joined #ruby
<Voyage> I know nothing. Just installing redmine
paolog has joined #ruby
<Voyage> so how to instal lmysql2?
tomchapin has joined #ruby
zacstewart has joined #ruby
<pwnd_nsfw> learn how to use the gemfile
jbrhbr1 has quit [Ping timeout: 272 seconds]
kellenevan2 has quit [Ping timeout: 265 seconds]
<pwnd_nsfw> or type
<pwnd_nsfw> bundle install
<Voyage> did that already
blackmesa has quit [Ping timeout: 250 seconds]
<pwnd_nsfw> ok, well, mysql2 isn't in the gemfile then
<kbni> when I use a super's method in a subclass, what is that called?
<Voyage> pwnd_nsfw, http://pastie.org/10702004#3,39,42
jbrhbr has joined #ruby
<kbni> for example: class Baby < People; some_method_from_people; end
<pwnd_nsfw> ok and Voyage ?
<Voyage> pwnd_nsfw, well, whats wrong
<pwnd_nsfw> I just told you.................
pdoherty has quit [Ping timeout: 276 seconds]
<Voyage> pwnd_nsfw, i did bundle install and its still saying about mysql2
<pwnd_nsfw> ok, well, mysql2 isn't in the gemfile then
<pwnd_nsfw> ok, well, mysql2 isn't in the gemfile then
praveen has joined #ruby
<pwnd_nsfw> you're then... going to have to configure database.yml
<Voyage> should I put it there?
fl0b has joined #ruby
<Voyage> do I need mysql2 or any other version?
<Voyage> if mysql2 needs to be in gemfile, how to put it there?
<pwnd_nsfw> ..
summonagus has quit [Ping timeout: 240 seconds]
arup_r has quit [Remote host closed the connection]
lyoshajapan has quit [Remote host closed the connection]
<Voyage> pwnd_nsfw, gem install mysql2?
arup_r has joined #ruby
FernandoBasso has quit [Quit: Leaving]
tape88 has joined #ruby
<pwnd_nsfw> open up gemfile
blackmesa has joined #ruby
<pwnd_nsfw> use brain
<pwnd_nsfw> bundle install
Coldblackice has quit [Ping timeout: 250 seconds]
uri_ has quit [Ping timeout: 272 seconds]
arup_r has quit [Remote host closed the connection]
arup_r has joined #ruby
<Voyage> pwnd_nsfw, http://pastebin.com/nuGnrwnd
<ruby[bot]> Voyage: we in #ruby do not like pastebin.com, I reposted your paste to gist for you: https://gist.github.com/05ad744c2cf3f690f4a2
<ruby[bot]> Voyage: pastebin.com loads slowly for most, has ads which are distracting and has terrible formatting.
ramfjord has joined #ruby
<Voyage> pwnd_nsfw, ok, where is gemfile?
chouhoulis has joined #ruby
elifoster has joined #ruby
newbie22 has joined #ruby
<pwnd_nsfw> in the root directory of the app....
tape88 has quit [Client Quit]
<pwnd_nsfw> you'll have to install mysql first
<pwnd_nsfw> and I will not be holding hands anymore
<pwnd_nsfw> there's documentation for all of this
moeabdol has quit [Ping timeout: 250 seconds]
FernandoBasso has joined #ruby
william3 has joined #ruby
<kbni> hey pwnd_nsfw - I don't suppose you could hold my hand just a little? I'm just trying to figure out what the correct term for a method used within a class definition is
<Voyage> pwnd_nsfw, I am going to type this one the first line of Gemfile gem "mysql2", " ~> 0.3.11"
<newbie22> *: does anyone know how to zip files from you PC directly to a thumb drive ?? in windows ??
<shevy> newbie22 this is #ruby
mdw has quit [Quit: Sleeping Zzzzz]
<pwnd_nsfw> kbni, the super's method in a subclass?
<newbie22> shevy: I know that,,
<kbni> pwnd_nsfw, yes
chouhoulis has quit [Ping timeout: 265 seconds]
<pwnd_nsfw> and overloaded method, iirc
<kbni> It's only referenced during the creation of the class though
<pwnd_nsfw> or well, are you just using the method
<pwnd_nsfw> or
<pwnd_nsfw> Do you have an example?
<kbni> the 'has_one :service_call_ticket' bit, that's a function defined in Entity
<pwnd_nsfw> oh, it's just an inherited method
summonagus has joined #ruby
<kbni> Oh
william3 has quit [Ping timeout: 245 seconds]
<kbni> and I am assuming it's called every time ServiceCall is created?
griffindy has joined #ruby
<pwnd_nsfw> I don't really know what has_one is in this context. I'm not a ruby "pro" by any means
<pwnd_nsfw> I'm not sure if it's lazily called
<pwnd_nsfw> but I'm going to make the assumption that yes
<kbni> has_one is a method defined in Entity, it seems to pop when a new ServiceCall is created
newbie22 has quit [Quit: Leaving]
<pwnd_nsfw> So, yeah, I'm going to further assume that my assumption of assuming is assumedly assumed correctly
<pwnd_nsfw> Voyage, you're going to have to install mysql .. like, the actual mysql first
<pwnd_nsfw> before you can install the gem for it
<pwnd_nsfw> because the gem relies on packages from mysql
paolog has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
arlek_ has joined #ruby
al2o3-cr has joined #ruby
zacstewart has quit [Ping timeout: 256 seconds]
ramfjord has quit [Ping timeout: 276 seconds]
zacstewart has joined #ruby
at46 has joined #ruby
IrishGringo has joined #ruby
<Mon_Ouie> kbni: No, the body of the class is only executed once, when you load your code
mjuszczak has joined #ruby
s00pcan has quit [Remote host closed the connection]
<Mon_Ouie> Usually these types of methods are used to generate other methods automatically
mjuszczak has quit [Client Quit]
nofxx has quit [Ping timeout: 260 seconds]
s00pcan has joined #ruby
<Mon_Ouie> A simple example is `attr_reader :foo' which effectively generates a method `def foo; @foo; end'
nofxx has joined #ruby
nofxx has quit [Changing host]
nofxx has joined #ruby
<kbni> Mon_Ouie, that seems to be what it's being used for
at46 has quit [Ping timeout: 265 seconds]
krobzaur has joined #ruby
uri_ has joined #ruby
treaki has quit [Ping timeout: 250 seconds]
paolog has joined #ruby
lyoshajapan has joined #ruby
dmr8 has joined #ruby
IrishGringo has quit [Read error: Connection reset by peer]
dlitvak_ has quit [Remote host closed the connection]
despai has quit [Quit: This computer has gone to sleep]
paolog has quit [Client Quit]
cyclonis has quit [Quit: Yaaic - Yet another Android IRC client - http://www.yaaic.org]
lyoshajapan has quit [Ping timeout: 250 seconds]
paolog has joined #ruby
piotrj has quit [Remote host closed the connection]
idefine has joined #ruby
piotrj has joined #ruby
william3 has joined #ruby
treaki has joined #ruby
<Voyage> pwnd_nsfw, seems working. thanks
jery has joined #ruby
Biopandemic has quit [Remote host closed the connection]
pilne has joined #ruby
Biopandemic has joined #ruby
bkxd has joined #ruby
lele has quit [Ping timeout: 240 seconds]
visudo has quit [Quit: visudo]
AustinMatherne has quit [Remote host closed the connection]
william3 has quit [Ping timeout: 250 seconds]
chussenot has joined #ruby
AustinMatherne has joined #ruby
Xeago has joined #ruby
lele has joined #ruby
bkxd has quit [Ping timeout: 245 seconds]
PedramT has joined #ruby
blackmesa has quit [Ping timeout: 240 seconds]
FooMunki has quit [Quit: FooMunki]
zacstewart has quit [Ping timeout: 256 seconds]
idefine has quit [Remote host closed the connection]
camillo has joined #ruby
diegoviola has joined #ruby
PedramT has quit [Ping timeout: 265 seconds]
swein has joined #ruby
<swein> howdy everyone
sol_ has quit [Ping timeout: 240 seconds]
camillo is now known as sol_
uri_ has quit [Quit: --]
paolog has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
uri_ has joined #ruby
zacstewart has joined #ruby
jbrhbr has quit [Quit: Leaving.]
atmosx has quit [Quit: Lost in trance]
aclearman037 has joined #ruby
Spami has joined #ruby
rkazak has quit [Quit: Sleep.....ing....]
I has joined #ruby
Coldblackice has joined #ruby
last_staff has joined #ruby
I is now known as Guest70518
namxam has joined #ruby
william3 has joined #ruby
devgiant has quit [Quit: Leaving]
futilegames has joined #ruby
houhoulis has joined #ruby
last_staff1 has joined #ruby
last_staff has quit [Read error: Connection reset by peer]
last_staff1 is now known as last_staff
dtordable has joined #ruby
idefine has joined #ruby
visudo has joined #ruby
<lucasb> ruby doesn't know how to read named pipes given on the command line with the bash <(...) syntax
william3 has quit [Ping timeout: 245 seconds]
<lucasb> both perl and python can handle those
<lucasb> ruby <(echo 'p 42') # error
<lucasb> ruby -e 'eval File.read(ARGV.shift)' <(echo 'p 42') # but this works
<havenwood> lucasb: ruby <(echo 'p 42') #>> 42
namxam has quit [Remote host closed the connection]
al2o3-cr has quit [Ping timeout: 260 seconds]
<lucasb> havenwood: strange... O.o
<lucasb> maybe something on my environment? my ruby here is 2.3
blackmesa has joined #ruby
tomchapin has quit [Quit: Textual IRC Client: www.textualapp.com]
<havenwood> Tried 2.3 on bash and zsh.
ebit has quit [Remote host closed the connection]
<shevy> your system is screwed up lucasb!!!
<lucasb> full error for me:
<lucasb> /dev/fd/63: No such file or directory @ realpath_rec - /proc/5379/fd/pipe:[140678] (Errno::ENOENT)
<lucasb> yeah, maybe I have some outdated library or something :(
<shevy> lol
<shevy> I have the same error
<havenwood> Works on my machine... suckers!
<lucasb> shevy: your system is screwed! :D
<shevy> lucasb hahaha yeah
aclearman037 has quit [Quit: Textual IRC Client: www.textualapp.com]
idefine has quit [Ping timeout: 264 seconds]
arlek_ is now known as arlek
<shevy> I have an old kernel though
<chris2> % readlink <(echo 'p 42')
<chris2> pipe:[4099023]
<chris2> then it tries to open that magic file name
<swein> after I finish codeacademy and the hard way, any other good advice for practicing and learning?
<Ox0dea> havenwood: Do you get something different from `readlink`, then?
mdw has joined #ruby
<havenwood> Ox0dea: no return
<Ox0dea> Ah.
<chris2> you have different OS i guess...
<havenwood> Just tried it on FreeBSD and OS X. What heathen OSes are you all running?!
<havenwood> :P
<Ox0dea> Hazard a guess. :P
symm-_ has joined #ruby
<lucasb> Linux kernel 3.18 here. I should update my distro :)
chouhoulis has joined #ruby
<Ox0dea> Some code that I assume fixes readlink on Windows has just gone in.
<shevy> lucasb yeah I got an old one too 3.2.29
symm- has quit [Ping timeout: 260 seconds]
elifoster has quit [Ping timeout: 264 seconds]
<Ox0dea> I'm on 4.4...
<Ox0dea> You people frighten me.
<shevy> you are a true geek
<yxhuvud> what distro have 4.4?
<Ox0dea> Guess.
<yxhuvud> arch or some other hipster distro. definitely not ubuntu
<chris2> even debian has 4.4 packages
idefine has joined #ruby
<Ox0dea> Oh, a troll. I thought we were going to have an interesting discussion.
<yxhuvud> chris2: ah, right. but it is certainly not the default
LoneHermit has joined #ruby
zacstewart has quit [Ping timeout: 256 seconds]
<chris2> if you run experimental, perhaps it is :P
<swein> weird, rvm works normally but when I sudo rvm it doens't even recognize it as a bin
* chris2 prefers to wait for the first -stable release
kirun has joined #ruby
chouhoulis has quit [Ping timeout: 272 seconds]
uri_ has quit [Quit: --]
<Voyage> Hi
<Voyage> Am I missing something? http://pastie.org/10702090#1,4,19
cschneid_ has quit [Remote host closed the connection]
wheresmyjetpack has quit [Ping timeout: 256 seconds]
krz has quit [Ping timeout: 240 seconds]
amclain has joined #ruby
last_staff1 has joined #ruby
zeroDivisible has quit [Ping timeout: 265 seconds]
lxsameer has joined #ruby
idefine has quit [Ping timeout: 245 seconds]
zacstewart has joined #ruby
tomchapin has joined #ruby
last_staff has quit [Read error: Connection reset by peer]
last_staff1 is now known as last_staff
<apeiros> Voyage: that's not a ruby issue?
<apeiros> ah, RailsBaseURI - missed it before
darkf_ is now known as darkf
<apeiros> but in that case:
<apeiros> ?rails Voyage ;-)
<ruby[bot]> Voyage: Please join #RubyOnRails for Rails questions. You need to be identified with NickServ, see /msg NickServ HELP
barhum2013 has joined #ruby
tomchapin has quit [Client Quit]
zeroDivisible has joined #ruby
summonagus has quit [Quit: Leaving]
<Ox0dea> Thoughts on what's going on here?
<Ox0dea> Why's it able to grab the first value but not the second?
grill has joined #ruby
tomchapin has joined #ruby
Pumukel has joined #ruby
blackmesa has quit [Ping timeout: 276 seconds]
<apeiros> Ox0dea: Thread.abort_on_exception = true
at46 has joined #ruby
<Ox0dea> apeiros: Same result?
<apeiros> not for me
<apeiros> FiberError: fiber called across threads
tomchapin has quit [Client Quit]
<Ox0dea> Er, yeah... that's what's happening in the snippet I posted as well.
tomchapin has joined #ruby
lyoshajapan has joined #ruby
jery has left #ruby [#ruby]
tomchapin has quit [Client Quit]
idefine has joined #ruby
Senecea has joined #ruby
idefine_ has joined #ruby
Senecea has quit [Client Quit]
Senecea has joined #ruby
futilegames has quit [Quit: futilegames]
IrishGringo has joined #ruby
at46 has quit [Ping timeout: 265 seconds]
piotrj has quit [Remote host closed the connection]
lyoshajapan has quit [Ping timeout: 240 seconds]
loechel has joined #ruby
solars has quit [Ping timeout: 240 seconds]
tomchapin has joined #ruby
piotrj has joined #ruby
tomchapin has quit [Client Quit]
idefine has quit [Ping timeout: 264 seconds]
treaki has quit [Ping timeout: 240 seconds]
m1dnight_ has quit [Ping timeout: 250 seconds]
blackmesa has joined #ruby
IrishGringo has quit [Read error: Connection reset by peer]
tomchapin has joined #ruby
<Ox0dea> I feel like, given `Enumerator.new { |y| y << 1 << 2 << fail << 3 }`, there must be some way to get `[1, 2, <something, ideally nothing>, 3]` out of it, but I just can't get there. :<
wheresmyjetpack has joined #ruby
idefine_ has quit [Remote host closed the connection]
praveen has quit []
<Ox0dea> I thought doing the enumeration in a "sandbox" Thread and sending it back as appropriate might do, but that's plainly not gonna fly.
<Ox0dea> Still weird that the enumeration works the first time, though.
atmosx has joined #ruby
karapetyan has joined #ruby
mdw has quit [Quit: Sleeping Zzzzz]
moss is now known as m00s3
<lucasb> if you just yield once, and call #next once, it doesn't even raise that 'fiber called across threads'; so I guess the Enumerator maybe caches the first value somehow.
moss has joined #ruby
tuelz1 has joined #ruby
m00s3 has quit [Quit: brb]
uri_ has joined #ruby
barhum2013 has quit [Quit: barhum2013]
uri_ has quit [Client Quit]
<Ox0dea> >> fc = -> { ObjectSpace.each_object(Fiber).count }; e = Enumerator.new { |y| y << 42 }; [fc[], e.next, fc[]]
<ruby[bot]> Ox0dea: # => [0, 42, 2] (https://eval.in/510280)
chussenot has quit [Quit: chussenot]
<Ox0dea> Enumerators don't have an underlying Fiber until you begin the enumeration.
codecop has joined #ruby
<swein> exit
swein has quit [Quit: leaving]
<Ox0dea> That's got something to do with it, to be sure, but it still feels like something's wrong here.
Rodya_ has joined #ruby
tuelz1 has quit [Ping timeout: 250 seconds]
tuelz1 has joined #ruby
symm-_ has quit [Ping timeout: 250 seconds]
ConsciousGamer has joined #ruby
solars has joined #ruby
m1dnight_ has joined #ruby
IrishGringo has joined #ruby
govg has quit [Ping timeout: 245 seconds]
mfb2 has joined #ruby
symm- has joined #ruby
sandstro_ has quit [Quit: My computer has gone to sleep.]
<shevy> something is wrong here!
sandstrom has joined #ruby
Puffball has quit [Remote host closed the connection]
tuelz1 has quit [Ping timeout: 256 seconds]
dlitvak has joined #ruby
mfb2 has quit [Ping timeout: 240 seconds]
Puffball has joined #ruby
govg has joined #ruby
tomphp has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
wheresmyjetpack is now known as youch
The_Phoenix has quit [Quit: Leaving.]
sepp2k has quit [Read error: Connection reset by peer]
<User458764> Hello, I want to store configuration values how do I do? Do I create a class with Singleton module?
mdw has joined #ruby
yoongkang has joined #ruby
earfin has joined #ruby
fl0b has quit [Ping timeout: 240 seconds]
Puffball has quit [Remote host closed the connection]
william3 has joined #ruby
stannard has joined #ruby
Puffball has joined #ruby
youch has quit [Remote host closed the connection]
<Ox0dea> User458764: What's being configured?
youch has joined #ruby
tdsmith has joined #ruby
barhum2013 has joined #ruby
<User458764> Ox0dea It's only keys and values like PWD=/home
yoongkang has quit [Ping timeout: 245 seconds]
Senecea is now known as Seneca
<Ox0dea> User458764: So it's a one-time thing?
dlitvak has quit [Ping timeout: 276 seconds]
<User458764> Ox0dea it is not store in a database if it is what you mean
<Ox0dea> User458764: No, I mean, are there multiple instances of YourThing that might need to be configured?
<User458764> Ox0dea no multiple instances that I why I speak about Singleton
at46_ has joined #ruby
william3 has quit [Ping timeout: 245 seconds]
<Ox0dea> > multiple
<Ox0dea> > Singleton
pawnbox_ has quit [Remote host closed the connection]
dlitvak has joined #ruby
<tdsmith> I'm running into a problem using bundler; I have gem 'docile' in my Gemfile, bundle check says it's installed, but require 'docile' is failing in my script when I run it with `bundle exec ruby sketch.rb` -- https://gist.github.com/tdsmith/1e359036944c2546e9e9
<tdsmith> What should I check next/
<Ox0dea> User458764: Is this kinda what you're going for? https://eval.in/510301
<User458764> Ox0dea is it a Singleton?
sandstrom has quit [Quit: My computer has gone to sleep.]
<Ox0dea> It's a Tripleton.
<Ox0dea> tdsmith: Looks like it could be a version mismatch.
sandstrom has joined #ruby
<User458764> Ox0dea ok :) thanks for the snippet it seems to be what I am looking for
<Ox0dea> Huzzah!
yqt has joined #ruby
youch has quit [Remote host closed the connection]
krobzaur has quit [Ping timeout: 256 seconds]
DoubleMalt has quit [Remote host closed the connection]
juddey has joined #ruby
<tdsmith> Ox0dea: I think it shouldn't be; Gemfile.lock mentions docile 1.1.5 and bundle list shows 1.1.5; docile doesn't show up in `gem list` since I passed `--path .bundle` to bundle install
<tdsmith> heh; `bundle exec gem list` fails the same way ("could not find docile-1.1.5")
chouhoulis has joined #ruby
<Ox0dea> ¯\_(ツ)_/¯
<tdsmith> yeah, same
<tdsmith> thanks for looking
mrsolo_ has quit [Quit: This computer has gone to sleep]
barhum2013 has quit [Quit: barhum2013]
visudo has quit [Quit: visudo]
DoubleMalt has joined #ruby
pawnbox has joined #ruby
mrsolo_ has joined #ruby
IrishGringo has quit [Ping timeout: 245 seconds]
dlitvak has quit [Remote host closed the connection]
chouhoulis has quit [Ping timeout: 265 seconds]
dain has joined #ruby
newbie22 has joined #ruby
Biopandemic has quit [Remote host closed the connection]
karapetyan has quit [Remote host closed the connection]
Burgestrand has joined #ruby
Biopandemic has joined #ruby
pawnbox has quit [Ping timeout: 240 seconds]
Biopandemic has quit [Remote host closed the connection]
<tdsmith> oh, got it, my bundle was from the wrong ruby
djbkd has joined #ruby
dlitvak has joined #ruby
karapetyan has joined #ruby
<Ox0dea> A version mismatch of the highest order. :P
<tdsmith> quite!
phantummm has quit [Ping timeout: 260 seconds]
dain has quit [Quit: Leaving.]
at46_ has quit [Remote host closed the connection]
noodle has quit [Quit: /quit]
sandstrom has quit [Quit: My computer has gone to sleep.]
Biopandemic has joined #ruby
sandstrom has joined #ruby
visudo has joined #ruby
ddv has quit [Quit: *poof*]
earfin has quit []
ramfjord has joined #ruby
dlitvak has quit [Remote host closed the connection]
symm- has quit [Ping timeout: 256 seconds]
noodle has joined #ruby
Rodya_ has quit [Remote host closed the connection]
Seneca has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
symm- has joined #ruby
grill has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
barhum2013 has joined #ruby
visudo has quit [Client Quit]
fedexo has joined #ruby
ddv has joined #ruby
barhum2013 has quit [Client Quit]
bluOxigen has joined #ruby
idefine has joined #ruby
mrsolo_ has quit [Quit: This computer has gone to sleep]
centrx has joined #ruby
sivam has joined #ruby
mrsolo_ has joined #ruby
zast has joined #ruby
tomphp has joined #ruby
barhum2013 has joined #ruby
rippa has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
sandstrom has quit [Quit: My computer has gone to sleep.]
idefine has quit [Ping timeout: 250 seconds]
bkxd has joined #ruby
ta_ has quit [Read error: Connection reset by peer]
sandstrom has joined #ruby
barhum2013 has quit [Quit: barhum2013]
solars has quit [Ping timeout: 240 seconds]
doublemalt_ has joined #ruby
idefine has joined #ruby
cats has quit [Quit: hissconnecting]
cats has joined #ruby
piotrj has quit [Remote host closed the connection]
radgeRayden has joined #ruby
bkxd has quit [Ping timeout: 260 seconds]
tuelz1 has joined #ruby
DoubleMalt has quit [Ping timeout: 250 seconds]
at46_ has joined #ruby
lxsameer has quit [Quit: Leaving]
weemsledeux has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
suckdick has joined #ruby
IrishGringo has joined #ruby
domgetter has joined #ruby
cats has quit [Client Quit]
cats has joined #ruby
cats has quit [Remote host closed the connection]
idefine has quit [Remote host closed the connection]
arup_r has quit []
mrsolo_ has quit [Quit: This computer has gone to sleep]
pawnbox has joined #ruby
Spami has quit [Quit: This computer has gone to sleep]
Ebok has joined #ruby
Senecea has joined #ruby
Rodya_ has joined #ruby
weemsledeux has joined #ruby
sandstrom has quit [Quit: My computer has gone to sleep.]
yoongkang has joined #ruby
kirun_ has joined #ruby
pawnbox has quit [Ping timeout: 264 seconds]
sandstrom has joined #ruby
tape88 has joined #ruby
william3 has joined #ruby
kirun has quit [Ping timeout: 245 seconds]
yoongkang has quit [Ping timeout: 240 seconds]
Burgestrand has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Xiti has quit [Quit: Xiti]
william3 has quit [Ping timeout: 245 seconds]
Guest70518 has left #ruby ["Leaving"]
despai has joined #ruby
suckdick has quit [Remote host closed the connection]
enkristoffer has quit [Quit: Textual IRC Client: www.textualapp.com]
Xiti has joined #ruby
chouhoulis has joined #ruby
newbie22 has quit [Quit: Leaving]
Rickmasta has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
karapetyan has quit [Remote host closed the connection]
Rickmasta has joined #ruby
sandstrom has quit [Quit: My computer has gone to sleep.]
Darmani has joined #ruby
baweaver has joined #ruby
cats has joined #ruby
<Darmani> Hey kids<3
Mon_Ouie has quit [Quit: WeeChat 1.3]
chouhoulis has quit [Ping timeout: 276 seconds]
despai has quit [Quit: Leaving]
symm- has quit [Ping timeout: 240 seconds]
sandstrom has joined #ruby
symm- has joined #ruby
Guest35 has joined #ruby
karapetyan has joined #ruby
tuelz1 has quit [Ping timeout: 240 seconds]
syk has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
phantummm has joined #ruby
Senecea is now known as Seneca
loechel has quit [Quit: ChatZilla 0.9.92 [Firefox 44.0/20160123151951]]
IrishGringo_ has joined #ruby
Pumukel has quit [Ping timeout: 240 seconds]
karapetyan has quit [Remote host closed the connection]
Guest35 has quit [Quit: Textual IRC Client: www.textualapp.com]
dlitvak has joined #ruby
IrishGringo has quit [Ping timeout: 256 seconds]
despai has joined #ruby
moeabdol has joined #ruby
moeabdol has quit [Client Quit]
syk has joined #ruby
Xeago has quit [Remote host closed the connection]
pawnbox has joined #ruby
phantummm has quit [Ping timeout: 240 seconds]
<shevy> Darmani have you written more ruby code
Bloomer has quit [Remote host closed the connection]
<Darmani> shevy<333
karapetyan has joined #ruby
<Darmani> I've been busy these last two days. Running around and such.
<Darmani> I do need to write more code though Q.Q
ta has joined #ruby
pawnbox has quit [Ping timeout: 240 seconds]
moeabdol has joined #ruby
dcunit3d has joined #ruby
at46_ has quit [Remote host closed the connection]
Cohedrin has joined #ruby
<Darmani> shevy - That's nice of you to check on me though ^.^
<shevy> yeah
<shevy> else you get complacent and lazy
<shevy> and end up like everyone else here
<shevy> idling to no good
LoneHermit has quit [Remote host closed the connection]
sandstrom has quit [Quit: My computer has gone to sleep.]
aclearman037 has joined #ruby
dlitvak has quit [Ping timeout: 240 seconds]
<ddv> getting drunk af
ohaibbq has joined #ruby
<ddv> how fun is this channel on a saturday night?
IrishGringo_ has quit [Read error: Connection reset by peer]
sandstrom has joined #ruby
phantummm has joined #ruby
LoneHerm_ has joined #ruby
pilne has quit [Quit: Quitting]
LoneHerm_ has quit [Remote host closed the connection]
dlitvak has joined #ruby
LoneHerm_ has joined #ruby
domgetter has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client]
* baweaver stirs from idle
edulix has quit [Ping timeout: 240 seconds]
piotrj has joined #ruby
<Darmani> shevy - idling to no good lol
s00pcan has quit [Remote host closed the connection]
sivam has quit [Quit: Leaving.]
s00pcan has joined #ruby
orca_ has joined #ruby
bkxd has joined #ruby
glcx has joined #ruby
glcx has joined #ruby
pdoherty has joined #ruby
despai has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Jackneill has quit [Ping timeout: 245 seconds]
ferr has joined #ruby
rodfersou has quit [Quit: leaving]
bkxd has quit [Ping timeout: 240 seconds]
Xeago has joined #ruby
s00pcan has quit [Remote host closed the connection]
despai has joined #ruby
s00pcan has joined #ruby
sandstrom has quit [Quit: My computer has gone to sleep.]
s00pcan has quit [Read error: No route to host]
s00pcan has joined #ruby
dlitvak has quit [Ping timeout: 260 seconds]
sandstrom has joined #ruby
sivam has joined #ruby
s00pcan has quit [Remote host closed the connection]
paolog has joined #ruby
Seneca has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Rodya_ has quit [Remote host closed the connection]
mjuszczak has joined #ruby
mjuszczak has quit [Max SendQ exceeded]
s00pcan has joined #ruby
mjuszczak has joined #ruby
s00pcan has quit [Remote host closed the connection]
zeroDivisible has quit [Quit: WeeChat 1.3]
s00pcan has joined #ruby
arooni_______ has joined #ruby
weemsledeux has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
dlitvak has joined #ruby
arooni_______ has left #ruby [#ruby]
ferr has quit [Quit: WeeChat 1.3]
s00pcan has quit [Remote host closed the connection]
s00pcan has joined #ruby
yoongkang has joined #ruby
ledestin has joined #ruby
william3 has joined #ruby
pilne has joined #ruby
sgambino has joined #ruby
yoongkang has quit [Ping timeout: 250 seconds]
codecop has quit [Remote host closed the connection]
william3 has quit [Ping timeout: 245 seconds]
phantummm has quit [Ping timeout: 256 seconds]
sandstrom has quit [Quit: My computer has gone to sleep.]
orca_ has left #ruby ["Leaving"]
mdw has quit [Quit: Sleeping Zzzzz]
sivam has quit [Quit: Leaving.]
sandstrom has joined #ruby
ebbflowgo has joined #ruby
despai has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
_Aviio has joined #ruby
ledestin has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
<_Aviio> Hi all
chouhoulis has joined #ruby
mdw has joined #ruby
llua has left #ruby [#ruby]
<shevy> yo Aviio with an underscore
<_Aviio> Im edgy you see
<shevy> not if Darmani appends a _ to his nick!
<shevy> then you two could join nicks
<Darmani> shevy - war
<Darmani> wat*
<_Aviio> im... lost
despai has joined #ruby
<shevy> Darmani yeah you always wanna go to war
dcunit3d has quit [Ping timeout: 272 seconds]
<shevy> you did the same some time ago
<shevy> war war warrrr
djbkd has quit [Remote host closed the connection]
<Darmani> shevy - lmao it's the fucking keyboard xD
<shevy> _Aviio well! Darmani_ + _Aviio is Darmani__Aviio
<Canar> war. war never changes
<shevy> sounds italian
<Darmani> Canar - You play fallout
<_Aviio> Quick question - I just learned about hashes in ruby, is it acceptable to pass a hash into a function?
<Darmani> my nigga
djbkd has joined #ruby
<shevy> <ddv> how fun is this channel on a saturday night?
<shevy> see ddv - the channel is a lot of fun on caturday
dlitvak_ has joined #ruby
<_Aviio> Darmani: Who DOESNT play fallout?
<shevy> _Aviio yeah, it is used a lot
<Darmani> tru.
<shevy> typically like:
<shevy> def method(options)
<shevy> where options is a hash
ledestin has joined #ruby
<Canar> i play fallout, i don't play skyrim 2112
<shevy> and then inside the method, people can check for what instructions were give
william3 has joined #ruby
<shevy> method(use_colours: true)
chouhoulis has quit [Ping timeout: 250 seconds]
<_Aviio> shevy: cool, ive done it a little bit differently though, ive basically done XML > hash and im passing that hash into a method so I dont have to keep using xpath
griffindy has quit [Read error: Connection reset by peer]
<shevy> as long as you have a hash it'll be fine
<kaleido> xml is the devil :(
<shevy> XML scares me
<_Aviio> kaleido: you want to see the devil? look up JXML
<Darmani> the devil lmao
pdoherty has quit [Ping timeout: 240 seconds]
dlitvak has quit [Ping timeout: 265 seconds]
<_Aviio> coming from a .net background, everyone loves themselves a bit of XML
djbkd has quit [Ping timeout: 240 seconds]
Senecea has joined #ruby
Rodya_ has joined #ruby
pawnbox has joined #ruby
<william3> What's .net like to use?
sandstrom has quit [Quit: My computer has gone to sleep.]
duncannz has joined #ruby
<william3> I've heard stories of 'avoid it like the plague' but I try to keep objective
j4cknewt has joined #ruby
<_Aviio> It was the first language I developed in professionally, so im quite biased, but I do quite enjoy it
sandstrom has joined #ruby
tomphp has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
<Ox0dea> What's great about it?
<Darmani> Ox0dea<33
<Ox0dea> Darumaka-san!
<Darmani> not kun? T_T
pawnbox has quit [Ping timeout: 250 seconds]
despai has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
<_Aviio> Ox0dea: I ask myself this on a daily basis, theres probably not one reason that I think its good, its just the ecosystem that I have the most experience in
j4cknewt has quit [Remote host closed the connection]
darkf has quit [Quit: Leaving]
j4cknewt has joined #ruby
despai has joined #ruby
djbkd has joined #ruby
newbie22 has joined #ruby
at46_ has joined #ruby
nfk has joined #ruby
framling has joined #ruby
<baweaver> .NET isn't bad
pandaant has quit [Remote host closed the connection]
<baweaver> C# is a well designed language
<baweaver> Java is the horrid one.
<Ox0dea> baweaver: Explain: http://i.imgur.com/44XFQds.png
The_Phoenix has joined #ruby
j4cknewt has quit [Ping timeout: 272 seconds]
<baweaver> C# evolved, Java trailed
wilbert has joined #ruby
<baweaver> LINQ, functional aspects, inference, polyglot support with F#, library documentation standards, etc.
dcunit3d has joined #ruby
at46_ has quit [Ping timeout: 265 seconds]
segy has quit [Quit: ZNC - http://znc.in]
<_Aviio> EF is pretty nice too
bluOxigen has quit [Ping timeout: 265 seconds]
<_Aviio> Will be interesting to see where .net core ends up
segy has joined #ruby
<baweaver> short version: AbstractSingletonProxyFactoryBean
<Ox0dea> baweaver: Color me convinced. I'll have to get some WINE.
<baweaver> careful not to get MONO
<Ox0dea> Dammit! Stealin' the puns right outta my stream of consciousness.
<Ox0dea> I was gonna use "contract", for the record.
<baweaver> note: I only know a handful of C# from College
sp4rrow has joined #ruby
<baweaver> and had to work in Java professionally for about half a year before I quit and ran
newbie22 has quit [Quit: Leaving]
<Ox0dea> Good news, everyone: a monadic transformer is the same everywhere.
<baweaver> C# never inspired that level of pure disgust in me
edulix has joined #ruby
<_Aviio> C# will never hurt you like java does <3
Guest75297 has quit [Remote host closed the connection]
The_Phoenix has quit [Quit: Leaving.]
<baweaver> Scala, on the other hand, is everything Java should have been.
<baweaver> a tinge overkill in places though.
uri_ has joined #ruby
sandstrom has quit [Quit: My computer has gone to sleep.]
<_Aviio> Hmm.. time to research testing in Ruby
Xeago has quit [Remote host closed the connection]
<_Aviio> Really wish i had started this application with TDD in mind
ddv has quit [Quit: *poof*]
<_Aviio> Test::Unit still the preferred unit testing framework?
at46_ has joined #ruby
<_Aviio> or are there others I should look into?
sandstrom has joined #ruby
<shevy> baweaver mono is bad? I have no idea, never really used it or C# but I was wondering if one could write things on linux, to also work on windows... and not have to use java haha
<baweaver> It was a pun
uri_ has quit [Client Quit]
<shevy> (I did C# hello world example though if that counts)
<baweaver> _Aviio: Minitest and RSpec are fairly popular on the DSL type side
<_Aviio> baweaver: Thanks, ive heard those ones being thrown around on the ruby rogues podcast I think
tuelz1 has joined #ruby
<baweaver> just remember that pure TDD isn't used exclusively
<baweaver> what I tend to do myself:
<baweaver> If I know what I'm writing and how it should work, I TDD
n_blownapart has joined #ruby
<baweaver> If I have no clue how it would work, I tend to develop in the REPL first and write tests after I get a good idea of the interface
solars has joined #ruby
<baweaver> A few of the RRs are on here from time to time.
<_Aviio> baweaver: kind of the same thought process here, although im learning ruby as I develop and trying to apply C# principles to my development.. its working so far
<baweaver> Eloquent Ruby will help to get an idea of how Ruby people write Ruby
<Darmani> Can someone please explain to me the difference between a web server & a web client?
<baweaver> what is a Server
karapetyan has quit [Remote host closed the connection]
<baweaver> at a restaraunt?
<william3> :)
<Darmani> war
<Darmani> WAT
<baweaver> restaurant*
<Darmani> At a restaurant?
<baweaver> Someone who serves you food after you, the Client, requests it
<baweaver> replace food with data / images / etc and there you go
marr has joined #ruby
<Darmani> wait.
<Darmani> I have to think about that.
dlitvak_ has quit [Ping timeout: 250 seconds]
<Darmani> OHH
<Darmani> okay.
<Darmani> I got it.
<_Aviio> baweaver: thanks for that, ill have a look at it, have you read Practical Object-Oriented Design In Ruby by Sandi Metz? been looking at getting that out
shadowfirebird has joined #ruby
<baweaver> Worth it
<baweaver> I have it sitting on my shelf
<william3> That's a wicked book _Aviio
<_Aviio> Awesome
<baweaver> Most of my Ruby / Scala / JS books are at $WORK though
<baweaver> second row starts Ruby
<Darmani> Is that you???
<william3> :)
dlitvak has joined #ruby
<baweaver> The pic? Yeah
<william3> Am reading Design Patterns In Ruby atm
<baweaver> I shave on occasion
<Darmani> You are a handsome motherfucker dude.
<baweaver> just remember not to treat design patterns as religious law, bad things happen
tuelz1 has quit [Ping timeout: 272 seconds]
<_Aviio> Sick library!
<baweaver> like AbstractSingletonProxyFactoryMapperBeans
<william3> Look like doctor who
<baweaver> Darmani: danke
<Darmani> william3 lmaooo that's exactly what I was thinking
<baweaver> Indeed, I cosplay the 10th doctor a lot
<_Aviio> baweaver: well thats the point, they're patterns!
<william3> lols
<_Aviio> baweaver: not religious law
<baweaver> _Aviio: some people sure think so
<Papierkorb> That avatar really looks like a dr who cosplay
<baweaver> I've seen them, and subsequently run
<baweaver> It is.
<Papierkorb> nice
<Darmani> baweaver - send me your books breh. I need them more than you xP
aclearman037 has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
aclearman037 has joined #ruby
<baweaver> of course now I have an official trenchcoat so it looks better.
<_Aviio> baweaver: what defines an 'official' trenchcoat?
<baweaver> If anyone's in LA, I'll be at Wondercon dressed the same.
<baweaver> Darker color, more like the official one.
<william3> Trench coats are awesome
<Darmani> I live like right outside LA. Although I've never heard of Wondercon o.o
dlitvak has quit [Ping timeout: 240 seconds]
<_Aviio> Ahh LA, that's the dream!
<william3> London for me.
<baweaver> I'm in SF myself.
<Darmani> _Aviio - It's not.
<Darmani> trust me.
<_Aviio> SF > LA hah
<Darmani> baweaver - The bayyy<33
<_Aviio> To be fair, Anywhere is better than the UK
<Darmani> I wanna move up there so bad.
<Darmani> _Aviio - Really?
<Darmani> Why do you say that
<baweaver> Wondercon was normally in Anaheim
<Papierkorb> London is pretty hot job-wise isn't it?
<_Aviio> Weather is awful 24/7, More tech jobs in US
mdw has quit [Quit: Sleeping Zzzzz]
<_Aviio> Eeh - its pretty good, but im a northerner, I don't function in London
jimmtt has quit [Ping timeout: 240 seconds]
freerobby has quit [Quit: Leaving.]
<Darmani> baweaver - Ah Anaheim. Also known as Anacrime. Lol
Xeago has joined #ruby
<Darmani> Brethren, let me ask you all a question.
sandstrom has quit [Quit: My computer has gone to sleep.]
<Darmani> If I was to create a web server what kind of functionality should it have?
<Darmani> ON A BASIC LEVEL
<Darmani> Nothing complicated.
<william3> How comes you want to create one?
<william3> For funsies?
tomphp has joined #ruby
<Voyage> Am I missing something? http://pastie.org/10702090#1,4,19
<_Aviio> What type of web server?
<Darmani> william3 - kinda yeah.
<Darmani> Just a basic one.
<_Aviio> So, HTML/CSS?
yoongkang has joined #ruby
<Darmani> yushh
<Papierkorb> Darmani: HTTP/1.0 GET requests
<_Aviio> What platform? Linux?
FernandoBasso has quit [Quit: Leaving]
<Darmani> _Aviio - The great and powerful WINDOWS lol
<Darmani> Papierkorb - Get requests... o.o
<Papierkorb> Darmani: That almost implements itself, the most complex part is having a nice API/Architecture and security like directory traversal detection etc.
sandstrom has joined #ruby
dlitvak has joined #ruby
dlitvak has quit [Remote host closed the connection]
<Darmani> Papierkorb - I want to work my way up to that. But I need to start with the basic's.
radgeRayden_ has joined #ruby
<_Aviio> Darmani: Ok, so start with security
<passcod> start with GET requests
<Papierkorb> Darmani: HTTP/1.0 GET *is* basic. Sure, HTTP in its entirety *is* complex, but you barely need to support anything to get a meaningful output in your webbrowser
<_Aviio> Darmani: Only requests on port 80 and 443 should be allowed
<Voyage> nevermind
<baweaver> Voyage: I'm crap for Apache help, but you'll probably have better luck on an apache channel
phantummm has joined #ruby
<Papierkorb> Darmani: HTTP/1.1 is already much more complex (MUSTs, SHOULDs, quirks and more quirks)
<Voyage> baweaver, working. just need the default password of redmine
<Darmani> Papierkorb - You've written many of these haven't you?
<Papierkorb> Darmani: Yeah, wrote a HTTP/1.1 server in C++/Qt, with WebSockets support and stuff.
<Papierkorb> Fun times.
<Papierkorb> But jesus
<Papierkorb> I never ever want to write that again
<baweaver> I don't envy you
piotrj has quit [Remote host closed the connection]
<Darmani> lmao
naim has quit [Quit: Connection closed for inactivity]
pawnbox has joined #ruby
yoongkang has quit [Ping timeout: 264 seconds]
<baweaver> anyways, need to get some other stuff done this weekend, I'll be back about later today.
<Voyage> baweaver, well, nevermind that either
* Darmani waves to baweaver
<_Aviio> bb
<Papierkorb> baweaver: I think of it as a valuable lesson in writing and especially architecturing server software.
radgeRayden has quit [Ping timeout: 265 seconds]
<baweaver> valuable things have great cost I find
dcunit3d has quit [Ping timeout: 276 seconds]
<Darmani> baweaver - Isn't that the truth.
phantummm has quit [Ping timeout: 264 seconds]
nettoweb has joined #ruby
pawnbox has quit [Ping timeout: 260 seconds]
dlitvak has joined #ruby
nettoweb has quit [Max SendQ exceeded]
nettoweb has joined #ruby
sakix has joined #ruby
Xeago has quit [Remote host closed the connection]
chouhoulis has joined #ruby
shadowfirebird has quit [Ping timeout: 265 seconds]
dlitvak has quit [Remote host closed the connection]
dlitvak has joined #ruby
gnudon has joined #ruby
ledestin has quit [Quit: Textual IRC Client: www.textualapp.com]
sandstrom has quit [Quit: My computer has gone to sleep.]
sgambino has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
sgambino has joined #ruby
stannard has quit [Remote host closed the connection]
duncannz has quit [Remote host closed the connection]
sandstrom has joined #ruby
chouhoulis has quit [Ping timeout: 265 seconds]
atomical has joined #ruby
zenlot1 has quit [Ping timeout: 250 seconds]
ebbflowgo has quit [Quit: ebbflowgo]
dlitvak has quit [Ping timeout: 240 seconds]
kirun_ has quit [Quit: Client exiting]
devbug has joined #ruby
jottr has joined #ruby
mondok has joined #ruby
mjuszczak has quit []
despai has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Spami has joined #ruby
wilbert has quit [Quit: quit]
Spami has quit [Changing host]
Spami has joined #ruby
Voyage has quit [Ping timeout: 240 seconds]
dlitvak has joined #ruby
zenlot1 has joined #ruby
ur5us has joined #ruby
despai has joined #ruby
rkazak has joined #ruby
nettoweb has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
oetjenj has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
shadowfirebird has joined #ruby
Xeago has joined #ruby
shadowfirebird has quit [Remote host closed the connection]
Abrin has joined #ruby
lyoshajapan has joined #ruby
sp4rrow has quit [Ping timeout: 260 seconds]
symm- has quit [Quit: Leaving...]
zzz has joined #ruby
zzz is now known as Guest86670
nettoweb has joined #ruby
symm- has joined #ruby
paolog has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
lyoshajapan has quit [Ping timeout: 265 seconds]
sandstrom has quit [Quit: My computer has gone to sleep.]
paolog has joined #ruby
pawnbox has joined #ruby
sandstrom has joined #ruby
weemsledeux has joined #ruby
k13nox has quit [Remote host closed the connection]
sgambino has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
k13nox has joined #ruby
elifoster has joined #ruby
Abrin2 has joined #ruby
k13nox_ has joined #ruby
ohaibbq_ has joined #ruby
jabreity_ has joined #ruby
edulix has quit [Ping timeout: 240 seconds]
ta_ has joined #ruby
pawnbox has quit [Ping timeout: 276 seconds]
fexilal has joined #ruby
benoror_ has joined #ruby
UtkarshRay has quit [Remote host closed the connection]
k13nox has quit [Ping timeout: 245 seconds]
neanderslob_ has joined #ruby
Antiarc_ has joined #ruby
juddey_ has joined #ruby
mikolalysenko_ has joined #ruby
juddey_ has quit [Remote host closed the connection]
_seanc_ has quit [Quit: _seanc_]
ramblinpeck_ has joined #ruby
juddey_ has joined #ruby
bkxd has joined #ruby
lipoqil_ has joined #ruby
juddey_ has quit [Remote host closed the connection]
arooni_______ has joined #ruby
frode15243_ has joined #ruby
headius has quit [Quit: ZNC - http://znc.in]
Derailed_ has joined #ruby
int has joined #ruby
_djbkd has joined #ruby
rfv_ has joined #ruby
dexter__ has joined #ruby
ekaleido has joined #ruby
int is now known as Guest60289
ekaleido has quit [Changing host]
ekaleido has joined #ruby
Abrin has quit [Ping timeout: 240 seconds]
jabreity has quit [Ping timeout: 240 seconds]
S01780__ has quit [Ping timeout: 240 seconds]
ramblinpeck has quit [Ping timeout: 240 seconds]
mikolalysenko has quit [Ping timeout: 240 seconds]
spastorino has quit [Ping timeout: 240 seconds]
benoror has quit [Ping timeout: 240 seconds]
lipoqil has quit [Ping timeout: 240 seconds]
benoror_ is now known as benoror
ohaibbq has quit [Ping timeout: 240 seconds]
juddey has quit [Ping timeout: 240 seconds]
arthropododo has quit [Ping timeout: 240 seconds]
neanderslob has quit [Ping timeout: 240 seconds]
felixal has quit [Ping timeout: 240 seconds]
frode15243 has quit [Ping timeout: 240 seconds]
rfv has quit [Ping timeout: 240 seconds]
djbkd has quit [Ping timeout: 240 seconds]
Antiarc has quit [Ping timeout: 240 seconds]
Derailed has quit [Ping timeout: 240 seconds]
weemsledeux has quit [Ping timeout: 240 seconds]
ta has quit [Ping timeout: 240 seconds]
dexter-tzu has quit [Ping timeout: 240 seconds]
kaleido has quit [Ping timeout: 240 seconds]
sftrabbit has quit [Ping timeout: 240 seconds]
droptone_ has quit [Ping timeout: 240 seconds]
droptone has joined #ruby
gambl0re has quit [Ping timeout: 240 seconds]
Derailed_ is now known as Derailed
frode15243_ is now known as frode15243
wilbert has joined #ruby
ramblinpeck_ is now known as ramblinpeck
lipoqil_ is now known as lipoqil
rfv_ is now known as rfv
mikolalysenko_ is now known as mikolalysenko
pilne has quit [Quit: Quitting]
gambl0re has joined #ruby
gambl0re has quit [Changing host]
gambl0re has joined #ruby
despai has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Dimik has joined #ruby
enkristoffer has joined #ruby
headius has joined #ruby
ramfjord_ has joined #ruby
zeroDivisible has joined #ruby
despai has joined #ruby
Xeago has quit [Remote host closed the connection]
rkazak has quit [Quit: Sleep.....ing....]
bkxd has quit [Ping timeout: 264 seconds]
oetjenj has joined #ruby
freerobby has joined #ruby
yoongkang has joined #ruby
ramfjord has quit [Ping timeout: 240 seconds]
droptone has quit [Ping timeout: 240 seconds]
solars has quit [Ping timeout: 250 seconds]
sdothum has quit [Quit: ZNC - 1.6.0 - http://znc.in]
zast has quit [Ping timeout: 240 seconds]
droptone has joined #ruby
dlitvak has quit [Ping timeout: 265 seconds]
zast has joined #ruby
sandstrom has quit [Quit: My computer has gone to sleep.]
dmr8 has quit [Quit: Leaving]
spastorino has joined #ruby
sandstrom has joined #ruby
blackmesa has quit [Ping timeout: 250 seconds]
S01780__ has joined #ruby
sgambino has joined #ruby
arthropododo has joined #ruby
sdothum has joined #ruby
dlitvak has joined #ruby
crazydiamond has quit [Remote host closed the connection]
IrishGringo has joined #ruby
Spami has quit [Quit: This computer has gone to sleep]
Xeago has joined #ruby
_seanc_ has joined #ruby
Dimik has quit [Ping timeout: 245 seconds]
s00pcan has quit [Ping timeout: 245 seconds]
arooni_______ has quit [Quit: Leaving]
ConsciousGamer has quit [Ping timeout: 240 seconds]
arooni_______ has joined #ruby
mary5030 has joined #ruby
s00pcan has joined #ruby
volty has joined #ruby
zodoz has joined #ruby
triangles has quit [Quit: Leaving]
tomphp has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
blackmesa has joined #ruby
Rodya_ has quit [Remote host closed the connection]
Senecea has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Senecea has joined #ruby
Rodya_ has joined #ruby
sandstrom has quit [Quit: My computer has gone to sleep.]
x77686d has quit [Ping timeout: 240 seconds]
sandstrom has joined #ruby
al2o3-cr has joined #ruby
despai has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
toretore has joined #ruby
wilbert has quit [Ping timeout: 245 seconds]
chouhoulis has joined #ruby
pawnbox has joined #ruby
arooni_______ has quit [Ping timeout: 250 seconds]
nettoweb has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
dcunit3d has joined #ruby
al2o3-cr has quit [Ping timeout: 260 seconds]
n_blownapart has quit []
at46_ has quit [Remote host closed the connection]
al2o3-cr has joined #ruby
TomPeed has joined #ruby
TomPeed is now known as justbleed
stannard has joined #ruby
chouhoulis has quit [Ping timeout: 240 seconds]
blur3d has quit [Quit: blur3d]
pawnbox has quit [Ping timeout: 250 seconds]
dlitvak has quit [Ping timeout: 250 seconds]
spider-mario has quit [Remote host closed the connection]
despai has joined #ruby
dlitvak has joined #ruby
glcx has quit [Quit: Quitte]
stannard has quit [Ping timeout: 240 seconds]
Senecea has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Rodya_ has quit [Remote host closed the connection]
Rodya_ has joined #ruby
Senecea has joined #ruby
guacaholy has quit [Remote host closed the connection]
Trynemjoel has quit [Ping timeout: 264 seconds]
yoongkang has quit [Remote host closed the connection]
ledestin has joined #ruby
devbug_ has joined #ruby
sandstrom has quit [Quit: My computer has gone to sleep.]
dlitvak has quit [Ping timeout: 272 seconds]
gnudon has quit [Remote host closed the connection]
sandstrom has joined #ruby
blackgoat has joined #ruby
yokel has quit [Remote host closed the connection]
yokel has joined #ruby
devbug has quit [Ping timeout: 250 seconds]
Trynemjoel has joined #ruby
justbleed has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
dlitvak has joined #ruby
sgambino has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
nanoz has joined #ruby
at46_ has joined #ruby
<shevy> hmm anyone remembers the ruby equivalent to linux "uname -m" ? this would yield "i686"
lyoshajapan has joined #ruby
phantummm has joined #ruby
Trynemjoel has quit [Ping timeout: 250 seconds]
TomPeed has joined #ruby
phantummm has quit [Client Quit]
TomPeed is now known as justbleed
tomchapin has quit [Quit: Textual IRC Client: www.textualapp.com]