Ruby / Rails Inside
@rubyinside
734
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
734 subscribers
Ruby / Rails Inside
https://blog.engineyard.com/encrypted-credentials-in-rails-6.2-evolution
EngineYard
Evolution of Encrypted Credentials in Rails 6.2
With each update, credentials feature acquired better shape. This post will offer a peek into the evolution of encrypted credentials since its inception in Rails 5.1
Ruby / Rails Inside
https://kddnewton.com/2021/10/28/prettier-ruby-2.0.0.html
Ruby / Rails Inside
https://brunosutic.com/blog/async-ruby
Brunosutic
Async Ruby - Bruno Sutic
Async Ruby is a powerful and highly scalable concurrency feature. It's available today, it's production-ready, and it's an awesome addition to Ruby language!
Ruby / Rails Inside
https://longliveruby.com/articles/rails-enum-under-the-hood
Ruby / Rails Inside
https://www.bigbinary.com/blog/rails-7-adds-activerecord-query-methods-in-order-of
BigBinary
Rails 7 adds ActiveRecord::QueryMethods#in_order_of
Rails 7 series | Ruby 7.0 adds ActiveRecord::QueryMethods#in_order_of
Ruby / Rails Inside
https://gorails.com/episodes/rails-code-review-with-kasper
Gorails
Rails PR Code Review with Kasper Timm Hansen from the Rails core team | GoRails
A code review with Kasper from the Rails core team to show us the process of reviewing, designing, and refactoring Rails code.
Ruby / Rails Inside
https://www.alchemists.io/articles/ruby_structs/
alchemists.io
Ruby Structs | Alchemists
A collective devoted to the craft of software engineering where expertise is transmuted into joy.
Ruby / Rails Inside
https://hybrd.co/posts/github-issue-style-file-uploader-using-stimulus-and-active-storage
HYBRD
GitHub Issue-style File Uploader Using Stimulus and Active Storage
I recently built a drag-and-drop and copy-and-paste file uploader for Markdown (like GitHub’s editor) using Stimulus and Active Storage. Check out the code and my write up on it.
Ruby / Rails Inside
https://blog.saeloun.com/2021/11/03/instrument-active-storage-analyzers.html
Saeloun Blog
Rails 7: Instrument ActiveStorage analyzers
Rails 7 adds instrumentation for ActiveStorage analyzers so that the time of analysis can be tracked.
Ruby / Rails Inside
https://www.youtube.com/watch?v=IP3I_t2rR6A
YouTube
The Singleton Pattern in Ruby
The Singleton Pattern helps with restricting the number of instances a class can create to just one and gives you a global way of accessing the instance.
This can be useful when you need to manage access to some resource, like a configuration object, or…
Ruby / Rails Inside
https://blog.ty-porter.dev/development/2021/08/23/metaprogramming-smarter-hashes.html
blog.ty-porter.dev
Metaprogramming Smarter Hashes in Ruby
Using Ruby's fantastic metaprogramming feature set to enhance the functionality of the Hash class.
Ruby / Rails Inside
https://getaround.tech/mysql-8-features/
Getaround Tech
MySQL 8 Features | Getaround Tech
MySQL 8 comes with tons of new features. From 8.0 to the last minor release the team has been busy adding tons of improvements. Let's do a quick tour!
Ruby / Rails Inside
https://blog.peterzhu.ca/ruby-memcheck/
blog.peterzhu.ca
How ruby_memcheck Finds Memory Leaks in Native Gems - Peter Zhu
Let's look at the internals of ruby_memcheck, a tool to find memory leaks in native gems.
Ruby / Rails Inside
https://www.ruby-lang.org/en/news/2021/11/09/ruby-3-1-0-preview1-released/
www.ruby-lang.org
Ruby 3.1.0 Preview 1 Released
Ruby / Rails Inside
https://www.mbronikowski.com/blog/timestamps-in-rails
Michał Bronikowski
How to store timestamps in Rails
Why we should care about using TIMESTAMP WITH TIME ZONE for almost all timestamps in our apps
Ruby / Rails Inside
https://www.hexdevs.com/posts/code-quality-ruby-on-rails/
hexdevs
How to Improve Code Quality on a Ruby on Rails Application
Taking ages to deliver small changes? Constantly sacrificing code quality? Learn which Ruby code quality tools you can use to perform static code analysis and improve code quality.
Ruby / Rails Inside
https://dev.to/baweaver/future-of-ruby-ast-tooling-9i1
DEV Community
👩💻
👨💻
Future of Ruby – AST Tooling
This is a series meant to explore the potential future of the Ruby programming language by visiting...
Ruby / Rails Inside
https://noteflakes.com/articles/2021-11-13-real-world-polyphony-chat
Ruby / Rails Inside
https://www.honeybadger.io/blog/railway-programming-dry-monads/
Honeybadger
Railway Oriented Programming In Rails Using Dry-Monads
It's not every day that you learn a new approach to error handling for Ruby. In this article, Abiodun walks us through a novel error-handling process called Rai...
Ruby / Rails Inside
https://www.youtube.com/watch?v=VPKaPaxmXig
YouTube
The Template Method Pattern in Ruby
The Template Method pattern allows you to extract the parts of your code that stay the same into a base class and the ones that change into subclasses.
This structure allows you to provide different variations of an algorithm by simply adding new subclasses…