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://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.
Ruby / Rails Inside
https://www.honeybadger.io/blog/building-interpreter-ruby/
Honeybadger Developer Blog
Building A New Programming Language In Ruby: The Interpreter
In earlier installments of this series, Alex Stoll guided us through creating a lexer and a parser. These translated the human-readable source code into data structure...
Ruby / Rails Inside
https://blog.appsignal.com/2021/06/09/performance-stress-and-load-tests-in-rails.html
Appsignal
Performance, Stress, and Load Tests in Rails | AppSignal Blog
Let's jump into theoretical and practical aspects of performance testing in Rails.
Ruby / Rails Inside
https://bigbinary.com/blog/rails-7-adds-method-calls-for-nested-secrets
BigBinary
Rails 7 adds method calls for nested secrets
Rails 7 series | Rails 7.0 adds method calls for nested secrets
Ruby / Rails Inside
https://blog.saeloun.com/2021/06/09/rails-7-add-encryption-to-active-record.html
Saeloun Blog
Rails 7 adds encryption to ActiveRecord
Rails 7 supports application-level encryption. We can declare which attributes should be encrypted and, ActiveRecord will encrypt and decrypt when necessary.
Ruby / Rails Inside
https://gorails.com/episodes/rails-requestjs
GoRails
How to use Rails Request.js (Example) | GoRails
Learn how to use Rails' brand new Request.js library for making AJAX requests in your Javascript
Ruby / Rails Inside
https://honeyryderchuck.gitlab.io/httpx/2021/06/11/introducing-idnx.html
Ruby / Rails Inside
https://weblog.rubyonrails.org/2021/6/11/this-week-in-rails-active-storage-audio-improvements-and-more/
Riding Rails
Active Storage audio improvements and more
Hi, Wojtek here with the summary of changes from the last week.
Ruby / Rails Inside
https://nts.strzibny.name/moving-actioncable-to-webpacker/
Notes to self
Moving ActionCable over to Webpacker
This week, I upgraded a little demo application for my book Deployment from Scratch from Rails 6 to Rails 6.1. Since I showcase WebSockets with ActionCable and Redis, I needed to move the ActionCable CoffeeScript from Sprockets to Webpacker.