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.saeloun.com/2021/05/25/rails-add-range-serializer-for-activejob
Saeloun Blog
Rails 7 adds range serializer for ActiveJob
ActiveJob in Rails 7 allows a range to be passed as an argument to perform method.
Ruby / Rails Inside
https://www.honeybadger.io/blog/ruby-method-lookup/
Honeybadger Developer Blog
Understanding Ruby Method Lookup
Ruby lets you express yourself like few other languages, with a minimum of boilerplate. It's fantastic until it isn't. Until one day when you think you're calling the `foo` method you wrote last week, but instead, you...
Ruby / Rails Inside
https://blog.thegnar.co/activerecord-new-block
blog.thegnar.co
The Gnar Blog - ActiveRecord's New Takes a Block, Kid
Ramblings from The Gnar Company team on all things tech, culture, and process.
Ruby / Rails Inside
https://dunae.ca/notes/2021/05/25/sorbet-stability.html
Alex’s Blag
Sorbet Journey, Part 4: Sorbet Stability
Sorbet is now deeply integrated into our Rails app. That’s great.
Ruby / Rails Inside
https://pganalyze.com/blog/postgres-row-level-security-ruby-rails
pganalyze
Using Postgres Row-Level Security in Ruby on Rails
Learn how to create and implement a row level security policy in Rails, allowing to limit the database rows a user can access.
Ruby / Rails Inside
https://weblog.rubyonrails.org/2021/5/28/this-week-in-rails-active-record-encrytion-several-performance-optimizations-and-much-more/
Riding Rails
Active Record Encrytion, several performance optimizations, and much MORE!
Hi, zzak here! お久しぶりです! This time I will be recapping the past month or so of Rails. Hang on! There’s a ton of stuff to catch up on!!
Ruby / Rails Inside
https://everydayrails.com/2021/05/29/pronto-github-actions-code-quality.html
Everydayrails
Automatic code review with Pronto and GitHub Actions |
Everyday Rails
Nobody likes to be the one to pick through your pull request for style guide and security violations. Here's how to ask robots to do the work for you, automatically!
Ruby / Rails Inside
https://www.honeybadger.io/blog/ruby-rbs-type-annotation/
Honeybadger Developer Blog
Understanding RBS, Ruby's new Type Annotation System
Ruby's flexibility has always been both its greatest strength and its greatest weakness. You can write amazingly expressive programs. You can also slip and break them ...
Ruby / Rails Inside
https://nts.strzibny.name/puma-graceful-restarts/
Notes to self
Puma graceful restarts
How to configure Puma 5 application server for graceful restarts, and what is the difference between regular, hot, and phased restarts?
Ruby / Rails Inside
https://www.botreetechnologies.com/blog/razorpay-integration-in-ruby-on-rails/
BoTree Technologies
Razorpay Integration in Ruby on Rails - BoTree Technologies
Want to learn how to integrate Razorpay in your website using Ruby on Rails? Here’s how to do the Razorpay payment gateway integration.
Ruby / Rails Inside
https://blog.saeloun.com/2021/06/01/rails-add-disable-join-option-to-has-one-association.html
Saeloun Blog
Rails 7 adds disable_joins: true option to has_one :through association
In multiple database applications, associations can't join across databases. When set, Rails makes 2 or more queries rather than using join for associations.
Ruby / Rails Inside
https://pointersgonewild.com/2021/06/02/yjit-building-a-new-jit-compiler-inside-cruby/
Pointers Gone Wild
YJIT: Building a New JIT Compiler Inside CRuby
The 1980s and 1990s saw the genesis of Perl, Ruby, Python, PHP and JavaScript: interpreted, dynamically-typed programming languages which favored ease of use and flexibility over performance. In ma…
Ruby / Rails Inside
https://longliveruby.com/articles/handle-api-response-with-value-objects
Longliveruby
Gracefully handle API response with value objects
This article is a quick tip for anyone working with APIs in a Rails application and parsing the data without modeling it
Ruby / Rails Inside
https://martinfowler.com/articles/2021-test-shapes.html
martinfowler.com
On the Diverse And Fantastical Shapes of Testing
My #2 problem with arguing testing pyramids vs honeycombs is the disparate definitions of unit test
Ruby / Rails Inside
https://eregon.me/blog/2021/06/04/review-of-ruby-installers-and-switchers.html
On the Edge of Ruby
Review: Ruby Installers and Ruby Switchers
In this post I review the most popular Ruby installers (making it easier to install a Ruby) and Ruby switchers (to switch between different Rubies conveniently).
Ruby / Rails Inside
https://hanamimastery.com/episodes/3-style-your-app-with-bulma
Hanami Mastery - a knowledge base to hanami framework
Style your Hanami App with Bulma using Hanami Assets
In this episode I make use of Bulma CSS framework and integrate it with Hanami 2.0 application to prettify it with the least effort possible.
Ruby / Rails Inside
https://www.youtube.com/watch?v=Fj-f7TfHQT4
YouTube
Introduction to Rails' brand new Request.js library
► Check out https://gorails.com for Pro episodes and more!
► SaaS business template for Ruby on Rails with built-in features like Payments, Teams, and much more: https://jumpstartrails.com
► Ruby on Rails hosting with Hatchbox.io: https://hatchbox.io
…
Ruby / Rails Inside
https://webhaus.tonywok.com/2020/06/01/embracing-perspectives-with-the-rails-router.html
webhaus
Embracing Perspectives with the Rails Router
One of my favorite parts of Rails is the router.
Ruby / Rails Inside
https://github.com/chubchenko/capistrano-slacky
GitHub
GitHub - chubchenko/capistrano-slacky: Send Capistrano deployment status to Slack via the Incoming Webhooks integration
Send Capistrano deployment status to Slack via the Incoming Webhooks integration - GitHub - chubchenko/capistrano-slacky: Send Capistrano deployment status to Slack via the Incoming Webhooks integr...
Ruby / Rails Inside
https://blog.saeloun.com/2021/06/08/rails-7-ensure-has-one-association-callbacks.html
Saeloun Blog
Rails 7 ensures has_one autosave association callbacks get called once
In Rails 7, the autosave association callbacks for the has_one are non-cyclic.