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.fullstackruby.dev/fullstack-development/frontend-development/2021/11/30/rise-of-fullstack-ruby/
Fullstack Ruby
The Rise of Fullstack Ruby & the Next Frontier of the Web
Today, right now, right this very minute, is the absolute best time to be a fullstack Ruby/web developer! And tomorrow will be even better.
Ruby / Rails Inside
https://avdi.codes/throw-catch-raise-rescue-im-so-confused/
avdi.codes
Throw, Catch, Raise, Rescue - I'm So Confused!
One of the aspects of Ruby that often confuses newbies coming from other languages is the fact that it has both throw and catch and rai
Ruby / Rails Inside
https://blog.saeloun.com/2021/12/01/rails-7-default-values-for-i18n-translate.html
Saeloun Blog
Rails 7: Pass default values to I18n's `translate` method
Provide fallback values to the translate method apart from those parts of the translation string.
Ruby / Rails Inside
https://blog.appsignal.com/2021/12/01/ruby-on-rails-application-monitoring-with-appsignal.html
AppSignal Blog
Ruby on Rails Application Monitoring with AppSignal | AppSignal Blog
In the first of this two-part series, we'll set up monitoring for a Ruby on Rails application with AppSignal.
Ruby / Rails Inside
https://www.monterail.com/blog/introduction-to-rails-event-store
Monterail
Introduction to Rails Event Store
Rails Event store is a storage of events. Optimize operations to be as fast as possible. We can only read the history of events and add new events.
Ruby / Rails Inside
https://www.ginkonote.com/users/flo/articles/how-to-get-the-most-out-of-the-json-api-serializer-gem@rails
Ginkonote
How to get the most out of the json-api serializer gem | Rails by Flo | GinkoNote
"json-api serializer" gem is the most powerful to serialize Rails models. However, to avoid the common pitfalls, you need to customize it and add some helper methods. Source...
Ruby / Rails Inside
https://coolrequest.dev/2021/11/03/docker_image_rails_part1.html
Ruby / Rails Inside
https://blog.kiprosh.com/rails-7-introduces-partial-inserts-config-for-activerecord/
Kiprosh Blogs
Rails 7 introduces partial_inserts config for ActiveRecord
Rails 7 adds the partial_inserts config used to control partial writes when creating a new record. Let's learn how to configure and use it.
Ruby / Rails Inside
https://noteflakes.com/articles/2021-12-03-qeweney
Ruby / Rails Inside
https://weblog.rubyonrails.org/2021/12/6/Rails-7-0-rc-1-released/
Ruby on Rails
Rails 7.0 RC1: New JavaScript Answers, At-Work Encryption, Query Origin Logging, Zeitwerk Exclusively
We’re almost ready to declare Rails 7 done! The feedback since the first alpha release has been wonderful, we’ve eliminated a slew of issues, and we’ve seen Basecamp, HEY, GitHub, and Shopify all run in production on this alpha series. So we now feel so confident…
Ruby / Rails Inside
https://www.driftingruby.com//episodes/dabbling-with-turbo
Drifting Ruby
Episode 326 - Dabbling with Turbo
In this episode, we explore some of the new features with Turbo and interactions that we can do with little or no javascript.
Ruby / Rails Inside
https://evilmartians.com/chronicles/kubing-rails-stressless-kubernetes-deployments-with-kuby
evilmartians.com
Kubing Rails: stressless Kubernetes deployments with Kuby—Martian Chronicles, Evil Martians’ team blog
Exploring the Kuby framework for deploying Rails and AnyCable application to Kubernetes and introducing the kuby-anycable plugin
Ruby / Rails Inside
https://blog.saeloun.com/2021/12/08/rails-7-adds-cacheable-helper
Saeloun Blog
Rails 7 adds caching? and uncachable! helper
Starting with Rails 7, we can add caching? helper to check whether the current code path is being cached and uncacheable! helper to avoid fragment caching.
Ruby / Rails Inside
https://tosbourn.com/square-brackets-rails-migrations/
Tosbourn – Belfast based Ruby developers
What are the square brackets in my Rails migrations?
Let's look at what these little square brackets are doing in our Rails migration files
Ruby / Rails Inside
https://rubyonrails.org/2021/12/15/Rails-7-fulfilling-a-vision
Ruby on Rails: Compress the complexity of modern web apps
Rails 7.0: Fulfilling a vision
This version of Rails has been years in the conceptual making. It’s the fulfillment of a vision to present a truly full-stack approach to web development that tackles both the front- and back-end challenges with equal vigor. An omakase menu that includes…
Ruby / Rails Inside
https://www.youtube.com/watch?v=mpWFrUwAN88
YouTube
Rails 7: The Demo
Enjoy the videos and music you love, upload original content, and share it all with friends, family, and the world on YouTube.
Ruby / Rails Inside
https://jetrockets.com/blog/assert-performance-with-rspec-benchmark
JetRockets
Boosting Ruby Code with RSpec Benchmark - JetRockets
Discover how RSpec Benchmark enhances Ruby code performance testing, offering insights on efficiency and optimization in software development with JetRockets.
Ruby / Rails Inside
https://rubyonrails.org/2021/12/19/this-week-in-rails-post-b2c9fb6a
Ruby on Rails
This week in Rails: New releases, bugfixes and more!
Hi there, it is Greg, bringing you the latest news about Ruby on Rails! We had an exciting week, so let’s get to it.
Ruby / Rails Inside
https://tejasbubane.github.io/posts/2021-12-18-rails-7-postgres-generated-columns/
tejasbubane.github.io
Tejas' Blog - PostgreSQL generated columns in Rails
Thoughts and learnings on writing better software
Ruby / Rails Inside
https://blog.saeloun.com/2021/12/22/ruby-3.1-adds-class-descendants
Saeloun Blog
Ruby 3.1 adds Class#descendants
With Ruby 3.1, we can use `Class#descendants` to yield the classes that have been directly or indirectly derived from a specific class.