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://t.me/rwpod
Telegram
RWpod
RWpod podcast channel
Ruby / Rails Inside
https://boringrails.com/articles/responsive-tables-stimulus-intersection-observer/
Boring Rails: Skip the bullshit and ship fast
Magic Responsive Tables with Stimulus and IntersectionObserver
Responsive HTML data tables are a tricky problem that usually requires scrolling on small screens. With a sprinkle of Stimulus and the IntersectionObserver API, we can build a small enhancement to make the user experience more pleasant.
Ruby / Rails Inside
https://engineering.freeagent.com/2021/01/06/testing-child-processes-in-ruby/
Freeagent
Testing Child Processes in Ruby
I was recently writing a piece of code that we wanted to act as a supervisor of child processes. We wanted to ask this supervisor the following “Hello there, would you mind running this task in a c
Ruby / Rails Inside
https://www.honeybadger.io/blog/ruby-aws-lambda/
Honeybadger Developer Blog
Building, Testing and Deploying AWS Lambda Functions in Ruby
For quick, scalable, highly-available web services, few options compare to AWS Lambda. Just provide your code, add a little configuration, and you're done! In this article, Milap Neupane will introduce us to Lambda, show us how to get it working with Ruby…
Ruby / Rails Inside
https://honeyryderchuck.gitlab.io/httpx/rdoc/files/doc/release_notes/0_11_0_md.html
Ruby / Rails Inside
https://rubyyagi.com/devise-only-allow-one-session-per-user-at-the-same-time/
Ruby Yagi
🐐
Devise only allow one session per user at the same time
Ruby, Rails, Web dev articles
Ruby / Rails Inside
https://scoutapm.com/blog/ruby-3-typing
Scoutapm
Types in Ruby 3: New Features Explained | Scout APM Blog
RBS aims at unifying the efforts of the community and 3rd party solutions up to this point to provide a common set of rules to define types.
Ruby / Rails Inside
https://brandur.org/nanoglyphs/018-ractors
Ruby / Rails Inside
https://blog.arkency.com/the-goodies-in-rails-event-store-2-dot-x/
Arkency Blog
The Goodies in Rails Event Store 2.x
Hi, we're Arkency and it's our blog with meaty content.
Ruby / Rails Inside
https://remimercier.com/pry-byebug-intermediate/
Rémi Mercier - Maker & Rails Developer
Debugging with pry-byebug: moving in the stack frame - Remi Mercier - Maker & Rails Developer
Time to level up your debugging game with frames, adding breakpoints on the fly, and some handy shortcuts.
Ruby / Rails Inside
https://blog.saeloun.com/2021/01/18/form-with-now-defaults-to-non-remote-forms.html
Saeloun Blog
Rails form_with now defaults to non-remote forms
Rails form generation helper,
Ruby / Rails Inside
https://tejasbubane.github.io/posts/2021-01-17-refactoring-filters/
Ruby / Rails Inside
https://medium.com/modern-rails/how-to-use-react-components-in-active-admin-184ff63b378d
Medium
How to use React Components in Active Admin
A short guide on creating a custom Formtastic input type based on a React Component
Ruby / Rails Inside
https://bigbinary.com/blog/rails-6-1-adds-support-for-belongs_to-to-has_many-inversing
BigBinary
Rails 6.1 adds support for belongs_to to has_many inversing
Rails 6.1 series | Rails 6.1 adds support for belongs_to to has_many inversing
Ruby / Rails Inside
https://gettalong.org/blog/2021/an-unusual-performance-optimization.html
Thomas Leitner's website and blog about Ruby, software engineering and the joy of solving problems.
An Unusual Performance Optimization
How wondering about an odd benchmark result led to better performance
Ruby / Rails Inside
https://bigbinary.com/blog/rails-6-1-allows-per-environment-configuration-support-for-active-storage
BigBinary
Rails 6.1 allows per environment configuration support for Active Storage
Rails 6.1 series | Rails 6.1 allows per environment configuration support for Active Storage
Ruby / Rails Inside
https://www.fastruby.io/blog/rails/ruby/performance/how-fast-is-ruby-3-on-rails.html
How Fast is Ruby 3 on Rails? by @codefolio
How Fast Is Ruby 3 on Rails? - FastRuby.io | Rails Upgrade Service
An article by Noah Gibbs about Ruby 3's performance for a Rails application. Ruby 3.0.0-preview1 was a tiny bit slower than 2.7. The release 3.0 is...
Ruby / Rails Inside
https://jemma.dev/blog/irb-measure
Jemma Issroff
IRB’s Built-in Measure
When reading the official Ruby 3.0 release post, one bullet caught my eye especially. With Ruby 3.0, IRB introduced a measure command. As someone who often times little snippets when debugging, comparing code, or writing new code, I was intrigued! IRB’s new…
Ruby / Rails Inside
https://multithreaded.stitchfix.com/blog/2021/01/06/a-better-react-rails-architecture/
Stitchfix
A Better React/Rails Architecture | Stitch Fix Technology – Multithreaded
Here on the Styling team at Stitch Fix, we are lessening the amount of state a developer needs to have in their head at any given time by moving towards an a...
Ruby / Rails Inside
https://mensfeld.pl/2021/01/how-requiring-a-gem-can-mess-up-your-already-running-application/
Closer to Code
How requiring a gem can mess up your already running application - Closer to Code
Introduction Ruby’s dynamic nature is both its advantage and disadvantage. Being able to reopen system classes during runtime, while useful, can also lead to unexpected behaviors. This article presents one such case: how just requiring a gem can mess things…
Ruby / Rails Inside
https://www.johnnunemaker.com/rails-postgres-partial-indexing/
John Nunemaker
Rails: Postgres Partial Indexing
Postgres has a nice feature where you can index only the values you want to query on. Today I learned that Rails has a nice shortcut for taking advantage of said feature.