Ruby / Rails Inside
@rubyinside
732
subscribers
15
photos
2.51K
links
Daily Ruby / Ruby on Rails articles. Curated channel.
Faker::Hacker.say_something_smart
Suggest link/news
https://t.me/NoMethodError
Download Telegram
Join
Ruby / Rails Inside
732 subscribers
Ruby / Rails Inside
https://census.dev/blog/ruby-retry-made-better
Census Engineering
Ruby Retry Made Better
Ever need a simple way to retry a block of code in ruby? Maybe you need a maximum number of retries? Exponential backoff? Different handling for different exceptions?
Ruby / Rails Inside
https://world.hey.com/this.week.in.rails/this-week-in-rails-rails-world-tickets-waiting-list-caching-improvements-and-more-831051cd
Hey
This Week in Rails: Rails World tickets waiting list, caching impro...
Hi, it’s Greg, bringing you this week’s changes in the Rails codebase. Rails World tickets waiting list Many of you asked if there is a waiting list where you can be informed when Rails World tickets go on sale, and the Rails Foundation listened. Sign up…
Ruby / Rails Inside
https://world.hey.com/dhh/how-to-recover-from-microservices-ce3803cc
Hey
How to recover from microservices
I won't deny there may well be cases where a microservices-first architecture makes sense, but I think they're few and far in between. The vast majority of systems are much better served by starting and staying with a majestic monolith. The Prime Video case…
Ruby / Rails Inside
https://ivoanjo.me/blog/2023/02/11/ruby-unexpected-io-vs-cpu-unfairness/
ivoanjo.me
Ruby’s unexpected I/O vs CPU unfairness - ivo's awfully random tech blog
When mixing input/output (such as reading files or network/database requests) and CPU work in different threads, Ruby gives a lot more execution time to the ...
Ruby / Rails Inside
https://medium.com/gusto-engineering/singed-a-profiler-front-end-for-ruby-and-rails-applications-f0f02da21e89
Medium
Singed, a Profiler Front-End for Ruby and Rails Applications
Have you ever found yourself wanting to understand why a block of Ruby code, a particular web request, or a certain controller action was…
Ruby / Rails Inside
https://blog.rubyhero.dev/small-rails-design-patterns
Ruby / Rails Inside
https://blog.appsignal.com/2023/05/17/manage-your-ruby-logs-like-a-pro.html
Appsignal
Manage Your Ruby Logs Like a Pro | AppSignal Blog
Discover the ins and outs of logging in Ruby, including how to customize your logs and use logging libraries like Lograge.
Ruby / Rails Inside
https://evilmartians.com/chronicles/from-ruby-to-crystal-writing-and-distributing-a-cli-tool
evilmartians.com
From Ruby to Crystal? Writing and distributing a CLI tool—Martian Chronicles, Evil Martians’ team blog
We use the Crystal language to build a CLI tool, a coverage reporter for Coveralls, as a static binary and as a Homebrew tap
Ruby / Rails Inside
https://world.hey.com/this.week.in.rails/rails-world-cfp-activerecord-disconnect_all-optimized-where-query-and-more-667db42c
Hey
Rails World CFP, ActiveRecord.disconnect_all!, optimized where quer...
Hello Everyone! This is Vipul, bringing you this week’s changes in the Rails codebase. Rails World Call for Papers now open This CFP is open until June 16, with space in the agenda for 26 talks on two tracks, and up to six workshops. Read the full announcement…
Ruby / Rails Inside
https://world.hey.com/this.week.in.rails/html5-sanitizer-path_params-and-more-484b0376
Hey
HTML5 sanitizer, path_params and more
Hi, Wojtek here. Let’s explore this week’s changes in the Rails codebase. Update Action View to use HTML5 standards-compliant sanitizers Add support for HTML5 standards-compliant sanitizers, and default to Rails::HTML5::Sanitizer in the Rails 7.1 configuration…
Ruby / Rails Inside
https://aws.amazon.com/blogs/compute/ruby-3-2-runtime-now-available-in-aws-lambda/
Amazon
Ruby 3.2 runtime now available in AWS Lambda | Amazon Web Services
Get started building with Ruby 3.2 today by making necessary changes for compatibility with Ruby 3.2, and specifying a runtime parameter value of ruby3.2 when creating or updating your Lambda functions.
Ruby / Rails Inside
https://ryanbigg.com/2023/06/rails-7-react-typescript-setup
Ryan Bigg
Rails 7, React, TypeScript, ESBuild and View Components
Ruby / Rails Inside
https://world.hey.com/this.week.in.rails/this-week-in-rails-june-9-2023-2e77d3dc
Hey
This Week In Rails - June 9, 2023
Hi! Emmanuel here writing from a train to Katowice! There have been quite a few developments in the Rails codebase over the last few weeks! Let's take a look at some of them, shall we? Create a class level #with_routing helper The with_routing helper can…
Ruby / Rails Inside
RubyKaigi 2023
https://www.youtube.com/playlist?list=PLbFmgWm555yYvWS7VGTFipF7ckduvSeT-
Ruby / Rails Inside
https://firehydrant.com/blog/using-advisory-locks-to-avoid-race-conditions-in-rails/
Firehydrant
Using PostgreSQL advisory locks to avoid race conditions
We used to see multiple incident declarations exceed our 3-second target each day. After this update, it became rare to see any at all.
Ruby / Rails Inside
https://world.hey.com/this.week.in.rails/ssl-enforcement-new-postgres-enum-features-and-changes-to-rails-application-secrets-b1a03ffe
Hey
SSL Enforcement, new Postgres enum features, and changes to Rails.a...
Hi, it’s zzak. We’re officially half-way through June, and we’ve got a shorter edition this week but let’s hop in. Enable `force_ssl=true` in production by default This PR affects newly generated apps to make SSL enforcement the default behavior in production…
Ruby / Rails Inside
https://railsatscale.com/2023-06-12-rewriting-the-ruby-parser/
Rails at Scale
Rewriting the Ruby parser
At Shopify, we have spent the last year writing a new Ruby parser, which we’ve called YARP (Yet Another Ruby Parser). As of the date of this post, YARP can parse a semantically equivalent syntax tree to Ruby 3.3 on every Ruby file in Shopify’s main codebase…
Ruby / Rails Inside
https://world.hey.com/this.week.in.rails/rails-world-website-and-ticket-sales-cpk-improvements-and-more-6fd3bb05
Hey
Rails World website and ticket sales, CPK improvements and more!
Hi, it’s Greg, bringing you the latest changes in the Rails codebase. Rails World’s site is live! The Rails World conference website is live from today. It was created by Shona Chan, a junior developer from the Rails community. It was commissioned by the…
Ruby / Rails Inside
https://blog.appsignal.com/2023/06/28/keep-your-ruby-app-secure-with-bundler.html
Appsignal
Keep Your Ruby App Secure with Bundler | AppSignal Blog
Discover how you can use Bundler-audit and Bundler outdated to help keep your Ruby apps secure.
Ruby / Rails Inside
https://blog.peterzhu.ca/notes-on-ruby-gc/
blog.peterzhu.ca
Garbage Collection in Ruby - Peter Zhu
Overview of how Ruby's garbage collector works.