Ruby / Rails Inside
@rubyinside
735
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
735 subscribers
Ruby / Rails Inside
https://blog.arkency.com/how-to-delete-jobs-from-sidekiq-retries/
Arkency Blog
How to delete jobs from Sidekiq Retries
Hi, we're Arkency and it's our blog with meaty content.
Ruby / Rails Inside
https://medium.com/@nashby_/ruby-3-0-changes-how-methods-of-subclassed-core-classes-work-5e0536d54503
Medium
Ruby 3.0 changes how methods of subclassed core classes work.
First of all, most likely you shouldn’t inherit from Ruby’s core classes. But if you still want to do it, it’s better to know what was…
Ruby / Rails Inside
https://blog.cmol.me/creating-a-udp-server-with-ruby-ractors-be4ff65a8400
Medium
Creating a UDP server with Ruby Ractors
Ruby 3.0 introduces Ractors, a concept that lets you create true parallel execution with messages flowing between Ractors…
Ruby / Rails Inside
https://code.dblock.org/2021/04/16/adding-work-email-to-a-gpg-key-and-signing-git-commits.html
code.dblock.org | tech blog
Adding Work E-Mail to a GPG Key and Signing Git Commits
Last week I joined the OpenSearch Team at AWS, a community-driven, open source fork of Elasticsearch and Kibana (read more about it here).
Security is always our top priority at AWS, so I had to learn some new development best practices in this area. One…
Ruby / Rails Inside
https://okuramasafumi.github.io/alba/
Ruby / Rails Inside
https://prathamesh.tech/2021/04/18/bundler-2-2-3-and-deployment-of-ruby-apps/
Prathamesh Sonpatki
Bundler 2.2.3+ and deployment of Ruby apps
Fix deployment of Ruby/Rails apps with bundler 2.2.3 and above by adding the deployment platform to Gemfile.lock.
Ruby / Rails Inside
https://www.honeybadger.io/blog/rails-activesupport-stringinquirer/
Honeybadger Developer Blog
Rails' Hidden Gems: ActiveSupport StringInquirer
If you've ever checked the environment in your Rails app with Rails.env.production? you've used a fascinating little utility class called StringInquirer. In this post, Jonathan Miles dives into the rails codebase to show us exactly how StringInquirer works…
Ruby / Rails Inside
https://blog.engineyard.com/the-ruby-unbundled-series-why-you-should-check-out-hotwire-now
EngineYard
The Ruby Unbundled Series: Why You Should Check Out Hotwire Now
Hotwire truly is a game changer for Ruby on Rails web application development. Here's why.
Ruby / Rails Inside
https://tosbourn.com/ruby-on-rails-seo/
Tosbourn – Belfast based Ruby developers
SEO for Ruby on Rails projects
How to do technical SEO with your Ruby on Rails application
Ruby / Rails Inside
https://www.mikeperham.com/2021/04/20/a-tour-of-the-sidekiq-api/
Mike Perham
A Tour of the Sidekiq API
Sidekiq provides an underappreciated but powerful tool for all users: the Sidekiq API. The API gives comprehensive and idiomatic access to Sidekiq’s underlying real-time job and queue data within Redis.
The Glossary To explore the API, first it helps to understand…
Ruby / Rails Inside
https://blog.saeloun.com/2021/04/20/rails-add-in-order-of-method-in-enumerable.html
Saeloun Blog
Rails 7 adds `Enumerable#in_order_of` to put an enumerable in a certain order by a key.
With the addition of the `in_order_of` method, we can order enumerable based on the provided series.
Ruby / Rails Inside
https://bigbinary.com/blog/ruby-3-1-accumulates-enumerable-tally-results
Ruby / Rails Inside
https://longliveruby.com/articles/ruby-csv-common-issues
Ruby / Rails Inside
https://blog.saeloun.com/2021/04/21/rails-7-invert-where-method.html
Saeloun Blog
Rails 7 adds invert_where method to ActiveRecord
Rails 7 adds invert_where method that will invert all scope conditions.
Ruby / Rails Inside
https://www.ombulabs.com/blog/rails/hotwire/hotwire-demo.html
Building with Hotwire
Building With Hotwire - The Lean Software Boutique
Previously, I outlined the new hotness that is Hotwire. New features are nice, but what can you build with it? Let’s build a little project, and le...
Ruby / Rails Inside
https://dev.to/nejremeslnici/using-hotwire-turbo-in-rails-with-legacy-javascript-17g1
DEV Community
Using Hotwire Turbo in Rails with legacy JavaScript
When Hotwire Turbo got released around Christmas 2020, it was exciting news for many of us. One of it...
Ruby / Rails Inside
https://blog.arkency.com/zeitwerk-based-autoload-and-workarounds-for-single-file-many-classes/
Arkency Blog
Zeitwerk-based autoload and workarounds for single-file-many-classes problem
Hi, we're Arkency and it's our blog with meaty content.
Ruby / Rails Inside
https://dylansreile.medium.com/rails-6-1-new-framework-defaults-what-they-do-and-how-to-safely-uncomment-them-c546b70f0c5e
Medium
Rails 6.1 new framework defaults: what they do and how to safely uncomment them
When you run rails app:update on a Rails 6.0 app, it creates a file with 16 new default configuration settings. Here’s what they do and…
Ruby / Rails Inside
https://bigbinary.com/blog/rails-7-adds-enumerable-sole
BigBinary
Rails 7 adds Enumerable#sole
Rails 7 series | Rails 7.0 adds Enumerable#sole
Ruby / Rails Inside
https://blog.saeloun.com/2021/04/27/rails-7-allow-constructor-in-has-one-through.html
Saeloun Blog
Rails 7 allows constructors on has_one :through associations
Rails 7 allows build_association and create_association on has_one :through associations.