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://gorails.com/episodes/stripe-checkout-rails
Gorails
How to use Stripe Checkout in Rails | GoRails
Learn how to accept payments in your Rails app with Stripe Checkout using the Pay gem
Ruby / Rails Inside
https://longliveruby.com/articles/building-dsl-with-ruby
Ruby / Rails Inside
https://hschne.at/2021/04/04/build-real-time-clis-with-actioncable.html
Hans-Jörg Schnedlitz
Real-Time Command Line Applications with Action Cable and Thor
If you build a Rails application that has any kind of real-time feature, chances are you use Action Cable.
Ruby / Rails Inside
http://www.talkingquickly.co.uk/kubernetes-sso-a-detailed-guide
www.talkingquickly.co.uk
Kubernetes Single Sign On - A detailed guide
Blog by Ben Dixon, Ruby on Rails Developer, about rails, kubernetes, docker, climbing and startups
Ruby / Rails Inside
https://bigbinary.com/blog/ruby-3-1-adds-enumerable-compact
BigBinary
Ruby 3.1 adds Enumerable#compact and Enumerator::Lazy#compact | BigBinary Blog
Ruby 3.1 series | Ruby 3.1 adds Enumerable#compact and Enumerator::Lazy#compact
Ruby / Rails Inside
https://blog.codeminer42.com/optimizing-rails-apis-json-generation/
The Miners - Codeminer42’s Engineering Blog
Optimizing Rails API JSON generation Lower your JSON rendering time with the help of PostgreSQL - The Miners
JSON has become a ubiquitous data transfer format for web APIs. Whether you're working on a third-party integration, or endpoints to serve data for rich clients (single page application, mobile application, or whatnot), chances are this data is flowing through…
Ruby / Rails Inside
https://blog.kiprosh.com/rails-parameters-parsing-and-the-case-of-parameters-corruption/
Kiprosh Blogs
Rails Parameters Parsing and the Case of Parameters Corruption
Rails is a developer-friendly web application framework that enables developers to do more with less code, but it isn’t always clear exactly what’s going...
Ruby / Rails Inside
https://boringrails.com/tips/lightweight-components-with-helpers-stimulus
Boring Rails: Skip the bullshit and ship fast
Building lightweight components with Rails Helpers and Stimulus
Custom Rails helpers modules are often overlooked, but they can be a great option for building lightweight components and reducing boilerplate in your Stimulus controllers.
Ruby / Rails Inside
https://jakeyesbeck.com/2021/04/10/avoid-models-in-migrations/
Jakeyesbeck
Why You Should Avoid Models in Rails Migrations
Using AR Models in Rails migrations works but can have hidden problems. Learn why to avoid them and what to do instead
Ruby / Rails Inside
https://www.honeybadger.io/blog/angular-rails-5/
Honeybadger Developer Blog
Using Angular with Rails 5
Before you can decide on a front-end for your Rails app, you need a feel for the options. Does a particular JS framework speak to you or does it make you feel dirty inside? There's only one way to find out! In this article, Julio Sampaio walks us through…
Ruby / Rails Inside
https://blog.engineyard.com/the-ruby-unbundled-series-release-features-faster-by-slowing-down
Engineyard
The Ruby Unbundled Series: Release Features Faster by Slowing Down
Increase your feature velocity and release faster by using tools and techniques that actually slow the rollout initially in order to turn up the speed overall.
Ruby / Rails Inside
https://evilmartians.com/chronicles/hotwire-reactive-rails-with-no-javascript
evilmartians.com
Hotwire: Reactive Rails with no JavaScript?—Martian Chronicles, Evil Martians’ team blog
Take a deep dive into building reactive Rails applications with Hotwire Turbo and only a pinch of custom JavaScript. This article compliments the RailsConf 2021 talk by Vladimir Dementyev.
Ruby / Rails Inside
https://bigbinary.com/blog/rails-6-1-adds-validate-numericality-in-range-option
BigBinary
Rails 6.1 adds support for validating numeric values that fall within a specific range using the `in:` option
Rails 6.1 series | Rails 6.1 adds support for validating numeric values that fall within a specific range using the `in:` option
Ruby / Rails Inside
https://blog.saeloun.com/2021/04/13/rails-enable-scoping-to-apply-to-all-queries.html
Saeloun Blog
Rails 7 enables scoping to apply to all queries
Rails 7 allows passing all_queries option to the scoping method. This change allows the scoping method to work on all queries for a model in a block.
Ruby / Rails Inside
https://blog.saeloun.com/2021/04/14/enqueue-failures-to-perform-later-rails.html
Saeloun Blog
Rails 7 ActiveJob adds the ability to communicate enqueue failures to callers
ActiveJob's `perform_later` method provides a clean way of communicating enqueued job failures to the caller method, allowing developers to handle errors more efficiently.
Ruby / Rails Inside
https://blog.appsignal.com/2021/04/14/ruby-on-rails-controller-patterns-and-anti-patterns.html
Appsignal
Ruby on Rails Controller Patterns and Anti-patterns | AppSignal Blog
In this part of the series on Rails patterns and anti-patterns, we are going to analyze the final part of the MVC (Model-View-Controller) design pattern — the Controller.
Ruby / Rails Inside
https://pawelurbanek.com/explain-analyze-indexes
Rails, PostgreSQL Performance Audit and Tuning Consultant for Hire
PostgreSQL EXPLAIN ANALYZE for Web Developers [Indexes]
Interpreting the output of SQL EXPLAIN ANALYZE might seem like dark magic at first. I'm starting a series of blog posts where I'll be well... explaining it based on common use cases from web applications. Read on if you've ever wanted to start using EXPLAIN…
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…