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://www.ruby-lang.org/en/news/2022/11/11/ruby-3-2-0-preview3-released/
www.ruby-lang.org
Ruby 3.2.0 Preview 3 Released
Ruby / Rails Inside
https://andycroll.com/ruby/safely-remove-a-column-field-from-active-record/
Andy Croll
Safely Remove a Column from an Active Record Model
Avoid migration-related errors when you’re tidying your database
Ruby / Rails Inside
https://mensfeld.pl/2022/11/rspec-story-about-disappearing-classes/
Closer to Code
RSpec story about disappearing classes - Closer to Code
ActiveSupport#descendants can be slow. In a bigger system with layers of descendants, finding all of them can be time-consuming: puts Benchmark.measure do 100.times { Dispatchers::Base.descendants } end # 5.235370 0.015754 5.251124 ( 5.251069) In the code…
Ruby / Rails Inside
https://nora.codes/post/scaling-mastodon-in-the-face-of-an-exodus/
Ruby / Rails Inside
https://rubyonrails.org/2022/11/14/the-rails-foundation
Ruby on Rails
The Rails Foundation kicks off with one million dollars
Today, we are excited to announce the launch of The Rails Foundation. Its mission is to improve the documentation, education, marketing, and events in our ecosystem to the benefit of all new and existing Rails developers. It’s been started by some of the…
Ruby / Rails Inside
https://ryanbigg.com/2022/11/a-replacement-for-strong-parameters
Ryan Bigg
A replacement for strong parameters
Ruby / Rails Inside
https://businessclasskit.com/docs/how-to-deploy-rails-sidekiq-fly-io/
Business Class
How to deploy Rails and Sidekiq to Fly.io
This article shows how to deploy a typical Rails application with custom Dockerfile to Fly.io. We'll deploy Rails and Sidekiq processes as well as PostgreSQL and Redis databases. We'll also touch on scaling instances or Fly.io specific secrets management.
Ruby / Rails Inside
https://mixandgo.com/learn/ruby-on-rails/email-design-with-tailwindcss
Mix & Go
How to Send Tailwindcss-Styled Emails With Ruby on Rails 7 | Mix & Go
Let me show you how I create beautiful email templates in just a few minutes and how I use them in my Rails projects.
Ruby / Rails Inside
https://world.hey.com/this.week.in.rails/the-rails-foundation-stimulus-outlets-api-bug-fixes-and-lots-of-improvements-33c69bff
Hey
The Rails Foundation, Stimulus Outlets API, bug fixes and lots of i...
Boa noite! This is Emmanuel, bearer of good tidings. Introducing: The Rails Foundation In case you missed it, with eight founding members, Rails has started The Rails Foundation! Together, the founding members have contributed a total sum of $1,000,000 that…
Ruby / Rails Inside
https://naildrivin5.com/blog/2022/11/17/your-rails-and-ruby-versioning-and-gemfile-policy.html
Naildrivin' 5 - Website of David Bryant Copeland
Your Rails and Ruby Versioning and Gemfile Policy
Ruby / Rails Inside
https://mensfeld.pl/2022/11/ruby-concurrency-is-hard-how-i-became-a-ruby-on-rails-contributor/
Closer to Code | Blog about coding in various languages, security, and my other IT adventures.
Ruby concurrency is hard: how I became a Ruby on Rails contributor | Closer to Code
For the past several weeks, I've been trying to fix a cranky spec in Karafka integrations suite, which in the end, lead me to become a Ruby on Rails micro-contributor and submitting similar fix to several other high-popularity projects from the Ruby ecosystem.…
Ruby / Rails Inside
https://rubyonrails.org/2022/11/19/this-week-in-rails-the-rails-foundation-stimulus-outlets-api-bug-fixes-and-lots-of-improvements-33c69bff
Ruby on Rails
The Rails Foundation, Stimulus Outlets API, bug fixes and lots of improvements!
Boa noite! This is Emmanuel, bearer of good tidings.Introducing: The Rails FoundationIn case you missed it, with eight founding members, Rails has started The Rails Foundation! Together, the founding members have contributed a total sum of $1,000,000 that…
Ruby / Rails Inside
https://developers.redhat.com/articles/2022/11/22/how-i-developed-faster-ruby-interpreter#
Red Hat Developer
How I developed a faster Ruby interpreter | Red Hat Developer
In this article, I will describe my efforts to implement a faster interpreter for CRuby, the Ruby language interpreter, using a dynamically specialized internal representation (IR). I believe this
Ruby / Rails Inside
https://blog.saeloun.com/2022/11/22/data-immutable-object
Saeloun Blog
Ruby adds a new core class called Data to represent simple immutable value objects
The Data class helps define simple classes for value-alike objects that can be extended with custom methods.
Ruby / Rails Inside
https://world.hey.com/this.week.in.rails/disable-enum-methods-generation-a-concurrency-fix-and-more-5e5cc7ab
Hey
Disable enum methods generation, a concurrency fix and more!
Hi there, This is Greg, bringing you the latest changes in Rails. Make sure that concurrent map usage is thread-safe This pull request changes the way a cache miss is handled. It makes it thread-safe and ensures that it's not overwritten in the middle of…
Ruby / Rails Inside
https://dev.to/baweaver/new-in-ruby-32-datadefine-2819
DEV Community
New in Ruby 3.2 - Data.define
Victor Shepelev (Zverok) has just landed an extremely useful feature in Ruby, Data.define. You can...
Ruby / Rails Inside
https://world.hey.com/this.week.in.rails/executive-director-for-rails-foundation-needed-stimulus-3-2-and-more-19d5d378
Hey
Executive Director for Rails Foundation needed, Stimulus 3.2 and more
Hi, Wojtek here with this week's news from the Rails world. The Rails Foundation is hiring an Executive Director The Rails Foundation is looking for a full-time executive director to run day-to-day operations, and implement the Rails Core Team's mission to…
Ruby / Rails Inside
https://www.ruby-lang.org/en/news/2022/12/06/ruby-3-2-0-rc1-released/
www.ruby-lang.org
Ruby 3.2.0 RC 1 Released
Ruby / Rails Inside
https://evilmartians.com/opensource/sidekiq-grouping
evilmartians.com
Sidekiq::Grouping at Evil Martians
Allows identical Sidekiq jobs to be processed with a single background call.
Ruby / Rails Inside
https://ryanbigg.com/2022/11/hanami-20-thoughts
Ryan Bigg
Hanami 2.0 Thoughts
Ruby / Rails Inside
https://janko.io/social-login-in-rails-with-rodauth/
Janko Marohnić
Social Login in Rails with Rodauth
OmniAuth provides a standardized interface for authenticating with various external providers. Once the user authenticates with the provider, it’s up to us developers to handle the callback and implement actual login and registration into the app. There is…