havenwood changed the topic of #ruby to: Rules & more: https://ruby-community.com | Ruby 2.5.3, 2.4.5, 2.6.0-rc2: https://www.ruby-lang.org | Paste 4+ lines of text to https://dpaste.de/ and select Ruby as the language | Rails questions? Ask in #RubyOnRails | Books: https://goo.gl/wpGhoQ | Logs: https://irclog.whitequark.org/ruby | Can't talk? Register/identify with Nickserv first!
elphe has quit [Ping timeout: 246 seconds]
masterasia has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
donofrio has joined #ruby
houhoulis has quit [Remote host closed the connection]
donofrio has quit [Ping timeout: 250 seconds]
donofrio has joined #ruby
nchambers has joined #ruby
nchambers is now known as Rudolph
donofrio has quit [Ping timeout: 244 seconds]
donofrio has joined #ruby
hutch has quit [Ping timeout: 250 seconds]
donofrio has quit [Remote host closed the connection]
nowhere_man has joined #ruby
sarink has joined #ruby
sarink has quit [Ping timeout: 252 seconds]
reber has joined #ruby
_whitelogger has joined #ruby
lxsameer has quit [Ping timeout: 240 seconds]
Rudolph has quit [Quit: WeeChat 2.2]
ellcs has joined #ruby
hutch has joined #ruby
m0w has quit [Ping timeout: 252 seconds]
Azure has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
cruzo66342 has quit [Remote host closed the connection]
Azure has joined #ruby
darkhanb has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
tdy has quit [Remote host closed the connection]
tdy has joined #ruby
Fusl has quit [Remote host closed the connection]
RougeR has joined #ruby
Fusl has joined #ruby
ellcs has quit [Ping timeout: 250 seconds]
Milos has quit [Quit: ZNC 1.7.1 - https://znc.in]
hutch has quit [Ping timeout: 240 seconds]
cschneid has joined #ruby
hutch has joined #ruby
reber has quit [Remote host closed the connection]
\void has quit [Quit: So long, and thanks for all the fish.]
sarink has joined #ruby
tdy has quit [Ping timeout: 244 seconds]
cthulchu has quit [Ping timeout: 244 seconds]
sarink has quit [Ping timeout: 268 seconds]
phaul has quit [Quit: bye]
AJA4350 has joined #ruby
hutch has quit [Ping timeout: 240 seconds]
cschneid has quit [Ping timeout: 250 seconds]
hutch has joined #ruby
Milos has joined #ruby
Swyper has joined #ruby
<Swyper> undefined local variable or method `word' for #RSpec::ExampleGroups::Translate:0x00007fda57b856f8
<Swyper> keep getting this error and I can't see how word is not defined in this context o-o
<Swyper> nvm its this causing the error return translated_word[0..word.length-2]
oncall-pokemon has quit [Quit: Connection closed for inactivity]
roshanavand has quit [Remote host closed the connection]
roshanavand has joined #ruby
<Swyper> running "string x1 x2".split.length should return 2, correct?
<havenwood> &>> "string x1 x2".split.length
<rubydoc> # => 3 (https://carc.in/#/r/5uof)
<havenwood> Swyper: Try in irb or pry. A repl is super handy for quickly testing expressions.
<havenwood> ?irb
<ruby[bot]> irb is "interactive ruby", it is part of ruby. You can run ruby code and see results immediately. it's useful for testing code. Also see ?pry, a gem which is a popular alternative to irb.
<havenwood> Swyper: Just type "irb" on your command line.
<havenwood> ?pry
<ruby[bot]> Pry, the better IRB, provides easy object inspection `ls`, `history`, viewing docs `?`, viewing source `$`, syntax highlighting and other features (see `help` for more). Put `binding.pry` in your source code for easy debugging. Install Pry (https://pryrepl.org/): gem install pry pry-doc
<Swyper> ah
<Swyper> thanks
<Swyper> I'm writing a large block of code and this is so confusing. lol
<Swyper> errors + my code
<havenwood> Swyper: Ruby has a nifty way to automatically do that index counter with #each_with_index and #with_index.
<havenwood> Swyper: Better yet, #map.
roshanavand has quit [Remote host closed the connection]
<Swyper> I know we spoke about this in the morning aswell :P
roshanavand has joined #ruby
<havenwood> &>> "string x1 x2".split.each_with_index.to_a
<rubydoc> # => [["string", 0], ["x1", 1], ["x2", 2]] (https://carc.in/#/r/5uog)
<havenwood> Swyper: "string x1 x2".split.each_with_index { |word, index| ... }
<havenwood> Swyper: Consider, for example: "string x1 x2".split.map { |word| word.reverse }
<Swyper> what should I consider about it? :P
<havenwood> &>> "string x1 x2".split.map { |word| word.reverse }.join(' ')
<rubydoc> # => "gnirts 1x 2x" (https://carc.in/#/r/5uoh)
<Swyper> oh
<Swyper> neato
<havenwood> Swyper: It'd work nicely with the logic flow you have.
<havenwood> Swyper: And you can get rid of any assignment during iteration.
<Swyper> other then rewriting the whole thing, is there another way to fix it with what I have atm?
donofrio has joined #ruby
<havenwood> Swyper: Yes. The local variable `word` is only assigned inside your `each do |word|` block, so after the block ends that variable is undefined on line 10.
<Swyper> ah I fixed that and post an updated gist https://gist.github.com/RickArora/f8f910b6e9d82daf60f76c45eb7249b2
<Swyper> ^^
<Swyper> along with the updated errors and uglier logic :P
<havenwood> Swyper: It looks like you have an issue on the last line of your method.
<havenwood> &>> name = 'Swyper'; name[0..name.length.size - 1]
<rubydoc> # => "Swyper" (https://carc.in/#/r/5uoj)
<havenwood> Swyper: See how nothing got cut off ^ above?
<havenwood> Swyper: (Zero index means one less than the size of the thing actually _is_ its last character.
<havenwood> )
<havenwood> &>> name = 'Swyper'; name[0..-2]
<rubydoc> # => "Swype" (https://carc.in/#/r/5uok)
<havenwood> Swyper: -1 index is the last characer
<havenwood> Swyper: -2 index is the second to last
<havenwood> Swyper: There are a variety of other ways to remove trailing spaces. Here are a few:
<havenwood> &>> 'remove whitespace at the end '.rstrip
<rubydoc> # => "remove whitespace at the end" (https://carc.in/#/r/5uol)
<havenwood> &>> 'remove a space at the end '.chomp(' ')
<rubydoc> # => "remove a space at the end" (https://carc.in/#/r/5uom)
<Swyper> interesting
<Swyper> oh thank you
<havenwood> A nice one in Ruby 2.5 or later is:
<havenwood> &>> 'remove a space at the end '.delete_suffix(' ')
<rubydoc> # => "remove a space at the end" (https://carc.in/#/r/5uon)
donofrio has quit [Ping timeout: 245 seconds]
<Swyper> what makes that nicer then the other two you showed?
<havenwood> Swyper: If you want to remove all trailing whitespace, #strip is perfect.
<havenwood> Swyper: The #chomp method has some interesting behavior without an argument, and there isn't a prefix version. The nice thing about #delete_prefix and #delete_suffix is they each do a straightforward thing and do it quickly and well with parity.
<havenwood> For trailing whitespace I mean #rstrip, not #strip - typo.
<Swyper> ah neat
<havenwood> Swyper: Or since you know to remove the last element no matter what, removing by index is fine too!
<havenwood> Swyper: There are many ways to do it in Ruby. :)
<Swyper> Also another question, so I'm making small scale pure ruby written apps anyway for me to deploy them on my site ( not using rails )
<havenwood> Swyper: There are again tons of options. You want to add Ruby to an existing webpage?
<havenwood> Swyper: It's a plain HTML static site?
elphe has joined #ruby
<havenwood> Swyper: One way that very few Rubyists ever do is to do cgi, kinda like a PHP site: https://www.mikeperham.com/2015/01/05/cgi-rubys-bare-metal/
<havenwood> Swyper: Most folk use a Rack app in Ruby land. You could direct certain pages to the Rack app. Rails is one of many Rack web frameworks (also called Rack adapters).
<Swyper> Yeah
<Swyper> oh neat
<havenwood> Swyper: It's worth trying making a simple Rack app. There's almost nothing to it.
<Swyper> http://www.rickyarora.com/ this is my site with I want to add it in their with some projects since the ones there atm are bad :P
<havenwood> Swyper: On of my favorite Rack frameworks is Roda: http://roda.jeremyevans.net/
<havenwood> Swyper: Rails and Sinatra are the most popular.
tdy has joined #ruby
<Swyper> interesting I'll have to look into it for sure, I'm actually going through App Academies online cirriculum and rails is something we will be learning later on and I need to get some projects up this week xD
<havenwood> Swyper: I'd suggest making a Roda or Sinatra app and deploying it somewhere like Heroku to get started.
<havenwood> Swyper: You can make a Rack app with this line:
<havenwood> echo "run -> _ { [200, {'Content-Type' => 'text/plain'}, ['Swyper app']] }" > config.ru
<havenwood> That'll ^ create a file called config.ru that's a very simple Rack app.
<havenwood> Install Rack with: gem install rack
<Swyper> thats so cool, I have a few OOP projects I will be doing coming up and I'll figure out one of those options to host it with
<Swyper> thank you!
<havenwood> Swyper: You can then run that app with: rackup
<havenwood> Swyper: And it'll tell you the address to see it in your browser.
<havenwood> Swyper: Roda just adds a routing tree to Rack, so you can easily route requests for different routes.
<havenwood> Swyper: And then it has plugins to add various commonly needed stuff in a web app called plugins. You cherrypick the plugins you need.
<havenwood> Swyper: These are all the plugins: https://github.com/jeremyevans/roda/tree/master/lib/roda/plugins
<havenwood> Swyper: It's nifty since you start with a dead simple Rack app, with just routing added. Then you compose the exact framework you need by grabbing just the plugins that make sense for your project.
<havenwood> Here's a Hello World app in a ton of different Rack frameworks: https://github.com/luislavena/bench-micro/tree/master/apps
cruzo66342 has joined #ruby
millerti has quit [Read error: Connection reset by peer]
<havenwood> Most Ruby web stuff is Rack based.
donofrio has joined #ruby
<havenwood> There're also popular Ruby tools to generate static sites. You can use sockets directly or cgi or that sorta thing too, but most folk use Rack.
<Swyper> interesting, thank you so much havenwood
<havenwood> Swyper: no prob, you're welcome
tdy has quit [Remote host closed the connection]
cruzo66342 has quit [Ping timeout: 272 seconds]
ogres has joined #ruby
tdy has joined #ruby
clemens3_ has joined #ruby
kapil____ has joined #ruby
clemens3 has quit [Ping timeout: 240 seconds]
masterasia has joined #ruby
themsay has joined #ruby
sarink has joined #ruby
themsay has quit [Ping timeout: 246 seconds]
Swyper has quit [Ping timeout: 256 seconds]
roshanavand has quit [Remote host closed the connection]
roshanavand has joined #ruby
crankharder has quit [Read error: No route to host]
sarink has quit [Remote host closed the connection]
user374747474 has joined #ruby
<user374747474> hey
darkhanb has joined #ruby
<user374747474> having some issues with a layout
sarink has joined #ruby
user374747474 has quit [Quit: Leaving]
sarink has quit [Remote host closed the connection]
roshanavand has quit [Remote host closed the connection]
ur5us has joined #ruby
AJA4350 has quit [Quit: AJA4350]
ur5us has quit [Remote host closed the connection]
vutral1 has quit [Ping timeout: 244 seconds]
donofrio has quit [Ping timeout: 268 seconds]
hays has quit [Ping timeout: 268 seconds]
JoshS has joined #ruby
hays has joined #ruby
braincrash has quit [Quit: bye bye]
roshanavand has joined #ruby
braincrash has joined #ruby
hutch has quit [Ping timeout: 240 seconds]
elphe has quit [Ping timeout: 250 seconds]
elphe has joined #ruby
darkhanb has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
hutch has joined #ruby
RougeR has quit [Ping timeout: 244 seconds]
spacesuitdiver has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
houhoulis has joined #ruby
cschneid has joined #ruby
tiff has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
hutch has quit [Ping timeout: 272 seconds]
cschneid has quit [Remote host closed the connection]
darkhanb has joined #ruby
cruzo66342 has joined #ruby
cruzo66342 has quit [Remote host closed the connection]
d^sh has quit [Ping timeout: 272 seconds]
d^sh has joined #ruby
darkhanb has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
elphe has quit [Ping timeout: 250 seconds]
cruzo66342 has joined #ruby
cruzo66342 has quit [Remote host closed the connection]
ogres has quit [Quit: Connection closed for inactivity]
genpaku has quit [Ping timeout: 272 seconds]
genpaku has joined #ruby
cruzo66342 has joined #ruby
genpaku has quit [Remote host closed the connection]
kapil____ has quit [Quit: Connection closed for inactivity]
paranoicsan has joined #ruby
cruzo66342 has quit [Remote host closed the connection]
genpaku has joined #ruby
cruzo66342 has joined #ruby
cruzo66342 has quit [Ping timeout: 246 seconds]
rippa has joined #ruby
mikecmpbll has quit [Quit: inabit. zz.]
elphe has joined #ruby
_whitelogger has joined #ruby
cthulchu_ has joined #ruby
cthu| has joined #ruby
masterasia has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
cthulchu_ has quit [Ping timeout: 246 seconds]
tdy has quit [Ping timeout: 245 seconds]
sarink has joined #ruby
hutch has joined #ruby
venmx has quit [Ping timeout: 240 seconds]
ua has quit [Ping timeout: 268 seconds]
houhoulis has quit []
elphe has quit [Ping timeout: 250 seconds]
ua has joined #ruby
elphe has joined #ruby
elphe has quit [Ping timeout: 250 seconds]
jshjsh has joined #ruby
JoshS has quit [Ping timeout: 240 seconds]
gix has joined #ruby
tiff has joined #ruby
hutch has quit [Ping timeout: 250 seconds]
Xiti has quit [Ping timeout: 250 seconds]
tiff has quit [Client Quit]
za1b1tsu has joined #ruby
tiff has joined #ruby
nowhere_man has quit [Read error: Connection reset by peer]
nowhere_man has joined #ruby
kapil____ has joined #ruby
clemens3_ has quit [Ping timeout: 240 seconds]
themsay has joined #ruby
themsay has quit [Read error: Connection reset by peer]
themsay has joined #ruby
elphe has joined #ruby
themsay has quit [Ping timeout: 250 seconds]
elphe has quit [Ping timeout: 246 seconds]
armyriad has quit [Ping timeout: 244 seconds]
elphe has joined #ruby
reber has joined #ruby
x0f has quit [Ping timeout: 246 seconds]
mikecmpbll has joined #ruby
phaul has joined #ruby
phaul has quit [Client Quit]
tdy has joined #ruby
elphe has quit [Ping timeout: 268 seconds]
themsay has joined #ruby
xco has joined #ruby
<xco> hi i have a file with lots of lines. what i want to do is replace some text in the file (sort of edit it) this is what i have, not working and i need help https://gist.github.com/xcobar/400989355ae2e5b0068d0b0561c9f6c6
lunarkitty7 is now known as arnur7tikty
arnur7tikty is now known as lunarkittychan
roshanavand has quit [Remote host closed the connection]
roshanavand has joined #ruby
paranoicsan is now known as paranoicsan[Away
paranoicsan[Away has quit [Quit: paranoicsan[Away]
tiff has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
tiff has joined #ruby
conta has joined #ruby
paranoicsan has joined #ruby
paranoicsan has quit [Quit: paranoicsan]
sarink has quit [Remote host closed the connection]
tiff has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
sarink has joined #ruby
sarink has quit [Ping timeout: 268 seconds]
roshanavand has quit [Ping timeout: 250 seconds]
zapata has quit [Ping timeout: 252 seconds]
ellcs has joined #ruby
zapata has joined #ruby
nowhere_man has quit [Ping timeout: 252 seconds]
TheBloke- has quit [Quit: Textual IRC Client: www.textualapp.com]
TvL2386 has quit [Ping timeout: 250 seconds]
clemens3_ has joined #ruby
tdy has quit [Ping timeout: 268 seconds]
elphe has joined #ruby
ellcs has quit [Ping timeout: 260 seconds]
elphe has quit [Ping timeout: 268 seconds]
conta has quit [Quit: conta]
elphe has joined #ruby
ellcs has joined #ruby
xco has left #ruby [#ruby]
venmx has joined #ruby
lxsameer has joined #ruby
elphe has quit [Ping timeout: 268 seconds]
sarink has joined #ruby
sarink has quit [Ping timeout: 252 seconds]
Mike11 has joined #ruby
elphe has joined #ruby
Guest49234 has joined #ruby
elphe has quit [Ping timeout: 250 seconds]
Guest49234 has quit [Ping timeout: 272 seconds]
elphe has joined #ruby
Nobun has joined #ruby
<Nobun> hi. Any hint how to use rvm? I can't find a clear example how to use sandboxed ruby/gem installed with rvm instead of system one
<Nobun> I know that I should use /etc/profile.d or ~/.bashrc but it not clear how should I change it
Guest49234 has joined #ruby
Guest49234 has quit [Ping timeout: 240 seconds]
donofrio has joined #ruby
elphe has quit [Ping timeout: 246 seconds]
Nobun has quit [Quit: WeeChat 2.1-dev]
ellcs has quit [Ping timeout: 250 seconds]
cd has quit [Quit: cd]
alxd has quit [Excess Flood]
alxd has joined #ruby
sarink has joined #ruby
sarink has quit [Ping timeout: 250 seconds]
Xiti has joined #ruby
AJA4350 has joined #ruby
JoshS has joined #ruby
jshjsh has quit [Ping timeout: 272 seconds]
Mike11 has quit [Ping timeout: 268 seconds]
jshjsh has joined #ruby
JoshS has quit [Ping timeout: 244 seconds]
conta has joined #ruby
donofrio has quit [Ping timeout: 244 seconds]
jshjsh has quit [Ping timeout: 250 seconds]
elphe has joined #ruby
elphe has quit [Ping timeout: 245 seconds]
jottr has joined #ruby
nchambers has joined #ruby
<nchambers> havenwood: that infinite range operator article is cool. i can
<nchambers> 't help but think of haskell's lazy evaluation while im doing it
nchambers has quit [Quit: WeeChat 2.2]
havenwood changed the topic of #ruby to: Rules & more: https://ruby-community.com | Ruby 2.6.0, 2.5.3, 2.4.5: https://www.ruby-lang.org | Paste 4+ lines of text to https://dpaste.de/ and select Ruby as the language | Rails questions? Ask in #RubyOnRails | Books: https://goo.gl/wpGhoQ | Logs: https://irclog.whitequark.org/ruby | Can't talk? Register/identify with Nickserv first!
masterasia has joined #ruby
yokel has quit [Remote host closed the connection]
dinfuehr has quit [Ping timeout: 250 seconds]
yokel has joined #ruby
dinfuehr has joined #ruby
jottr has quit [Quit: WeeChat 2.2]
themsay has quit [Ping timeout: 246 seconds]
themsay has joined #ruby
themsay has quit [Ping timeout: 245 seconds]
themsay has joined #ruby
themsay has quit [Ping timeout: 272 seconds]
cruzo66342 has joined #ruby
marvin2 has quit [Ping timeout: 250 seconds]
ua has quit [Quit: Leaving]
ua has joined #ruby
Doow has joined #ruby
hutch has joined #ruby
Doow has quit [Ping timeout: 250 seconds]
marvin2 has joined #ruby
Nicmavr has quit [Read error: Connection reset by peer]
gix has quit [Ping timeout: 250 seconds]
roshanavand has joined #ruby
Nicmavr has joined #ruby
<darix> opensuse package is done too
<leah2> darix: are you going to 35c3 btw?
<darix> leah2: no plans for that atm
<darix> but a few of my coworkers are there
<leah2> okay
elphe has joined #ruby
elphe has quit [Ping timeout: 272 seconds]
phaul has joined #ruby
roshanavand has quit [Ping timeout: 250 seconds]
tdy has joined #ruby
spacesuitdiver has joined #ruby
themsay has joined #ruby
m0w has joined #ruby
Exuma has joined #ruby
spacesuitdiver has quit [Ping timeout: 272 seconds]
catbusters has joined #ruby
spacesuitdiver has joined #ruby
Exuma has quit [Quit: Textual IRC Client: www.textualapp.com]
tdy has quit [Ping timeout: 244 seconds]
elphe has joined #ruby
elphe has quit [Ping timeout: 250 seconds]
ellcs has joined #ruby
hutch has quit [Ping timeout: 244 seconds]
elphe has joined #ruby
Swyper has joined #ruby
<Swyper> hi
<phaul> hi
<Swyper> bundler: failed to load command: rspec (/Users/Rtyer/.rbenv/versions/2.5.1/bin/rspec) SyntaxError: /Users/Rtyer/Downloads/appacademy-online-intro_debugging-b9135fa1427b 2/lib/exercises.rb:56: syntax error, unexpected keyword_end, expecting ')' end ^~~
claudiuinberlin has joined #ruby
<Swyper> this is the error I am getting and need some help w/it
m0w has quit [Read error: Connection reset by peer]
<phaul> it means that there is a syntax error in that file at or around line 56.
<phaul> Can you paste that file?
<Swyper> right u
<Swyper> um
<Swyper> here you go
<phaul> on line 52 you open (s but only close one
<phaul> I meant two (s, but only close one
elphe has quit [Ping timeout: 246 seconds]
conta has quit [Remote host closed the connection]
<phaul> (stick an other close paren before the .each)
conta has joined #ruby
<Swyper> undefined local variable or method `length' for #<RSpec::ExampleGroups::SymmetricSubstrings:0x00007fbcb5a0e9b0>
<Swyper> isent length supposed to be a built in method for string
nchambers has joined #ruby
<Swyper> def symmetric_substrings(str) symm_subs = "" # initialize a blank string str.length.times do |start_pos| # .length is the length of string starting at 1,this loop is executing based on the amount of the string length
<Swyper> the .length there is causing the error
<phaul> length is indeed an instance method of strings.
<phaul> &>> "Swyper".length
<rubydoc> # => 6 (https://carc.in/#/r/5uqk)
<phaul> but #<RSpec::ExampleGroups::SymmetricSubstrings:0x00007fbcb5a0e9b0> is not a string. We would need to see the rpsec files, to see what those are and why they are causing errors
<Swyper> I've updated the gist with the RSpec files
<Swyper> symmetric_substrings(str) is the method with the error
hutch has joined #ruby
elphe has joined #ruby
donofrio has joined #ruby
<Swyper> phaul
<phaul> yeah I'm looking.
<Swyper> (2..(length - start_pos).each do |len| the problems here, length is not defined xD
<Swyper> I think
<phaul> yep. makes sense
elphe has quit [Ping timeout: 250 seconds]
TvL2386 has joined #ruby
donofrio has quit [Ping timeout: 246 seconds]
<Swyper> what does << do in Ruby? google is not showing any results and typing what does greater then greater then do in ruby gives me nothing relevant :p
gix has joined #ruby
Guest49234 has joined #ruby
<phaul> it's just an operator like many others. that means that for some type there is a method with the name << that defines some type specific behaviour
<phaul> usually it appends an elem at the end of a collection
<phaul> &ri Array.<<
<rubydoc> Found no entry that matches class Array class method <<
<phaul> &ri Array#<<
<phaul> &ri String#<<
<phaul> and there are others
<phaul> &list <<
<rubydoc> Array#<<, IO#<<, Integer#<<, Queue#<<, SizedQueue#<<, String#<<, CSV#<<, CSV::Row#<<, CSV::Table#<<, Date#<<, IPAddr#<<, Logger#<<, OpenSSL::BN#<<,...
nchambers has quit [Quit: WeeChat 2.2]
Guest49234 has quit [Ping timeout: 246 seconds]
phaul has quit [Ping timeout: 246 seconds]
rubydoc has quit [Ping timeout: 268 seconds]
tdy has joined #ruby
kapil____ has quit [Quit: Connection closed for inactivity]
armyriad has joined #ruby
rubydoc has joined #ruby
Fusl has quit [Ping timeout: 256 seconds]
phaul has joined #ruby
tdy has quit [Ping timeout: 272 seconds]
za1b1tsu has quit [Ping timeout: 246 seconds]
Fusl has joined #ruby
rippa has quit [Ping timeout: 250 seconds]
elphe has joined #ruby
Swyper has quit [Ping timeout: 256 seconds]
conta has quit [Quit: conta]
spacesuitdiver has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
hutch has quit [Ping timeout: 250 seconds]
darkhanb has joined #ruby
tdy has joined #ruby
spacesuitdiver has joined #ruby
nchambers has joined #ruby
cschneid has joined #ruby
nchambers has quit [Ping timeout: 250 seconds]
claudiuinberlin has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
hiroaki has quit [Ping timeout: 268 seconds]
cschneid has quit [Remote host closed the connection]
tdy has quit [Ping timeout: 250 seconds]
ellcs has quit [Ping timeout: 250 seconds]
darkhanb has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
ellcs has joined #ruby
spacesuitdiver has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
prestorium has joined #ruby
prestori_ has quit [Ping timeout: 246 seconds]
cthulchu_ has joined #ruby
cthu| has quit [Ping timeout: 260 seconds]
kapil____ has joined #ruby
TheBloke has joined #ruby
code_zombie has joined #ruby
spacesuitdiver has joined #ruby
cd has joined #ruby
themsay has quit [Ping timeout: 250 seconds]
spacesuitdiver has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
sgen has joined #ruby
spacesuitdiver has joined #ruby
donofrio has joined #ruby
shv4 has joined #ruby
shv4 has quit [Remote host closed the connection]
shv4 has joined #ruby
spacesuitdiver has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
shv4 has quit [Remote host closed the connection]
nowhere_man has joined #ruby
reber has quit [Remote host closed the connection]
donofrio has quit [Ping timeout: 268 seconds]
ixti has joined #ruby
spacesuitdiver has joined #ruby
spacesuitdiver has quit [Client Quit]
donofrio has joined #ruby
donofrio has quit [Client Quit]
englosh has joined #ruby
<englosh> Hello. Does anyone here know how Ruby does the fiber context switch?
shv4 has joined #ruby
<englosh> Does Ruby do it in assembly? If yes, is this the source? https://github.com/ruby/ruby/tree/trunk/coroutine/win32
catbusters has quit [Quit: Connection closed for inactivity]
sgen has quit [Ping timeout: 250 seconds]
shv4 has quit [Remote host closed the connection]
CrazyEddy has joined #ruby
englosh has quit [Quit: Page closed]
venmx has quit [Ping timeout: 240 seconds]
tiff has joined #ruby
desperek has joined #ruby
tdy has joined #ruby