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/
Guest24401 is now known as BLuEGoD
BLuEGoD is now known as Guest65341
duckpuppy has joined #ruby
eljimmy has joined #ruby
stannard has joined #ruby
<Ox0dea> drale2k: Doesn't look like there's anything. https://github.com/dmendel/bindata should make writing your own a little less painful.
stevemackinnon has quit [Remote host closed the connection]
Ebok has quit [Quit: This computer has gone to sleep]
<drale2k> Ox0dea: thanks
<Ox0dea> Sure thing.
stevemackinnon has joined #ruby
Domaldel has joined #ruby
duckpuppy has quit [Ping timeout: 256 seconds]
unl0ckd has joined #ruby
<Ox0dea> drale2k: I think this is the spec? http://www.aprs.org/doc/APRS101.PDF
Gnut has quit [Ping timeout: 248 seconds]
theRealAlexz has quit [Ping timeout: 240 seconds]
<platzhirsch> Turned that whole iterating over transactions through their child relationship and summing them up into a blog post http://konrad-reiche.com/2016/02/14/traversing-your-collections-functional.html :)
jam__ has joined #ruby
baweaver has quit [Remote host closed the connection]
<Ox0dea> drale2k: Ah, that looks much more straightforward, at least.
Domaldel has quit [Client Quit]
<drale2k> Ox0dea: yes compared to the spec you sent although i have never done anything like this before. This is gonna be a wild ride
dmolina has quit [Quit: Leaving.]
dasher00 has quit [Quit: Leaving]
<Ox0dea> drale2k: Should be fun. :P
johnmilton has joined #ruby
dasher00 has joined #ruby
moshee has quit [Quit: 囧]
<Ox0dea> Using bindata might actually take away from the learning experience, even.
dasher00 has quit [Remote host closed the connection]
<Ox0dea> But the pack/unpack interface really is one of the more unpleasant aspects of Ruby.
dasher00 has joined #ruby
<drale2k> hm, with bindata i don't see how i can set an offset for example
jam_ has quit [Ping timeout: 240 seconds]
<drale2k> to tell it how many bites to take for long, lat etc
<drale2k> offset is maybe the wrong word, more like field names
<volty> drale2k: you could try manually, interpreting yourself, smt like https://eval.in/private/a98172fe9d90e1
dlitvak has quit [Ping timeout: 240 seconds]
<volty> when you get the clear picture of the whole you can reimplemented using bindata gem
binaryplease has quit [Ping timeout: 240 seconds]
<drale2k> volty: so the codec is telling me about the number of records? I am curious about the 4th line, "n_records"
Azure has joined #ruby
<volty> the @codec is telling you about the codec, the @n_records is the number of records, then you have an array of that many records, then it is up to you to read properly a record inside the loop. I didn't see the spec.. Mine is just general hint since you seem lost with bindata
<volty> this way too is easier to check / debug
<volty> * array of hashes
voidDotClass has quit [Ping timeout: 240 seconds]
moshee has joined #ruby
moshee has joined #ruby
<drale2k> volty: i wonder because you read the codec and the number of records from the first 2 bytes
voidDotClass has joined #ruby
<volty> don't know what you need. mine is just an idea/hint on plain ascii-hex parsing this kind of data. then you have to interpret correctly the fields, the numbers. if the records are of fixed length it would be trivial to fill it
<drale2k> thats a good start, thanks a lot
<volty> ah, you read from IOString, not from a simple string
dlitvak has joined #ruby
theRealAlexz has joined #ruby
s00pcan_ has joined #ruby
loz has quit [Ping timeout: 264 seconds]
<drale2k> volty: sorry does that mean it is continuous? So calling read(2) the second time will read byte 3 and 4 because the first call read 1 and 2 ?
loz has joined #ruby
benlieb has quit [Quit: benlieb]
<volty> yes, sorry, wait a min
<volty> >> s = StringIO.new('volty'); [s.read(2), s.read(2)]
<ruby[bot]> volty: # => ["vo", "lt"] (https://eval.in/518602)
<volty> you can convert to StringIO after receiving a simple string; def read(the_string); s = StringIO.new(the_string) ....
<volty> can we @data[i].instance_eval { timestamp: s.read(2) } ?
blackmesa has joined #ruby
pdoherty has joined #ruby
<volty> @ others
trinaldi has quit [Quit: see ya]
krobzaur has joined #ruby
superlou has joined #ruby
<volty> ignore, nonsense (the last one)
krobzaur_ has joined #ruby
krobzaur has quit [Client Quit]
<drale2k> volty: thanks i am starting to get the gist of it
benlieb has joined #ruby
Ebok has joined #ruby
cyclonis has joined #ruby
<superlou> I'm looking to make a real-time multiplayer game backend in Ruby, javascript frontend (Emberjs), and have been going in circles between eventmachine, celluloid, reel and faye, native websockets, etc. From reading, it seems like the event driven frameworks fulfill similar roles, but would one be more approrpriate as a game server (vs. http web server, etc.)?
<volty> yw, drale2k
Lildirt has quit [Ping timeout: 248 seconds]
pickandmix has quit [Ping timeout: 248 seconds]
mybatman123 has joined #ruby
alex88 has joined #ruby
railsForDaiz has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
<alex88> hi there, someone works with https://github.com/ruby/spec here? I've to create a test that checks how bigDecimal interacts with time.at and I would like some pointers on where to place the test
millerti has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
<havenwood> superlou: Another nice gem to look at that has a variety of concurrency primitives is Concurrent Ruby: https://github.com/ruby-concurrency/concurrent-ruby#readme
<alex88> look at contributing file it seems it should go in library since it requires stdlib for bigdecimal
<superlou> havenwood, arggg, another option :)
<superlou> looks cool
<havenwood> superlou: That's what Rails 5 ended up going with for ActionCable.
<havenwood> superlou: It was initially EventMachine and Celluloid.
<havenwood> superlou: Speaking of which, there's ActionCable.
<superlou> My backgrounds heavily rails, so I gave actioncable a look
<superlou> My concern is I was hoping to use an entity-component system rather than object-oriented
<havenwood> superlou: Ruby also has a very nice HTTP-2 implementation: https://github.com/igrigorik/http-2#readme
<superlou> And while I think I could force rails to do it, I think I might be able to rig up something an order of magnitude simpler
Lildirt has joined #ruby
<havenwood> superlou: Maybe double down and HTTP-2! :D
<superlou> other than new hotness, what's the big advantage?
krobzaur has joined #ruby
<superlou> compression?
<havenwood> superlou: out of the box, binary format
mybatman123 has quit [Remote host closed the connection]
<superlou> havenwood, that looks slick, but I need to be careful of scope :)
dlitvak has quit [Ping timeout: 276 seconds]
<superlou> Dangerously close to just puting https://github.com/massivedanger/darkholme 's @engine.update(delta) function into a thread that calls itself every 100ms
platzhirsch has left #ruby [#ruby]
<superlou> If I used http2, how do you communicate with a browser client?
<superlou> seeing a bunch of node plugins, but all serverside stuff
juddey has joined #ruby
benlieb has quit [Quit: benlieb]
millerti has joined #ruby
mybatman123 has joined #ruby
roshanavand has quit [Read error: Connection reset by peer]
arescorpio has joined #ruby
RegulationD has joined #ruby
roshanavand has joined #ruby
mybatman123 has quit [Remote host closed the connection]
mybatman123 has joined #ruby
zeroDivisible has quit [Ping timeout: 240 seconds]
dlitvak has joined #ruby
zeroDivisible has joined #ruby
alex88 has quit [Quit: Leaving...]
millerti has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
RegulationD has quit [Ping timeout: 276 seconds]
mybatman123 has quit [Remote host closed the connection]
millerti has joined #ruby
rgtk has joined #ruby
Guest65341 is now known as BLuEGoD
ZerGabriel has joined #ruby
duckpuppy has joined #ruby
BLuEGoD is now known as Guest328
rgtk has quit [Read error: No route to host]
rgtk has joined #ruby
Gnut has joined #ruby
rgtk has quit [Read error: No route to host]
ElFerna_ has quit [Ping timeout: 256 seconds]
rgtk has joined #ruby
superlou has quit [Quit: Leaving]
rgtk has quit [Read error: No route to host]
duckpuppy has quit [Ping timeout: 240 seconds]
roshanavand has quit [Read error: Connection reset by peer]
krobzaur has quit [Quit: WeeChat 0.4.2]
rgtk has joined #ruby
krobzaur has joined #ruby
roshanavand has joined #ruby
rgtk has quit [Read error: No route to host]
rgtk has joined #ruby
rgtk has quit [Read error: No route to host]
voidDotClass has quit [Ping timeout: 240 seconds]
rgtk has joined #ruby
Ebok has quit [Quit: This computer has gone to sleep]
krobzaur_ has quit [Quit: WeeChat 1.2]
Ebok has joined #ruby
baweaver has joined #ruby
rgtk has quit [Read error: No route to host]
rgtk has joined #ruby
gnew has joined #ruby
elifoster has quit [Ping timeout: 240 seconds]
rgtk has quit [Read error: No route to host]
rgtk has joined #ruby
marr has quit [Read error: Connection reset by peer]
mondok has quit [Ping timeout: 240 seconds]
baweaver has quit [Ping timeout: 250 seconds]
weemsledeux has joined #ruby
asahi has joined #ruby
dlitvak has quit [Ping timeout: 240 seconds]
rgtk has quit [Ping timeout: 248 seconds]
underplank has joined #ruby
voidDotClass has joined #ruby
ss_much has quit [Quit: Connection closed for inactivity]
<havenwood> Ah, was away and superlou left, but browser support is coming along: http://caniuse.com/#feat=http2
asahi has quit [Client Quit]
rgtk has joined #ruby
<havenwood> It'd be neat to have something akin to Caddy in Ruby based on the http-2 gem: https://github.com/mholt/caddy
Spami has quit [Quit: This computer has gone to sleep]
volty has quit [Quit: Konversation terminated!]
<havenwood> Having Let's Encrypt *just work* for HTTP-2 over HTTPS is enticing.
eugenn has quit [Quit: Page closed]
Spami has joined #ruby
dlitvak has joined #ruby
rgtk_ has joined #ruby
roshanavand has quit [Remote host closed the connection]
rgtk has quit [Ping timeout: 248 seconds]
elifoster has joined #ruby
Ebok has quit [Quit: This computer has gone to sleep]
gnew has quit [Ping timeout: 250 seconds]
gnew has joined #ruby
tilllt has quit [Quit: http://www.kiwiirc.com/ - A hand-crafted IRC client]
rgtk_ has quit [Ping timeout: 248 seconds]
blackmesa has quit [Ping timeout: 240 seconds]
saneax is now known as saneax_AFK
blackmesa has joined #ruby
ZerGabriel has quit []
ziyadb has quit [Quit: Connection closed for inactivity]
rgtk has joined #ruby
nickjj has quit [Read error: Connection reset by peer]
nickjj_ has joined #ruby
Ebok has joined #ruby
devbug has joined #ruby
rgtk_ has joined #ruby
rgtk has quit [Ping timeout: 248 seconds]
pdoherty has quit [Ping timeout: 240 seconds]
pickandmix has joined #ruby
rgtk_ has quit [Read error: No route to host]
rgtk has joined #ruby
goodcodeguy has joined #ruby
devbug_ has joined #ruby
rgtk has quit [Read error: No route to host]
rgtk_ has joined #ruby
LoneHerm_ is now known as LoneHermit_
JoshGlzBrk has joined #ruby
rgtk_ has quit [Read error: No route to host]
rgtk has joined #ruby
Sucks has joined #ruby
dlitvak has quit [Ping timeout: 272 seconds]
rgtk_ has joined #ruby
Gnut has quit [Ping timeout: 276 seconds]
rgtk has quit [Read error: No route to host]
platzhirsch has joined #ruby
<platzhirsch> is there a shorter way to express array.each_with_index.each_with_object({}) { ... } ?
DmitryBochkarev has joined #ruby
rgtk_ has quit [Read error: No route to host]
rgtk has joined #ruby
idefine has joined #ruby
dlitvak has joined #ruby
<Ox0dea> platzhirsch: That could just be Enumerator#with_object there, but that's not much of a reduction.
<platzhirsch> ah each_with_index.with_object
<platzhirsch> No it's perfect. Certainly better than a kick in the teeth
stannard has quit [Remote host closed the connection]
<platzhirsch> it's just more readable
Jardayn has quit [Quit: Leaving]
rgtk has quit [Read error: No route to host]
rgtk has joined #ruby
Guest328 is now known as BLuEGoD
duckpuppy has joined #ruby
BLuEGoD is now known as Guest77238
johnmilton has quit [Ping timeout: 272 seconds]
goodcodeguy has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Spami has quit [Quit: This computer has gone to sleep]
Spami has joined #ruby
idefine has quit [Ping timeout: 250 seconds]
Spami has quit [Remote host closed the connection]
underplank has quit [Quit: underplank]
fedexo has joined #ruby
rgtk_ has joined #ruby
tatsuo has joined #ruby
soLucien has joined #ruby
rgtk has quit [Ping timeout: 248 seconds]
<soLucien> if i want to write \\HOST\Software\VagrantBoxes\win2012r2min.box in ruby as a string variable
<soLucien> i have to enclose it in simple 's right ?
<soLucien> like this '\\HOST\Software\VagrantBoxes\win2012r2min.box''
duckpuppy has quit [Ping timeout: 248 seconds]
<soLucien> OR do i have to double up on the \s ?
<soLucien> like \\\\HOST
<Ox0dea> Yeah, like that.
<Ox0dea> Backslashes must always be escaped in Ruby strings.
underplank has joined #ruby
<soLucien> can't i use single quotes ?
<Ox0dea> See above.
rgtk_ has quit [Ping timeout: 248 seconds]
<soLucien> ah i'll just use 4 quotes, and that's that
blackmesa has quit [Ping timeout: 240 seconds]
<soLucien> backslashes *
mickey_mouse has quit [Ping timeout: 240 seconds]
<Ox0dea> It's not a guessing game...
stannard has joined #ruby
<Ox0dea> >> ["\\".size, '\\'.size] # soLucien
<ruby[bot]> Ox0dea: # => [1, 1] (https://eval.in/518623)
<soLucien> cool thanks !
rgtk has joined #ruby
<Ox0dea> No worries.
y2mq37 has joined #ruby
underplank has quit [Quit: underplank]
stannard has quit [Ping timeout: 250 seconds]
dlitvak has quit [Ping timeout: 248 seconds]
rgtk has quit [Read error: No route to host]
codesoda has joined #ruby
rgtk has joined #ruby
yqt has quit [Ping timeout: 264 seconds]
pickandmix has quit [Quit: WeeChat 1.4]
Spami has joined #ruby
idefine has joined #ruby
pickandmix has joined #ruby
seiji_ has joined #ruby
seiji_ has quit [Client Quit]
nanoz has joined #ruby
rgtk_ has joined #ruby
rgtk has quit [Ping timeout: 248 seconds]
idefine has quit [Ping timeout: 252 seconds]
gnew has quit [Ping timeout: 250 seconds]
gnew has joined #ruby
dlitvak has joined #ruby
mickey_mouse has joined #ruby
rgtk_ has quit [Read error: No route to host]
rgtk has joined #ruby
zeroDivisible has quit [Quit: WeeChat 1.3]
SShrike has joined #ruby
FooMunki has quit [Quit: FooMunki]
rgtk has quit [Read error: No route to host]
rgtk has joined #ruby
LoneHermit_ has quit [Remote host closed the connection]
rgtk_ has joined #ruby
wolffles has quit [Quit: wolffles]
rgtk has quit [Ping timeout: 248 seconds]
rgtk_ has quit [Ping timeout: 248 seconds]
LoneHerm_ has joined #ruby
JoshGlzBrk has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
rkazak has joined #ruby
rgtk has joined #ruby
dlitvak has quit [Ping timeout: 252 seconds]
platzhirsch has quit [Ping timeout: 240 seconds]
RegulationD has joined #ruby
nanoz has quit [Read error: Connection reset by peer]
dlitvak has joined #ruby
rgtk has quit [Ping timeout: 248 seconds]
Ebok has quit [Quit: This computer has gone to sleep]
RegulationD has quit [Ping timeout: 252 seconds]
rgtk has joined #ruby
resin has joined #ruby
bronson has joined #ruby
eikood has joined #ruby
A124 has quit [Read error: Connection reset by peer]
underplank has joined #ruby
rgtk_ has joined #ruby
mickey_mouse has quit [Ping timeout: 276 seconds]
rgtk has quit [Ping timeout: 248 seconds]
idefine has joined #ruby
duckpuppy has joined #ruby
Guest77238 is now known as BLuEGoD
BLuEGoD is now known as Guest75890
bronson has quit [Ping timeout: 256 seconds]
unl0ckd has quit [Quit: I've gone to sleep. ZZZzzz…]
rgtk has joined #ruby
A124 has joined #ruby
rgtk_ has quit [Ping timeout: 248 seconds]
idefine has quit [Ping timeout: 252 seconds]
rkazak has quit [Quit: Sleep.....ing....]
duckpuppy has quit [Ping timeout: 240 seconds]
p1k has joined #ruby
rgtk has quit [Ping timeout: 248 seconds]
baweaver has joined #ruby
rgtk has joined #ruby
baweaver has quit [Ping timeout: 250 seconds]
mickey_mouse has joined #ruby
rgtk has quit [Read error: No route to host]
dlitvak has quit [Ping timeout: 240 seconds]
rgtk has joined #ruby
stannard has joined #ruby
rgtk has quit [Ping timeout: 248 seconds]
duckpuppy has joined #ruby
mickey_mouse has quit [Ping timeout: 276 seconds]
mickey_mouse has joined #ruby
Xeago has quit [Remote host closed the connection]
dlitvak has joined #ruby
pickandmix has quit [Quit: WeeChat 1.4]
rgtk has joined #ruby
pickandmix has joined #ruby
duckpuppy has quit [Ping timeout: 240 seconds]
rgtk has quit [Read error: No route to host]
rgtk has joined #ruby
rakm has joined #ruby
rgtk has quit [Ping timeout: 248 seconds]
Spami has quit [Quit: This computer has gone to sleep]
Spami has joined #ruby
eikood has quit [Read error: Connection reset by peer]
Spami has quit [Remote host closed the connection]
angryz has joined #ruby
eikood has joined #ruby
LoneHerm_ has quit [Remote host closed the connection]
yfeldblu_ has joined #ruby
jayc0b0 has joined #ruby
<jayc0b0> Hello. I've got an issue I'm trying to work out.
yfeldbl__ has joined #ruby
stannard has quit [Remote host closed the connection]
yfeldblum has quit [Ping timeout: 276 seconds]
<jayc0b0> In essence, I started working through the Odin Project and got to the part where you go through and install everything (Ruby, RoR, and some other stuff), and I ran into some weird behavior. Every time I start my terminal (zsh running in terminator), I get a string of errors along the lines of "Ignoring ____ because its extensions are not built"
dlitvak has quit [Ping timeout: 256 seconds]
<jayc0b0> I think it may have to do with the way I have things set up. The guide I followed included installing RVM and RubyGems and setting RVM to use version 2.2.
fedexo has quit [Ping timeout: 240 seconds]
yfeldblu_ has quit [Ping timeout: 256 seconds]
<havenwood> jayc0b0: If you have a bit of time I'd: gem pristine --all --extensions
<havenwood> (--extensions is default)
<jayc0b0> Ah. I tried that one.
<jayc0b0> I'll try it with the --extensions option to see if it changes anything
<jayc0b0> Also, I can link the guide that I followed.
pawnbox has joined #ruby
<havenwood> jayc0b0: Do update to the latest RVM so if anything has been fixed you'll get that: rvm get head
<havenwood> jayc0b0: If you're still having the error, gist the full output as well as your `gem env` if you don't mind.
<jayc0b0> Okay. I'll give that a try as well. I tried rvm get stable earlier along with the --auto-dotfile option.
dlitvak has joined #ruby
<havenwood> jayc0b0: Stable is quite old, and latest is more stable. RVM is long overdue for a release. Everyone is busy!
<jayc0b0> Okay. Running rvm get head.
<jayc0b0> ... And still getting the error. So, onto the gem env?
<havenwood> jayc0b0: Yeah, I'm curious.
pawnbox has quit [Remote host closed the connection]
pawnbox has joined #ruby
<jayc0b0> That's a variable, correct?
<Radar> jayc0b0: Could you please gist the error?
<Radar> ?gist jayc0b0
<ruby[bot]> jayc0b0: https://gist.github.com - Multiple files, syntax highlighting, even automatically with matching filenames, can be edited
<jayc0b0> Yes.
SShrike has quit [Quit: SShrike]
<jayc0b0> I get that every time I open my terminal, even after trying uninstalling and reinstalling the gems, as well as using pristine, both individually, and with the --all option.
<Radar> I literally have no idea, but I want to blame RVM just because I think RVM is bloated and overengineered.
<jayc0b0> Also, where would I find gem env? Is that file or a variable?
underplank has quit [Quit: underplank]
<jayc0b0> Ah. I got it.
<jayc0b0> *Updated
Guest75890 is now known as BLuEGoD
ledestin has joined #ruby
BLuEGoD is now known as Guest52391
braincra- has quit [Quit: bye bye]
graphettion has quit [Remote host closed the connection]
underplank has joined #ruby
treaki_ has joined #ruby
treaki has quit [Ping timeout: 276 seconds]
Coldblackice has joined #ruby
devbug has quit [Remote host closed the connection]
<jayc0b0> So, any insight from gem env?
<Radar> Nope.
<Radar> jayc0b0: What OS are you on?
<jayc0b0> I'm on Arch Linux
Dimik has joined #ruby
braincrash has joined #ruby
<Radar> jayc0b0: humour me: rvm implode --force, then follow http://ryanbigg.com/2014/10/ubuntu-ruby-ruby-install-chruby-and-you/ to install Ruby with chruby+ruby-install.
<Radar> jayc0b0: I wonder if the error will go away then.
<jayc0b0> Alright
tjohnson has quit [Quit: Connection closed for inactivity]
ESpiney has joined #ruby
Azure|dc has joined #ruby
sdothum has quit [Quit: ZNC - 1.6.0 - http://znc.in]
Morrolan has quit [Ping timeout: 272 seconds]
anekos has quit [Ping timeout: 272 seconds]
code_[BNC] has quit [Ping timeout: 272 seconds]
dlitvak has quit [Remote host closed the connection]
pawnbox has quit [Remote host closed the connection]
c0ncealed has quit [Ping timeout: 272 seconds]
Shidash has quit [Ping timeout: 272 seconds]
rethi_ has quit [Ping timeout: 272 seconds]
matp has quit [Excess Flood]
Azure has quit [Ping timeout: 272 seconds]
rizenine has quit [Ping timeout: 272 seconds]
WebDawg has quit [Ping timeout: 272 seconds]
rethi has joined #ruby
code_ has joined #ruby
anekos has joined #ruby
Shidash has joined #ruby
rizenine has joined #ruby
matp has joined #ruby
c0ncealed has joined #ruby
Morrolan has joined #ruby
benlieb has joined #ruby
WebDawg has joined #ruby
skweek has joined #ruby
<havenwood> jayc0b0: Ah, I meant the command `gem env`, just typing: gem env
gix has quit [Ping timeout: 264 seconds]
<havenwood> jayc0b0: chruby and ruby-install are simple made easy :)
marsjaninzmarsa has quit [Ping timeout: 256 seconds]
Marsjan has joined #ruby
darkxploit has joined #ruby
<havenwood> jayc0b0: An aside, but chruby is included in the AUR.
Marsjan is now known as marsjaninzmarsa
<havenwood> jayc0b0: As is ruby-install.
<havenwood> yaourt -S chruby ruby-install
<jayc0b0> Currently grabbing rails in that guide
<Radar> TIL
<jayc0b0> And chruby is pretty neat.
gix has joined #ruby
darkxploit has quit [Max SendQ exceeded]
<jayc0b0> Definitely seems simpler than rvm
<havenwood> jayc0b0: hundreds of lines of shell is simpler than tens of thousands of lines of shell ;)
LoneHerm_ has joined #ruby
<jayc0b0> I mean, you literally just say chruby whatever. It's like chsh practically.
underplank has quit [Quit: underplank]
kp666 has joined #ruby
LoneHerm_ has quit [Ping timeout: 276 seconds]
Sucks has quit [Ping timeout: 264 seconds]
UtkarshRay has quit [Remote host closed the connection]
sankaber has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
<jayc0b0> Alright. Got that guide finished
<jayc0b0> Aaaaand... No issues so far.
<jayc0b0> I think I'm in the clear.
<jayc0b0> Thank you so much for pointing me in the right directions.
zast has quit [Remote host closed the connection]
<Radar> jayc0b0: yay :) another victory
kp666 has quit [Quit: Leaving]
kp666 has joined #ruby
<jayc0b0> I'll definitely be in here if anything goes wrong in the future. Definitely one of the more helpful channels I've been in. ##networking was pretty rough. lol
<jayc0b0> Anyway, have a nice evening. I really appreciate the assistance.
<ropeney> jayc0b0 make sure you return the assistance when things are going well though too :D
Channel6 has joined #ruby
pawnbox has joined #ruby
LuckyABA has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<jayc0b0> For sure. I'd certainly like to get good enough to do that. :)
jayc0b0 has left #ruby ["http://quassel-irc.org - Chat comfortably. Anywhere."]
jayc0b0 has joined #ruby
jayc0b0 has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
darkxploit has joined #ruby
darkxploit has quit [Remote host closed the connection]
pawnbox has quit [Remote host closed the connection]
pawnbox has joined #ruby
juddey has quit [Ping timeout: 264 seconds]
Trieste has quit [Ping timeout: 250 seconds]
Trieste has joined #ruby
kirillzh has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
perrier_ has quit [Remote host closed the connection]
bronson has joined #ruby
perrier_ has joined #ruby
hakunin_ has joined #ruby
dexter_ has joined #ruby
tenderlove has quit [Read error: Connection reset by peer]
aibot has quit [Ping timeout: 272 seconds]
whiteline has joined #ruby
aibot has joined #ruby
pawnbox has quit [Ping timeout: 240 seconds]
tenderlove has joined #ruby
Sucks has joined #ruby
pawnbox has joined #ruby
dexter-tzu has quit [Ping timeout: 272 seconds]
yorickpeterse has quit [Ping timeout: 272 seconds]
hakunin has quit [Ping timeout: 272 seconds]
AlphaAtom has quit [Ping timeout: 272 seconds]
pawnbox has quit [Remote host closed the connection]
pawnbox has joined #ruby
bronson has quit [Ping timeout: 256 seconds]
underplank has joined #ruby
Guest52391 is now known as BLuEGoD
BLuEGoD is now known as Guest65941
arlek_ has quit [Read error: Connection reset by peer]
the_drow has joined #ruby
codesoda has quit [Quit: Leaving...]
LoneHermit has joined #ruby
pawnbox has quit [Remote host closed the connection]
baweaver has joined #ruby
nfk has quit [Ping timeout: 240 seconds]
n00bdev has quit []
skweek has quit [Ping timeout: 240 seconds]
gnew has quit [Quit: Leaving]
pawnbox has joined #ruby
tatsuo has quit [Remote host closed the connection]
tilllt has joined #ruby
saneax_AFK is now known as saneax
tilllt has quit [Client Quit]
UtkarshRay has joined #ruby
pawnbox has quit [Remote host closed the connection]
weemsledeux has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
arlek has joined #ruby
arthropododo has quit [Remote host closed the connection]
tjbiddle has joined #ruby
juddey has joined #ruby
patchedmonkey has joined #ruby
godzillaenlacasa has joined #ruby
CloCkWeRX has quit [Remote host closed the connection]
CloCkWeRX has joined #ruby
angryz has quit [Quit: Connection closed for inactivity]
CloCkWeRX has quit [Client Quit]
CloCkWeRX has joined #ruby
saneax is now known as saneax_AFK
juddey has quit [Ping timeout: 260 seconds]
fn2187 has quit [Remote host closed the connection]
CloCkWeRX has left #ruby [#ruby]
dmarr has joined #ruby
patchedmonkey has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
astrobun_ has joined #ruby
JoshGlzBrk has joined #ruby
underplank has quit [Quit: underplank]
rhg135 has quit [Read error: Connection reset by peer]
rhg135 has joined #ruby
zzz has joined #ruby
patchedmonkey has joined #ruby
roshanavand has joined #ruby
tatsuo has joined #ruby
pawnbox has joined #ruby
tmtwd has joined #ruby
tmtwd has quit [Remote host closed the connection]
roshanavand has quit [Remote host closed the connection]
pawnbox has quit [Read error: Connection reset by peer]
LuckyABA has joined #ruby
ur5us has quit [Remote host closed the connection]
roshanavand has joined #ruby
pawnbox has joined #ruby
tildes has joined #ruby
fn2187 has joined #ruby
hakunin_ is now known as hakunin
<dmarr> anyone using async testing with Sidekiq? I am trying to understand why my image isn't changing even though it appears to run the sepia_worker here: https://github.com/marr/localpic2/blob/master/test/workers/sepia_filter_test.rb#L21
Guest65941 is now known as BLuEGoD
mhoungbo has quit [Quit: Quitte]
BLuEGoD is now known as Guest68755
pawnbox has quit [Remote host closed the connection]
juddey has joined #ruby
terminalrecluse has joined #ruby
tildes has quit [Remote host closed the connection]
dionysus69 has joined #ruby
tildes has joined #ruby
speakingcode has quit [Ping timeout: 260 seconds]
patchedmonkey has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
speakingcode has joined #ruby
pawnbox has joined #ruby
intrigueD has joined #ruby
pawnbox has quit [Remote host closed the connection]
pawnbox has joined #ruby
pawnbox has quit [Remote host closed the connection]
tjbiddle has quit [Ping timeout: 276 seconds]
soLucien has quit [Quit: Leaving]
voidDotClass has quit [Remote host closed the connection]
krz has joined #ruby
idefine has joined #ruby
tildes has quit [Ping timeout: 248 seconds]
pawnbox has joined #ruby
idefine has quit [Ping timeout: 248 seconds]
intrigueD has quit [Read error: Connection reset by peer]
intrigueD has joined #ruby
pawnbox has quit [Ping timeout: 250 seconds]
hjoest has quit [Read error: Connection reset by peer]
rakm has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
moeabdol1 has joined #ruby
idefine has joined #ruby
moeabdol2 has joined #ruby
moeabdol1 has quit [Ping timeout: 240 seconds]
saneax_AFK is now known as saneax
hjoest has joined #ruby
terminalrecluse has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
idefine has quit [Ping timeout: 250 seconds]
JoshGlzBrk has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
Channel6 has quit [Quit: Leaving]
lxsameer has joined #ruby
ur5us has joined #ruby
karapetyan has joined #ruby
kies^ has quit [Ping timeout: 252 seconds]
karapetyan has quit [Remote host closed the connection]
rkazak has joined #ruby
pawnbox has joined #ruby
ruby-lang898 has joined #ruby
intrigueD has quit [Remote host closed the connection]
arescorpio has quit [Quit: Leaving.]
RegulationD has joined #ruby
karapetyan has joined #ruby
Sucks has quit [Read error: Connection reset by peer]
ruby-lang898 has quit [Ping timeout: 252 seconds]
the_drow has quit [Quit: This computer has gone to sleep]
nofxx has quit [Ping timeout: 264 seconds]
RegulationD has quit [Ping timeout: 240 seconds]
kies^ has joined #ruby
solars has joined #ruby
TomyLobo has joined #ruby
Sucks has joined #ruby
krz has quit [Ping timeout: 240 seconds]
Damien22 has joined #ruby
neanderslob has quit [*.net *.split]
Derailed has quit [*.net *.split]
braidn has quit [*.net *.split]
edulix_ has quit [*.net *.split]
peteyg has quit [*.net *.split]
acerna has quit [*.net *.split]
v0n has quit [*.net *.split]
patronus has quit [*.net *.split]
olblak has quit [*.net *.split]
shaman42 has quit [*.net *.split]
Freeaqingme has quit [*.net *.split]
knight- has quit [*.net *.split]
mprelude_ has quit [*.net *.split]
Conflict has quit [*.net *.split]
colegatron has quit [*.net *.split]
GinoManWorks has quit [*.net *.split]
lsmola has quit [*.net *.split]
djellemah has quit [*.net *.split]
wldcordeiro has quit [*.net *.split]
sts_ has quit [*.net *.split]
Dreamer3 has quit [*.net *.split]
mg^ has quit [*.net *.split]
Koshian has quit [*.net *.split]
lnx has quit [*.net *.split]
Yiota has quit [*.net *.split]
Gadgetoid has quit [*.net *.split]
webhat_ has quit [*.net *.split]
sysanthrope has quit [*.net *.split]
shaman42 has joined #ruby
sysanthrope has joined #ruby
olblak has joined #ruby
Gadgetoid has joined #ruby
lnx has joined #ruby
DylanJ has quit [*.net *.split]
DexterLB has quit [*.net *.split]
sarlalian has quit [*.net *.split]
bhaak has quit [*.net *.split]
guardian has quit [*.net *.split]
MiracleBlue__ has quit [*.net *.split]
jhill_ has quit [*.net *.split]
mozzarella has quit [*.net *.split]
hfp has quit [*.net *.split]
nirix has quit [*.net *.split]
gigetoo has quit [*.net *.split]
moredhel has quit [*.net *.split]
__main__ has quit [*.net *.split]
SirCmpwn has quit [*.net *.split]
shadeslayer has quit [*.net *.split]
zacts has quit [*.net *.split]
coffeejunk has quit [*.net *.split]
janno has quit [*.net *.split]
gregf_ has quit [*.net *.split]
aep has quit [*.net *.split]
SHyx0rmZ has quit [*.net *.split]
yxhuvud has quit [*.net *.split]
go|dfish has quit [*.net *.split]
Sou|cutter has quit [*.net *.split]
nullwarp has quit [*.net *.split]
ryotarai has quit [*.net *.split]
parus has quit [*.net *.split]
speaking1ode has quit [*.net *.split]
beagles has quit [*.net *.split]
psyq has quit [*.net *.split]
donnoc has quit [*.net *.split]
devyn_ has quit [*.net *.split]
mclee has quit [*.net *.split]
pocketprotector has quit [*.net *.split]
joconcepts_ has quit [*.net *.split]
Xat` has quit [*.net *.split]
<Damien22> my god just spent 2h to install ruby 2.x on debian 7 and it's going nowhere >-<
peteyg has joined #ruby
janno has joined #ruby
SirCmpwn has joined #ruby
sts_ has joined #ruby
neanderslob has joined #ruby
parus has joined #ruby
nirix has joined #ruby
zacts has joined #ruby
Derailed has joined #ruby
rkazak has quit [Quit: Sleep.....ing....]
Muz has joined #ruby
colegatron has joined #ruby
devyn has joined #ruby
shadeslayer has joined #ruby
Koshian has joined #ruby
lsmola has joined #ruby
gigetoo has joined #ruby
patronus has joined #ruby
djellemah has joined #ruby
joconcepts has joined #ruby
mprelude_ has joined #ruby
gregf_ has joined #ruby
speaking1ode has joined #ruby
mg^ has joined #ruby
yxhuvud has joined #ruby
wldcordeiro has joined #ruby
mclee has joined #ruby
Xat` has joined #ruby
Dreamer3 has joined #ruby
pocketprotector has joined #ruby
aep has joined #ruby
b3nt_pin has joined #ruby
coffeejunk has joined #ruby
v0n has joined #ruby
Sou|cutter has joined #ruby
nullwarp has joined #ruby
sarlalian has joined #ruby
__main__ has joined #ruby
zacts is now known as Guest51056
ryotarai has joined #ruby
hfp has joined #ruby
psyq has joined #ruby
b3nt_pin is now known as Guest31659
guardian has joined #ruby
mozzarella has joined #ruby
go|dfish has joined #ruby
edulix has joined #ruby
knight_ has joined #ruby
donnoc has joined #ruby
Conflict has joined #ruby
g3funk has joined #ruby
GinoManWorks has joined #ruby
acerna has joined #ruby
MiracleBlue__ has joined #ruby
sjohnsen has joined #ruby
jhill_ has joined #ruby
srenatus has joined #ruby
<Damien22> root@vps69270:/tmp/ruby-2.2.4# ruby -v >ruby 2.2.4p230 (2015-12-16 revision 53155) [x86_64-linux]
<Damien22> root@vps69270:/tmp/ruby-2.2.4# gem install jekyll >ERROR: Error installing jekyll: jekyll requires Ruby version >= 2.0.0.
Guest68755 is now known as BLuEGoD
<Damien22> also ruby-switch --list >ruby1.8 >ruby1.9.1
BLuEGoD is now known as Guest70172
<Damien22> i'm missing something
Hammy_Work has quit [Ping timeout: 252 seconds]
tvw has joined #ruby
lurch_ has joined #ruby
krz has joined #ruby
aufi has joined #ruby
juddey has quit [Ping timeout: 260 seconds]
scepticulous has joined #ruby
bigkevmcd has joined #ruby
Burgestrand has joined #ruby
tjbiddle has joined #ruby
the_drow has joined #ruby
ropeney has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
<Damien22> finally got it
<Damien22> damn
mondok has joined #ruby
karapetyan has quit [Remote host closed the connection]
speakingcode has quit [Quit: Lost terminal]
Hammy_Work has joined #ruby
eikood has quit [Read error: Connection reset by peer]
the_drow has quit [Client Quit]
eikood has joined #ruby
adgtl has joined #ruby
jam__ has quit [Remote host closed the connection]
mhoungbo has joined #ruby
tilllt has joined #ruby
hakunin_ has joined #ruby
hakunin has quit [Read error: Connection reset by peer]
tilllt has quit [Client Quit]
karapetyan has joined #ruby
yardenbar has joined #ruby
adgtl has quit [Remote host closed the connection]
Macaveli has joined #ruby
zzz has quit [Remote host closed the connection]
adgtl has joined #ruby
eljimbo has joined #ruby
jam_ has joined #ruby
einarj has joined #ruby
bhaak has joined #ruby
anisha has joined #ruby
ruby-lang963 has joined #ruby
eljimmy has quit [Ping timeout: 252 seconds]
pawnbox has quit [Remote host closed the connection]
zzz has joined #ruby
adgtl_ has joined #ruby
andikr has joined #ruby
adgtl has quit [Read error: Connection reset by peer]
adgtl_ is now known as adgtl
adgtl has quit [Changing host]
adgtl has joined #ruby
jam_ has quit [Ping timeout: 272 seconds]
karapetyan has quit [Remote host closed the connection]
TomyLobo has quit [Ping timeout: 250 seconds]
ruby-lang963 has quit [Ping timeout: 252 seconds]
karapetyan has joined #ruby
firstdayonthejob has joined #ruby
SenpaiSilver has quit [Quit: Leaving]
eljimbo has quit [Read error: No route to host]
zzz has quit [Ping timeout: 256 seconds]
eljimmy has joined #ruby
Burgestrand has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
atmosx has joined #ruby
godzillaenlacasa has quit [Quit: ZZZZZ....]
zzz has joined #ruby
zzz has quit [Remote host closed the connection]
armyriad has quit [Ping timeout: 272 seconds]
armyriad has joined #ruby
Burgestrand has joined #ruby
x77686d has quit [Quit: x77686d]
adgtl has quit [Remote host closed the connection]
blaxter has joined #ruby
kirillzh has joined #ruby
houhouli_ has joined #ruby
ramortegui has joined #ruby
houhoulis has quit [Ping timeout: 264 seconds]
y2mq37 has quit [Ping timeout: 240 seconds]
sandstrom has joined #ruby
dmolina has joined #ruby
juddey has joined #ruby
cjbottaro has joined #ruby
Burgestrand has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
sandstrom has quit [Client Quit]
msg31 has quit [Remote host closed the connection]
jaiks has quit [Ping timeout: 240 seconds]
hjoest2 has joined #ruby
karapetyan has quit [Remote host closed the connection]
benlieb has quit [Quit: benlieb]
karapetyan has joined #ruby
rsc___ has quit [Quit: rsc___]
Sucks has quit [Remote host closed the connection]
hjoest has quit [Ping timeout: 248 seconds]
juddey has quit [Ping timeout: 250 seconds]
pickandmix has quit [Quit: WeeChat 1.4]
karapetyan has quit [Ping timeout: 240 seconds]
Guest70172 is now known as BLuEGoD
BLuEGoD is now known as Guest27365
CloCkWeRX has joined #ruby
pihpah has joined #ruby
ta_ has quit [Remote host closed the connection]
idefine has joined #ruby
zzz has joined #ruby
adgtl has joined #ruby
SCHAAP137 has joined #ruby
idefine has quit [Ping timeout: 240 seconds]
edwinvdgraaf has joined #ruby
pawnbox has joined #ruby
DmitryBochkarev has quit [Quit: This computer has gone to sleep]
the_drow has joined #ruby
karapetyan has joined #ruby
sandstrom has joined #ruby
moua has joined #ruby
DexterLB has joined #ruby
pickandmix has joined #ruby
pickandmix has quit [Client Quit]
moredhel has joined #ruby
pickandmix has joined #ruby
lsmola has quit [Ping timeout: 240 seconds]
adgtl has quit [Remote host closed the connection]
cjbottaro has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
eikood has quit [Read error: Connection reset by peer]
jaiks has joined #ruby
eikood has joined #ruby
troulouliou_div2 has joined #ruby
eikood has quit [Read error: Connection reset by peer]
adgtl has joined #ruby
ramortegui has quit [Quit: Leaving]
codecop has joined #ruby
eikood has joined #ruby
LoneHermit has quit [Remote host closed the connection]
eikood has quit [Remote host closed the connection]
eikood has joined #ruby
DylanJ has joined #ruby
CloCkWeRX has quit [Ping timeout: 256 seconds]
karapetyan has quit [Remote host closed the connection]
ziyadb has joined #ruby
y2mq37 has joined #ruby
karapetyan has joined #ruby
Dimik has quit [Ping timeout: 272 seconds]
karapetyan has quit [Ping timeout: 240 seconds]
SShrike has joined #ruby
framling has joined #ruby
tesuji has joined #ruby
rsc___ has joined #ruby
DEA7TH has quit [Quit: DEA7TH]
firstdayonthejob has quit [Ping timeout: 240 seconds]
armyriad has quit [Ping timeout: 272 seconds]
astrobun_ has quit [Read error: Connection reset by peer]
last_staff has joined #ruby
armyriad has joined #ruby
minimalism has quit [Read error: Connection reset by peer]
zzz has quit [Remote host closed the connection]
astrobun_ has joined #ruby
kmckelvin has joined #ruby
Cohedrin has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Mon_Ouie has joined #ruby
stannard has joined #ruby
Snowy has joined #ruby
CloCkWeRX has joined #ruby
kmckelvin has quit [Read error: Connection reset by peer]
Burgestrand has joined #ruby
railsForDaiz has joined #ruby
nettoweb has joined #ruby
binaryplease has joined #ruby
stannard has quit [Ping timeout: 248 seconds]
Mon_Ouie has quit [Ping timeout: 240 seconds]
DEA7TH has joined #ruby
<ddv> Damien22: use a ruby version manager
<ddv> Damien22: also installing gems as root is a bad idea but I guess this is the default with a system provided ruby
Youngmathimus0 has quit [Ping timeout: 276 seconds]
railsForDaiz has quit [Ping timeout: 240 seconds]
futilegames has joined #ruby
bronson has joined #ruby
ur5us has quit [Remote host closed the connection]
ta has joined #ruby
elifoster has quit [Ping timeout: 276 seconds]
DEA7TH has quit [Quit: DEA7TH]
tesuji_ has joined #ruby
Xeago has joined #ruby
askhat has joined #ruby
tesuji_ has quit [Read error: Connection reset by peer]
moeabdol2 has quit [Ping timeout: 248 seconds]
tesuji has quit [Ping timeout: 276 seconds]
bronson has quit [Ping timeout: 256 seconds]
askhat has quit [Max SendQ exceeded]
askhat has joined #ruby
futilegames has left #ruby [#ruby]
Guest27365 is now known as BLuEGoD
pihpah has quit [Ping timeout: 240 seconds]
BLuEGoD is now known as Guest46344
kmckelvin has joined #ruby
arlek has quit [Ping timeout: 256 seconds]
kirillzh has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Coldblackice has quit [Ping timeout: 260 seconds]
railsForDaiz has joined #ruby
stevemackinnon has quit [Remote host closed the connection]
wwwbukolaycom has joined #ruby
sandstrom has quit [Quit: My computer has gone to sleep.]
mlehrer has joined #ruby
joonty has joined #ruby
baweaver has quit [Remote host closed the connection]
binaryplease1 has joined #ruby
mdw has joined #ruby
rsc___ has quit [Quit: rsc___]
Burgestrand has quit [Ping timeout: 264 seconds]
go|dfish has quit [Changing host]
go|dfish has joined #ruby
acerna has quit [Changing host]
acerna has joined #ruby
MiracleBlue__ has quit [Changing host]
MiracleBlue__ has joined #ruby
jhill_ has quit [Changing host]
jhill_ has joined #ruby
srenatus has quit [Changing host]
srenatus has joined #ruby
FastJack_ has quit [Quit: leaving]
anisha has quit [Changing host]
anisha has joined #ruby
andikr has quit [Changing host]
andikr has joined #ruby
mondok has quit [Ping timeout: 240 seconds]
jaiks has quit [Changing host]
jaiks has joined #ruby
ziyadb has quit [Changing host]
ziyadb has joined #ruby
binaryplease has quit [Ping timeout: 264 seconds]
rsc___ has joined #ruby
binaryplease2 has joined #ruby
valera has joined #ruby
gigetoo has quit [Ping timeout: 264 seconds]
JohnBat26 has joined #ruby
binaryplease1 has quit [Ping timeout: 272 seconds]
tjbiddle has quit [Quit: tjbiddle]
ledestin has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
sshuriu has quit [Quit: Leaving]
cikunts has joined #ruby
<cikunts> have you ever had dreams where you kill people?
Burgestrand has joined #ruby
hjoest2 has quit [Read error: Connection reset by peer]
pawnbox has quit [Remote host closed the connection]
hjoest has joined #ruby
hjoest2 has joined #ruby
llua has quit [Ping timeout: 240 seconds]
cikunts is now known as jimbow
jimbow was kicked from #ruby by ChanServ [User is banned from this channel]
FastJack_ has joined #ruby
LoneHerm_ has joined #ruby
framlinqp has joined #ruby
framling has quit [Read error: Connection reset by peer]
techietrash has quit [Ping timeout: 260 seconds]
TheMoonMaster has quit [Ping timeout: 260 seconds]
lancetw has quit [Ping timeout: 260 seconds]
braderhart has quit [Ping timeout: 260 seconds]
manveru has quit [Ping timeout: 260 seconds]
Miron has quit [Ping timeout: 260 seconds]
Lloyd has quit [Ping timeout: 260 seconds]
ELLIOTTCABLE has quit [Ping timeout: 260 seconds]
jmcc_______ has quit [Ping timeout: 260 seconds]
kfpratt has quit [Ping timeout: 260 seconds]
hplar has quit [Ping timeout: 260 seconds]
manveru_ has joined #ruby
sauvin has quit [Quit: Leaving]
hjoest has quit [Ping timeout: 248 seconds]
hplar has joined #ruby
techietrash has joined #ruby
manveru_ is now known as manveru
jmcc_______ has joined #ruby
Miron has joined #ruby
lancetw has joined #ruby
tilllt has joined #ruby
Lloyd has joined #ruby
LoneHerm_ has quit [Ping timeout: 240 seconds]
pandaant has joined #ruby
braderhart has joined #ruby
lsmola has joined #ruby
ELLIOTTCABLE has joined #ruby
tilllt has quit [Client Quit]
ixti has quit [Quit: WeeChat 1.4]
dionysus70 has joined #ruby
dionysus69 has quit [Ping timeout: 264 seconds]
dionysus70 is now known as dionysus69
AlphaAtom has joined #ruby
FastJack_ is now known as FastJack
sandstrom has joined #ruby
sandstrom has quit [Client Quit]
rsc___ has quit [Quit: rsc___]
drptbl has joined #ruby
framlinqp has quit [Remote host closed the connection]
TheMoonMaster has joined #ruby
mikecmpbll has joined #ruby
tjbiddle has joined #ruby
yorickpeterse has joined #ruby
jam_ has joined #ruby
binaryplease2 has quit [Ping timeout: 252 seconds]
william3 has joined #ruby
jespada has joined #ruby
adgtl has quit [Remote host closed the connection]
platzhirsch has joined #ruby
boogibugs has joined #ruby
Darkwater has quit [Quit: Changing server]
Darkwater has joined #ruby
Darkwater has joined #ruby
Darkwater has quit [Changing host]
CloCkWeRX has quit [Ping timeout: 248 seconds]
binaryplease2 has joined #ruby
pawnbox has joined #ruby
jam_ has quit [Ping timeout: 252 seconds]
Gnut has joined #ruby
yfeldbl__ has quit [Remote host closed the connection]
DEA7TH has joined #ruby
themsay2 has joined #ruby
drptbl_ has joined #ruby
ilhami has joined #ruby
<ilhami> shevy, :D
blur3d has joined #ruby
binaryplease2 has quit [Ping timeout: 260 seconds]
<flughafen> hey
themsay has quit [Ping timeout: 252 seconds]
<boogibugs> Hi, not sure if this is right place i am running a vagrant-demo to bring up some machines but i get an error when i run: bundle exec rake start gist here: https://gist.github.com/anonymous/57b0d810abf131b04c55
drptbl has quit [Ping timeout: 260 seconds]
DEA7TH has quit [Ping timeout: 264 seconds]
shredding has joined #ruby
nullFxn_ has quit [Quit: Lost terminal]
darkf has quit [Quit: Leaving]
blackmesa has joined #ruby
soc42 has joined #ruby
<apeiros> boogibugs: maybe your ruby or rubygems is too old. not sure.
yfeldblum has joined #ruby
hjoest2 has quit [Read error: Connection reset by peer]
hjoest3 has joined #ruby
adgtl has joined #ruby
patchedmonkey has joined #ruby
<apeiros> though, reading through gemspec guide it seems as if ext_dir was deprecated. at least it's not (no longer?) listed there.
william3 has quit [Remote host closed the connection]
CloCkWeRX has joined #ruby
soc42 has quit [Remote host closed the connection]
<boogibugs> apeiros, $ gem --version 2.0.14 ruby --version ruby 2.0.0p598 (2014-11-13)
blackmesa has quit [Ping timeout: 252 seconds]
<boogibugs> I am new to using this stiff so not had issues before when i run some vagrant demos from github they usually work...
<boogibugs> *stuff... doh!
<boogibugs> bbiab meeting.
tvw has quit [Ping timeout: 240 seconds]
Gnut has quit [Ping timeout: 252 seconds]
blackmesa has joined #ruby
loz has quit [Ping timeout: 256 seconds]
trinaldi has joined #ruby
tesuji has joined #ruby
andrewvos has joined #ruby
medfly has joined #ruby
arlek has joined #ruby
zenlot1 is now known as zenlot
mdw has quit [Quit: Sleeping Zzzzz]
sauvin has joined #ruby
platzhirsch has left #ruby [#ruby]
Guest46344 is now known as BLuEGoD
evidex has joined #ruby
BLuEGoD is now known as Guest52998
marr has joined #ruby
Burgestrand has quit [Ping timeout: 272 seconds]
ElFerna_ has joined #ruby
marr has quit [Client Quit]
whiteline has quit [Ping timeout: 248 seconds]
marr has joined #ruby
medfly has left #ruby [#ruby]
Burgestrand has joined #ruby
kp666 has quit [Remote host closed the connection]
rsc___ has joined #ruby
FooMunki has joined #ruby
kp666 has joined #ruby
andrewvos has quit [Ping timeout: 276 seconds]
mdw has joined #ruby
whiteline has joined #ruby
Averna has quit [Ping timeout: 276 seconds]
aryaching has joined #ruby
dlitvak has joined #ruby
dlitvak has quit [Remote host closed the connection]
pawnbox has quit [Remote host closed the connection]
pawnbox has joined #ruby
c0m0 has joined #ruby
andrewvos has joined #ruby
krz has quit [Ping timeout: 264 seconds]
Anderson69s has joined #ruby
YP-QMUL-W has joined #ruby
dbugger has joined #ruby
ldnunes has joined #ruby
<dbugger> Hello fellas, I have been following this instructions (http://railsapps.github.io/installrubyonrails-ubuntu.html) to install ruby on Ubuntu, but when I run "rvm --default use ruby-2.3.0", I get the following error output (http://laravel.io/bin/PX1RP). What am I doing wrong???
dbugger has quit [Quit: Leaving]
A124 has quit [Quit: '']
vikas027 has joined #ruby
ElFerna_ has quit [Ping timeout: 250 seconds]
vikas027 has left #ruby [#ruby]
jaiks has quit [Ping timeout: 250 seconds]
karapetyan has joined #ruby
A124 has joined #ruby
skade has joined #ruby
rsc___ has quit [Quit: rsc___]
<adaedra> Did you setup your terminal to create login shells?
pickandmix has quit [Quit: WeeChat 1.4]
william3 has joined #ruby
hjoest3 has quit [Read error: Connection reset by peer]
ledestin has joined #ruby
ocbtec has joined #ruby
karapetyan has quit [Ping timeout: 240 seconds]
Burgestrand has quit [Ping timeout: 264 seconds]
rikkipitt has joined #ruby
mark4 has joined #ruby
tulak has joined #ruby
hjoest has joined #ruby
Burgestrand has joined #ruby
andrewvos has quit [Ping timeout: 252 seconds]
maikowblue has joined #ruby
rsc___ has joined #ruby
Xeago has quit [Remote host closed the connection]
pawnbox has quit [Remote host closed the connection]
dmolina has quit [Ping timeout: 240 seconds]
pawnbox has joined #ruby
dmolina has joined #ruby
jaiks has joined #ruby
gregf_ has left #ruby [#ruby]
tilllt has joined #ruby
gregf__ has joined #ruby
x0f has quit [Ping timeout: 264 seconds]
Guest52998 is now known as BLuEGoD
BLuEGoD is now known as Guest61532
cajone has quit [Read error: Connection reset by peer]
LoneHermit has joined #ruby
baweaver has joined #ruby
x0f has joined #ruby
devbug_ has quit [Read error: Connection reset by peer]
cajone has joined #ruby
dtordable has quit [Remote host closed the connection]
LoneHermit has quit [Ping timeout: 240 seconds]
chouhoulis has quit [Remote host closed the connection]
UtkarshRay has quit [Remote host closed the connection]
baweaver has quit [Ping timeout: 250 seconds]
Ishido has joined #ruby
rikkipitt has quit [Remote host closed the connection]
CloCkWeRX has quit [Ping timeout: 272 seconds]
resin has quit [Quit: Lost terminal]
hjoest2 has joined #ruby
hjoest3 has joined #ruby
dlitvak has joined #ruby
hjoest has quit [Read error: Connection reset by peer]
dtordable has joined #ruby
ElSif has quit [Read error: Connection reset by peer]
dlitvak_ has joined #ruby
Hounddog has joined #ruby
ropeney has joined #ruby
hjoest2 has quit [Ping timeout: 248 seconds]
astrobun_ has quit [Remote host closed the connection]
dlitvak has quit [Ping timeout: 272 seconds]
kobain has joined #ruby
Spami has joined #ruby
idefine has joined #ruby
jam_ has joined #ruby
pickandmix has joined #ruby
idefine has quit [Ping timeout: 250 seconds]
Spami has quit [Quit: This computer has gone to sleep]
jam_ has quit [Ping timeout: 264 seconds]
Spami has joined #ruby
CloCkWeRX has joined #ruby
cassioscabral has joined #ruby
Xeago has joined #ruby
carella_ has quit []
Shaboum has joined #ruby
twintail has quit [Remote host closed the connection]
rikkipitt has joined #ruby
YP-QMUL-W has quit [Ping timeout: 252 seconds]
dlitvak has joined #ruby
houhouli_ has quit [Remote host closed the connection]
YP-QMUL-W has joined #ruby
dlitvak_ has quit [Ping timeout: 276 seconds]
nickjj_ is now known as nickjj
adgtl has quit [Remote host closed the connection]
pawnbox_ has joined #ruby
<boogibugs> apeiros, are you still here. I am back now any other ideas on that error.
<apeiros> partially
<apeiros> which error?
pawnbox has quit [Ping timeout: 264 seconds]
idefine has joined #ruby
ropeney has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
<jhass> boogibugs: try updating bundler
hjoest3 has quit [Ping timeout: 248 seconds]
Xeago has quit [Remote host closed the connection]
YP-QMUL-W has quit [Read error: Connection reset by peer]
Spami has quit [Quit: This computer has gone to sleep]
Xeago has joined #ruby
Xeago has quit [Remote host closed the connection]
pawnbox_ has quit [Remote host closed the connection]
stevemackinnon has joined #ruby
Burgestrand has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
pawnbox has joined #ruby
idefine has quit [Ping timeout: 250 seconds]
zotherstupidguy has joined #ruby
Xeago has joined #ruby
UtkarshRay has joined #ruby
jottr has joined #ruby
Xeago has quit [Remote host closed the connection]
hjoest has joined #ruby
ElFerna_ has joined #ruby
tjbiddle has quit [Quit: tjbiddle]
<boogibugs> jhass, gem update bundler or from yum? I am using RHEL 7 and this the latest one in the channel
<shevy> https://twitter.com/rubygems is quite nice, for those who did not know it
<jhass> I'd prefer the method you installed it from initially, given it has a newer version available
adgtl has joined #ruby
<boogibugs> jhass, rubygem-bundler-1.7.8-3.el7.noarch is the latest one installed this package you mean?
Guest61532 is now known as BLuEGoD
<jhass> perhaps? I avoid RHEL as much as I can
<jhass> the latest bundler release is 1.11.2 or so
BLuEGoD is now known as Guest83975
rsc___ has quit [Ping timeout: 260 seconds]
riotjones has joined #ruby
<boogibugs> yeah I know what you mean but its my only choice for now... :(
Xeago has joined #ruby
idefine has joined #ruby
<boogibugs> is their an external repo then for those packages i can point to, as i do have sudo rights on my workstation at least
<boogibugs> right i just did gem install bundler and now have version 1.11.2. as said before I am new to this stuff.
<jhass> I mean you can "just" sudo gem install bundler if you're okay with installing stuff not managed by the package manager to the system
<boogibugs> I will give it another go
shredding has quit [Ping timeout: 264 seconds]
Burgestrand has joined #ruby
<boogibugs> I just ran gem install bundler: new error you will like this... Could not find gem 'bundler (<= 1.10.5, >= 1.5.2)', which is required by gem 'vagrant (= 1.7.4)', in any of the sources.
<jhass> oh joy
<boogibugs> lol
<jhass> gem install bundler -v 1.10.5 ?
<boogibugs> so going round in circles it seems i will be
<boogibugs> will try that
<r4z3r> see if you can manually download the gem from rubygems and install it by hand
<boogibugs> rubygems.org?
idefine has quit [Ping timeout: 252 seconds]
<jhass> r4z3r: no need to, see above
<r4z3r> I understand above, and don't see how that matters jhass
<r4z3r> .gem's are just .zips
<jhass> I don't see how manually downloading the gem matters for anything
<r4z3r> so they can be extracted and installed if you know where the system gem path is
<r4z3r> it avoids circular checks to get a version installed
<jhass> I don't think the above error was from the gem install command
<boogibugs> yep same error when i run it and say that verison
millerti has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
william3 has quit [Remote host closed the connection]
chouhoulis has joined #ruby
william3 has joined #ruby
<r4z3r> jhass he said, "I just ran gem install bundler"... how is that error not from gem install then
<boogibugs> it also mentions i should remove my vagrant plugins dir as well? should i do that after installing the 1.10.5 version. Iwill paste full error to existing gist
<jhass> ugh I don't know
<jhass> vagrant is such a mess
<jhass> don't they have a dedicated support channel?
<jhass> yes, #vagrant is a thing
hjoest2 has joined #ruby
<boogibugs> yeah.. i am in there too.. but wasnt sure if the issue was ruby gems or vagrant...
pickandmix has quit [Quit: WeeChat 1.4]
<boogibugs> :)
Xeago has quit [Remote host closed the connection]
<jhass> a combination of both an RHEL I'd say ;P
<r4z3r> ^^ RHEL adds complexity to many things
<jhass> where I'd blame rubygems & ruby the fewest
<boogibugs> yeah seems so
<boogibugs> so i cant edit an existing gist then it seems...
<jhass> not anonymous ones
<boogibugs> yep here is the latest one
<jhass> boogibugs: gem uninstall bundler -v 1.11.2
<boogibugs> i think i should remove that plugin dir maybe and re ru nand let it find v 1.10.5
<adaedra> we are anonymous, we never forget, we never forgive, and we can't edit gists.
hjoest has quit [Ping timeout: 248 seconds]
<boogibugs> one option i was thinking too
chouhoulis has quit [Ping timeout: 240 seconds]
<r4z3r> boogibugs if it's your gist, you'd click edit in the top right of the screen
<boogibugs> yeah i saw that earlier but then it is now gone from the first one i posted
millerti has joined #ruby
<r4z3r> it shouldn't ever leave it.. https://help.github.com/articles/creating-gists/ even my multi year old ones still have it
framling has joined #ruby
<jhass> r4z3r: hint: their github username is _not_ anonymous
SShrike has quit [Quit: SShrike]
<boogibugs> I can see a delete button but no edit in either gist i have created...
Burgestrand has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
<boogibugs> yes maybe anonymous has no rights they just time out i guess...
LoneHerm_ has joined #ruby
<boogibugs> got a little further now but fails launching the vm it maybe ruby code or vangrantfile now not sure
Ousmane has joined #ruby
<Ousmane> Bonjour tout le monde
<jhass> good morning
Azure|dc has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Ousmane has quit [Quit: Going offline, see ya! (www.adiirc.com)]
jaiks has quit [Ping timeout: 240 seconds]
<adaedra> Au revoir
cassioscabral has quit [Quit: cassioscabral]
LoneHerm_ has quit [Ping timeout: 240 seconds]
adgtl has quit [Remote host closed the connection]
Spami has joined #ruby
mdw has quit [Quit: Sleeping Zzzzz]
sdothum has joined #ruby
skade has quit [Quit: Computer has gone to sleep.]
sepp2k has joined #ruby
AlexJakeGreen has joined #ruby
<shevy> sexy language
Ebok has joined #ruby
dexter_ has quit [Ping timeout: 256 seconds]
dlitvak_ has joined #ruby
pawnbox has quit [Remote host closed the connection]
<Ox0dea> "I find your lack of syntax errors disturbing."
pawnbox has joined #ruby
Ebok has quit [Client Quit]
<AlexJakeGreen> Hi guys. Is it possible to get named captures if regex was called from variable? http://pastebin.com/embed_iframe/Fv4WACWT
<ruby[bot]> AlexJakeGreen: we in #ruby do not like pastebin.com, it loads slowly for most, has ads which are distracting and has terrible formatting. Please use https://gist.github.com
dlitvak has quit [Ping timeout: 252 seconds]
dextertzu has quit [Read error: Connection reset by peer]
<apeiros> AlexJakeGreen: use .match and see MatchData#captures
stannard has joined #ruby
<apeiros> or actually might only be available via MatchData#[]
dextertzu has joined #ruby
Ebok has joined #ruby
skade has joined #ruby
pawnbox has quit [Remote host closed the connection]
Mon_Ouie has joined #ruby
<AlexJakeGreen> apeiros, MatchData works, thank you!
<Ox0dea> >> r = /(?<month>\w+)/; 'Feb'[r]; $~[:month]
<ruby[bot]> Ox0dea: # => "Feb" (https://eval.in/518862)
blackmesa has quit [Ping timeout: 256 seconds]
<Ox0dea> (Sorry.)
dlitvak_ has quit [Ping timeout: 260 seconds]
<apeiros> Ox0dea: re your basic code - you could probably even get that to evaluate…
BSaboia has joined #ruby
<Ox0dea> apeiros: Well, yeah...
<Ox0dea> But permitting subroutines means making a full-on interpreter.
<apeiros> ^^
<AlexJakeGreen> I have never seen this syntax 'Feb'[r] before. I've got a new knowledge. thanks!
eikood has quit [Ping timeout: 240 seconds]
rgtk has joined #ruby
<Ox0dea> I'm sure that fella's so pleased that his language let him make it not an interpreter.
<apeiros> AlexJakeGreen: String#[] is quite powerful. in general it's a good idea to read through at least all of core docs once.
aganov has joined #ruby
oivoodoo has joined #ruby
greynetic has joined #ruby
dlitvak has joined #ruby
<Ox0dea> apeiros: Thoughts on a more aesthetic approach to IF/THEN support?
Mon_Ouie has quit [Ping timeout: 248 seconds]
<apeiros> Ox0dea: trying not to even think about it, sorry :)
<Ox0dea> Fair.
pawnbox has joined #ruby
sdothum has quit [Quit: ZNC - 1.6.0 - http://znc.in]
aryaching_ has joined #ruby
aryaching has quit [Ping timeout: 252 seconds]
duckpuppy has joined #ruby
sdothum has joined #ruby
kmckelvin has quit [Read error: Connection reset by peer]
kmckelvi1 has joined #ruby
pawnbox has quit [Ping timeout: 240 seconds]
Burgestrand has joined #ruby
blackmesa has joined #ruby
Anderson69s has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
pawnbox has joined #ruby
johnmilton has joined #ruby
joonty has quit [Ping timeout: 272 seconds]
openstruct has joined #ruby
joonty has joined #ruby
unl0ckd has joined #ruby
themsay has joined #ruby
howdoi has joined #ruby
krz has joined #ruby
bronson has joined #ruby
unl0ckd has quit [Max SendQ exceeded]
themsay3 has joined #ruby
gagrio has quit [Ping timeout: 256 seconds]
themsay2 has quit [Ping timeout: 250 seconds]
themsay has quit [Ping timeout: 276 seconds]
Ishido has quit [Remote host closed the connection]
bronson has quit [Ping timeout: 256 seconds]
brendan- has quit [Quit: Textual IRC Client: www.textualapp.com]
godzillaenlacasa has joined #ruby
blackmesa has quit [Ping timeout: 256 seconds]
themsay has joined #ruby
syath has joined #ruby
Burgestrand has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
ziyadb has quit [Quit: Connection closed for inactivity]
GinoManWorks has quit [Read error: Connection reset by peer]
Guest83975 is now known as BLuEGoD
sandstrom has joined #ruby
synthroid has joined #ruby
framling has quit [Remote host closed the connection]
BLuEGoD is now known as Guest96578
GinoManWorks has joined #ruby
Xeago has joined #ruby
sandstrom has quit [Client Quit]
themsay3 has quit [Ping timeout: 276 seconds]
yfeldblum has quit [Ping timeout: 240 seconds]
Xeago has quit [Remote host closed the connection]
<shevy> haha
<shevy> apeiros has given up on Ox0dea :D
<shevy> ack
<shevy> Pushing gem to https://rubygems.org...
<shevy> <head><title>500 Internal Server Error</title></head>
<shevy> hmm works now
Ebok has quit [Quit: This computer has gone to sleep]
tlaxkit has joined #ruby
sandstrom has joined #ruby
chouhoulis has joined #ruby
Ebok has joined #ruby
Burgestrand has joined #ruby
gagrio has joined #ruby
GinoManWorks has quit [Read error: Connection reset by peer]
iloveunix8955 has joined #ruby
themsay has quit [Quit: AtomicIRC: The nuclear option.]
themsay has joined #ruby
themsay has quit [Read error: Connection reset by peer]
mdw has joined #ruby
themsay has joined #ruby
goodcodeguy has joined #ruby
chouhoulis has quit [Ping timeout: 265 seconds]
mikeiniowa has quit [Remote host closed the connection]
ledestin has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
mist has quit [Changing host]
mist has joined #ruby
ponga has joined #ruby
f4cl3y has joined #ruby
jazzonmymind has quit [Quit: cycle]
jazzonmymind has joined #ruby
askhat has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Xeago has joined #ruby
Xeago has quit [Remote host closed the connection]
Ebok has quit [Quit: This computer has gone to sleep]
askhat has joined #ruby
oivoodoo has quit [Remote host closed the connection]
dlitvak_ has joined #ruby
dexter_ has joined #ruby
Ebok has joined #ruby
oivoodoo has joined #ruby
AlexJakeGreen has quit [Quit: Leaving]
oumanef has joined #ruby
<DefV> 6
<shevy> 5
<ddv> 4
jaiks has joined #ruby
<jhass> 3
dlitvak has quit [Ping timeout: 260 seconds]
blackmesa has joined #ruby
marzo has joined #ruby
jam_ has joined #ruby
stevemackinnon has quit [Remote host closed the connection]
millerti has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
tatsuo has quit [Remote host closed the connection]
stevemackinnon has joined #ruby
askhat_ has joined #ruby
karapetyan has joined #ruby
askhat has quit [Ping timeout: 240 seconds]
dexter_ has quit [Ping timeout: 240 seconds]
ruby-lang191 has joined #ruby
<ruby-lang191> hi
<jhass> hi
tjbiddle has joined #ruby
jam_ has quit [Ping timeout: 250 seconds]
astrobunny has quit [Ping timeout: 272 seconds]
s00pcan_ has quit [Remote host closed the connection]
stevemackinnon has quit [Ping timeout: 240 seconds]
blackmesa has quit [Ping timeout: 256 seconds]
DEA7TH has joined #ruby
karapetyan has quit [Ping timeout: 250 seconds]
M-Kodo has quit [Remote host closed the connection]
pdoherty has joined #ruby
mist has left #ruby [#ruby]
rgtk has quit [Ping timeout: 248 seconds]
DEA7TH has quit [Ping timeout: 240 seconds]
s00pcan_ has joined #ruby
g3funk is now known as braidn
astrobunny has joined #ruby
lxsameer has quit [Quit: Leaving]
millerti has joined #ruby
atmosx has quit [Quit: This is aparting message!]
oumanef has quit [Remote host closed the connection]
krobzaur has quit [Quit: WeeChat 0.4.2]
M-shine has joined #ruby
blur3d has quit [Quit: blur3d]
pickandmix has joined #ruby
CloCkWeRX has quit [Ping timeout: 260 seconds]
skade has quit [Quit: Computer has gone to sleep.]
Burgestrand has quit [Ping timeout: 265 seconds]
Xeago has joined #ruby
Ebok has quit [Quit: This computer has gone to sleep]
kenpoint has joined #ruby
goodcodeguy has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
graffix222 has joined #ruby
millerti has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
skade has joined #ruby
gagrio has quit [Ping timeout: 250 seconds]
diegoviola has joined #ruby
yqfvwal has quit [Ping timeout: 250 seconds]
kam270 has joined #ruby
solocshaw has joined #ruby
M-Kodo has joined #ruby
<apeiros> shevy: huh? no. I just try to avoid getting into stuff which would be fun but are not one of my main objectives. there's already far too many of those.
<EdwardIII> so i've been spending a lot of time on planet-DI recently
marzo has quit [Killed (Sigyn (Spam is off topic on freenode.))]
Burgestrand has joined #ruby
Tempesta has quit [Quit: See ya!]
ziyadb has joined #ruby
roshanavand has quit [Remote host closed the connection]
Anderson69s has joined #ruby
<apeiros> there's a full dependency injection planet?
goodcodeguy has joined #ruby
Damien22 has quit [Ping timeout: 240 seconds]
last_staff has quit [Quit: last_staff]
CloCkWeRX has joined #ruby
jespada has quit [Quit: WeeChat 1.5-dev]
tlaxkit has quit [Ping timeout: 256 seconds]
Guest96578 is now known as BLuEGoD
BLuEGoD is now known as Guest59397
BTRE has quit [Remote host closed the connection]
LoneHerm_ has joined #ruby
M-shine has quit [Remote host closed the connection]
M-Kodo has quit [Remote host closed the connection]
Anderson69s has quit [Quit: Time to EAT, SLEEP OR WHATEVER BYE!!!!!]
tatsuo has joined #ruby
tlaxkit has joined #ruby
Ousmane has joined #ruby
railsFor_ has joined #ruby
tlaxkit has quit [Remote host closed the connection]
oivoodoo_ has joined #ruby
LoneHerm_ has quit [Ping timeout: 248 seconds]
skade has quit [Quit: Computer has gone to sleep.]
sankaber has joined #ruby
dlitvak has joined #ruby
rbennacer has joined #ruby
arlek has quit [Read error: Connection reset by peer]
gagrio has joined #ruby
MiracleBlue___ has joined #ruby
skade has joined #ruby
lipoqil has joined #ruby
oivoodoo_ has quit [Remote host closed the connection]
<EdwardIII> apeiros: yes. it takes months to get anywhere ;)
<EdwardIII> so in ruby you don't really need that if you just want to do test doubles
norc has joined #ruby
<norc> ast>> class C; def; def m; end; end
<ruby[bot]> norc: I have parsed your code, the result is at https://eval.in/518938
<EdwardIII> beacuse you can setup the db using the tools available, or patch libs an object uses
theRealAlexz_ has joined #ruby
chouhoulis has joined #ruby
mja has joined #ruby
<norc> >> class C; def; def m; end; end
<ruby[bot]> norc: # => /tmp/execpad-1651b60126c6/source-1651b60126c6:2: syntax error, unexpected ';' ...check link for more (https://eval.in/518939)
<EdwardIII> but one place it was handy was if you wanted to inject objects with the same interface and swap them out at config
<EdwardIII> e.g. payment providers
<norc> >> class C def def m end end
jhill__ has joined #ruby
<ruby[bot]> norc: # => /tmp/execpad-85c04cb81ca2/source-85c04cb81ca2:2: syntax error, unexpected keyword_end, expecting ';' ...check link for more (https://eval.in/518940)
PedramT has joined #ruby
ilhami_ has joined #ruby
Muz_ has joined #ruby
<norc> Is this a bug in the ruby parser?
<EdwardIII> what do rubymeisters tend to do for this? just have a factory object?
<mja> hi guys! It is able to return more than one result using distinct in rails?
hfp_ has joined #ruby
<EdwardIII> and then inject the dep (e.g. PaypalClient, OgoneClient) through the constructor?
Xeago has quit [Remote host closed the connection]
<norc> mja: For ruby on rails you are best to ask in #rubyonrails
ELLIOTTCABLE_ has joined #ruby
p1k has quit [Ping timeout: 250 seconds]
oivoodoo has quit [Ping timeout: 272 seconds]
v1n has joined #ruby
<mja> oh, thanks, norc!
<norc> You are welcome
<apeiros> EdwardIII: that's probably what I'd do, yes
diegoviola has quit [*.net *.split]
dlitvak_ has quit [*.net *.split]
tilllt has quit [*.net *.split]
trinaldi has quit [*.net *.split]
ELLIOTTCABLE has quit [*.net *.split]
railsForDaiz has quit [*.net *.split]
wwwbukolaycom has quit [*.net *.split]
y2mq37 has quit [*.net *.split]
bigkevmcd has quit [*.net *.split]
jhill_ has quit [*.net *.split]
MiracleBlue__ has quit [*.net *.split]
hfp has quit [*.net *.split]
v0n has quit [*.net *.split]
Muz has quit [*.net *.split]
WebDawg has quit [*.net *.split]
ilhami has quit [*.net *.split]
theRealAlexz has quit [*.net *.split]
shevy has quit [*.net *.split]
crayfishx has quit [*.net *.split]
bodgix has quit [*.net *.split]
hfp_ is now known as hfp
<EdwardIII> right-o
<apeiros> if they've a sufficiently similar interface, I might provide a convenience constructor doing it for you
y2mq37 has joined #ruby
WebDawg has joined #ruby
BrunoSaboia has joined #ruby
diegoviola has joined #ruby
diegoviola has quit [Changing host]
diegoviola has joined #ruby
<apeiros> i.e. Payment::Provider.new service: Payment::Paypal, **config
ELLIOTTCABLE_ is now known as ELLIOTTCABLE
idefine has joined #ruby
millerti has joined #ruby
<apeiros> but only if there's an actual benefit
M-shine has joined #ruby
gix has quit [Ping timeout: 240 seconds]
mostlybadfly has quit [Quit: Connection closed for inactivity]
bodgix has joined #ruby
PedramT has quit [Ping timeout: 248 seconds]
andrewvos has joined #ruby
chouhoulis has quit [Ping timeout: 272 seconds]
gix has joined #ruby
BSaboia has quit [Ping timeout: 256 seconds]
nettoweb has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<norc> Nevermind I recognized my fault.
<norc> Ripper to the rescue
<norc> >> def def end
<ruby[bot]> norc: # => /tmp/execpad-117c6c3fe1e5/source-117c6c3fe1e5:2: syntax error, unexpected keyword_end, expecting ';' ...check link for more (https://eval.in/518941)
<norc> >> def def; end
<norc> That anyhow.
<ruby[bot]> norc: # => :def (https://eval.in/518942)
malconis has joined #ruby
crayfishx has joined #ruby
malconis has quit [Remote host closed the connection]
idefine has quit [Ping timeout: 240 seconds]
t0ggah has joined #ruby
malconis has joined #ruby
oivoodoo has joined #ruby
rbennace_ has joined #ruby
Sucks has joined #ruby
rbennacer has quit [Ping timeout: 265 seconds]
shevy has joined #ruby
cyclonis has quit [Ping timeout: 272 seconds]
GinoManWorks has joined #ruby
skade has quit [Quit: Computer has gone to sleep.]
trinaldi has joined #ruby
SenpaiSilver has joined #ruby
gregf__ has quit [Quit: leaving]
skade has joined #ruby
oivoodoo has quit [Remote host closed the connection]
rbennacer has joined #ruby
SenpaiSilver has quit [Remote host closed the connection]
M-Kodo has joined #ruby
rbennace_ has quit [Ping timeout: 256 seconds]
dlitvak has quit [Remote host closed the connection]
railsFor_ has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
dlitvak has joined #ruby
oivoodoo has joined #ruby
skade has quit [Client Quit]
mja has quit [Quit: Lost terminal]
cyclonis has joined #ruby
blackmesa has joined #ruby
andrewvos has quit [Ping timeout: 250 seconds]
railsForDaiz has joined #ruby
<djellemah> norc: send :'def'
Ousmane has quit [Quit: Going offline, see ya! (www.adiirc.com)]
Ousmane has joined #ruby
dlitvak has quit [Ping timeout: 248 seconds]
oivoodoo has quit [Remote host closed the connection]
shredding has joined #ruby
oivoodoo has joined #ruby
Ishido has joined #ruby
<EdwardIII> apeiros: i guess then you've got a hard dep on Payment::Paypal
<apeiros> Payment::Paypal would be mine. but yes, it'd have a dependency on whatever 3rd party code you need to interact with paypal
karapetyan has joined #ruby
norc has quit [Quit: Page closed]
roshanavand has joined #ruby
<Terens> Hello. How can I use semantic-ui with rails without pain ?
<Terens> I dont have a clue about saass /less
<Terens> etc
tlaxkit has joined #ruby
sergey_makagon has joined #ruby
<apeiros> ?rails Terens
<ruby[bot]> Terens: Please join #RubyOnRails for Rails questions. You need to be identified with NickServ, see /msg NickServ HELP
gregf_ has joined #ruby
goodcodeguy has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
anisha has quit [Quit: Leaving]
roshanavand has quit [Ping timeout: 248 seconds]
moeabdol has joined #ruby
andrewvos has joined #ruby
TomPeed has joined #ruby
whippythellama has joined #ruby
Burgestrand has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
RegulationD has joined #ruby
M-mistake has joined #ruby
rippa has joined #ruby
openstruct has quit [Remote host closed the connection]
Hammy_Work has quit [Quit: Leaving]
dopamean1 has quit [Ping timeout: 240 seconds]
Alayde has joined #ruby
moeabdol1 has joined #ruby
Hammy_Work has joined #ruby
railsForDaiz has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
pawnbox has quit [Remote host closed the connection]
moeabdol has quit [Ping timeout: 240 seconds]
dlitvak has joined #ruby
skade has joined #ruby
pawnbox has joined #ruby
Alayde has left #ruby [#ruby]
M-shine has quit [Quit: node-irc says goodbye]
RegulationD has quit [Ping timeout: 276 seconds]
Burgestrand has joined #ruby
Macaveli has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
adgtl has joined #ruby
bigkevmcd has joined #ruby
skweek has joined #ruby
goodcodeguy has joined #ruby
Ebok has joined #ruby
norc has joined #ruby
nfk has joined #ruby
sinkensabe has joined #ruby
<norc> f = Tempfile.new; f.write(content); File.rename(f.path, my_path); # Is using Tempfile like this safE?
Ebok has quit [Client Quit]
polishdub has joined #ruby
kirun has joined #ruby
nofacade has joined #ruby
B1n4r10 has joined #ruby
adgtl has quit [Remote host closed the connection]
frem has joined #ruby
<jhass> don't know its internals to make an educated statement, but feels a bit fishy. Trying to do an atomic update?
pickandmix has quit [Quit: WeeChat 1.4]
p1k has joined #ruby
freerobby has joined #ruby
saneax is now known as saneax_AFK
x77686d has joined #ruby
<norc> jhass: Yeah.
blackmesa has quit [Ping timeout: 240 seconds]
<jhass> isn't flock the intended mechanism for that?
<norc> Im already using that in other places.. mm-
Guest59397 is now known as BLuEGoD
<norc> I guess its easy to just open, EX flock it and then rewrite.
<jhass> yeah
BLuEGoD is now known as Guest41403
<jhass> I can also imagine less stale reads happen that way
adgtl has joined #ruby
dajobat has joined #ruby
jottr has quit [Ping timeout: 248 seconds]
dopamean1 has joined #ruby
adgtl has quit [Remote host closed the connection]
the_drow has quit [Quit: This computer has gone to sleep]
babblebre has joined #ruby
<norc> jhass: Yeah. Looks much cleaner too.
jottr has joined #ruby
wprice has joined #ruby
solars has quit [Ping timeout: 250 seconds]
chouhoulis has joined #ruby
nchambers^ has joined #ruby
thejoecarroll_ has joined #ruby
roshanavand has joined #ruby
moshee has quit [Ping timeout: 248 seconds]
thejoecarroll has quit [Ping timeout: 248 seconds]
havenwood has quit [Ping timeout: 248 seconds]
nchambers has quit [Ping timeout: 248 seconds]
hfp has quit [Ping timeout: 248 seconds]
hjoest2 has quit [Ping timeout: 248 seconds]
rfv has quit [Ping timeout: 248 seconds]
sonne has quit [Ping timeout: 248 seconds]
bakingbread has quit [Ping timeout: 248 seconds]
sonOfRa has quit [Ping timeout: 248 seconds]
JoshL has quit [Ping timeout: 248 seconds]
rideh has quit [Max SendQ exceeded]
moshee has joined #ruby
moshee has joined #ruby
rideh- has joined #ruby
havenn has joined #ruby
icedp has joined #ruby
hfp has joined #ruby
havenn is now known as havenwood
fmcgeough has joined #ruby
JoshL has joined #ruby
Junaos has joined #ruby
rfv has joined #ruby
aegis3121 has joined #ruby
sonne_ has joined #ruby
PsionTheory has joined #ruby
tomaw has quit [Quit: Quitting]
hjoest has joined #ruby
nchambers^ is now known as nchambers
s00pcan_ has quit [Ping timeout: 248 seconds]
sonOfRa has joined #ruby
tulak has quit [Ping timeout: 240 seconds]
chouhoulis has quit [Ping timeout: 272 seconds]
tomaw has joined #ruby
decoponio has joined #ruby
Xeago has joined #ruby
roshanavand has quit [Ping timeout: 250 seconds]
dionysus69 has quit [Ping timeout: 240 seconds]
Ousmane has quit [Quit: Going offline, see ya! (www.adiirc.com)]
ElFerna_ has quit [Ping timeout: 272 seconds]
beawesomeinstead has quit [Ping timeout: 240 seconds]
adgtl has joined #ruby
ilhami_ is now known as ilhami
askhat_ has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
s00pcan_ has joined #ruby
underplank has joined #ruby
kam270 has quit [Ping timeout: 240 seconds]
codecop has quit [Remote host closed the connection]
einarj has quit [Remote host closed the connection]
beawesomeinstead has joined #ruby
t0ggah has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
mary5030 has joined #ruby
mary5030 has quit [Remote host closed the connection]
mary5030 has joined #ruby
<adgtl> Any way in ruby to split a string detecting capital letters
<adgtl> "HyperText Markup Language"
<adgtl> should be splited to ["Hyper", "Text", "Markup", "Language"]
dexter_ has joined #ruby
jam_ has joined #ruby
dlitvak_ has joined #ruby
nettoweb has joined #ruby
solocshaw has quit [Remote host closed the connection]
solocshaw has joined #ruby
<jhass> adgtl: split takes a regular expression, including ones with zero width matches like lookarounds. An alternative venue is using String#scan
Xeago has quit [Remote host closed the connection]
dlitvak has quit [Ping timeout: 248 seconds]
<apeiros> >> "HyperText Markup Language".split(/(?=\p{Upper})/)
chendry has joined #ruby
<ruby[bot]> apeiros: # => ["Hyper", "Text ", "Markup ", "Language"] (https://eval.in/519040)
<chendry> hello, all! Why does "$5.50"[/\d*/] == "" ?
<jhass> apeiros: spaces ;P
Conflict has quit [Read error: Connection reset by peer]
Hammy_Work has quit [Read error: Connection reset by peer]
<apeiros> chendry: because * means *zero* or more
<apeiros> and the first match is found using zero.
Conflict has joined #ruby
<chendry> apeiros: doh! you're right. thanks :) brain fart
<adgtl> apeiros: thanks..
<adgtl> apeiros: what that \p means?
<apeiros> chendry: always anchor
dexter_ has quit [Ping timeout: 272 seconds]
<apeiros> adgtl: \p{…} are character classes. check Regexp docs, it lists them.
jam_ has quit [Ping timeout: 250 seconds]
<adgtl> apeiros: somehow this misses to document \p http://rubular.com
<apeiros> maybe it doesn't see itself as a complete documentation
<apeiros> after all, it says *quick* reference.
Freeaqingme has joined #ruby
<apeiros> and quick is somewhat contradicting to comprehensive
<apeiros> *antonymous
<adaedra> At least, everything is explained in the docs
<havenwood> >> 'HyperText Markup Language'.scan /[[:upper:]][[:lower:]]*/
<ruby[bot]> havenwood: # => ["Hyper", "Text", "Markup", "Language"] (https://eval.in/519047)
<havenwood> adgtl: ^ another similar stab at the same thing
<apeiros> in other words, it IMO doesn't *fail* to document it. it chose not to.
underplank has quit [Quit: underplank]
<havenwood> A proper subset.
<apeiros> havenwood: now try with a string which doesn't start with capital letter.
<havenwood> apeiros: noooo
<apeiros> but boils down to the question whether they truly want split.
sandstrom has quit [Read error: Connection reset by peer]
<havenwood> apeiros: We don't like that string.
<apeiros> your solution may be more what they want than mine. mine followed strictly the wording of their question.
<adgtl> havenwood: thanks :)
<jhass> I'd kept the solutions to myself, sounded much like an exercise :P
Zapod2 has joined #ruby
pandaant has quit [Remote host closed the connection]
<apeiros> havenwood: is posix' [[:upper:]] equivalent to \p{upper}?
Jardayn has joined #ruby
<Zapod> The CoC was a terrible idea
<apeiros> jhass: I guessed as much
ElFerna_ has joined #ruby
<havenwood> apeiros: same ole same ole
<apeiros> Zapod: #ruby-offtopic please.
tjbiddle has quit [Quit: tjbiddle]
<Zapod> thanks
riotjones has quit [Remote host closed the connection]
<apeiros> jhass: somehow I found it's rather a large thing to find the right tool, and chose to show a solution of their precise question, assuming that it'd not actually solve the issue at hand, but provide a good starting point.
Zapod has quit [Client Quit]
haylon has joined #ruby
cjbottaro has joined #ruby
grill has joined #ruby
speaking1ode is now known as speakingcode
jottr has quit [Ping timeout: 240 seconds]
Burgestrand has quit [Ping timeout: 250 seconds]
karapetyan has quit [Remote host closed the connection]
aegis3121 has quit [Ping timeout: 276 seconds]
flughafen_ has joined #ruby
tesuji has quit [Ping timeout: 240 seconds]
CloCkWeRX has quit [Remote host closed the connection]
dopamean1 has quit [Quit: WeeChat 1.3]
lsmola has quit [Ping timeout: 260 seconds]
adgtl has quit [Remote host closed the connection]
niko has quit [Quit: leaving]
adgtl has joined #ruby
[Butch] has joined #ruby
johnnyt has quit [Ping timeout: 248 seconds]
infernix has quit [Quit: ZNC - http://znc.sourceforge.net]
jottr has joined #ruby
nofacade has quit [Ping timeout: 260 seconds]
Azure has joined #ruby
iloveunix8955 has quit [Read error: Connection reset by peer]
ohaibbq has joined #ruby
einarj has joined #ruby
dlitvak_ has quit [Remote host closed the connection]
weemsledeux has joined #ruby
Burgestrand has joined #ruby
adgtl has quit [Remote host closed the connection]
Guest31659 is now known as beagles
adgtl has joined #ruby
pdoherty has quit [Ping timeout: 264 seconds]
spm_draget has joined #ruby
niko has joined #ruby
<spm_draget> What is the difference between 'gem' and 'bundler'? Both binaries seem to allow installing gems
tomchapin has joined #ruby
dionysus69 has joined #ruby
ElFerna_ has quit [Ping timeout: 250 seconds]
Domaldel has joined #ruby
rikkipitt has quit [Quit: Leaving...]
bronson has joined #ruby
<pushcx> 'gem' is the basic user command for adding and removing libraries
yardenbar has quit [Ping timeout: 252 seconds]
<pushcx> 'bundler' is a higher-level tool for projects that need to consistently install specific versions
Gnut has joined #ruby
einarj has quit [Remote host closed the connection]
omphe has joined #ruby
<havenwood> spm_draget: RubyGems has had Bundler-like ability to resolve gem deps for a few years but it's not widely-used yet.
Ishido has quit [Remote host closed the connection]
tatsuo has quit [Remote host closed the connection]
davedev24 has joined #ruby
<hanmac> havenwood: my gemtree https://gist.github.com/Hanmac/cb9e13ff220e4f31e13a does use the deps resolve from gem
<havenwood> spm_draget: Bundler is a gem. Bundler depends on RubyGems.
Ishido has joined #ruby
<havenwood> hanmac: :D
<jhass> in other words, bundler provides additional functionality ontop of rubygems
<spm_draget> Ah, thanks.
omphe has left #ruby [#ruby]
bronson has quit [Ping timeout: 256 seconds]
shredding has quit [Ping timeout: 260 seconds]
Guest41403 is now known as BLuEGoD
BLuEGoD is now known as Guest94585
Ishido has quit [Remote host closed the connection]
idefine has joined #ruby
tatsuo has joined #ruby
underplank has joined #ruby
johnnyt has joined #ruby
SHyx0rmZ has joined #ruby
<haylon> Huh. Google is challenging me to write a simple program?
<haylon> Did a Google search on a ruby/python thing, and it said, "You're speaking our language."
the_drow has joined #ruby
ixti has joined #ruby
karmatr0n has joined #ruby
idefine has quit [Ping timeout: 256 seconds]
<haylon> huh, kenpoint
Ishido has joined #ruby
<kenpoint> google will sometimes recruit through their searches and invite you to attempt a coding challenge. that article goes through what one guy did to get a job at google
KensoDev has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
DmitryBochkarev has joined #ruby
mark4 has quit [Quit: Leaving.]
infernix has joined #ruby
dionysus69 has quit [Ping timeout: 256 seconds]
<shevy> they want you to join their fanclub!
nofxx has joined #ruby
scepticulous has quit [Ping timeout: 250 seconds]
lipoqil has quit [Quit: Connection closed for inactivity]
chouhoulis has joined #ruby
JohnBat26 has quit [Quit: KVIrc 4.3.1 Aria http://www.kvirc.net/]
sankaber has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
M-mistake has quit [Quit: node-irc says goodbye]
_kfpratt has joined #ruby
kirillzh has joined #ruby
aganov has quit [Read error: Connection reset by peer]
aganov has joined #ruby
lurch_ has quit [Quit: lurch_]
dionysus69 has joined #ruby
chouhoulis has quit [Ping timeout: 260 seconds]
Xeago has joined #ruby
Burgestrand has quit [Ping timeout: 240 seconds]
kmckelvin has joined #ruby
ta has quit [Remote host closed the connection]
Ishido has quit [Remote host closed the connection]
kmckelvi1 has quit [Read error: Connection reset by peer]
ta has joined #ruby
<CustosLimen> hi
<CustosLimen> where can I find some info on ypath
minimalism has joined #ruby
tatsuo has quit [Remote host closed the connection]
<CustosLimen> actually, it seems like ypath is gone in later versions
x64- has joined #ruby
Burgestrand has joined #ruby
<CustosLimen> ok nvm, will just use: | ruby -ryaml -e 'data = YAML::load(STDIN.read); puts data["net"]["port"]'
PsionTheory has quit [Remote host closed the connection]
skade has quit [Quit: Computer has gone to sleep.]
zast has joined #ruby
RegulationD has joined #ruby
steak_ has joined #ruby
Jardayn has quit [Quit: Leaving]
ta has quit [Ping timeout: 252 seconds]
Jardayn has joined #ruby
mondok has joined #ruby
binaryplease has joined #ruby
tatsuo has joined #ruby
steak_ has quit [Client Quit]
<EdwardIII> weird, i'm so sure this was working on friday, but today, bam, "(soap:Client) Server was unable to read request. ---> There is an error in XML document (1, 756). ---> The string '2016-02-16 16:43:37 UTC' is not a valid AllXsd value."
<EdwardIII> i think soap is easily in my bottom 5 favourite techs
SCHAAP137 has quit [Remote host closed the connection]
ElFerna_ has joined #ruby
skade has joined #ruby
KensoDev has joined #ruby
sergey_makagon has quit []
snguyen has joined #ruby
ruby-lang842 has joined #ruby
skade has quit [Client Quit]
Contigi has joined #ruby
diegoviola has quit [Quit: WeeChat 1.4]
KensoDev has quit [Client Quit]
symm- has joined #ruby
troulouliou_div2 has quit [Ping timeout: 265 seconds]
s00pcan_ has quit [Ping timeout: 272 seconds]
ruby-lang842 has quit [Ping timeout: 252 seconds]
eljimmy has quit [Ping timeout: 276 seconds]
blackmesa has joined #ruby
cyclonis has quit [Ping timeout: 250 seconds]
eljimmy has joined #ruby
edwinvdgraaf has quit [Ping timeout: 276 seconds]
basic` has quit [Changing host]
basic` has joined #ruby
amclain has joined #ruby
andrewvos has quit [Ping timeout: 264 seconds]
ledestin has joined #ruby
benlieb has joined #ruby
Xeago has quit [Ping timeout: 250 seconds]
sandstrom has joined #ruby
william3 has quit [Remote host closed the connection]
drptbl_ has quit [Quit: My MAC has gone to sleep. zZz..]
hjoest has quit [Ping timeout: 248 seconds]
troulouliou_div2 has joined #ruby
tlaxkit has quit [Quit: ¡Adiós!]
neanderslob_ has joined #ruby
neanderslob has quit [Ping timeout: 250 seconds]
benlieb has quit [Ping timeout: 240 seconds]
intrigueD has joined #ruby
KensoDev has joined #ruby
william3 has joined #ruby
intrigueD has quit [Remote host closed the connection]
norc_ has joined #ruby
KensoDev has quit [Read error: Connection reset by peer]
andikr has quit [Remote host closed the connection]
joonty has quit [Ping timeout: 248 seconds]
KensoDev has joined #ruby
patchedmonkey has quit [Ping timeout: 248 seconds]
hjoest has joined #ruby
patchedmonkey has joined #ruby
mhoungbo has quit [Ping timeout: 260 seconds]
diegoviola has joined #ruby
davedev2_ has joined #ruby
benlieb has joined #ruby
davedev__ has joined #ruby
ElFerna_ has quit [Ping timeout: 264 seconds]
jaiks has quit [Ping timeout: 240 seconds]
davedev24 has quit [Ping timeout: 240 seconds]
davedev24 has joined #ruby
<norc_> djellemah, other way around. I accidentally had a stray "def" in my code after some rapid visual mode magic (so much for my unspoken vim powers), which completely borked my class without a syntax error.
davedev2_ has quit [Ping timeout: 240 seconds]
<norc_> since; def def foo (code...) end defines a method called def with an argument foo. If you then happen to override method_missing, you get some surprising behavior.
rbennacer has quit [Remote host closed the connection]
Guest94585 is now known as BLuEGoD
davedev__ has quit [Ping timeout: 240 seconds]
BLuEGoD is now known as Guest4636
patchedmonkey has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
davedev24 has quit [Ping timeout: 260 seconds]
Snowy has quit []
mostlybadfly has joined #ruby
platzhirsch has joined #ruby
neanderslob_ has quit [Remote host closed the connection]
neanderslob has joined #ruby
jottr has quit [Ping timeout: 240 seconds]
Burgestrand has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
tulak has joined #ruby
armyriad has quit [Ping timeout: 264 seconds]
rodfersou has joined #ruby
rakm has joined #ruby
terminalrecluse has joined #ruby
aganov has quit [Remote host closed the connection]
elifoster has joined #ruby
adgtl_ has joined #ruby
adgtl_ has quit [Remote host closed the connection]
adgtl_ has joined #ruby
eljimmy has quit [Ping timeout: 260 seconds]
BlindSight has joined #ruby
Hounddog has quit [Ping timeout: 250 seconds]
idefine has joined #ruby
jottr has joined #ruby
karapetyan has joined #ruby
Ebok has joined #ruby
sgambino has joined #ruby
<shevy> hmm what was this $>.puts $stderr ?
idefine has quit [Ping timeout: 252 seconds]
adgtl_ has quit [Quit: Colloquy for iPhone - http://colloquy.mobi]
<norc_> $> is the default output for print/printf
<norc_> Which defaults to $stdout
sepp2k has quit [Read error: Connection reset by peer]
chouhoulis has joined #ruby
karapetyan has quit [Ping timeout: 240 seconds]
<norc_> Or well, it used to be like that until 1.9 I think.
Ebok has quit [Client Quit]
rgtk has joined #ruby
shlomo has joined #ruby
<shevy> strange ... I saw it in some weird project that uses FFI + audio
<adaedra> >> $>
<ruby[bot]> adaedra: # => #<IO:<STDOUT>> (https://eval.in/519072)
<adaedra> Here you go.
william3 has quit [Remote host closed the connection]
troulouliou_divn has joined #ruby
Cohedrin has joined #ruby
<EdwardIII> hrm what's the best way to add an fk to existing model?
Ishido has joined #ruby
<EdwardIII> write your own migration? or is there some 'auto generate migration' thing i can do like django has?
<jhass> >> $> = $stderr; $stdout
<ruby[bot]> jhass: # => #<IO:<STDERR>> (https://eval.in/519073)
<jhass> interesting
<jhass> ?rails EdwardIII
<ruby[bot]> EdwardIII: Please join #RubyOnRails for Rails questions. You need to be identified with NickServ, see /msg NickServ HELP
<EdwardIII> oh crap sorry
sinkensabe has quit [Remote host closed the connection]
<EdwardIII> i mis-channeled
mikeiniowa has joined #ruby
troulouliou_divn has quit [Read error: Connection reset by peer]
william3 has joined #ruby
chouhoulis has quit [Ping timeout: 250 seconds]
<adaedra> jhass: tssk tssk tssk. They may have been using sequel :p
troulouliou_divn has joined #ruby
dexter_ has joined #ruby
<shevy> hah nice word... mis-channeled
<jhass> I trust sequel users to say they're using sequel :P
troulouliou_div2 has quit [Ping timeout: 265 seconds]
troulouliou_divn has quit [Read error: Connection reset by peer]
jam_ has joined #ruby
troulouliou_divn has joined #ruby
mikecmpbll has quit [Ping timeout: 272 seconds]
<adaedra> hehe
DEA7TH has joined #ruby
dionysus69 has quit [Ping timeout: 240 seconds]
synthroid has quit [Remote host closed the connection]
dseitz has left #ruby ["Textual IRC Client: www.textualapp.com"]
william3 has quit [Ping timeout: 256 seconds]
malcolmva has joined #ruby
dexter_ has quit [Ping timeout: 272 seconds]
aufi has quit [Ping timeout: 264 seconds]
troulouliou_div2 has joined #ruby
jam_ has quit [Ping timeout: 260 seconds]
rkazak has joined #ruby
TomyLobo has joined #ruby
antgel has quit [Ping timeout: 250 seconds]
mikecmpbll has joined #ruby
karapetyan has joined #ruby
troulouliou_divn has quit [Ping timeout: 265 seconds]
tatsuo has quit [Remote host closed the connection]
<haylon> made it past test 1
<haylon> now on to test 2
<haylon> whoop
<norc_> ast>> p 1 if a = 1
<ruby[bot]> norc_: I have parsed your code, the result is at https://eval.in/519076
<norc_> ast>> p a if a = 1
<ruby[bot]> norc_: I have parsed your code, the result is at https://eval.in/519077
howdoi has quit [Quit: Connection closed for inactivity]
c0m0 has quit [Ping timeout: 240 seconds]
rkazak has quit [Ping timeout: 250 seconds]
eljimmy has joined #ruby
Mon_Ouie has joined #ruby
n00bdev has joined #ruby
bonhoeffer has joined #ruby
blackmesa has quit [Ping timeout: 240 seconds]
larsk has quit [Quit: Leaving]
x64- has quit [Ping timeout: 250 seconds]
Xeago has joined #ruby
tjohnson has joined #ruby
bonhoeffer has quit [Ping timeout: 252 seconds]
kbni has left #ruby ["Leaving"]
valera has quit [Ping timeout: 276 seconds]
bcavileer_ has joined #ruby
bcavileer_ is now known as bcavileer
bcavileer has quit [Changing host]
bcavileer has joined #ruby
bcavileer has joined #ruby
iloveunix8955 has joined #ruby
snguyen has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
themsay2 has joined #ruby
cyclonis has joined #ruby
oivoodoo has quit []
themsay has quit [Ping timeout: 240 seconds]
joonty has joined #ruby
ledestin has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
goodcodeguy has quit [Ping timeout: 250 seconds]
idefine has joined #ruby
bronson has joined #ruby
kmckelvin has quit [Ping timeout: 250 seconds]
mdw has quit [Quit: Sleeping Zzzzz]
KensoDev has quit [Quit: Textual IRC Client: www.textualapp.com]
mdw has joined #ruby
mdw has quit [Client Quit]
joonty has quit [Ping timeout: 276 seconds]
themsay has joined #ruby
snguyen has joined #ruby
idefine has quit [Ping timeout: 252 seconds]
bronson has quit [Ping timeout: 256 seconds]
themsay2 has quit [Ping timeout: 240 seconds]
marxarelli has joined #ruby
evidex has quit [Remote host closed the connection]
DmitryBochkarev has quit [Quit: This computer has gone to sleep]
KensoDev has joined #ruby
adgtl has quit [Remote host closed the connection]
troulouliou_div2 has quit [Quit: Leaving]
sarbs has joined #ruby
rgtk_ has joined #ruby
rgtk has quit [Read error: Connection reset by peer]
sarbs has quit [Max SendQ exceeded]
sarbs has joined #ruby
Dimik has joined #ruby
synthroid has joined #ruby
<ruby-lang191> hi all
camillo has joined #ruby
<jhass> hi
<ruby-lang191> can any one explain me the diff between "string" and """string"""
<jhass> """string""" is two empty strings and "string" in the middle
<jhass> >> "foo""bar"
<ruby[bot]> jhass: # => "foobar" (https://eval.in/519085)
<jhass> >> "" "string" ""
<ruby[bot]> jhass: # => "string" (https://eval.in/519086)
aegis3121 has joined #ruby
Guest4636 is now known as BLuEGoD
intrigueD has joined #ruby
sol_ has quit [Ping timeout: 240 seconds]
camillo is now known as sol_
<jhass> so there's no real difference, """string""" is just noise
BLuEGoD is now known as Guest79952
darkf has joined #ruby
<apeiros> it's imitating python
<apeiros> and IMO for no good reason
<shevy> hehe
<ruby-lang191> check this
<ruby-lang191> https://eval.in/519090
<ruby-lang191> what's problem here?
<jhass> ruby-lang191: you can count to three? :P
<jhass> that's empty string (""), method call (foo), empty string ("")
<jhass> string followed by method call is invalid syntax
KensoDev has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
<ruby-lang191> I got it
<ruby-lang191> now
<ruby-lang191> thanks.. :)
<jhass> yw
<ruby-lang191> I just got confused
karapetyan has quit [Remote host closed the connection]
karapetyan has joined #ruby
karapetyan has quit [Remote host closed the connection]
dajobat has quit [Quit: Leaving]
karapetyan has joined #ruby
pdoherty has joined #ruby
sandstro_ has joined #ruby
sandstrom has quit [Ping timeout: 276 seconds]
<hanmac> jhass C string literals are funny, ne?
AlphaAtom has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
<jhass> not if abused like that ;)
<norc_> ast>> """string"""
<ruby[bot]> norc_: I have parsed your code, the result is at https://eval.in/519098
Pumukel has joined #ruby
<ruby-lang191> :)
ElFerna_ has joined #ruby
<norc_> Im already trying to think how this can be abused to create even more unreadable code..
hakunin_ has quit [Ping timeout: 240 seconds]
idefine has joined #ruby
<norc_> On that note, we should get trigraphs in Ruby - after all we should include those with obscure EBCDIC code pages.
sinkensabe has joined #ruby
s00pcan_ has joined #ruby
<norc_> Code fragments like ??<_??(????)=>????> would be so wonderful.
<adaedra> Please don't.
iloveunix8955 has quit [Remote host closed the connection]
<shevy> lol
<shevy> ?adaedra
<shevy> hmm
platzhirsch has left #ruby [#ruby]
ruby-lang191 has quit [Quit: Page closed]
hjoest2 has joined #ruby
<adaedra> You have to be signed in.
idefine has quit [Ping timeout: 256 seconds]
<adaedra> Otherwise, you're noone for the bot.
<adaedra> ?adaedra
<ruby[bot]> don't be mean to adaedra
karmatr0n has quit [Ping timeout: 240 seconds]
<adaedra> ?botsnack
<ruby[bot]> nomnomnomnom
<norc_> adaedra, I could write some huge parser change and ninja patch trigraphs in it. nobu wont mind Im sure.
<norc_> Ox0dea would not either.
hjoest has quit [Ping timeout: 248 seconds]
UtkarshRay has quit [Quit: Leaving]
SenpaiSilver has joined #ruby
ocbtec has quit [Quit: leaving]
sinkensabe has quit [Ping timeout: 240 seconds]
SenpaiSilver has quit [Max SendQ exceeded]
<shevy> ninja patch!
chouhoulis has joined #ruby
<shevy> that sounds so much better than monkey patch
sandstro_ has quit [Quit: My computer has gone to sleep.]
SenpaiSilver has joined #ruby
<shevy> monkey ninjas
hakunin has joined #ruby
SenpaiSilver has quit [Max SendQ exceeded]
sandstrom has joined #ruby
p1k has quit [Ping timeout: 250 seconds]
dopamean_ has joined #ruby
llua^_^AznSmile- has joined #ruby
adgtl has joined #ruby
SenpaiSilver has joined #ruby
_ht has joined #ruby
attractiveape has joined #ruby
SenpaiSilver has quit [Max SendQ exceeded]
SenpaiSilver has joined #ruby
chouhoulis has quit [Ping timeout: 264 seconds]
SenpaiSilver has quit [Max SendQ exceeded]
adgtl has quit [Client Quit]
KensoDev has joined #ruby
SenpaiSilver has joined #ruby
SenpaiSilver has quit [Max SendQ exceeded]
infernix has quit [Ping timeout: 256 seconds]
stan has quit [Ping timeout: 240 seconds]
sponjii has joined #ruby
SenpaiSilver has joined #ruby
patchedmonkey has joined #ruby
SenpaiSilver has quit [Max SendQ exceeded]
SenpaiSilver has joined #ruby
kmckelvin has joined #ruby
chouhoulis has joined #ruby
nettoweb has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
ponga has quit [Quit: Connection closed for inactivity]
blackmesa has joined #ruby
tildes has joined #ruby
dopamean_ has quit [Ping timeout: 276 seconds]
unreal_ has joined #ruby
<hanmac> shevy: self-driving cars are outdated, self-driving chairs are the future XD https://www.youtube.com/watch?v=O1D07dTILH0
nettoweb has joined #ruby
tildes has quit [Remote host closed the connection]
<shevy> I can't tell whether this is a prank or real
tildes has joined #ruby
infernix has joined #ruby
RegulationD has quit [Remote host closed the connection]
karmatr0n has joined #ruby
unreal has quit [Ping timeout: 276 seconds]
stan has joined #ruby
marr has quit [Ping timeout: 240 seconds]
f4cl3y has quit [Ping timeout: 260 seconds]
<hanmac> shevy: why can't it be both? XD
<shevy> I don't know... watched too many japanese prank videos
sgambino has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Sucks has quit [Read error: Connection reset by peer]
the_drow has quit [Quit: This computer has gone to sleep]
nettoweb has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
casadei has joined #ruby
binaryplease has quit [Read error: Connection reset by peer]
zzerp has joined #ruby
imanc has joined #ruby
aegis3121 has quit [Ping timeout: 256 seconds]
<imanc> is there a rails chan? #rails is invite only
trinaldi has quit [Quit: WeeChat 1.5-dev]
<mozzarella> #rubyonrails
firstdayonthejob has joined #ruby
aegis3121 has joined #ruby
sgambino has joined #ruby
Macaveli has joined #ruby
codecop has joined #ruby
lurch_ has joined #ruby
whippythellama has quit [Ping timeout: 240 seconds]
joonty has joined #ruby
sankaber has joined #ruby
krz has quit [Read error: Connection reset by peer]
Trieste has quit [Remote host closed the connection]
sarbs has quit [Ping timeout: 250 seconds]
elifoster has quit [Ping timeout: 250 seconds]
arlek has joined #ruby
tildes has quit [Ping timeout: 272 seconds]
pawnbox_ has joined #ruby
davedev24 has joined #ruby
lxsameer has joined #ruby
atmosx has joined #ruby
nettoweb has joined #ruby
gregf has quit [Ping timeout: 250 seconds]
ljames has quit [Remote host closed the connection]
nettoweb has quit [Client Quit]
drale2k has quit [Quit: ZNC 1.6.2 - http://znc.in]
joonty has quit [Ping timeout: 260 seconds]
JohnBat26 has joined #ruby
jottr has quit [Ping timeout: 248 seconds]
dlitvak has joined #ruby
pawnbox has quit [Ping timeout: 264 seconds]
chipotle has left #ruby ["cheerio"]
Xeago has quit [Remote host closed the connection]
roshanavand has joined #ruby
BrunoSaboia has quit [Ping timeout: 252 seconds]
krz has joined #ruby
whippythellama has joined #ruby
ruby-lang017 has joined #ruby
last_staff has joined #ruby
<ruby-lang017> Hello, can someone tell me why this doesn't work? I don't get it https://repl.it/BmwR
wjimenez5271 has quit [Ping timeout: 272 seconds]
benlieb has quit [Quit: benlieb]
<imanc> thanks mozzarella
<jhass> >> "foo".chars # ruby-lang017
<ruby[bot]> jhass: # => ["f", "o", "o"] (https://eval.in/519104)
<jhass> >> hash = {}; hash[["a", "b"]] = 0; hash
<ruby[bot]> jhass: # => {["a", "b"]=>0} (https://eval.in/519105)
nettoweb has joined #ruby
lurch_ has quit [Quit: lurch_]
<ruby-lang017> I'm still confused
<jhass> ruby-lang017: you want to iterate over all the characters and do something with each of them
<jhass> &ri String#each_char
Guest79952 is now known as BLuEGoD
BLuEGoD is now known as Guest44424
<ruby-lang017> oh chars doesn't get each character it just changes the string into letters
wjimenez5271 has joined #ruby
last_staff1 has joined #ruby
<jhass> ruby-lang017: no, it returns an array of all the characters
william3 has joined #ruby
blackmesa has quit [Ping timeout: 276 seconds]
last_staff has quit [Ping timeout: 256 seconds]
last_staff1 is now known as last_staff
<zzerp> i've been running into an issue with puma/bundler/ruby where #missing_extensions? is getting called on a NilClass
<zzerp> (/home/me/.rbenv/versions/2.3.0/lib/ruby/2.3.0/rubygems/stub_specification.rb:148:in `missing_extensions?': undefined method `missing_extensions?' for nil:NilClass (NoMethodError)
borodin has joined #ruby
<borodin> can anyone help me with this? https://gist.github.com/chewmanfoo/f9b1d84de320fc584960
<borodin> I don't understand why ruby can see the file, but it can't see the fie
sauvin has quit [Remote host closed the connection]
<marxarelli> ruby-lang017: i would also recommend using String#each_char for that case as it returns an Enumerator that will let you operate on or accumulate some aggregate from each character
Toledo|gone has joined #ruby
<zzerp> borodin: try removing the quotes
Trieste has joined #ruby
<marxarelli> something like str..each_char.with_object(Hash.new(0)) { |char, vowels| vowels[char] += 1 }
<marxarelli> er, that's incomplete but you get the picture :)
Toledo|gone has left #ruby [#ruby]
sarbs has joined #ruby
soxet_ has joined #ruby
<borodin> zzerp: ye that's it - so I gotta deal with the dir in a different way in linux than I do in ruby. yuck
RegulationD has joined #ruby
william3 has quit [Ping timeout: 248 seconds]
gregf has joined #ruby
<zzerp> `ls "#{foo}"` would work
ruby-lang017 has quit [Ping timeout: 252 seconds]
<borodin> no it doesn't :(
bronson has joined #ruby
<zzerp> you're basically doing ls /var/lib/path with a space
<borodin> yes it does - nevermind
<marxarelli> borodin: you need to properly escape the shell arguments
<marxarelli> &ri Shellwords.shellescape
<zzerp> if you did ls "/var/lib/path with a space" ls interprets that as one string not 4
<marxarelli> so `ls #{Shellwords.shellescape(foo)}`
soxet_ has quit [Client Quit]
<marxarelli> which is still sort of suboptimal if you're trying to iterate over directory contents
bronson has quit [Remote host closed the connection]
soxet_ has joined #ruby
<marxarelli> you could alternatively use `Dir['*'].each { ... }`
drale2k has joined #ruby
baweaver has joined #ruby
mdw has joined #ruby
blackmesa has joined #ruby
ldnunes_ has joined #ruby
<apeiros> Dir.glob do … end
<apeiros> same as Dir[].each, but one method call less.
<jhass> also avoid shellwords as long as you can
ur5us has joined #ruby
<jhass> prefer multiple argument/array forms of Kernel#spawn & co
soxet_ is now known as soxet__
soxet__ is now known as soxet_
dopamean_ has joined #ruby
stan has quit [Ping timeout: 250 seconds]
<borodin> marxarelli: thanks that was very useful
gigetoo has joined #ruby
<marxarelli> borodin: no problem
casadei has quit [Remote host closed the connection]
ldnunes has quit [Ping timeout: 250 seconds]
godzillaenlacasa has quit [Read error: Connection reset by peer]
<marxarelli> borodin: i would consider the advice from jhass, too (use Kernel#spawn and friends over shelling out with ``)
norc_ has quit [Ping timeout: 276 seconds]
stan has joined #ruby
<drale2k> any gem people use for handling tcp sockets in ruby? Can't find socket.io for ruby
podman has joined #ruby
<drale2k> and Actioncable in rails is only for websockets i think
cyclonis_ has joined #ruby
BSaboia has joined #ruby
casadei has joined #ruby
dmolina has quit [Quit: Leaving.]
dexter_ has joined #ruby
askhat has joined #ruby
jam_ has joined #ruby
cyclonis has quit [Ping timeout: 260 seconds]
x77686d has quit [Quit: x77686d]
norc_ has joined #ruby
<apeiros> drale2k: socket in ruby's stdlib comes with TCPSocket
dexter_ has quit [Ping timeout: 250 seconds]
devbug has joined #ruby
<apeiros> ?crosspost drale2k
<ruby[bot]> drale2k: Please do not crosspost without at least telling so and mentioning provided suggestions and their outcome in all channels. Experience shows that people don't do either, and not doing so is considered rude.
mdw has quit [Quit: Sleeping Zzzzz]
jam_ has quit [Ping timeout: 276 seconds]
stevemackinnon has joined #ruby
sandstrom has quit [Read error: Connection reset by peer]
shlomo has quit [Quit: WeeChat 1.4]
bithon has joined #ruby
jottr has joined #ruby
trinaldi has joined #ruby
sinkensabe has joined #ruby
arthurix_ has joined #ruby
last_staff1 has joined #ruby
SCHAAP137 has joined #ruby
stevemackinnon has quit [Remote host closed the connection]
last_staff has quit [Ping timeout: 276 seconds]
last_staff1 is now known as last_staff
arthurix has quit [Ping timeout: 256 seconds]
blaxter has quit [Quit: foo]
marr has joined #ruby
william3 has joined #ruby
syath has quit [Quit: WeeChat 1.2]
SpikeMaster has joined #ruby
nfk|laptop has joined #ruby
trinaldi has quit [Ping timeout: 265 seconds]
mordocai has joined #ruby
atmosx has quit [Quit: This is aparting message!]
<hfp> Hi, as part of a refactor, I want to test for an object's class name. So I do `if self < MyClass' and this fails. When I call `self.class.name', it returns `Class`. Helpful. Why is it returning `Class`? If I do `self.inspect', I can see the correct class name so why can't I get it in my if?
<mordocai> I just attempted to use rspec --bisect on our rails project and it managed to eat 16G of my physical memory and 5G of swap causing it to be killed by the kernel. Does anyone know if there is a way to limit the number of processes rspec bisect runs at once?
aegis3121 has quit [Ping timeout: 252 seconds]
karapetyan has quit [Remote host closed the connection]
colegatron has quit [Ping timeout: 252 seconds]
nettoweb has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
joonty has joined #ruby
arthropododo has joined #ruby
BSaboia has quit [Ping timeout: 256 seconds]
karapetyan has joined #ruby
sandstrom has joined #ruby
dlitvak has quit [Ping timeout: 252 seconds]
<norc_> hfp, without seeing actual code its hard to help you.
lurch_ has joined #ruby
doublemalt_ has joined #ruby
cyclonis_ has quit [Quit: Lost terminal]
joonty has quit [Ping timeout: 265 seconds]
ta has joined #ruby
<norc_> hfp, oh I know what you mean.
<norc_> The issue stems from what self really means in Ruby.
<norc_> self is basically a keyword that refers to the default assignee for methods.
benlieb has joined #ruby
<norc_> inside a class self is that class itself.
doublemalt__ has quit [Ping timeout: 240 seconds]
trinaldi has joined #ruby
<norc_> MyKlass = Class.new; puts MyKlass.class
<norc_> >> MyKlass = Class.new; puts MyKlass.class
<ruby[bot]> norc_: # => Class ...check link for more (https://eval.in/519119)
<norc_> >> MyKlass = Class.new; puts MyKlass.inspect
<ruby[bot]> norc_: # => MyKlass ...check link for more (https://eval.in/519120)
<norc_> This is basically what you did.
devbug has quit [Quit: No Ping reply in 180 seconds.]
dlitvak has joined #ruby
ldnunes_ has quit [Quit: Leaving]
<norc_> but the exact issue depends on your code.
devbug has joined #ruby
mordocai has left #ruby ["ERC (IRC client for Emacs 24.5.1)"]
nettoweb has joined #ruby
<norc_> This explains what I mean by "self is the default receiver".
patchedmonkey has quit [Read error: Connection reset by peer]
Guest44424 is now known as BLuEGoD
BLuEGoD is now known as Guest89230
tercenya has joined #ruby
tulak has quit []
Macaveli has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
nfk|laptop has quit [Quit: yawn]
mondok has quit [Ping timeout: 250 seconds]
x77686d has joined #ruby
mhoungbo has joined #ruby
duckpuppy has quit [Ping timeout: 264 seconds]
Dimik has quit [Ping timeout: 252 seconds]
_ht has quit [Ping timeout: 276 seconds]
_ht has joined #ruby
mdw has joined #ruby
sneakerhax has quit [Quit: back later]
krobzaur has joined #ruby
patchedmonkey has joined #ruby
johnnyt has quit [Ping timeout: 265 seconds]
krz has quit [Ping timeout: 250 seconds]
johnnyt has joined #ruby
stevemackinnon has joined #ruby
SenpaiSilver has quit [Quit: Leaving]
SenpaiSilver has joined #ruby
lurch_ has quit [Quit: lurch_]
SenpaiSilver has quit [Max SendQ exceeded]
SpikeMas` has joined #ruby
SenpaiSilver has joined #ruby
mlehrer has quit [Remote host closed the connection]
tulak has joined #ruby
sneakerhax has joined #ruby
arlek has quit [Ping timeout: 256 seconds]
dagda1 has joined #ruby
ton31337 has joined #ruby
<ton31337> how can i write this shorter? https://gist.github.com/ton31337/eb235ef3a8386df9f96d
FooMunki has quit [Quit: FooMunki]
FooMunki has joined #ruby
pawnbox_ has quit [Remote host closed the connection]
SpikeMaster has quit [Ping timeout: 250 seconds]
rippa has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
benlieb has quit [Quit: benlieb]
openstruct has joined #ruby
synthroid has quit []
avenj has quit [Ping timeout: 240 seconds]
dexter_ has joined #ruby
<jhass> ton31337: map and server.ipv6_ips.any? ? a : b
microt has quit [Ping timeout: 240 seconds]
goodcodeguy has joined #ruby
stevemackinnon has quit [Remote host closed the connection]
<ton31337> can I split ternary with multi line?
<ton31337> because it looks ugly
<jhass> yes
<jhass> you can also do a full if/else
sakix_ has joined #ruby
<ton31337> thanks
microt has joined #ruby
ton31337 has left #ruby [#ruby]
dlitvak has quit [Ping timeout: 272 seconds]
sakix has quit [Ping timeout: 256 seconds]
decoponio has quit [Quit: Leaving...]
ta_ has joined #ruby
ta has quit [Ping timeout: 250 seconds]
bronson has joined #ruby
stevemackinnon has joined #ruby
cyclonis has joined #ruby
dlitvak has joined #ruby
<norc_> tonini, or you could simply add some first_ip_address method to your Server class that hides this.
x77686d has quit [Quit: x77686d]
FooMunki has quit [Quit: FooMunki]
FooMunki has joined #ruby
millerti has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
sakix has joined #ruby
dlitvak has quit [Ping timeout: 260 seconds]
SpikeMas` has quit [Ping timeout: 260 seconds]
sakix_ has quit [Ping timeout: 250 seconds]
JDiPierro has joined #ruby
x77686d has joined #ruby
stevemackinnon has quit [Remote host closed the connection]
sakix has quit [Ping timeout: 252 seconds]
<cyclonis> good afternoon all
RegulationD has quit [Remote host closed the connection]
srenatus has quit [Quit: Connection closed for inactivity]
joonty has joined #ruby
tomaz_b has joined #ruby
stevemackinnon has joined #ruby
sdothum has quit [Quit: ZNC - 1.6.0 - http://znc.in]
zotherstupidguy has quit [Ping timeout: 240 seconds]
juddey has joined #ruby
x77686d has quit [Quit: x77686d]
yqfvwal has joined #ruby
joonty has quit [Ping timeout: 256 seconds]
skweek has quit [Ping timeout: 264 seconds]
celly has joined #ruby
Shaboum has quit [Quit: WeeChat 1.4]
sdothum has joined #ruby
jackjackdripper has joined #ruby
lurch_ has joined #ruby
techietrash has quit [Max SendQ exceeded]
techietrash has joined #ruby
stevemackinnon has quit [Remote host closed the connection]
aryaching_ has quit []
flughafen_ has quit [Ping timeout: 240 seconds]
yqt has joined #ruby
yfeldblum has joined #ruby
freerobby has quit [Quit: Leaving.]
Guest89230 is now known as BLuEGoD
millerti has joined #ruby
BLuEGoD is now known as Guest72259
Pumukel has quit [Quit: ChatZilla 0.9.92 [Firefox 44.0.2/20160210153822]]
_ht has quit [Quit: Konversation terminated!]
zotherstupidguy has joined #ruby
celly has quit []
karapetyan has quit [Remote host closed the connection]
mdw has quit [Quit: Sleeping Zzzzz]
ta has joined #ruby
dopamean_ has quit [Quit: WeeChat 1.3]
arlek has joined #ruby
bollullera has joined #ruby
karapetyan has joined #ruby
bollullera has left #ruby [#ruby]
lurch_ has quit [Read error: Connection reset by peer]
codecop has quit [Remote host closed the connection]
ta_ has quit [Ping timeout: 264 seconds]
devbug has quit [Ping timeout: 260 seconds]
JohnBat26 has quit [Quit: KVIrc 4.3.1 Aria http://www.kvirc.net/]
<borodin> marxarelli: I'm confused - I used you guy's suggestion earlier. I have a path which contains spaces (because jenkins makes it harder than it has to be), so I use shellescape to properly escape the param. But now in order to do File.read, I have to remove the backticks:
<borodin> shouldn't be this way!
s00pcan_ has quit [Ping timeout: 240 seconds]
Ebok has joined #ruby
mdw has joined #ruby
Bounga has joined #ruby
intrigueD has quit [Remote host closed the connection]
sgambino has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
krobzaur has quit [Quit: WeeChat 0.4.2]
kirun has quit [Quit: Client exiting]
s00pcan_ has joined #ruby
idefine has joined #ruby
nettoweb has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
Ebok has quit [Ping timeout: 265 seconds]
tomaz_b has quit [Quit: Leaving]
RegulationD has joined #ruby
jam_ has joined #ruby
pawnbox has joined #ruby
devbug has joined #ruby
freerobby has joined #ruby
idefine has quit [Ping timeout: 250 seconds]
s00pcan_ has quit [Ping timeout: 260 seconds]
SenpaiSilver has quit [Quit: Leaving]
s00pcan_ has joined #ruby
jam_ has quit [Ping timeout: 240 seconds]
pawnbox has quit [Ping timeout: 264 seconds]
patchedmonkey has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
mdw has quit [Quit: Sleeping Zzzzz]
nettoweb has joined #ruby
sgambino has joined #ruby
bithon has quit [Ping timeout: 265 seconds]
pabloh has joined #ruby
lxsameer has quit [Quit: Leaving]
edwinvdgraaf has joined #ruby
zeroDivisible has joined #ruby
pabloh has left #ruby [#ruby]
Guest51056 has quit [Quit: leaving]
zacts has joined #ruby
edwinvdgraaf has quit [Remote host closed the connection]
mondok has joined #ruby
joonty has joined #ruby
camillo has joined #ruby
borodin has quit [Ping timeout: 252 seconds]
Zappa_ has joined #ruby
dtordable has quit [Quit: leaving]
bithon has joined #ruby
sol_ has quit [Ping timeout: 240 seconds]
Zappa__ has quit [Ping timeout: 240 seconds]
sol_ has joined #ruby
Conflict has quit [Read error: Connection reset by peer]
joonty has quit [Quit: Leaving]
idefine has joined #ruby
Conflict has joined #ruby
camillo has quit [Ping timeout: 240 seconds]
s00pcan_ has quit [Ping timeout: 240 seconds]
nettoweb has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
roshanavand has quit [Read error: Connection reset by peer]
ProofTechnique has joined #ruby
groundnuty has quit [Ping timeout: 276 seconds]
s00pcan_ has joined #ruby
norc_ has quit [Ping timeout: 256 seconds]
stevemackinnon has joined #ruby
stevemackinnon has quit [Remote host closed the connection]
roshanavand has joined #ruby
stevemackinnon has joined #ruby
sol_ has quit [Read error: Connection reset by peer]
levifig has quit [Ping timeout: 240 seconds]
sol_ has joined #ruby
wprice has quit [Quit: wprice]
bahar has quit [Excess Flood]
fmcgeough has quit [Quit: fmcgeough]
bahar has joined #ruby
bahar has quit [Changing host]
bahar has joined #ruby
konopka has quit [Excess Flood]
konopka has joined #ruby
chouhoulis has quit [Remote host closed the connection]
sinkensabe has quit [Remote host closed the connection]
pawnbox has joined #ruby
levifig has joined #ruby
railsForDaiz has joined #ruby
mary5030 has quit [Remote host closed the connection]
TomPeed has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
guest_ has joined #ruby
pawnbox has quit [Ping timeout: 276 seconds]
wprice has joined #ruby
guest_ has left #ruby [#ruby]
JDiPierro has quit [Remote host closed the connection]
hjoest2 has quit [Ping timeout: 248 seconds]
tulak has quit [Remote host closed the connection]
moeabdol2 has joined #ruby
tulak has joined #ruby
Guest72259 is now known as BLuEGoD
jottr has quit [Quit: WeeChat 1.4]
johnmilton has quit [Quit: Namaste]
BLuEGoD is now known as Guest57185
moeabdol1 has quit [Ping timeout: 248 seconds]
kobain has quit [Ping timeout: 240 seconds]
humd1ng3r has quit [Ping timeout: 252 seconds]
last_staff has quit [Quit: last_staff]
mdw has joined #ruby
casadei_ has joined #ruby
redondos has quit [Ping timeout: 252 seconds]
askhat_ has joined #ruby
casadei has quit [Ping timeout: 250 seconds]
sunya7a_ has quit [Ping timeout: 252 seconds]
greynetic has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
snguyen has quit [Ping timeout: 260 seconds]
askhat has quit [Read error: Connection reset by peer]
ElFerna_ has quit [Ping timeout: 256 seconds]
sunya7a has joined #ruby
tvw has joined #ruby
peteyg has quit [Read error: Connection reset by peer]
redondos has joined #ruby
peteyg has joined #ruby
samuelkadolph has joined #ruby
humd1ng3r has joined #ruby
jordanm has quit [Ping timeout: 240 seconds]
jordanm has joined #ruby
crdpink2 has joined #ruby
crdpink has quit [Ping timeout: 252 seconds]
blackmesa has quit [Ping timeout: 252 seconds]
ledestin has joined #ruby
arlek has quit [Ping timeout: 256 seconds]
sandstrom has quit [Quit: My computer has gone to sleep.]
ziyadb has quit [Quit: Connection closed for inactivity]
elifoster has joined #ruby
edwinvdgraaf has joined #ruby
sfr^ has quit [Ping timeout: 240 seconds]
Bloodshot has joined #ruby
tinnvec has quit [Quit: No Ping reply in 180 seconds.]
ur5us has quit [Remote host closed the connection]
TomPeed has joined #ruby
william3 has quit [Remote host closed the connection]
goodcodeguy has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
ur5us has joined #ruby
tinnvec has joined #ruby
kobain has joined #ruby
ropeney has joined #ruby
mdw has quit [Quit: Sleeping Zzzzz]
TomPeed has quit [Client Quit]
grill has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
sfr^ has joined #ruby
zenlot1 has joined #ruby
avenj has joined #ruby
avenj has joined #ruby
zenlot has quit [Ping timeout: 272 seconds]
mhoungbo has quit [Quit: Quitte]
sgambino has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
einarj has joined #ruby
einarj_ has joined #ruby
sinkensabe has joined #ruby
moeabdol2 has quit [Ping timeout: 240 seconds]
william3 has joined #ruby
Coldblackice has joined #ruby
bithon has quit [Ping timeout: 264 seconds]
einarj has quit [Ping timeout: 265 seconds]
stannard has quit [Remote host closed the connection]
hakunin_ has joined #ruby
hakunin has quit [Read error: Connection reset by peer]
hakunin_ is now known as hakunin
sinkensabe has quit [Ping timeout: 240 seconds]
mondok has quit [Ping timeout: 250 seconds]
stevemackinnon has quit [Remote host closed the connection]
william3 has quit [Ping timeout: 264 seconds]
blur3d has joined #ruby
stannard has joined #ruby
cih has joined #ruby
intrigueD has joined #ruby
haylon has quit [Read error: Connection reset by peer]
Xeago has joined #ruby
einarj_ has quit [Remote host closed the connection]
railsFor_ has joined #ruby
ChameleonSix has joined #ruby
Ishido has quit [Quit: Roads? Where We're Going We Don't Need Roads.]
gustavohmsilva has joined #ruby
glenny has joined #ruby
railsForDaiz has quit [Ping timeout: 256 seconds]
bithon has joined #ruby
idefine has quit [Remote host closed the connection]
acoai has joined #ruby
JoshGlzBrk has joined #ruby
soxet_ has quit [Quit: Leaving]
kobain has quit [Read error: Connection timed out]
ChameleonSix has left #ruby [#ruby]
kobain has joined #ruby
Snowy has joined #ruby
lipoqil has joined #ruby
skweek has joined #ruby
acoai has quit []
acoai has joined #ruby
acoai has quit [Client Quit]
pawnbox has joined #ruby
stevemackinnon has joined #ruby
CloCkWeRX has joined #ruby
dlitvak has joined #ruby
pawnbox has quit [Ping timeout: 248 seconds]
stevemackinnon has quit [Ping timeout: 240 seconds]
edwinvdgraaf has quit [Remote host closed the connection]
malconis has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
ping-pong has joined #ruby
kobain has quit [Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/]
kobain has joined #ruby
replay has joined #ruby
replay has quit [Max SendQ exceeded]
solocshaw has quit [Ping timeout: 260 seconds]
replay has joined #ruby
Guest57185 is now known as BLuEGoD
BLuEGoD is now known as Guest46635
askhat_ has quit [Max SendQ exceeded]
ziyadb has joined #ruby
askhat has joined #ruby
idefine has joined #ruby
wprice has quit [Ping timeout: 276 seconds]
kerunaru has joined #ruby
idefine has quit [Ping timeout: 240 seconds]
blur3d has quit [Ping timeout: 264 seconds]
JoshGlzBrk has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
kerunaru has quit [Quit: Textual IRC Client: www.textualapp.com]
renderful has joined #ruby
platzhirsch has joined #ruby
Xeago has quit [Remote host closed the connection]
andrewvos has joined #ruby
glenny has quit [Ping timeout: 264 seconds]
blur3d has joined #ruby
<platzhirsch> I have a class which instances are initialized through CSV. Three different CSV, formatting dates differently, hence I need to apply different parametrized Date.strptime
renderfu_ has quit [Ping timeout: 256 seconds]
<platzhirsch> I want to pass this now in together with the CSV through the constructor
<platzhirsch> any nice way of encapsulating that? Or just straight an option hash in: { date_of_birth: '%Y/%m/%d' }
Xeago has joined #ruby
ur5us has quit [Remote host closed the connection]
ur5us has joined #ruby
weemsledeux has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
trinaldi has quit [Quit: bye]
<platzhirsch> gimme some beeautiful abstraction *cry*
jam_ has joined #ruby
pawnbox has joined #ruby
<openstruct> Would it be heinous to have a base class that you initialize that then sends the message to the appropriate parser based on the format?
sinkensabe has joined #ruby
tubuliferous_ has joined #ruby
davedev2_ has joined #ruby
dexter_ has quit [Read error: Connection reset by peer]
davedev24 has quit [Ping timeout: 260 seconds]
jam_ has quit [Ping timeout: 256 seconds]
pawnbox has quit [Ping timeout: 250 seconds]
yqt has quit [Ping timeout: 260 seconds]
rgtk_ has quit [Remote host closed the connection]
<platzhirsch> openstruct: I find it quite ironic that your nick is openstruct
<platzhirsch> anyway, no. Not at all. But I mean, how would that look like. Let's stay StudentRecord < Record, okay and then..
sinkensabe has quit [Ping timeout: 265 seconds]
dexter_ has joined #ruby
kam270 has joined #ruby
<platzhirsch> Record.new(ConcreteParser('%Y...' ) ?
BTRE has joined #ruby
davedev24 has joined #ruby
<platzhirsch> so the parser would generally define how to parse that type of thingy
TomPeed has joined #ruby
[Butch]_ has joined #ruby
sphex has joined #ruby
blackgoat has joined #ruby
[Butch]_ has quit [Client Quit]
TomyLobo has quit [Ping timeout: 250 seconds]
SpikeMas` has joined #ruby
davedev2_ has quit [Ping timeout: 260 seconds]
[Butch] has quit [Ping timeout: 265 seconds]
gustavohmsilva has quit [Ping timeout: 250 seconds]
<sphex> hey! I have a question about Thread/Fiber local storage... is there any way to make this happen: Thread.current[:test] = "!"; Thread.new { puts Thread.current[:test] }.join
Dimik has joined #ruby
rgtk has joined #ruby
<sphex> I mean, to have the local storage be inherited by threads or fibers created.
<drale2k> What happens when i don't close a TCP socket connection? Will it eat more and more memory?
<drale2k> or will it just hold the socket open. I need to do that for what i need to do
rodfersou has quit [Quit: leaving]
SpikeMas` has quit [Ping timeout: 250 seconds]
<sphex> drale2k: well.. it will hold the socket open (as long as there is a reference remaining to this object), *and* this will require some memory (and kernel resources)
Xeago has quit [Remote host closed the connection]
agentmeerkat has joined #ruby
<openstruct> platzhirsch: It's funny, I know how not to do what you're asking, but don't really know the pattern.
<shevy> Fibers are still a mystery to me
<platzhirsch> shevy: shame on you