Ruby 3.3
ruby-lang.org
Ruby 3.3
1–10 of 277 posts
Re: Ruby 3.3
#2But one thing that is not mentioned or discussed enough, is Ractor, M:N thread scheduler, Fibre and Async. Especially in the context of Rails. I am wondering if any one are using these features in productions and if you could share any thoughts on the subject.
Re: Ruby 3.3
#3Re: Ruby 3.3
#4Re: Ruby 3.3
#5Re: Ruby 3.3
#6Re: Ruby 3.3
#7I hope Ruby 4.0 could allow explicit import and avoid implicit, global namespace gem import mechanism like nowsdays.
Or I'm speaking out of my ear and completely wrong (and I don't know which :D)
Re: Ruby 3.3
#8Prism is interesting. Any Ruby code analysis tools that use it? I've been looking for ways to analyze my code at work.
Re: Ruby 3.3
#9Every Christmas, like clockwork, Ruby Lang drops a new release.
Re: Ruby 3.3
#10I hope Ruby 4.0 could allow explicit import and avoid implicit, global namespace gem import mechanism like nowsdays.
I'm feeling a bit ignorant, but isn't this a Rails thing and not a Ruby thing? I know that for most projects that's a distinction without a difference; but, that may be a decision from the Rails devs and unrelated to what Ruby's devs do? Or I'm speaking out of my ear and completely wrong (and I don't know which :D)
If anything Rails autoloading (Zeitwerk really) make it much easier to find where constants come from as it enforce a constant name -> file name convention, so all you need is fuzzy file search.