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://blog.appsignal.com/2022/03/02/import-maps-under-the-hood-in-rails-7.html
Appsignal
Import Maps Under the Hood in Rails 7 | AppSignal Blog
Learn how to install JavaScript libraries with import maps and how import maps work under the hood in Rails 7.
Ruby / Rails Inside
https://blog.cloud66.com/adding-super-fast-frontend-search-in-rails-with-lunr/
Cloud66
Adding Super Fast Frontend Search in Rails with Lunr
Let's build a command palette for the Tickerizer application, using Rails 7, ESBuild, View Components, and all the goodness of Hotwire.
Ruby / Rails Inside
https://blog.saeloun.com/2022/03/01/ruby-fibers-101.html
Saeloun Blog
Ruby Fibers 101
Ruby 3 focuses more on concurrency with the introduction of Ruby Fibers and the Fiber Scheduler Interface.
Ruby / Rails Inside
https://engineering.silverfin.com/pg-zero-downtime-bigint-migration/
Silverfin Engineering
PostgreSQL zero-downtime migration of a primary key from int to bigint (with Ruby on Rails specific notes)
A primary key integer field approaching overflow is a devops nightmare. We explain step by step to how we made the migration with zero downtime.
Ruby / Rails Inside
https://blog.saeloun.com/2022/03/08/rails-7-allows-permitting-numeric-params
Saeloun Blog
Rails 7 allows permitting numeric params
Rails 7 eliminates the issue of permitting nested hash. Now required attributes can be permitted by calling the permit method directly on the parent hash.
Ruby / Rails Inside
https://rubyonrails.org/2022/3/8/Rails-7-0-2-3-6-1-4-7-6-0-4-7-and-5-2-6-3-have-been-released
Ruby on Rails
Rails 7.0.2.3, 6.1.4.7, 6.0.4.7, and 5.2.6.3 have been released!
Hi everyone! Rails 7.0.2.3, 6.1.4.7, 6.0.4.7, and 5.2.6.3 have been released! So many versions!!!
Ruby / Rails Inside
https://career.guru99.com/top-34-ruby-on-rail-interview-questions/
Career Guru99
Top 53 Ruby on Rails Interview Questions and Answers (2025)
Here are Ruby on Rails interview questions and answers for freshers as well as experienced Ruby developer candidates to get their dream job.
Ruby / Rails Inside
https://blog.saeloun.com/2022/03/09/schema-dump-path-config.html
Saeloun Blog
Rails 7 adds support for setting the schema dump filepath in the database config
Schema dumps can now be toggled and dump filepaths can be set for individual database shards.
Ruby / Rails Inside
https://www.fastruby.io/blog/testing/javascript/mocking-js-requests.html
Mocking JavaScript Requests During Tests by @arieljuod
Mocking JavaScript Requests During Tests - FastRuby.io | Rails Upgrade Service
Don't let your JavaScript hit external services during tests, stub the requests that are done by the Rails application and from your JavaScript code.
Ruby / Rails Inside
https://www.bridgetownrb.com/
Bridgetown
Bridgetown: Next-Generation Progressive Site Generator
Bridgetown is a next-generation, progressive site generator & fullstack framework, powered by Ruby.
Ruby / Rails Inside
https://www.codewithjason.com/abstraction-in-rails/
Code with Jason
Abstraction in Rails - Code with Jason
If we wanted to, we could, of course, write web applications in assembly code. Computers can understand assembly code just as well as Ruby or Python or any other language. The reason we write programs in higher-level languages like Ruby or Python is that…
Ruby / Rails Inside
https://www.youtube.com/watch?v=6lEAKMBs_tY
YouTube
Roda: Simplicity, Reliability, Extensibility & Performance by Jeremy Evans
Meet Jeremy Evans, the Rubyist behind popular libraries including Roda, Sequel and Rack!
He also is a committer to Rack, the library that all Ruby web frameworks are built on top of. He maintains numerous Ruby gems, such as Sequel, Roda, and Rodauth. He is…
Ruby / Rails Inside
https://www.youtube.com/watch?v=ytsNc9YI3xU
YouTube
Ruby on Rails 7 - How to Use Hotwire to Collect User Profile Information
I wanted to test out Rails' Hotwire features and see if I can migrate a feature like a user registration form with Devise to use Hotwire.
🎥
Join my new Ruby on Rails Class here: https://mixandgo.com/rails-class
👉
Buy my Bulletproof Ruby on Rails Applications…
Ruby / Rails Inside
https://hybrd.co/posts/adding-meta-tags-to-a-rails-cms-with-polymorphism
HYBRD
Adding Meta Tags to a Rails CMS with Polymorphism
There are pros and cons to building CMS functionality into your Rails app. It can be easy to forget important aspects, like SEO and Open Graph. Here's an approach to addressing both using polymorphism and the MetaTags gem.
Ruby / Rails Inside
https://rubyonrails.org/2022/3/11/Rails-5-2-7-has-been-released
Ruby on Rails
Rails 5.2.7 has been released
Hi everyone,
Ruby / Rails Inside
https://thoughtbot.com/blog/pipelining-without-pipes-in-ruby
thoughtbot
Pipelining without pipes
Ruby, functional programming, how to build operation pipelines, and the average programming language color.
Ruby / Rails Inside
https://blog.saeloun.com/2022/03/15/rails-no-longer-ignores-destroy-association-async-job-config.html
Saeloun Blog
Rails conforms to destroy_association_async_job config when destroying asynchronously
Rails no longer ignores the configuration option destroy_association_async_job when destroying objects with destroy_async option.
Ruby / Rails Inside
https://evilmartians.com/chronicles/ruby-on-whales-docker-for-ruby-rails-development
evilmartians.com
Ruby on Whales: Dockerizing Ruby and Rails development—Martian Chronicles, Evil Martians’ team blog
An exhaustive and documented Docker configuration for developing Ruby and Rails applications
Ruby / Rails Inside
https://blog.saeloun.com/2022/03/16/action-text-forward-form-option-to-hidden-input.html
Saeloun Blog
Rails 7: Action Text: forward form: option to hidden input
Add support for accessing the form as a property of the <trix-editor> element.
Ruby / Rails Inside
https://raghu-bhupatiraju.dev/ruby-rails-asynchronous-tasks-future-7f21ff03ad58
Medium
Ruby/Rails Asynchronous tasks:Futures
I recently came across a task to fetch data from multiple sources asynchronously where i came across Concurrent::Promises.future.