jhass changed the topic of #ruby to: Rules & more: http://ruby-community.com || Ruby 2.3.0; 2.2.4; 2.1.8: https://ruby-lang.org || Paste >3 lines of text on https://gist.github.com || log @ http://irclog.whitequark.org/ruby/
Guest34101 has quit [Ping timeout: 276 seconds]
barajasfab has joined #ruby
<shevy> lol
Sid05 has quit [Ping timeout: 260 seconds]
Sid05 has joined #ruby
graphettion has joined #ruby
sdothum has quit [Quit: ZNC - 1.6.0 - http://znc.in]
Gasher^ has quit [Quit: Leaving]
poguez_ has quit [Quit: Connection closed for inactivity]
trinaldi has quit [Quit: WeeChat 1.5-dev]
sdothum has joined #ruby
trinaldi has joined #ruby
skade has quit [Quit: Computer has gone to sleep.]
freerobby has joined #ruby
polyidus has quit [Quit: Later]
Assimilater has joined #ruby
<Assimilater> i followed this guide for installing ruby on rails: https://gorails.com/setup/ubuntu/15.10#final-steps when I try to do sudo rails server -p 80 i see "sudo: rails: command not found" can anyone help me in starting the server?
djbkd has joined #ruby
disconnected has left #ruby ["EKG2 bejbi! http://ekg2.org/"]
<Zarthus> Assimilater: there's a rails channel where this may be more appropriate
<Assimilater> Zarthus: ah, ok :)
<Assimilater> is it #rails?
deuxclique has quit [Remote host closed the connection]
<Zarthus> #rubyonrails iirc
diegoviola has quit [Quit: WeeChat 1.4]
barajasfab has quit [Quit: Leaving]
<kspencer> bleh, does anyone know of a tutorial or a repo of a ruby gtk2 application, so I can see the format/structure
<kspencer> I'm looking at a tutorial now, but doesn't show how I can structure it with require etc.
<Assimilater> Zarthus: thanks :)
rmulligan has joined #ruby
eregi has joined #ruby
jenrzzz has quit [Ping timeout: 250 seconds]
LoneHerm_ has joined #ruby
baweaver has joined #ruby
rmulligan has quit [Ping timeout: 252 seconds]
jottr_ has joined #ruby
jenrzzz has joined #ruby
mondok has joined #ruby
dostoyevsky has joined #ruby
<dostoyevsky> Hey, unicode question: is there an easy way to make ``"асе" == "ace" '' return true in ruby?
sp4rrow has quit [Quit: The Internet needs a break and I need a cookie]
<apeiros> dostoyevsky: I don't think so.
Guest2908 has joined #ruby
moeabdol1 has joined #ruby
jenrzzz has quit [Ping timeout: 248 seconds]
duckpuppy has joined #ruby
youch has quit [Ping timeout: 244 seconds]
tjohnson has joined #ruby
gaxar77 has quit [Read error: Connection reset by peer]
Guest2908 has quit [Client Quit]
<dostoyevsky> but shouldn't all unicode compliant systems also implement the normalization methods? NFC, NFD, NFKC, and NFKD? I am not sure if those two strings would be equal when nomalized under these methods, though
Guest14707 is now known as James
baweaver has quit [Remote host closed the connection]
James is now known as Guest45623
<Ox0dea> Cyrillic != Latin
<apeiros> that's not a normalization, that's transliteration
spider-mario has quit [Remote host closed the connection]
<dostoyevsky> Ox0dea: true
<apeiros> those chars are not equivalent. they just look similar.
<apeiros> i and ¡ look similar too. but are two different things.
duckpuppy has quit [Ping timeout: 260 seconds]
Hammy_Work has quit [Quit: Leaving]
<dostoyevsky> for me they actually look the same... do they look different for anyone of you?
ledestin has joined #ruby
<apeiros> they may very well be rendered using the same vectors/bitmaps. that doesn't change that they're semantically a different thing.
<dostoyevsky> yeah, the codepoints are different for sure..
<apeiros> but as said: you're looking for transliteration
<dostoyevsky> that that's what matters for ==
<dostoyevsky> apeiros: but I'd have to implement that myself, right?
zenlot has quit [Ping timeout: 246 seconds]
ivanskie_ has joined #ruby
<apeiros> well, == is actually binary. even the same character can be !=
sp4rrow has joined #ruby
<dostoyevsky> so many i :-/
<apeiros> dostoyevsky: I didn't say that you have to implement it yourself. check ruby-toolbox and google.
Jardayn has quit [Ping timeout: 244 seconds]
<dostoyevsky> > Transliteration between cyrillic <-> latin ... hehe.. that solves 1% of all the unicode problems :)
zenlot has joined #ruby
arlek has joined #ruby
Dios has joined #ruby
ebbflowgo has quit [Read error: Connection reset by peer]
<dostoyevsky> > tr39_confusables --- that might be a good ruby gem
ebbflowgo has joined #ruby
sp4rrow has quit [Client Quit]
sp4rrow has joined #ruby
sp4rrow has quit [Client Quit]
sp4rrow has joined #ruby
ReK2 has quit [Remote host closed the connection]
ReK2 has joined #ruby
<dostoyevsky> Ox0dea: yeah, one would e.g. need a gem that uses that file to make comparisons... still, these only include equality for characters that have the same width.. I am not sure if one could detect "Administator" == "Administrator" # where one of the strings e.g. has a zero width space...
<Ox0dea> dostoyevsky: LATIN SMALL LETTER W → LATIN SMALL LETTER V, LATIN SMALL LETTER V
<dostoyevsky> but tr39 also includes security checks so maybe that's the thing I want
<Ox0dea> It's not clear what you mean by "width".
<Ox0dea> TR39 does seem to have thought this through pretty thoroughly.
<apeiros> RTL direction change is also a classic
<dostoyevsky> Confusables doesn't list and other comma char for "、 " even though I'd say , looks similar
<dostoyevsky> that's because confusables only assumes that characters with the same width can be confusable
mattwildig has joined #ruby
jen_ has joined #ruby
jenrzzz has joined #ruby
rlf has joined #ruby
<rlf> hello, what would initialize(*) imply, and in particular the * in the params? is that something like ... in java or va_args in c?
cjbottaro has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<Ox0dea> rlf: That's right: https://eval.in/531196
<jen_> I am working with Spree commerce and having a tough time modifying cart pages…if anyone can assist, much appreciated. I view page loads in the rails console.
<Ox0dea> rlf: Your example is a special case for when you care so little about the arguments that you don't even need to give the splat parameter a name. :P
myntcake has quit [Quit: Leaving]
<rlf> ah, thanks :p
<Ox0dea> No worries.
scripore has joined #ruby
cjbottaro has joined #ruby
<apeiros> initialize(*) would make sense for inherited initializer which then calls super (without parens), as that passes on all arguments.
jenrzzz has quit [Ping timeout: 276 seconds]
<devbug> wtf
<devbug> pry's input breaks when I call it from within a script (binding.pry)
BtcBen has quit [Ping timeout: 252 seconds]
ivanskie_ has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
LoneHerm_ has quit [Read error: Connection reset by peer]
mattwildig has quit [Remote host closed the connection]
LoneHermit has joined #ruby
<Ox0dea> apeiros: Did you know this? https://eval.in/531197
siaw has quit [Quit: siaw]
<Ox0dea> It was the solution to someone's puzzle the other day. I've been meaning to show norc_; it's the kind of thing out of which he's liable to get a kick.
MissionCritical has quit [Read error: Connection reset by peer]
Es0teric has joined #ruby
<Zarthus> I take it [1, 2, 3].reverse was not allowed?
<Ox0dea> Aye, the `result[0, 0]` bit was a blank they had to fill.
<Zarthus> I have no idea how this code works
jen_ has left #ruby [#ruby]
rmulligan has joined #ruby
kam270 has quit [Ping timeout: 268 seconds]
<shevy> Zarthus retain your sanity, do not follow Ox0dea and norc_ into the rabbit hole!
<Zarthus> shevy: it's okay, it's 2 AM. the moment I enter my bed I'll have forgotten everything
<Ox0dea> `for foo in bar; ...; end` == `bar.each { |v| foo = v; ... }`, at least conceptually.
<apeiros> Ox0dea: oh, so for/in has assignment semantics. no. didn't know that.
<apeiros> 1.8's proc & lambda had that too.
<apeiros> >> proc { |$x,@y| }.call(1,2); [$x, @y]
<ruby[bot]> apeiros: # => /tmp/execpad-60475481cd88/source-60475481cd88:2: formal argument cannot be a global variable ...check link for more (https://eval.in/531198)
<apeiros> 18>> proc { |$x,@y| }.call(1,2); [$x, @y]
<ruby[bot]> apeiros: # => [1, 2] (https://eval.in/531199)
<Ox0dea> Neat! :P
<Zarthus> I'll just stick to Array#reverse
Rodya_ has joined #ruby
<apeiros> I'd actually would have preferred if they'd changed method args to work that way instead of removing it from proc/lambda
<apeiros> def initialize(@foo, @bar, …) being a classical case for that
<Ox0dea> That really would be nice.
rmulligan has quit [Ping timeout: 252 seconds]
LoneHermit has quit [Remote host closed the connection]
MissionCritical has joined #ruby
inennes has quit [Quit: Leaving]
cjbottaro has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
LoneHerm_ has joined #ruby
<shevy> Zarthus this is the hour of the day where they get creative
stannard has joined #ruby
Rodya_ has quit [Remote host closed the connection]
<Zarthus> it's the hour of the day where I wonder if I should have been in bed one hour ago or two!
Rodya_ has joined #ruby
jottr has joined #ruby
scripore has quit [Quit: Leaving]
bob434 has joined #ruby
<shevy> you can stay up!
<shevy> and write more ruby code
eurialo has quit [Ping timeout: 246 seconds]
<shevy> I have countless things to do - I need me to find some ruby code monkeys
bob434 has quit [Remote host closed the connection]
marr has quit [Remote host closed the connection]
<Kilo`byte> is there any way i can get Net::Telnet to use an existing socket?
bob434 has joined #ruby
<Kilo`byte> or something i can use instead
bob434 has quit [Remote host closed the connection]
<Kilo`byte> i don't feel like reimplementing the telnet protocol
lessless has joined #ruby
<Zarthus> shevy: I started working, so my desire to write code has been reduced significantly :P
jottr_ has quit [Ping timeout: 276 seconds]
<Zarthus> I mean, writing code 8 hours a day wears you out.
<Zarthus> especially when it's PHP, and not ruby!
bob434 has joined #ruby
Rodya_ has quit [Ping timeout: 260 seconds]
mondok has quit [Ping timeout: 248 seconds]
crowell has quit [Ping timeout: 260 seconds]
bob434 has quit [Client Quit]
zeroDivisible has quit [Quit: WeeChat 1.3]
crowell has joined #ruby
<shevy> ack
y2mq37 has joined #ruby
Guest45623 is now known as James
baweaver has joined #ruby
tungd has joined #ruby
James is now known as Guest49188
kirun has quit [Quit: Client exiting]
mattwildig has joined #ruby
jeanlinux has joined #ruby
statelesscode has quit [Quit: statelesscode]
Dreamer3 has quit [Ping timeout: 244 seconds]
hgl has joined #ruby
ericn81 has quit [Remote host closed the connection]
dome22xl has joined #ruby
Dreamer3 has joined #ruby
baweaver has quit [Ping timeout: 248 seconds]
sarbs has quit [Max SendQ exceeded]
sarbs has joined #ruby
Es0teric has quit [Quit: Computer has gone to sleep.]
stannard has quit [Remote host closed the connection]
jeanlinux has quit [Ping timeout: 246 seconds]
binaryplease has joined #ruby
cdg has quit [Remote host closed the connection]
Dreamer__ has joined #ruby
tristanp has joined #ruby
j0n3 has quit [Remote host closed the connection]
diegoviola has joined #ruby
nogic has quit [Ping timeout: 264 seconds]
charliesome has joined #ruby
tristanp has quit [Remote host closed the connection]
Es0teric has joined #ruby
Es0teric has quit [Max SendQ exceeded]
diegoviola has quit [Client Quit]
Dreamer3 has quit [Ping timeout: 264 seconds]
Es0teric has joined #ruby
Es0teric has quit [Max SendQ exceeded]
Es0teric has joined #ruby
charliesome has quit [Client Quit]
Waheedi has joined #ruby
Guest34101 has joined #ruby
jenrzzz has joined #ruby
cyclonis has quit [Ping timeout: 250 seconds]
<Waheedi> im getting this error while using rvm install ruby-1.8.7
<Waheedi> Error running 'requirements_osx_brew_libs_install gcc49 openssl098',
<Waheedi> I'm on osx 10.11
Assimilater has left #ruby [#ruby]
cyclonis has joined #ruby
cjbottaro has joined #ruby
jenrzzz has quit [Ping timeout: 244 seconds]
nogic has joined #ruby
nogic has quit [Max SendQ exceeded]
diegoviola has joined #ruby
nogic has joined #ruby
LoneHerm_ has quit [Read error: Connection reset by peer]
Es0teric has quit [Quit: Computer has gone to sleep.]
karapetyan has quit [Remote host closed the connection]
freerobby has quit [Quit: Leaving.]
rmulligan has joined #ruby
youch has joined #ruby
<Waheedi> graphettion: thanks! I think the problem was ram was not up to head
<Waheedi> now compiling again :)
<graphettion> cool :)
<Waheedi> few precious things still need 1.8.7 :|
LoneHermit has joined #ruby
cdg has joined #ruby
rmulligan has quit [Ping timeout: 252 seconds]
charliesome has joined #ruby
<shevy> ack
moeabdol1 has quit [Ping timeout: 250 seconds]
jordanm has quit [Remote host closed the connection]
jordanm has joined #ruby
LoneHermit has quit [Remote host closed the connection]
cjbottaro has quit [Ping timeout: 248 seconds]
tungd has quit [Quit: Dreaming...]
Rodya_ has joined #ruby
Azure has quit [Ping timeout: 264 seconds]
vikas027 has joined #ruby
tungd has joined #ruby
Azure has joined #ruby
jottr has quit [Ping timeout: 246 seconds]
FooMunki has quit [Quit: FooMunki]
duckpuppy has joined #ruby
cdg has quit [Remote host closed the connection]
cdg has joined #ruby
tungd has quit [Quit: Dreaming...]
ericn81 has joined #ruby
cdg_ has joined #ruby
Guest49188 is now known as James
baweaver has joined #ruby
James is now known as Guest97674
duckpuppy has quit [Ping timeout: 240 seconds]
cdg has quit [Ping timeout: 268 seconds]
Outlastsheep has quit [Remote host closed the connection]
jeanlinux has joined #ruby
darkf has joined #ruby
Moosashi has joined #ruby
PlasmaStar has joined #ruby
blackmesa has quit [Ping timeout: 244 seconds]
norc__ has joined #ruby
baweaver has quit [Ping timeout: 240 seconds]
Rodya_ has quit [Remote host closed the connection]
Rodya_ has joined #ruby
diego2 has joined #ruby
diego2 has quit [Changing host]
diego2 has joined #ruby
binaryplease has quit [Ping timeout: 244 seconds]
diegoviola is now known as Guest65114
diego2 is now known as diegoviola
Rodya_ has quit [Remote host closed the connection]
jeanlinux has quit [Ping timeout: 246 seconds]
Guest65114 has quit [Ping timeout: 240 seconds]
norc_ has quit [Ping timeout: 252 seconds]
coffeecupp has joined #ruby
Azure has quit [Remote host closed the connection]
elifoster has quit [Ping timeout: 260 seconds]
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
DmitryBochkarev has joined #ruby
coffeecupp has quit [Quit: Leaving]
Rickmasta has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
Sucks has joined #ruby
dc1 has joined #ruby
jenrzzz has joined #ruby
charliesome has joined #ruby
nfk has quit [Quit: Try memory.free_dirty_pages=true in about:config]
cyclonis has quit [Ping timeout: 244 seconds]
swills has quit [Remote host closed the connection]
rmulligan has joined #ruby
Sucks has quit [Ping timeout: 260 seconds]
youch has quit [Ping timeout: 244 seconds]
jenrzzz has quit [Ping timeout: 244 seconds]
sneakerhax has joined #ruby
eregi has quit [Ping timeout: 276 seconds]
cyclonis has joined #ruby
thevaliantx has joined #ruby
nando294021 has joined #ruby
rmulligan has quit [Ping timeout: 252 seconds]
cdg_ has quit [Remote host closed the connection]
sneakerhax has quit [Client Quit]
sneakerhax has joined #ruby
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
fedexo has joined #ruby
Es0teric has joined #ruby
Es0teric has quit [Max SendQ exceeded]
ropeney has quit [Quit: Leaving]
Es0teric has joined #ruby
Es0teric has quit [Max SendQ exceeded]
Es0teric has joined #ruby
Es0teric has quit [Max SendQ exceeded]
Es0teric has joined #ruby
dubek has joined #ruby
cyclonis has quit [Ping timeout: 248 seconds]
LoneHermit has joined #ruby
swills has joined #ruby
rlf has quit [Quit: leaving]
<Waheedi> after installing ruby 1.8.7 using rvm on OS X I tried to gem install opengl -v 0.7.0.pre1
<Waheedi> and I have been trying to get around this http://paste.linux.chat/view/a1c3c130
Sid05 has quit [Ping timeout: 264 seconds]
Outlastsheep has joined #ruby
LoneHermit has quit [Ping timeout: 240 seconds]
bob434 has joined #ruby
ziyadb has quit [Quit: Connection closed for inactivity]
skweek has quit [Ping timeout: 250 seconds]
Sid05 has joined #ruby
cyclonis has joined #ruby
ledestin has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Es0teric has quit [Quit: Computer has gone to sleep.]
swills has quit [Quit: Leaving]
youch has joined #ruby
LoneHermit has joined #ruby
cyclonis has quit [Ping timeout: 260 seconds]
razieliyo has joined #ruby
ohaibbq has joined #ruby
babblebre has joined #ruby
Guest97674 is now known as James
LoneHermit has quit [Ping timeout: 248 seconds]
James is now known as Guest98356
Rickmasta has joined #ruby
uglybandersnatch has joined #ruby
blackmesa has joined #ruby
Moosashi has quit [Quit: Moosashi]
cyclonis has joined #ruby
youch has quit [Ping timeout: 244 seconds]
uglybandersnatch has quit [Ping timeout: 244 seconds]
sondr3 has joined #ruby
Rodya_ has joined #ruby
Dios has quit [Ping timeout: 252 seconds]
Moosashi has joined #ruby
dopie has quit [Quit: Lost terminal]
sondr3 has quit [Client Quit]
tjohnson has quit [Quit: Connection closed for inactivity]
thevaliantx has quit [Quit: Leaving]
swills has joined #ruby
sondr3 has joined #ruby
rmulligan has joined #ruby
coffeecupp has joined #ruby
Darmani has joined #ruby
arlek has quit [Ping timeout: 244 seconds]
<Darmani> Helloo ppl.
jenrzzz has joined #ruby
rmulligan has quit [Ping timeout: 252 seconds]
beta0x64 has joined #ruby
eregi has joined #ruby
trosborn has joined #ruby
arescorpio has joined #ruby
Rickmasta has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
Rickmasta has joined #ruby
braincras has quit [Quit: bye bye]
cyclonis has quit [Ping timeout: 244 seconds]
gix has quit [Ping timeout: 244 seconds]
A5101 has quit [Ping timeout: 244 seconds]
jayc0b0 has joined #ruby
vikas027 has left #ruby ["Textual IRC Client: www.textualapp.com"]
cdg has joined #ruby
eregi has quit [Ping timeout: 244 seconds]
braincrash has joined #ruby
braincrash is now known as braincras
diegoviola has quit [Quit: WeeChat 1.4]
Moosashi has quit [Quit: Moosashi]
gix has joined #ruby
coffeecupp has quit [Quit: Leaving]
coffeecupp has joined #ruby
blackmesa has quit [Ping timeout: 244 seconds]
s00pcan has quit [Read error: No route to host]
Moosashi has joined #ruby
cdg has quit [Ping timeout: 248 seconds]
Rodya_ has quit [Ping timeout: 248 seconds]
s00pcan has joined #ruby
trosborn has quit [Quit: trosborn]
ensyde_ has joined #ruby
Moosashi has quit [Quit: Moosashi]
cyclonis has joined #ruby
djbkd has quit [Ping timeout: 244 seconds]
jenrzzz has quit [Ping timeout: 276 seconds]
chipotle has quit [Ping timeout: 252 seconds]
symm- has quit [Ping timeout: 268 seconds]
tlaxkit has quit [Quit: ¡Adiós!]
helpa has quit [Remote host closed the connection]
helpa has joined #ruby
kam270 has joined #ruby
kam270 has quit [Max SendQ exceeded]
kam270 has joined #ruby
houhouli_ has joined #ruby
chipotle has joined #ruby
duckpuppy has joined #ruby
houhoulis has quit [Ping timeout: 252 seconds]
TDJACR has quit [Ping timeout: 268 seconds]
treaki__ has joined #ruby
duckpuppy has quit [Ping timeout: 244 seconds]
baweaver has joined #ruby
Guest98356 is now known as James
James is now known as Guest11449
c_nick has joined #ruby
<c_nick> def func(param1=90,param2="") p param1,param2 param 1 is nil .. why?
jeanlinux has joined #ruby
treaki_ has quit [Ping timeout: 260 seconds]
baweaver has quit [Ping timeout: 240 seconds]
<c_nick> erronous invocation my bad
jeanlinux has quit [Ping timeout: 246 seconds]
TDJACR has joined #ruby
rmulligan has joined #ruby
spuk has quit [Quit: Human beings were created by water to transport it uphill.]
Moosashi has joined #ruby
rmulligan has quit [Ping timeout: 252 seconds]
paul98_ has joined #ruby
paul98 has quit [Read error: Connection reset by peer]
hk238 has joined #ruby
elifoster has joined #ruby
A5101 has joined #ruby
benlieb has joined #ruby
ensyde_ has quit [Quit: Leaving]
djbkd has joined #ruby
c_nick has quit [Quit: Ex-Chat]
cyclonis has quit [Ping timeout: 248 seconds]
Guest34101 has quit [Ping timeout: 248 seconds]
karapetyan has joined #ruby
LoneHerm_ has joined #ruby
hgl has quit [Ping timeout: 260 seconds]
arquebus has joined #ruby
pawnbox has quit [Remote host closed the connection]
pawnbox has joined #ruby
karapetyan has quit [Ping timeout: 244 seconds]
arquebus has quit [Client Quit]
LoneHerm_ has quit [Ping timeout: 244 seconds]
hgl has joined #ruby
blackmesa has joined #ruby
<Moosashi> @Darmani hello
sp4rrow has quit [Quit: The Internet needs a break and I need a cookie]
ensyde_ has joined #ruby
Rodya_ has joined #ruby
<shevy> Darmani have you written more ruby code
<Darmani> Shevy<33
dubek has quit [Ping timeout: 248 seconds]
<Darmani> I have been practicing with Rails
charliesome has joined #ruby
sp4rrow has joined #ruby
Rodya_ has quit [Ping timeout: 250 seconds]
jenrzzz has joined #ruby
<Darmani> shevy: I feel like I've come to a roadstop. I'm in the process of hiring a tutor to help me continue learning.
mattwildig has quit [Remote host closed the connection]
houhouli_ has quit [Remote host closed the connection]
vishwa has quit [Ping timeout: 244 seconds]
jenrzzz has quit [Ping timeout: 240 seconds]
sdothum has quit [Quit: ZNC - 1.6.0 - http://znc.in]
<shevy> you just need to write more code!
dima_ has joined #ruby
axisys has quit [Remote host closed the connection]
DmitryBochkarev has quit [Ping timeout: 252 seconds]
coffeecupp has quit [Quit: Leaving]
DoubleMalt has joined #ruby
solocshaw has quit [Read error: Connection reset by peer]
solocshaw1 has joined #ruby
<Waheedi> I'm trying to figure out whats the difference in Array.pack("C*") in ruby 1.8.7 and 2.0.0?
<Waheedi> I'm getting this error pack': no implicit conversion of String into Integer (TypeError) on 2.0.0
BtcBen has joined #ruby
solocshaw1 is now known as solocshaw
UtkarshRay has quit [Remote host closed the connection]
<Ox0dea> Waheedi: https://eval.in/531218
<Waheedi> Thats great :) thank Ox0dea
<Waheedi> thanks*
<Ox0dea> Sure thing.
Guest11449 is now known as James
<Waheedi> I'm already running the two envs, so i believe that should not be the issue
James is now known as Guest5539
<Ox0dea> I think you might've missed the point of my demonstration.
babblebre has quit [Quit: Connection closed for inactivity]
<Ox0dea> Prior to 1.9, character literals and single-indexing into Strings returned Fixnums, which is what #pack expects for "C*".
soLucien has quit [Quit: Leaving]
rmulligan has joined #ruby
ramfjord has quit [Ping timeout: 244 seconds]
blackmesa has quit [Ping timeout: 276 seconds]
adgtl has joined #ruby
rmulligan has quit [Ping timeout: 252 seconds]
eregi has joined #ruby
baweaver has joined #ruby
kam270 has quit [Ping timeout: 244 seconds]
dc1 has quit [Quit: WeeChat 1.3]
eregi has quit [Ping timeout: 244 seconds]
dcunit3d has joined #ruby
ramfjord has joined #ruby
<Waheedi> i think i did Ox0dea, thats right
<Waheedi> thank you again
baweaver has quit [Ping timeout: 240 seconds]
adgtl has quit [Ping timeout: 248 seconds]
<Ox0dea> Waheedi: Sure, but "that should not be the issue" is a little worrying.
<Ox0dea> You won't be able to use integers and strings interchangeably for very long. :P
adgtl has joined #ruby
youch has joined #ruby
<Ox0dea> >> 'a' << 98 << ?c # Unless you're doing something like this, which you probably shouldn't.
<ruby[bot]> Ox0dea: # => "abc" (https://eval.in/531224)
eregi has joined #ruby
adgtl has quit [Read error: Connection reset by peer]
amincd has joined #ruby
<amincd> can someone ELI5 what to_a and to_ary do? And how they're different? I read the reference and I'm not groking it
<amincd> What are subclasses of Array?
<amincd> what will be returned if you apply to_ary to a subclass of Array?
adgtl has joined #ruby
nando294021 has quit [Ping timeout: 248 seconds]
eregi has quit [Ping timeout: 244 seconds]
<amincd> and what's the use of to_ary?
<Ox0dea> amincd: Just a sec.
<Ox0dea> amincd: https://eval.in/531225
arescorpio has quit [Quit: Leaving.]
kam270 has joined #ruby
Dios has joined #ruby
rrichardsr3 has joined #ruby
<rrichardsr3> if you see *(foo + bar) what does the * do?
<amincd> rrichardsr3: turns it into an array
<rrichardsr3> thanks!
rrichardsr3 has quit [Client Quit]
<amincd> I hope that was the right answer
f00dMonsta has quit [Remote host closed the connection]
kam270 has quit [Remote host closed the connection]
nando293921 has joined #ruby
dionysus69 has joined #ruby
eregi has joined #ruby
x77686d has quit [Quit: x77686d]
<amincd> what's the point of to_ary?
Rodya_ has joined #ruby
adgtl has quit [Remote host closed the connection]
adgtl has joined #ruby
adgtl has quit [Read error: No route to host]
TomPeed has joined #ruby
TomPeed is now known as justbleed
Rodya_ has quit [Ping timeout: 264 seconds]
floatingpoint has joined #ruby
<Cohedrin> amincd: in short
<Cohedrin> to_ary is used for implict conversions, to_a is for explicit conversions
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<Cohedrin> i.e., to_ary allows it to be used as an array, without actually converting it, to_a tries to convert the object to an array
lessless has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
duckpuppy has joined #ruby
adgtl has joined #ruby
rmulligan has joined #ruby
wildlander has quit [Quit: Saliendo]
duckpuppy has quit [Ping timeout: 268 seconds]
fedexo has quit [Ping timeout: 240 seconds]
blackmesa has joined #ruby
duncannz has joined #ruby
rmulligan has quit [Ping timeout: 252 seconds]
Guest5539 is now known as James
James is now known as Guest23983
Moosashi has quit [Quit: Moosashi]
jeanlinux has joined #ruby
<amincd> Cohedrin: thanks
<Cohedrin> np
JohnBat26 has joined #ruby
jeanlinux has quit [Ping timeout: 246 seconds]
sphex_ has quit [Ping timeout: 244 seconds]
statelesscode has joined #ruby
sphex has joined #ruby
LoneHermit has joined #ruby
Dios has quit [Ping timeout: 252 seconds]
ayonkhan has joined #ruby
ensyde__ has joined #ruby
adgtl has quit [Remote host closed the connection]
eljimmy has quit [Quit: Leaving]
adgtl has joined #ruby
benlieb has quit [Quit: benlieb]
JohnBat26 has quit [Ping timeout: 246 seconds]
adgtl has quit [Read error: Connection reset by peer]
LoneHermit has quit [Ping timeout: 244 seconds]
amincd has quit [Quit: Page closed]
ensyde_ has quit [Ping timeout: 268 seconds]
JohnBat26 has joined #ruby
ericn81 has quit [Ping timeout: 252 seconds]
<norc__> Ox0dea, while I was not aware of this explicitely, I am also not surprised.
<Ox0dea> norc__: It almost looks accidental, no?
elifoster has quit [Ping timeout: 276 seconds]
bob434 has quit [Quit: This computer has gone to sleep]
youch has quit [Quit: Konversation terminated!]
jenrzzz has joined #ruby
<norc__> seems quite intentional
<Ox0dea> norc__: So it does.
<Ox0dea> If `mlhs` is "method-call left-hand side", what's `mrhs`?
blackmesa has quit [Ping timeout: 276 seconds]
<Ox0dea> In hindsight, that M is almost certainly for "mass".
<Ox0dea> But then I don't understand why that section of parse.y is relevant.
Rodya_ has joined #ruby
<norc__> Ox0dea, okay a bit more context
rigel_ has joined #ruby
sq271 has quit [Ping timeout: 244 seconds]
<norc__> Ox0dea, https://github.com/ruby/ruby/blob/trunk/parse.y#L2917 this is the production rule for our `for x in
<Ox0dea> Yep, got there.
sq271 has joined #ruby
<Ox0dea> And that's probably the largest chunk of dispatch code in the whole gruesome thing.
<rigel_> What's the equivalent of python's pprint.pprint(object, compact=True) ? I know objects have a pp method, but their usage doesn't make much sense to me
<norc__> k_for is just a production rule for the terminal keyword_for
floatingpoint has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
<Ox0dea> norc__: Feel free to ELI>5.
<norc__> ELI?
Moosashi has joined #ruby
<rigel_> norc__: explain like I'm
<Ox0dea> rigel_: You probably want PP.pp, then.
<norc__> rigel_, Oh!
<rigel_> what should i `require` for that?
<Ox0dea> Just 'pp'.
<rigel_> 0x0dea: thanks. let me try it out.
<norc__> Ox0dea, and mlhs is indeed for mass assignment
Rodya_ has quit [Ping timeout: 244 seconds]
mattwildig has joined #ruby
<Ox0dea> norc__: What kind of assignment is #[]=?
<rigel_> how do i turn on that compact option though? (if it provides one)
<norc__> this produces foo[] for the left side.
<norc__> Ox0dea, which is a production rule for lhs, which is matched in for_var
<Ox0dea> rigel_: PP.pp takes an object, an IO to print to, and a maximum output width.
devbug has quit [Ping timeout: 248 seconds]
<rigel_> thanks. any other useful pretty printing tricks i can find out about? google doesn't yield a lot of comprehensible results
<Ox0dea> norc__: Ah, yes, I see it now; so it really is as if a literal '=' is being plonked onto the end there.
<norc__> Indeed.
<Ox0dea> rigel_: Use the source, Luke. :)
mattwildig has quit [Ping timeout: 260 seconds]
<norc__> Ox0dea, I think I had a rant of this behavior `for' a while ago since it does some non intuitive crap in that department.
<norc__> But then again I rant a lot.
<rigel_> but isn't PP built in the interpreter?
<Ox0dea> rigel_: No, it's part of the standard library.
<Ox0dea> norc__: Priceless: https://eval.in/531239
rmulligan has joined #ruby
<Ox0dea> Hey, why no modifier `for`, do you reckon?
Dragooon has joined #ruby
<norc__> you mean modifier_for ?
<Ox0dea> Yes, why is that not a thing?
<Ox0dea> I suspect they shied away from it because they'd have to hoist variables for it to work intuitively.
<norc__> You can easily make it a thing. It is just 3 files.
<norc__> Oh I don't believe that.
Don_John has quit [Read error: Connection reset by peer]
cdg has joined #ruby
<Ox0dea> Hm?
<norc__> Ox0dea, well I agree with you that its the reason (because the parser cannot know about the lvar when parsing the "block" of the for loop) it would be difficult
rmulligan has quit [Ping timeout: 252 seconds]
jenrzzz has quit [Ping timeout: 252 seconds]
<norc__> But these Japanese folks have yet to shy away from ugly hacks to make things happen in the MRI.
grassass has joined #ruby
cdg has quit [Ping timeout: 248 seconds]
rigel_ has quit [Quit: leaving]
uglybandersnatch has joined #ruby
Guest23983 is now known as James
James is now known as Guest51894
ohaibbq_ has joined #ruby
uglybandersnatch has quit [Ping timeout: 246 seconds]
ohaibbq has quit [Ping timeout: 250 seconds]
baweaver has joined #ruby
nogic has quit [Ping timeout: 240 seconds]
charliesome has joined #ruby
charliesome has quit [Client Quit]
baweaver has quit [Ping timeout: 240 seconds]
sq271 has quit [Ping timeout: 240 seconds]
nogic has joined #ruby
nogic has quit [Max SendQ exceeded]
intrigueD has joined #ruby
nogic has joined #ruby
sq271 has joined #ruby
mahk has quit [Quit: Quit.]
Waheedi has quit [Quit: Waheedi]
eregi has quit [Ping timeout: 246 seconds]
Moosashi has quit [Quit: Moosashi]
roshanavand has joined #ruby
blackmesa has joined #ruby
Guest34101 has joined #ruby
cubicme has joined #ruby
Rodya_ has joined #ruby
roshanavand has quit [Quit: This computer has gone to sleep]
roshanavand has joined #ruby
antgel has joined #ruby
neanderslob_ has joined #ruby
Rodya_ has quit [Ping timeout: 248 seconds]
firstdayonthejob has joined #ruby
adac has joined #ruby
rmulligan has joined #ruby
the_drow has joined #ruby
lxsameer has joined #ruby
justbleed has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Musashi007 has joined #ruby
rmulligan has quit [Ping timeout: 252 seconds]
htmldrum has joined #ruby
roshanavand has quit [Quit: This computer has gone to sleep]
jenrzzz has joined #ruby
Guest34101 has quit [Ping timeout: 252 seconds]
mlehrer has joined #ruby
duckpuppy has joined #ruby
morfin60 has joined #ruby
morfin has quit [Ping timeout: 260 seconds]
jenrzzz has quit [Ping timeout: 244 seconds]
alexherbo2 has joined #ruby
htmldrum has quit [Ping timeout: 252 seconds]
text1 has quit [Quit: Leaving]
duckpuppy has quit [Ping timeout: 260 seconds]
moeabdol2 has joined #ruby
htmldrum has joined #ruby
Guest51894 is now known as James
blackmesa has quit [Ping timeout: 276 seconds]
James is now known as Guest44319
jeanlinux has joined #ruby
graphettion has quit [Ping timeout: 244 seconds]
jeanlinux has quit [Ping timeout: 246 seconds]
intrigueD has quit [Remote host closed the connection]
jeanlinux has joined #ruby
jmdade has joined #ruby
htmldrum has quit [Ping timeout: 248 seconds]
dima_ has quit [Quit: This computer has gone to sleep]
lvn has joined #ruby
eregi has joined #ruby
htmldrum has joined #ruby
nando293921 has quit [Ping timeout: 260 seconds]
eregi has quit [Ping timeout: 246 seconds]
roshanavand has joined #ruby
Musashi007 has quit [Quit: Musashi007]
htmldrum has quit [Ping timeout: 248 seconds]
chipotle has quit [Quit: cheerio]
thevaliantx has joined #ruby
dionysus69 has quit [Ping timeout: 248 seconds]
Guest44319 has quit [Ping timeout: 276 seconds]
duncannz has quit [Remote host closed the connection]
Musashi007 has joined #ruby
nogic has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
nogic has joined #ruby
nogic has quit [Max SendQ exceeded]
Musashi007 has quit [Client Quit]
nogic has joined #ruby
jayc0b0 has quit [Remote host closed the connection]
nogic has quit [Max SendQ exceeded]
Ishido has joined #ruby
nogic has joined #ruby
Moosashi has joined #ruby
nogic has quit [Max SendQ exceeded]
nogic has joined #ruby
nogic has quit [Max SendQ exceeded]
nogic has joined #ruby
nogic has quit [Max SendQ exceeded]
nogic has joined #ruby
rmulligan has joined #ruby
siaw has joined #ruby
ohaibbq_ has quit [Quit: Leaving...]
nogic has quit [Client Quit]
dgncn has quit [Excess Flood]
dgncn has joined #ruby
avenj has quit [Ping timeout: 268 seconds]
mattwildig has joined #ruby
thevaliantx has quit [Quit: Leaving]
rmulligan has quit [Ping timeout: 252 seconds]
statelesscode has quit [Quit: statelesscode]
polyidus has joined #ruby
avenj has joined #ruby
mattwildig has quit [Ping timeout: 248 seconds]
danjam has joined #ruby
Contigi has quit [Ping timeout: 260 seconds]
JohnBat26 has quit [Quit: KVIrc 4.9.1 Aria http://www.kvirc.net/]
jmdade has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
jenrzzz has joined #ruby
mondok has joined #ruby
jmdade has joined #ruby
sandstrom has joined #ruby
blackmesa has joined #ruby
jenrzzz has quit [Ping timeout: 240 seconds]
jeanlinux has quit [Remote host closed the connection]
jeanlinux has joined #ruby
baweaver has joined #ruby
Moosashi has quit [Ping timeout: 244 seconds]
spider-mario has joined #ruby
jeanlinux has quit [Ping timeout: 246 seconds]
dionysus69 has joined #ruby
Rodya_ has joined #ruby
mdw has joined #ruby
mdw has quit [Client Quit]
Moosashi has joined #ruby
Rodya_ has quit [Ping timeout: 244 seconds]
beta0x64 has quit [Remote host closed the connection]
roshanavand has quit [Quit: This computer has gone to sleep]
platzhirsch has joined #ruby
platzhirsch has left #ruby [#ruby]
TomyLobo has joined #ruby
DmitryBochkarev has joined #ruby
eregi has joined #ruby
sandstrom has quit [Quit: My computer has gone to sleep.]
lessless has joined #ruby
eregi has quit [Ping timeout: 244 seconds]
Gasher has joined #ruby
roshanavand has joined #ruby
Abrin_AWAY has joined #ruby
ziyadb has joined #ruby
Moosashi_ has joined #ruby
Moosashi has quit [Read error: No route to host]
Moosashi_ is now known as Moosashi
rmulligan has joined #ruby
trosborn has joined #ruby
araujo_ has quit [Quit: Leaving]
BtcBen has quit [Ping timeout: 252 seconds]
jenrzzz has joined #ruby
rmulligan has quit [Ping timeout: 252 seconds]
Jackneill has joined #ruby
htmldrum has joined #ruby
baweaver has quit [Remote host closed the connection]
trosborn has quit [Quit: trosborn]
DmitryBochkarev has quit [Quit: This computer has gone to sleep]
surrounder has joined #ruby
polyidus has quit [Quit: Later]
sepp2k has joined #ruby
jenrzzz has quit [Ping timeout: 248 seconds]
karapetyan has joined #ruby
DmitryBochkarev has joined #ruby
dionysus69 has quit [Ping timeout: 240 seconds]
karapetyan has quit [Ping timeout: 244 seconds]
duckpuppy has joined #ruby
Abrin_AWAY has quit [Ping timeout: 244 seconds]
zeroDivisible has joined #ruby
j0n3 has joined #ruby
htmldrum has quit [Ping timeout: 250 seconds]
htmldrum has joined #ruby
Cohedrin has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
duckpuppy has quit [Ping timeout: 260 seconds]
aryaching has joined #ruby
trifling-jest has joined #ruby
<trifling-jest> hi, how to do validation when logging in, e.g. on username can't be blank?
dionysus69 has joined #ruby
<trifling-jest> where do i put validates_presence_of?
<manveru> trifling-jest: try #rubyonrails
htmldrum has quit [Ping timeout: 248 seconds]
<trifling-jest> oh geez i keep on posting here by mistake. thanks manveru!
Rodya_ has joined #ruby
htmldrum has joined #ruby
aryaching has quit [Ping timeout: 240 seconds]
trosborn has joined #ruby
trosborn has quit [Client Quit]
Rodya_ has quit [Ping timeout: 248 seconds]
jenrzzz has joined #ruby
djbkd has quit [Quit: My people need me...]
sameerynho has joined #ruby
<mondok> similar to ruby
toretore has quit [Ping timeout: 240 seconds]
lxsameer has quit [Ping timeout: 248 seconds]
jenrzzz has quit [Ping timeout: 244 seconds]
<manveru> no GC though
htmldrum has quit [Ping timeout: 244 seconds]
Moosashi has quit [Quit: Moosashi]
moeabdol2 has quit [Quit: WeeChat 1.4]
eregi has joined #ruby
htmldrum has joined #ruby
stardiviner has quit [Ping timeout: 260 seconds]
Mon_Ouie has joined #ruby
danjam has quit [Quit: Leaving.]
d0nn1e has quit [Ping timeout: 248 seconds]
eregi has quit [Ping timeout: 240 seconds]
asmodlol has joined #ruby
d0nn1e has joined #ruby
rmulligan has joined #ruby
Macaveli has joined #ruby
zenlot has quit [Ping timeout: 248 seconds]
rippa has joined #ruby
rmulligan has quit [Ping timeout: 252 seconds]
htmldrum has quit [Ping timeout: 248 seconds]
blackmesa has quit [Ping timeout: 244 seconds]
Xeago has joined #ruby
<shevy> tuna!
<shevy> finally the fish get to program as well
zenlot has joined #ruby
moeabdol has joined #ruby
moeabdol1 has joined #ruby
mondok has quit [Ping timeout: 244 seconds]
baweaver has joined #ruby
mattwildig has joined #ruby
moeabdol has quit [Ping timeout: 276 seconds]
moeabdol2 has joined #ruby
Tempesta has quit [Ping timeout: 244 seconds]
ayonkhan has quit [Quit: Textual IRC Client: www.textualapp.com]
moeabdol1 has quit [Ping timeout: 246 seconds]
lvn has quit [Ping timeout: 244 seconds]
<shevy> tuby - ruby for tuna
baweaver has quit [Ping timeout: 240 seconds]
jenrzzz has joined #ruby
mattwildig has quit [Ping timeout: 276 seconds]
Tempesta has joined #ruby
DmitryBochkarev has quit [Quit: This computer has gone to sleep]
jenrzzz has quit [Ping timeout: 250 seconds]
binaryplease has joined #ruby
FooMunki has joined #ruby
aspiers has joined #ruby
jeanlinux has joined #ruby
jenrzzz has joined #ruby
FernandoBasso has joined #ruby
uglybandersnatch has joined #ruby
jeanlinux has quit [Ping timeout: 246 seconds]
Gasher has quit [Quit: Leaving]
jenrzzz has quit [Ping timeout: 276 seconds]
Rodya_ has joined #ruby
kam270 has joined #ruby
mdw has joined #ruby
uglybandersnatch has quit [Ping timeout: 276 seconds]
aryaching has joined #ruby
firstdayonthejob has quit [Quit: WeeChat 1.4-dev]
nerium has quit [Quit: nerium]
htmldrum has joined #ruby
firstdayonthejob has joined #ruby
nerium has joined #ruby
Rodya_ has quit [Ping timeout: 276 seconds]
mdw has quit [Ping timeout: 240 seconds]
mdw has joined #ruby
obrientimothya has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client]
kam270 has quit [Quit: Leaving]
rmulligan has joined #ruby
htmldrum has quit [Ping timeout: 276 seconds]
eregi has joined #ruby
_ht has joined #ruby
jxs_ has quit [Remote host closed the connection]
blackmesa has joined #ruby
jeanlinux has joined #ruby
bob434 has joined #ruby
eregi has quit [Ping timeout: 240 seconds]
rmulligan has quit [Ping timeout: 252 seconds]
ElSif has quit [Read error: Connection reset by peer]
bob434 has quit [Remote host closed the connection]
_ht has quit [Read error: Connection reset by peer]
spider-mario has quit [Remote host closed the connection]
bob434 has joined #ruby
_ht has joined #ruby
spider-mario has joined #ruby
bob434 has quit [Client Quit]
last_staff has joined #ruby
codecop has joined #ruby
Azure has joined #ruby
sp4rrow has quit [Quit: The Internet needs a break and I need a cookie]
y2mq37 has quit [Ping timeout: 250 seconds]
SCHAAP137 has joined #ruby
lessless has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
symm- has joined #ruby
mdw has quit [Ping timeout: 240 seconds]
romero_ has quit [Ping timeout: 244 seconds]
mdw has joined #ruby
sp4rrow has joined #ruby
mdw has quit [Max SendQ exceeded]
jeanlinux has quit [Remote host closed the connection]
mdw has joined #ruby
charliesome has joined #ruby
mdw has quit [Max SendQ exceeded]
sauvin has quit [Remote host closed the connection]
sauvin has joined #ruby
blackmesa has quit [Ping timeout: 248 seconds]
kam270 has joined #ruby
y2mq37 has joined #ruby
y2mq37 has quit [Read error: Connection reset by peer]
biberu has joined #ruby
theRealAlexz has quit [Ping timeout: 276 seconds]
theRealAlexz has joined #ruby
cubicme has quit [Quit: cubicme]
mdw has joined #ruby
diegoviola has joined #ruby
mdw has quit [Max SendQ exceeded]
mdw has joined #ruby
DmitryBochkarev has joined #ruby
mdw has quit [Max SendQ exceeded]
duckpuppy has joined #ruby
johnmilton has joined #ruby
roshanavand has quit [Quit: This computer has gone to sleep]
blackmesa has joined #ruby
duckpuppy has quit [Ping timeout: 276 seconds]
jenrzzz has joined #ruby
johnmilton has quit [Ping timeout: 244 seconds]
<sameerynho> stupid guestion: are gem names case-sensitive ?
<apeiros> the require or the name of the gem itself?
FernandoBasso has quit [Remote host closed the connection]
riqj has joined #ruby
jenrzzz has quit [Ping timeout: 260 seconds]
<riqj> hello everyone, I'm getting this error: paste.ubuntu.com/15306752 could you please help me solve it?
maksbotan has joined #ruby
j3r0 has joined #ruby
maksbotan has left #ruby ["http://quassel-irc.org - Chat comfortably. Anywhere."]
maksbotan has joined #ruby
maksbotan has left #ruby ["http://quassel-irc.org - Chat comfortably. Anywhere."]
Rodya_ has joined #ruby
<apeiros> riqj: don't know heroku command, but the error sounds like you should pass a -e option?
<riqj> apeiros, that means I need to add '-e' to the respective line?
jeanlinux has joined #ruby
<apeiros> that means you should look up how to properly invoke the command
<apeiros> you know, read those things, how are they called again? ah right: documentation
tungd has joined #ruby
pawnbox has quit [Remote host closed the connection]
skade has joined #ruby
zapata has quit [Quit: WeeChat 1.4]
dcunit3d has quit [Quit: WeeChat 1.3]
Rodya_ has quit [Ping timeout: 240 seconds]
Mon_Ouie has quit [Ping timeout: 244 seconds]
A5101 has quit [Ping timeout: 276 seconds]
rmulligan has joined #ruby
<riqj> hmm, is that what they call a mirror image, apeiros: http://ruby-doc.org/stdlib-1.9.2/libdoc/optparse/rdoc/OptionParser/MissingArgument.html ? besides the error is not about heroku
johnmilton has joined #ruby
dcunit3d has joined #ruby
dcunit3d has quit [Client Quit]
dcunit3d has joined #ruby
rmulligan has quit [Ping timeout: 252 seconds]
<sameerynho> apeiros, hmm both the require name and gem name on rubygems.org
stannard has joined #ruby
IrishGringo has joined #ruby
<apeiros> sameerynho: gem name itself - not sure. I think not. require depends on your file system.
<apeiros> it's probably in both cases better if you consider it to be case sensitive.
eregi has joined #ruby
<sameerynho> apeiros, thanks man
baweaver has joined #ruby
Rutix has joined #ruby
Rutix has joined #ruby
eregi has quit [Ping timeout: 260 seconds]
htmldrum has joined #ruby
Gasher has joined #ruby
blackmesa has quit [Ping timeout: 250 seconds]
stannard has quit [Remote host closed the connection]
baweaver has quit [Ping timeout: 248 seconds]
Prominent has joined #ruby
<riqj> the error is removed now after I applied 'gem install rspec --no-http-proxy' as recommended here: http://help.rubygems.org/discussions/problems/1632-rails-installation-fails
<riqj> oh, no, overlooked..it isnt removed, it got even more
Macaveli has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
htmldrum has quit [Ping timeout: 244 seconds]
<riqj> paste.ubuntu.com/15307022
chipotle has joined #ruby
<riqj> uninstalled rspec and it resumed the former state. can someone help me please?
riqj has quit [Quit: Leaving]
dima_ has joined #ruby
DmitryBochkarev has quit [Ping timeout: 248 seconds]
jeanlinux has quit [Remote host closed the connection]
jeanlinux has joined #ruby
TomyLobo has quit [Ping timeout: 244 seconds]
jenrzzz has joined #ruby
mattwildig has joined #ruby
jeanlinux has quit [Ping timeout: 246 seconds]
blackmesa has joined #ruby
mattwildig has quit [Ping timeout: 244 seconds]
The_Phoenix has joined #ruby
The_Phoenix has quit [Changing host]
The_Phoenix has joined #ruby
moeabdol3 has joined #ruby
ht_ has joined #ruby
Guest34101 has joined #ruby
moeabdol2 has quit [Ping timeout: 260 seconds]
T7rees has joined #ruby
c_nick has joined #ruby
_ht has quit [Ping timeout: 268 seconds]
<c_nick> how to merge a={b=>{c=>3}} with a={b=>{d=>4}}
Macaveli has joined #ruby
<apeiros> c_nick: merge takes a block. recursively merge using it.
sebyx07 has joined #ruby
cubicme has joined #ruby
Prominent has quit [Ping timeout: 240 seconds]
jenrzzz has quit [Ping timeout: 276 seconds]
Prominent has joined #ruby
aryaching has quit [Ping timeout: 246 seconds]
roshanavand has joined #ruby
rmulligan has joined #ruby
Rodya_ has joined #ruby
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<c_nick> apeiros, i can do a[b] with a[d] but is there a better way to do it
<c_nick> its actually a and z .. different hashes
<apeiros> that explanation makes little sense to me
pawnbox has joined #ruby
<apeiros> deep = ->(k,v1,v2) { v1.merge(v2, &deep) }; a.merge(b, &deep) # an example of what I meant. will fail if you have shared keys.
<apeiros> *if you have shared keys which are not hashes
<nerium> Is there a way to delegate all method calls? To say that I want to deligate obj.test to obj.hello.test
<apeiros> nerium: check Forwardable and SimpleDelegator
<nerium> apeiros: thanks
Rodya_ has quit [Ping timeout: 248 seconds]
rmulligan has quit [Ping timeout: 252 seconds]
aryaching has joined #ruby
jenrzzz has joined #ruby
ebbflowgo has quit [Quit: ebbflowgo]
blackmesa has quit [Ping timeout: 276 seconds]
ebbflowgo has joined #ruby
pawnbox has quit [Ping timeout: 260 seconds]
htmldrum has joined #ruby
sandstrom has joined #ruby
adac has quit [Ping timeout: 268 seconds]
cyclonis has joined #ruby
houhoulis has joined #ruby
kam270 has quit [Quit: Leaving]
<morfin60> apeiros, is that strange lambdas syntax?
eregi has joined #ruby
<adaedra> >> -> () { yes }
<ruby[bot]> adaedra: # => #<Proc:0x408c9b24@/tmp/execpad-8cc3a25ee06a/source-8cc3a25ee06a:2 (lambda)> (https://eval.in/531310)
idletask has quit [Ping timeout: 240 seconds]
<morfin60> >> foo = -> (a,b) { a + b } foo(66,10)
<morfin60> hmm
ht_ has quit [Remote host closed the connection]
<adaedra> you need to be registered, and you lacked a ; anyway.
<morfin60> ah i forgot to identify myself
skade has quit [Quit: Computer has gone to sleep.]
morfin60 is now known as morfin
<morfin> >> foo = -> (a,b) { a + b }; foo(66,10)
<ruby[bot]> morfin: # => undefined method `foo' for main:Object ...check link for more (https://eval.in/531311)
<adaedra> and a ., too
<adaedra> >> foo = -> (a,b) { a + b }; foo.(66,10)
<ruby[bot]> adaedra: # => 76 (https://eval.in/531312)
<morfin> what a strange syntax
darkxploit has joined #ruby
htmldrum has quit [Ping timeout: 276 seconds]
<adaedra> as you can't call lambdas directly
darkxploit has quit [Max SendQ exceeded]
<adaedra> (`.()` is a shortcut for `.call()`)
<shevy> ewww
charliesome has joined #ruby
darkxploit has joined #ruby
darkxploit has quit [Max SendQ exceeded]
hnagamin has joined #ruby
darkxploit has joined #ruby
eregi has quit [Ping timeout: 276 seconds]
<c_nick> apeiros, I need to extend hash1 with the key values of hash2 they have nothing else
<c_nick> hash1 and hash2 are mutually exclusive
intrigueD has joined #ruby
IrishGringo has quit [Ping timeout: 250 seconds]
IrishGringo has joined #ruby
sameerynho has quit [Quit: Leaving]
zapata has joined #ruby
codecop has quit [Remote host closed the connection]
idletask has joined #ruby
Macaveli has quit [Quit: Textual IRC Client: www.textualapp.com]
ensyde__ has quit [Ping timeout: 240 seconds]
jeanlinux has joined #ruby
hgl has quit [Ping timeout: 244 seconds]
intrigueD has quit [Remote host closed the connection]
marsjaninzmarsa has quit [Ping timeout: 240 seconds]
marsjaninzmarsa has joined #ruby
jeanlinux has quit [Ping timeout: 246 seconds]
symm- has quit [Ping timeout: 244 seconds]
dtordable has quit [Remote host closed the connection]
<havenwood> c_nick: { |_, a, b| a.merge b }
trifling-jest has quit [Ping timeout: 276 seconds]
adac has joined #ruby
<morfin> adaedra, i just came from PHP/C++/JS where you can call them directly that's why i did not know
cubicme has quit [Quit: cubicme]
vishwa has joined #ruby
danjam has joined #ruby
Tempesta has quit [Read error: Connection reset by peer]
Tempesta has joined #ruby
Tempesta has quit [Read error: Connection reset by peer]
duckpuppy has joined #ruby
rkoller has joined #ruby
Tempesta has joined #ruby
Tempesta has quit [Read error: Connection reset by peer]
jenrzzz has quit [Ping timeout: 252 seconds]
UtkarshRay has joined #ruby
dome22xl has quit [Ping timeout: 276 seconds]
Prominent has quit [Read error: Connection reset by peer]
Tempesta has joined #ruby
Tempesta has quit [Read error: Connection reset by peer]
Prominent has joined #ruby
Tempesta has joined #ruby
Tempesta has quit [Read error: Connection reset by peer]
Tempesta has joined #ruby
bob434 has joined #ruby
bob434 has quit [Remote host closed the connection]
duckpuppy has quit [Ping timeout: 276 seconds]
rmulligan has joined #ruby
Gasher has quit [Quit: Leaving]
dtordable has joined #ruby
bob434 has joined #ruby
<shevy> hmm... Date::MONTHNAMES starts with a nil?
sdothum has joined #ruby
mattwildig has joined #ruby
Guest34101 has quit [Ping timeout: 276 seconds]
bob434 has quit [Client Quit]
stevednd has quit [Quit: Leaving]
rmulligan has quit [Ping timeout: 252 seconds]
ebbflowgo has quit [Quit: ebbflowgo]
lessless has joined #ruby
Prominent has quit [Ping timeout: 244 seconds]
bob434 has joined #ruby
Rodya_ has joined #ruby
flughafen_ has quit [Quit: WeeChat 1.3]
<jhass> shevy: yes, so you can Date::MONTHNAMES[some_date.month]
blackmesa has joined #ruby
<shevy> aha
dionysus69 has quit [Remote host closed the connection]
dionysus69 has joined #ruby
ebbflowgo has joined #ruby
Rodya_ has quit [Ping timeout: 240 seconds]
Tempesta has quit [Read error: Connection reset by peer]
Tempesta has joined #ruby
Tempesta has quit [Read error: Connection reset by peer]
lessless has quit [Quit: Textual IRC Client: www.textualapp.com]
Tempesta has joined #ruby
Tempesta has quit [Read error: Connection reset by peer]
Tempesta has joined #ruby
bob434 has quit [Quit: This computer has gone to sleep]
<morfin> lol
<morfin> >> Date.new
<ruby[bot]> morfin: # => uninitialized constant Date ...check link for more (https://eval.in/531329)
Tempesta has quit [Read error: Connection reset by peer]
<morfin> >> require 'date'; Date.new()
<ruby[bot]> morfin: # => #<Date: -4712-01-01 ((0j,0s,0n),+0s,2299161j)> (https://eval.in/531330)
<hanmac> shevy yeah since new calender reform there is a nil month ;P
<morfin> what is that year
freerobby has joined #ruby
Tempesta has joined #ruby
shinnya has quit [Ping timeout: 276 seconds]
sondr3 has quit [Ping timeout: 264 seconds]
Tempesta has quit [Read error: Connection reset by peer]
<morfin> why starting point for Date object is -4712?
karapetyan has joined #ruby
Tempesta has joined #ruby
arlek has joined #ruby
Tempesta has quit [Read error: Connection reset by peer]
chipotle has quit [Quit: cheerio]
eregi has joined #ruby
Tempesta has joined #ruby
<shevy> "The Julian day number is in elapsed days since noon (Greenwich mean time) on January 1, 4713 BCE (in the Julian calendar)."
Tempesta has quit [Read error: Connection reset by peer]
<morfin> what a strange idea to use that calendar
<shevy> you need to start somewhere
karapetyan has quit [Ping timeout: 250 seconds]
<apeiros> morfin: why not? which starting point would you have chosen?
<apeiros> morfin: julian day isn't an invention by ruby. see https://en.wikipedia.org/wiki/Julian_day
bluOxigen has joined #ruby
<shevy> even the old popes would have used ruby!
baweaver has joined #ruby
eregi has quit [Ping timeout: 244 seconds]
x77686d has joined #ruby
jeanlinux has joined #ruby
bob434 has joined #ruby
InternetFriend has joined #ruby
<idletask> >> 128.to_s
<ruby[bot]> idletask: # => "128" (https://eval.in/531331)
<idletask> >> 128.to_s()
<ruby[bot]> idletask: # => "128" (https://eval.in/531332)
<idletask> Gee, that's unnerving to see that you can forget about parens
intrigueD has joined #ruby
sebyx07 has quit [Quit: Page closed]
bob434 has quit [Client Quit]
mattwildig has quit [Remote host closed the connection]
shadeslayer has joined #ruby
<shevy> you can use parens
<shevy> stop forgetting them
baweaver has quit [Ping timeout: 250 seconds]
LoneHerm_ has joined #ruby
Vingador has joined #ruby
intrigueD has quit [Remote host closed the connection]
mattwildig has joined #ruby
LoneHerm_ has quit [Ping timeout: 246 seconds]
diegoviola has quit [Quit: WeeChat 1.4]
IrishGringo has quit [Ping timeout: 268 seconds]
skade has joined #ruby
dima_ has quit [Quit: This computer has gone to sleep]
DmitryBochkarev has joined #ruby
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
skade has quit [Client Quit]
b|ackwolf has joined #ruby
dionysus69 has quit [Ping timeout: 244 seconds]
skade has joined #ruby
n008f4g_ has joined #ruby
<b|ackwolf> what I should I do after I read two first chapters of "The Well-Grounded Rubyist"?
Guest34101 has joined #ruby
blackmesa has quit [Ping timeout: 268 seconds]
<morfin> apeiros, i know - as example 0000-01-01?
<morfin> or idk
<apeiros> you knew about jd and still asked? :)
IrishGringo has joined #ruby
<c_nick> Thanks havenwood
<c_nick> sorry was AFK
freerobby has quit [Quit: Leaving.]
dionysus69 has joined #ruby
eurialo has joined #ruby
<shevy> b|ackwolf start some project, write a gem for it as you go
Xeago has quit [Remote host closed the connection]
Xeago has joined #ruby
chipotle has joined #ruby
Sucks has joined #ruby
danjam has quit [Ping timeout: 240 seconds]
Vingador has quit [Ping timeout: 244 seconds]
<dtordable> shevy!!!!
Xeago has quit [Ping timeout: 244 seconds]
rmulligan has joined #ruby
DoubleMalt has quit [Remote host closed the connection]
pawnbox has joined #ruby
<havenwood> b|ackwolf: Or read the third chapter!
rmulligan has quit [Ping timeout: 252 seconds]
ebbflowgo has quit [Quit: ebbflowgo]
<havenwood> b|ackwolf: Or looking at what's covered in Chapters 1 and 2 maybe it'd be a good time to checkout the Pry gem as an alternative to IRB.
Vingador has joined #ruby
<havenwood> ?pry b|ackwolf
* havenwood pokes ruby[bot]
pawnbox has quit [Ping timeout: 248 seconds]
<apeiros> ?pry b|ackwolf
<ruby[bot]> b|ackwolf: Pry, the better IRB. Includes easy object inspection via `ls`, `history`, docs view with `?`, source view with `$` and syntax highlighting, among other features (see `help` for more). It can also be used for easy debugging by putting `binding.pry` directly in your source code. Visit https
<ruby[bot]> ://pryrepl.org/ or get it now with: gem install pry pry-doc
<apeiros> ew, why does that span two messages?
crowell has quit [Ping timeout: 244 seconds]
uglybandersnatch has joined #ruby
<adaedra> too long?
diegoviola has joined #ruby
<adaedra> should at least not split the url :/
<apeiros> the splitting algorithm is word-based I think. and https is \b
Billias has quit [Read error: Connection reset by peer]
<b|ackwolf> havenwood, apeiros thank you for your mention
sondr3 has joined #ruby
crowell has joined #ruby
<jhass> it didn't use to span two, mh
<jhass> prefix too long now?
<apeiros> I thought we had shortened this one to span only one message.
<apeiros> meh
<apeiros> gotta get afk
uglybandersnatch has quit [Ping timeout: 260 seconds]
sondr3 has quit [Ping timeout: 248 seconds]
Billias has joined #ruby
Rodya_ has joined #ruby
sp4rrow has quit [Quit: The Internet needs a break and I need a cookie]
Rodya_ has quit [Ping timeout: 248 seconds]
diegoviola has quit [Read error: No route to host]
cyclonis has quit [Ping timeout: 248 seconds]
FooMunki has quit [Quit: FooMunki]
adac has quit [Ping timeout: 246 seconds]
htmldrum has joined #ruby
FooMunki has joined #ruby
T7rees has quit [Quit: Connection closed for inactivity]
the_drow has quit [Quit: This computer has gone to sleep]
graphettion has joined #ruby
ebbflowgo has joined #ruby
solars has quit [Ping timeout: 246 seconds]
eregi has joined #ruby
Channel6 has joined #ruby
biberu has quit [Ping timeout: 244 seconds]
despai has joined #ruby
eregi has quit [Ping timeout: 240 seconds]
havenwood has quit [Remote host closed the connection]
aryaching has quit [Read error: Connection reset by peer]
aryaching has joined #ruby
jeanlinu_ has joined #ruby
havenwood has joined #ruby
joneshf-laptop has joined #ruby
jeanlinux has quit [Ping timeout: 246 seconds]
tvw has joined #ruby
nando293921 has joined #ruby
htmldrum has quit [Ping timeout: 276 seconds]
Aviio has joined #ruby
cyclonis has joined #ruby
mlehrer has quit [Remote host closed the connection]
blackmesa has joined #ruby
dionysus69 has quit [Quit: dionysus69]
freerobby has joined #ruby
codecop has joined #ruby
pawnbox has joined #ruby
chipotle has quit [Quit: cheerio]
vdamewood has joined #ruby
ebbflowgo has quit [Read error: Connection reset by peer]
ebbflowgo has joined #ruby
rmulligan has joined #ruby
s00pcan has quit [Ping timeout: 264 seconds]
A124 has quit [Quit: '']
s00pcan has joined #ruby
A124 has joined #ruby
rmulligan has quit [Ping timeout: 252 seconds]
duckpuppy has joined #ruby
blackmesa has quit [Ping timeout: 248 seconds]
chipotle has joined #ruby
duckpuppy has quit [Ping timeout: 276 seconds]
Gasher has joined #ruby
Sucks has quit [Ping timeout: 264 seconds]
InternetFriend has quit [Ping timeout: 260 seconds]
<shevy> has anyone ported/tried to use mruby and compare it to MRI? significantly faster?
LoneHerm_ has joined #ruby
chipotle has quit [Quit: cheerio]
deuxclique has joined #ruby
Rodya_ has joined #ruby
deuxclique has quit [Remote host closed the connection]
skweek has joined #ruby
Industrial has joined #ruby
deuxclique has joined #ruby
<Industrial> Hi. I used to use a tool that was a ruby gem that allowed me to use git very easily
<Industrial> it did a stash if you have changes, then a pull with a rebase (at least thats my default strategy)
<Industrial> then unstash
<Industrial> But I lost the name :(
Rodya_ has quit [Ping timeout: 240 seconds]
ruby[bot] has left #ruby ["leaving"]
ruby[bot] has joined #ruby
atomical has joined #ruby
Kilo`byte has quit [Ping timeout: 246 seconds]
Industrial has quit [Ping timeout: 252 seconds]
trinaldi has quit [Quit: WeeChat 1.5-dev]
adgtl has joined #ruby
antgel has quit [Ping timeout: 268 seconds]
trinaldi has joined #ruby
IrishGringo has quit [Ping timeout: 240 seconds]
jeanlinu_ has quit [Read error: Connection reset by peer]
c_nick has quit [Quit: Ex-Chat]
eregi has joined #ruby
zast has joined #ruby
nando293921 has quit [Ping timeout: 240 seconds]
mlehrer has joined #ruby
aryaching has quit []
Uranio has joined #ruby
<Uranio> hi there, would be posible to declare, path for gem in a Gemfile???
eregi has quit [Ping timeout: 252 seconds]
<jhass> yes
tungd has quit [Quit: Dreaming...]
<Uranio> how??? I declared path 'somewhere/someplace' and it does not work
eurialo has quit [Ping timeout: 252 seconds]
deuxcliq_ has joined #ruby
<jhass> ?fake
<ruby[bot]> Please show your real code to illustrate your problem. Using fake code often hides it or won't bring up the best possible solution.
<Uranio> ok... let upload a gist
bob434 has joined #ruby
darkf has quit [Quit: Leaving]
ych has joined #ruby
mondok has joined #ruby
<Uranio> jhass: ^
karapetyan has joined #ruby
deuxclique has quit [Ping timeout: 248 seconds]
<jhass> I'm not sure what that's supposed to do
<jhass> you want to declare the --path option inside the Gemfile?
<jhass> you can't do that
<Uranio> :-/
<Uranio> would be very nice to do it
IrishGringo has joined #ruby
siaw has quit [Quit: siaw]
The_Phoenix has quit [Read error: Connection reset by peer]
chipotle has joined #ruby
kalz has quit [Ping timeout: 250 seconds]
karapetyan has quit [Remote host closed the connection]
TripleK has joined #ruby
TripleK was kicked from #ruby by ChanServ [Banned: racists not welcome]
wtrocki has joined #ruby
eurialo has joined #ruby
dcunit3d has quit [Quit: WeeChat 1.4]
kalzz has quit [Ping timeout: 248 seconds]
capecarnation has joined #ruby
rmulligan has joined #ruby
dcunit3d has joined #ruby
j3r0 has quit [Quit: Leaving]
atomical_ has joined #ruby
capecarnation has quit [Client Quit]
thevaliantx has joined #ruby
karapetyan has joined #ruby
Kilo`byte has joined #ruby
<thevaliantx> i'm installing ruby right now with rvm. i don't have a clue as to what versions or types of rubies i should install. there is stuff like opal, rubinius, jruby, all sorts. is there a website that goes into detail of what these things are?
Jardayn has joined #ruby
kalzz has joined #ruby
Abrin_AWAY has joined #ruby
atomical has quit [Ping timeout: 260 seconds]
<jhass> thevaliantx: pick ruby-2.3.0 until you find a reason not to
pwnd_nsfw` has joined #ruby
<thevaliantx> jhass: i'm asking what the other groups are or.
rmulligan has quit [Ping timeout: 252 seconds]
Dios has joined #ruby
<Uranio> thevaliantx: or just install "ruby" and it will install the best option
Dios has quit [Client Quit]
<Uranio> jruby is the Java Ruby's implementations
<Aviio> Someone recommended not to use rvm the other day, cant remember the reason why though
<Uranio> for that Java's lover
<Uranio> Aviio: I guest it is a dirty solution
<Uranio> best use docker, for ruby enviromments
<Uranio> in my irrelevant opinion
<thevaliantx> no, your opinion is not irrelevant.
<thevaliantx> i am open-minded.
<thevaliantx> not gullible. usually.
symm- has joined #ruby
dcunit3d has quit [Quit: WeeChat 1.4]
kalzz has quit [Ping timeout: 260 seconds]
dcunit3d has joined #ruby
charliesome has joined #ruby
vdamewood has quit [Quit: Life beckons.]
pwnd_nsfw has quit [Ping timeout: 268 seconds]
elifoster has joined #ruby
adgtl has quit [Remote host closed the connection]
<Uranio> but I'm nobody in the ruby community, so, do not give so mucho score to my opinion
jyaworski has joined #ruby
adgtl has joined #ruby
adgtl has quit [Changing host]
adgtl has joined #ruby
joneshf-laptop has quit [Quit: Leaving]
the_drow has joined #ruby
skade has quit [Quit: Computer has gone to sleep.]
<jhass> thevaliantx: what do you install ruby for?
adgtl has quit [Ping timeout: 244 seconds]
Rodya_ has joined #ruby
<thevaliantx> jhass: your question is too vague
adgtl has joined #ruby
ljames has quit []
<morfin> hmm i used rvm
<morfin> being able to switch versions is pretty nice
jeanlinux has joined #ruby
<Uranio> and manage gem sets
<morfin> yes
diegoviola has joined #ruby
<Uranio> thevaliantx: I guest the jhass is not so vague, RVM is good for something, and for others not... so jhass is trying to fetch wich enviromment are you using ruby
<jhass> bundler made gemsets obsolete for me
* Uranio apologize by dirty english
<thevaliantx> Uranio: oh. i have no real interest in creating web sites, just want to learn ruby for command line and maybe desktop stuff.
firstdayonthejob has quit [Quit: WeeChat 1.4-dev]
<Uranio> thevaliantx: :-/ ruby is not the best thing for make "desktop stuff"
atomical has joined #ruby
<Uranio> thereofore the worse
firstdayonthejob has joined #ruby
<jhass> then my suggestion stays, stay with ruby-2.3.0 and learn about the other things once you're familiar with it
<thevaliantx> jhass: okay, sounds like a plan.
<jhass> it's complexity/considerations you don't need to worry about at all currently
<Uranio> thevaliantx: some distros, like Arch or Feodra, provide a good release of ruby
<thevaliantx> okay. i appreciate you looking out for me :)
<thevaliantx> i think ruby syntax is pretty, that's part of the appeal for me.
<Uranio> the best option for begin programming
<Uranio> or hobbie programming
firstdayonthejob has quit [Client Quit]
atomical_ has quit [Ping timeout: 268 seconds]
<thevaliantx> right now my son and i are learning python, javascript and html/css. i bought The Well Grounded Rubyist, we'll probably go through the book together this upcoming homeschool year. right now we're getting into file i/o and gui stuff with python
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
firstdayonthejob has joined #ruby
<Uranio> I suggest to read Ruby Programming, AKAS "the pickaxe book"
<thevaliantx> i took another look at Haskell last night and i can see right off the bat that it's 'mind bending', that it would help me with function programming in python.
<thevaliantx> Uranio: yes, on Amazon that book is often referenced in other book reviews :D
<Uranio> thevaliantx: you mey salgo like Clojure if like Python and Haskell
<thevaliantx> though The Well Grounded Rubyist has gotten good reviews, a quick glance through it tells me that it is very 'wordy', not a whole lot of syntax being shown. my initial experience echoes that of the reviews. it also does not offer exercises at the end of each chapter, which i think is not a good thing.
gregf1 has quit [Quit: WeeChat 1.4]
charliesome has joined #ruby
sleepee has joined #ruby
<Uranio> thevaliantx: ths fastest way to learn ruby is "why's poignangt guide to ruby"
adgtl has quit [Remote host closed the connection]
<Uranio> pdf book and website
adgtl has joined #ruby
adgtl has quit [Changing host]
adgtl has joined #ruby
<thevaliantx> thank you Uranio! will definitely take a peek.
<kaleido> ill second that
Waheedi has joined #ruby
<kaleido> its very poignant
mattwildig has quit [Remote host closed the connection]
<Waheedi> its the first time i encounter poignant :
<Waheedi> thanks kaleido
speakingcode has joined #ruby
firstdayonthejob has quit [Quit: WeeChat 1.4]
<thevaliantx> i like Why's sense of humor, haha
firstdayonthejob has joined #ruby
<Waheedi> as a word I mean
jeanlinux has quit [Remote host closed the connection]
<Waheedi> :)
IrishGringo has quit [Ping timeout: 248 seconds]
Vingador has quit [Quit: Leaving]
jeanlinux has joined #ruby
adgtl has quit [Ping timeout: 244 seconds]
terlar has joined #ruby
adgtl has joined #ruby
terlar has quit [Client Quit]
<Uranio> un saludo desde Cuba, hasta la vista
Uranio has quit [Quit: Leaving]
deuxcliq_ has quit [Remote host closed the connection]
InternetFriend has joined #ruby
jeanlinux has quit [Remote host closed the connection]
eregi has joined #ruby
fedexo has joined #ruby
kith_ is now known as kith
houhoulis has quit [Remote host closed the connection]
mattwildig has joined #ruby
SenpaiSilver_ has joined #ruby
jeanlinux has joined #ruby
Don_John has joined #ruby
ftj has joined #ruby
adgtl has quit [Remote host closed the connection]
atomical_ has joined #ruby
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
Don_John has quit [Max SendQ exceeded]
LoneHerm_ has quit [Remote host closed the connection]
InternetFriend has quit [Ping timeout: 260 seconds]
Don_John has joined #ruby
eregi has quit [Ping timeout: 250 seconds]
jeanlinux has quit [Remote host closed the connection]
karapetyan has quit [Remote host closed the connection]
skullcrasher has left #ruby ["Leaving"]
SenpaiSilver_ has quit [Read error: Connection reset by peer]
SenpaiSilver_ has joined #ruby
atomical has quit [Ping timeout: 246 seconds]
Rodya_ has quit [Remote host closed the connection]
<thevaliantx> even with Bundler you still need to know which gems you want, right? are gems something that i can ignore right now learning ruby?
Don_John_ has joined #ruby
<jhass> probably. Gems are ruby libraries
<jhass> any sane book should explain them to you in case you need them in order to follow it
blackmesa has joined #ruby
Don_John has quit [Ping timeout: 248 seconds]
<thevaliantx> okay
speakingcode has quit [Ping timeout: 264 seconds]
A124 has quit [Quit: '']
rmulligan has joined #ruby
A124 has joined #ruby
n1colas has quit [Quit: WeeChat 1.4]
eregi has joined #ruby
chipotle has quit [Quit: cheerio]
jordanm has quit [Quit: Konversation terminated!]
Sucks has joined #ruby
n1colas has joined #ruby
rmulligan has quit [Ping timeout: 252 seconds]
vF3hNGxc47h8 has joined #ruby
<b|ackwolf> does anybody saw this image? http://i.stack.imgur.com/XDHjA.jpg
the_drow has quit [Quit: This computer has gone to sleep]
ftj has quit [Quit: Textual IRC Client: www.textualapp.com]
diegoviola has quit [Quit: WeeChat 1.4]
despai has quit [Quit: This computer has gone to sleep]
chipotle has joined #ruby
<b|ackwolf> what does red arrow means?
Rodya_ has joined #ruby
BtcBen has joined #ruby
jeanlinux has joined #ruby
griffindy has joined #ruby
<havenwood> b|ackwolf: It means it inherits from the thing being pointed at.
adgtl has joined #ruby
stannard has joined #ruby
<b|ackwolf> havenwood, thanks.
adgtl has quit [Remote host closed the connection]
jyaworski has quit [Quit: jyaworski]
shinnya has joined #ruby
adgtl has joined #ruby
Rodya_ has quit [Remote host closed the connection]
Sucks has quit [Read error: Connection reset by peer]
Sucks has joined #ruby
Sucks has quit [Max SendQ exceeded]
Sucks has joined #ruby
Sucks has quit [Max SendQ exceeded]
<thevaliantx> very interesting images, guys :) i've always enjoyed flowcharting, diagramming and looking at them
eurialo has quit [Ping timeout: 244 seconds]
duckpuppy has joined #ruby
dopamean_ has joined #ruby
SeanM has joined #ruby
SeanM has left #ruby [#ruby]
duckpuppy has quit [Ping timeout: 276 seconds]
fantasticsid has joined #ruby
rkoller has quit [Quit: Textual IRC Client: www.textualapp.com]
bry4n has joined #ruby
eljimmy has joined #ruby
microt has quit [Quit: goodbye]
microt has joined #ruby
Channel6 has quit [Quit: Leaving]
SeanM has joined #ruby
Cohedrin has joined #ruby
ur5us has joined #ruby
sgambino has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
adac has joined #ruby
Limix has joined #ruby
InternetFriend has joined #ruby
baweaver has joined #ruby
<Limix> If I need to setup a task to run every 3 minutes 24/7, is it better to just setup a cron job or use something like sidekiq
stannard has quit [Remote host closed the connection]
ur5us has quit [Ping timeout: 260 seconds]
eurialo has joined #ruby
atomical_ has quit [Ping timeout: 244 seconds]
atomical has joined #ruby
kirun has joined #ruby
jeanlinux has quit [Remote host closed the connection]
despai has joined #ruby
blackmes1 has joined #ruby
myntcake has joined #ruby
firstdayonthejob has quit [Ping timeout: 244 seconds]
blackmesa has quit [Ping timeout: 248 seconds]
ur5us has joined #ruby
vdamewood has joined #ruby
bMalum has joined #ruby
blackmes1 has quit [Ping timeout: 268 seconds]
atomical_ has joined #ruby
atomical_ has quit [Client Quit]
hk238 has quit [Quit: http://www.kvirc.net/ 4.9.1 Aria]
<jhass> cronjob
atomical has quit [Ping timeout: 240 seconds]
<jhass> sidekiq doesn't support automatic scheduling in the free version
LoneHerm_ has joined #ruby
elifoster has quit [Ping timeout: 252 seconds]
<jhass> or systemd timer, ymmv
zacts has quit [Quit: leaving]
<havenwood> Limix: If you're paying for the Enterprise version, then Sidekiq's periodic jobs ^.
despai has quit [Quit: This computer has gone to sleep]
skade has joined #ruby
<Limix> thanks guys
zacts has joined #ruby
ArtursL has joined #ruby
rmulligan has joined #ruby
s00pcan has quit [Remote host closed the connection]
kalzz has joined #ruby
LoneHerm_ has quit [Ping timeout: 264 seconds]
s00pcan has joined #ruby
sgambino has joined #ruby
mattwildig has quit [Remote host closed the connection]
eregi has quit [Ping timeout: 260 seconds]
kalz has joined #ruby
rmulligan has quit [Ping timeout: 252 seconds]
Musashi007 has joined #ruby
steffkes has joined #ruby
eregi has joined #ruby
s00pcan_ has joined #ruby
s00pcan has quit [Ping timeout: 260 seconds]
tjohnson has joined #ruby
steffkes has quit [Ping timeout: 276 seconds]
despai has joined #ruby
crime has joined #ruby
InternetFriend has quit [Ping timeout: 276 seconds]
<crime> is there a way to take n elements after a certain index of an array?
<jhass> sure, Array#[] with a range
BtcBen has quit [Ping timeout: 252 seconds]
elifoster has joined #ruby
<jhass> or the two argument form actually
<jhass> >> [1, 2, 3, 4, 5, 6][2, 3]
<ruby[bot]> jhass: # => [3, 4, 5] (https://eval.in/531401)
<crime> ah
<crime> that's perfect
<crime> thanks jhass
stannard has joined #ruby
FooMunki has quit [Quit: FooMunki]
FooMunki has joined #ruby
eregi has quit [Ping timeout: 248 seconds]
stannard has quit [Ping timeout: 276 seconds]
Rodya_ has joined #ruby
baweaver has quit [Remote host closed the connection]
<Limix> anyone use rufus-scheduler with rails? If so, when I run rails s, does that schedule keep running even after I shut down the rails process?
<Limix> I still see activity in the logs even after stopping rails
wtrocki has quit [Read error: Connection reset by peer]
<Limix> sorry I should post thisin the rails group
wtrocki has joined #ruby
DmitryBochkarev has quit [Quit: This computer has gone to sleep]
karapetyan has joined #ruby
arthurix has joined #ruby
Aviio has quit [Quit: Leaving.]
sneakerhax has quit [Ping timeout: 244 seconds]
Rodya_ has quit [Ping timeout: 244 seconds]
crime has quit [Ping timeout: 252 seconds]
A5101 has joined #ruby
<nickjj> Limix, i just use the clockwork gem for scheduled jobs. it integrates perfectly well with sidekiq and is free
<Limix> thanks nickjj will check it out now
<nickjj> the nice thing is it doesn't depend on cron being on the system too
Musashi007 has quit [Quit: Musashi007]
hnagamin has quit [Ping timeout: 252 seconds]
karapetyan has quit [Ping timeout: 244 seconds]
arthurix_ has quit [Ping timeout: 276 seconds]
binaryplease has quit [Ping timeout: 252 seconds]
<Limix> ok cool
mattwildig has joined #ruby
binaryplease has joined #ruby
uglybandersnatch has joined #ruby
binaryplease has quit [Client Quit]
codecop has quit [Remote host closed the connection]
adgtl has quit [Remote host closed the connection]
GBrawl has joined #ruby
uglybandersnatch has quit [Ping timeout: 244 seconds]
tonyynot has joined #ruby
safe has joined #ruby
wtrocki has quit [Ping timeout: 252 seconds]
adgtl has joined #ruby
wtrocki has joined #ruby
vim_shim has quit [Ping timeout: 276 seconds]
s00pcan has joined #ruby
s00pcan_ has quit [Ping timeout: 240 seconds]
mattwildig has quit [Remote host closed the connection]
Limix has quit [Quit: Limix]
devbug has joined #ruby
Limix has joined #ruby
jeanlinux has joined #ruby
adgtl has quit [Remote host closed the connection]
Limix has quit [Client Quit]
GBrawl has quit [Quit: (null)]
s00pcan_ has joined #ruby
s00pcan has quit [Ping timeout: 252 seconds]
rmulligan has joined #ruby
<dostoyevsky> Is there something like bindin.pry that can also step through the ruby program from that binding.pry call?
roshanavand has quit [Ping timeout: 244 seconds]
s00pcan has joined #ruby
LoneHermit has joined #ruby
<norc__> dostoyevsky, pry-debugger ?
<norc__> dostoyevsky, byebug ?
<dostoyevsky> norc__: can I call pry-debugger from binding.pry?
<norc__> Nvm the first, that is not active anymore. byebug is what you want.
<norc__> dostoyevsky, there is a pry-byebug plugin even, you might want to check that one out
rmulligan has quit [Ping timeout: 252 seconds]
<dostoyevsky> > pry-byebug adds next, step, finish, continue and break commands to pry using byebug.
<dostoyevsky> oh... seems great! thanks norc__ !
adgtl has joined #ruby
<norc__> dostoyevsky, if you need more actual debugger features you just have to use plain byebug ;-)
s00pcan_ has quit [Ping timeout: 244 seconds]
bedouin has quit [Ping timeout: 260 seconds]
jtdowney has quit [Ping timeout: 260 seconds]
sleepee has quit [Ping timeout: 248 seconds]
diegoviola has joined #ruby
<dostoyevsky> norc__: is that missing any features from pry?
krasnus has quit [Ping timeout: 260 seconds]
s00pcan has quit [Read error: Connection reset by peer]
arlek has quit [Read error: Connection reset by peer]
heyimwill has quit [Ping timeout: 260 seconds]
LoneHermit has quit [Ping timeout: 260 seconds]
<norc__> dostoyevsky, plenty. Its just a different tool for a different purpose.
vdamewood has quit [Quit: Life beckons.]
jtdowney has joined #ruby
jtdowney has quit [Changing host]
jtdowney has joined #ruby
hinbody has quit [Ping timeout: 268 seconds]
MasterplasterPL has joined #ruby
InternetFriend has joined #ruby
SCHAAP137 has quit [Remote host closed the connection]
arlek has joined #ruby
<norc__> dostoyevsky, also note the gem pry-remote
s00pcan has joined #ruby
chipotle has quit [Quit: cheerio]
aspiers has quit [Ping timeout: 260 seconds]
arlek has quit [Max SendQ exceeded]
aspiers has joined #ruby
wtrocki has quit [Read error: Connection reset by peer]
bedouin has joined #ruby
tonyynot has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
wtrocki has joined #ruby
aef has joined #ruby
Limix has joined #ruby
devbug_ has joined #ruby
adac has quit [Ping timeout: 264 seconds]
arlek has joined #ruby
s00pcan has quit [Quit: Lost terminal]
arlek has quit [Max SendQ exceeded]
hangelo has joined #ruby
devbug has quit [Ping timeout: 260 seconds]
arlek has joined #ruby
winfli has joined #ruby
vim_shim has joined #ruby
eregi has joined #ruby
s00pcan has joined #ruby
SCHAAP137 has joined #ruby
fantasticsid has quit [Read error: Connection reset by peer]
chipotle has joined #ruby
fantasticsid has joined #ruby
fantasticsid has quit [Read error: Connection reset by peer]
s00pcan has quit [Ping timeout: 248 seconds]
eregi has quit [Ping timeout: 248 seconds]
s00pcan has joined #ruby
jeanlinux has quit [Remote host closed the connection]
jeanlinux has joined #ruby
wtrocki has quit [Read error: Connection reset by peer]
baweaver has joined #ruby
dcunit3d has quit [Quit: WeeChat 1.4]
wtrocki has joined #ruby
Rodya_ has joined #ruby
dcunit3d has joined #ruby
heyimwill has joined #ruby
tulak has joined #ruby
ohaibbq has joined #ruby
adgtl has quit [Remote host closed the connection]
duckpuppy has joined #ruby
jeanlinux has quit [Ping timeout: 246 seconds]
graphettion has quit [Remote host closed the connection]
baweaver has quit [Ping timeout: 250 seconds]
cpup has quit [Ping timeout: 244 seconds]
Rodya_ has quit [Ping timeout: 244 seconds]
sneakerhax has joined #ruby
cpup has joined #ruby
arlek has quit [Quit: Leaving]
mattwildig has joined #ruby
duckpuppy has quit [Ping timeout: 264 seconds]
peteyg has quit [Ping timeout: 252 seconds]
WIN_ has joined #ruby
karapetyan has joined #ruby
moeabdol4 has joined #ruby
freerobby has quit [Quit: Leaving.]
arlek has joined #ruby
sauvin has quit [Max SendQ exceeded]
MasterplasterPL has quit [Ping timeout: 250 seconds]
roshanavand has joined #ruby
LoneHerm_ has joined #ruby
sauvin has joined #ruby
s00pcan has quit [Quit: Lost terminal]
moeabdol3 has quit [Ping timeout: 240 seconds]
s00pcan has joined #ruby
roshanavand has quit [Client Quit]
mlehrer has quit [Quit: Leaving]
roshanavand has joined #ruby
<Limix> is it possible with sidekiq to run certain jobs one at a time?
<Limix> there
<Limix> maybe through tagging?
Asher has quit [Quit: Leaving.]
wtrocki has quit [Read error: Connection reset by peer]
wtrocki has joined #ruby
rippa has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
zast has quit [Quit: Leaving.]
Asher has joined #ruby
WIN_ has quit [Ping timeout: 244 seconds]
chipotle has quit [Quit: cheerio]
roshanavand has quit [Quit: This computer has gone to sleep]
krasnus has joined #ruby
blackmes1 has joined #ruby
rmulligan has joined #ruby
roshanavand has joined #ruby
rmulligan has quit [Ping timeout: 252 seconds]
sondr3 has joined #ruby
chipotle has joined #ruby
peteyg has joined #ruby
hangelo has quit [Quit: Yaaic - Yet another Android IRC client - http://www.yaaic.org]
darkxploit has quit [Read error: Connection reset by peer]
P4Titan has joined #ruby
P4Titan has left #ruby [#ruby]
mlehrer has joined #ruby
tonyynot has joined #ruby
Ishido has quit [Quit: Roads? Where We're Going We Don't Need Roads.]
ych has quit [Quit: Textual IRC Client: www.textualapp.com]
jeanlinux has joined #ruby
sauvin has quit [Read error: Connection reset by peer]
sauvin has joined #ruby
darkxploit has joined #ruby
hnagamin has joined #ruby
cyphactor has quit [Ping timeout: 260 seconds]
pawnbox has quit [Remote host closed the connection]
blackmesa has joined #ruby
pawnbox has joined #ruby
cyphactor has joined #ruby
blackmes1 has quit [Ping timeout: 264 seconds]
jeanlinux has quit [Remote host closed the connection]
eregi has joined #ruby
pawnbox has quit [Ping timeout: 260 seconds]
tvw has quit [Remote host closed the connection]
bob434 has quit [Quit: This computer has gone to sleep]
siaw has joined #ruby
eregi has quit [Ping timeout: 246 seconds]
bob434 has joined #ruby
jeanlinux has joined #ruby
Rodya_ has joined #ruby
<norc__> Limix, take a look at sidekiq-unique-jobs
vim_shim has quit [Quit: WeeChat 1.1.1]
statelesscode has joined #ruby
decoponio has quit [Quit: Leaving...]
Xeago has joined #ruby
Rodya_ has quit [Ping timeout: 244 seconds]
sepp2k has quit [Read error: Connection reset by peer]
LoneHerm_ has quit [Remote host closed the connection]
zzzzzzz_ has joined #ruby
Jackneill has quit [Ping timeout: 260 seconds]
jottr has joined #ruby
tonyynot has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
danjam has joined #ruby
bluOxigen has quit [Ping timeout: 252 seconds]
jeanlinux has quit [Read error: Connection reset by peer]
firstdayonthejob has joined #ruby
<Limix> nice!
<Limix> thank you
duckpuppy has joined #ruby
SeanM has quit []
danjam has quit [Client Quit]
SeanM has joined #ruby
deuxclique has joined #ruby
SeanM has quit [Client Quit]
rmulligan has joined #ruby
jeanlinux has joined #ruby
duckpuppy has quit [Ping timeout: 248 seconds]
deuxcliq_ has joined #ruby
rmulligan has quit [Ping timeout: 252 seconds]
deuxclique has quit [Ping timeout: 252 seconds]
llua has left #ruby [#ruby]
llua has joined #ruby
cpup has quit [Ping timeout: 246 seconds]
cpup has joined #ruby
jottr has quit [Ping timeout: 264 seconds]
marr has joined #ruby
rkoller has joined #ruby
Waheedi has quit [Quit: Waheedi]
Xeago has quit [Remote host closed the connection]
jeanlinu_ has joined #ruby
Ebok has joined #ruby
Waheedi has joined #ruby
Waheedi has quit [Client Quit]
jeanlinux has quit [Ping timeout: 244 seconds]
atomical has joined #ruby
A5101 has quit [Ping timeout: 260 seconds]
last_staff has quit [Quit: last_staff]
Xeago has joined #ruby
bollullera has joined #ruby
bollullera has left #ruby [#ruby]
roshanavand has quit [Quit: This computer has gone to sleep]
atomical has quit [Ping timeout: 276 seconds]
mattwildig has left #ruby [#ruby]
roshanavand has joined #ruby
jeanlinu_ has quit [Remote host closed the connection]
bMalum has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
bMalum has joined #ruby
atomical has joined #ruby
atomical has quit [Client Quit]
err has joined #ruby
shellie_ has quit [Remote host closed the connection]
griffindy has quit [Read error: Connection reset by peer]
err has quit [Max SendQ exceeded]
err has joined #ruby
sondr3 has quit [Ping timeout: 240 seconds]
err is now known as Guest68637
Guest68637 has quit [Changing host]
Guest68637 has joined #ruby
Guest68637 has quit [Max SendQ exceeded]
SCHAAP137 has quit [Remote host closed the connection]
alandala_ has joined #ruby
alandala_ has quit [Remote host closed the connection]
pawnbox has joined #ruby
Xeago has quit [Remote host closed the connection]
tonyynot has joined #ruby
johnmilton has quit [Ping timeout: 260 seconds]
atomical has joined #ruby
supplication has joined #ruby
griffindy has joined #ruby
bMalum has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
jeanlinux has joined #ruby
eregi has joined #ruby
pawnbox has quit [Ping timeout: 250 seconds]
kirun has quit [Remote host closed the connection]
zzzzzzz_ has quit [Quit: Page closed]
n008f4g_ has quit [Ping timeout: 240 seconds]
roshanavand has quit [Quit: This computer has gone to sleep]
karapetyan has quit []
Xeago has joined #ruby
jeanlinux has quit [Remote host closed the connection]
roshanavand has joined #ruby
eregi has quit [Ping timeout: 276 seconds]
zenlot6 has joined #ruby
Channel6 has joined #ruby
baweaver has joined #ruby
zenlot has quit [Ping timeout: 248 seconds]
freerobby has joined #ruby
Rodya_ has joined #ruby
roshanavand has quit [Client Quit]
InternetFriend has quit [Ping timeout: 260 seconds]
djbkd has joined #ruby
LoneHermit has joined #ruby
roshanavand has joined #ruby
deuxcliq_ has quit [Remote host closed the connection]
n008f4g_ has joined #ruby
BtcBen has joined #ruby
baweaver has quit [Ping timeout: 250 seconds]
Rodya_ has quit [Ping timeout: 260 seconds]
eurialo has quit [Ping timeout: 246 seconds]
jasonw22 has joined #ruby
jasonw22 has left #ruby [#ruby]
LoneHermit has quit [Ping timeout: 246 seconds]
vdamewood has joined #ruby
thevaliantx has quit [Ping timeout: 248 seconds]
<dostoyevsky> Is ruby making any moves towards increasing performance? I am using a bit more node.js atm and everything seems quite fast by default..
rmulligan has joined #ruby
<havenwood> dostoyevsky: Ruby is fast by default. No turbo button though.
<havenwood> dostoyevsky: The stated goal for Ruby 3.0 in 2020 is 3x faster than Ruby 2.0.
eregi has joined #ruby
<havenwood> It has already improved since 2.0. Long live 2.3!
<dostoyevsky> havenwood: ah, good to hear.. stil love the easyness of writing code in Ruby and wouldn't want to give it up
<Ox0dea> $ ruby -v
<Ox0dea> ruby 2.4.0dev (2016-03-07 trunk 54011) [x86_64-linux]
<Ox0dea> >> require 'prime'; 54011.prime?
<ruby[bot]> Ox0dea: # => true (https://eval.in/531458)
duckpuppy has joined #ruby
rmulligan has quit [Ping timeout: 252 seconds]
pawnbox has joined #ruby
wtrocki has quit [Ping timeout: 250 seconds]
alandala has joined #ruby
avenj has quit [Changing host]
avenj has joined #ruby
eregi has quit [Ping timeout: 276 seconds]
Brando753 has quit [Ping timeout: 248 seconds]
pawnbox has quit [Ping timeout: 244 seconds]
safe has quit [Read error: Connection reset by peer]
skade has quit [Quit: Computer has gone to sleep.]
wtrocki has joined #ruby
johnmilton has joined #ruby
jeanlinux has joined #ruby
dravine_ has joined #ruby
ArtursL has quit [Ping timeout: 250 seconds]
despai has quit [Quit: This computer has gone to sleep]
dravine has quit [Ping timeout: 260 seconds]
dravine_ is now known as dravine
despai has joined #ruby
j416 has quit [Ping timeout: 244 seconds]
Gasher has quit [Quit: Leaving]
moeabdol4 has quit [Ping timeout: 276 seconds]
jeanlinux has quit [Ping timeout: 244 seconds]
tonyynot has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
LoneHermit has joined #ruby
bry4n has quit [Ping timeout: 248 seconds]
CloCkWeRX has joined #ruby
tonyynot has joined #ruby
intrigueD has joined #ruby
roshanavand has quit [Quit: This computer has gone to sleep]
pawnbox has joined #ruby
Xeago has quit [Remote host closed the connection]
tulak has quit [Remote host closed the connection]
jeanlinux has joined #ruby
roshanavand has joined #ruby
kam270 has joined #ruby
pawnbox has quit [Ping timeout: 252 seconds]
crystal77 has joined #ruby
jottr has joined #ruby
atomical has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
nerium has quit [Quit: nerium]
Brando753 has joined #ruby
nfk has joined #ruby
DJ_Spies has joined #ruby
danjam has joined #ruby
Rodya_ has joined #ruby
statelesscode has quit [Quit: statelesscode]
ropeney has joined #ruby
jottr has quit [Quit: WeeChat 1.4]
jottr has joined #ruby
rmulligan has joined #ruby
jeanlinux has quit [Remote host closed the connection]
jeanlinux has joined #ruby
wtrocki has quit [Quit: I will be back!]
Rodya_ has quit [Ping timeout: 244 seconds]
sandstrom has quit [Quit: My computer has gone to sleep.]
tristanp has joined #ruby
uglybandersnatch has joined #ruby
sp4rrow has joined #ruby
tonyynot has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
jeanlinux has quit [Ping timeout: 246 seconds]
rmulligan has quit [Ping timeout: 252 seconds]
spider-mario has quit [Remote host closed the connection]
siaw has quit [Quit: siaw]
arlek has quit [Ping timeout: 248 seconds]
Nanuq has quit [Quit: leaving]
danjam has quit [Quit: Leaving.]
Sammichmaker has quit [Quit: Leaving]
uglybandersnatch has quit [Ping timeout: 276 seconds]
polyidus has joined #ruby
eregi has joined #ruby
idefine has joined #ruby
despai has quit [Quit: Leaving]