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://www.bigbinary.com/blog/rails-7-adds-disable-joins-for-associations
BigBinary
Rails 7 adds disable_joins for associations
Rails 7 series | Ruby 7.0 adds disable_joins for associations
Ruby / Rails Inside
https://medium.com/@levelingupweekly/rails-api-building-the-resourceful-way-cec9871b84fa
Medium
Rails API Building: The Resourceful Way
Learn how to build a REST API by building Resources in Rails!
Ruby / Rails Inside
https://blog.saeloun.com/2021/10/27/rails-7-adds-database-specific-setup.html
Saeloun Blog
Rails 7 adds database-specific setup and reset tasks for multi DB configurations
For multi DB Rails applications starting with Rails 7, we can now setup and reset a particular database.
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://www.fastruby.io/blog/rails/javascript/code-coverage/js-code-coverage-in-rails.html
JavaScript Test Code Coverage in Rails
JavaScript Test Code Coverage in Rails - FastRuby.io | Rails Upgrade Service
Are you measuring code coverage in your codebase? Check your JavaScript too! How to merge coverage data between Ruby, Rails, and JavaScript results.
Ruby / Rails Inside
https://tenderlovemaking.com/2021/10/26/publishing-gems-with-your-yubikey.html
Ruby / Rails Inside
https://www.benpickles.com/articles/85-supporting-fractions-in-ruby-rails
Ben Pickles
Supporting fractions in Ruby/Rails
Unicode comes with a selection of common single-character fractions like ½, ¼, and even ⅐ (see en.wikipedia.org/wiki/Number_Forms for more), but I need to store and display somewhat arbitrary fract...
Ruby / Rails Inside
https://noteflakes.com/articles/2021-10-20-explaining-ruby-fibers
Ruby / Rails Inside
https://medium.com/@paulgoetze/testing-your-json-api-in-ruby-with-dry-rb-dffb6a9bccdf
Medium
Testing your JSON API in Ruby with dry-rb
Using dry-schema and dry-validate to keep endpoint tests readable & maintainable
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.