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.ruby-lang.org/en/news/2021/11/09/ruby-3-1-0-preview1-released/
www.ruby-lang.org
Ruby 3.1.0 Preview 1 Released
Ruby / Rails Inside
https://www.mbronikowski.com/blog/timestamps-in-rails
Michał Bronikowski
How to store timestamps in Rails
Why we should care about using TIMESTAMP WITH TIME ZONE for almost all timestamps in our apps
Ruby / Rails Inside
https://www.hexdevs.com/posts/code-quality-ruby-on-rails/
hexdevs
How to Improve Code Quality on a Ruby on Rails Application
Taking ages to deliver small changes? Constantly sacrificing code quality? Learn which Ruby code quality tools you can use to perform static code analysis and improve code quality.
Ruby / Rails Inside
https://dev.to/baweaver/future-of-ruby-ast-tooling-9i1
DEV Community
👩💻
👨💻
Future of Ruby – AST Tooling
This is a series meant to explore the potential future of the Ruby programming language by visiting...
Ruby / Rails Inside
https://noteflakes.com/articles/2021-11-13-real-world-polyphony-chat
Ruby / Rails Inside
https://www.honeybadger.io/blog/railway-programming-dry-monads/
Honeybadger
Railway Oriented Programming In Rails Using Dry-Monads
It's not every day that you learn a new approach to error handling for Ruby. In this article, Abiodun walks us through a novel error-handling process called Rai...
Ruby / Rails Inside
https://www.youtube.com/watch?v=VPKaPaxmXig
YouTube
The Template Method Pattern in Ruby
The Template Method pattern allows you to extract the parts of your code that stay the same into a base class and the ones that change into subclasses.
This structure allows you to provide different variations of an algorithm by simply adding new subclasses…
Ruby / Rails Inside
https://evilmartians.com/chronicles/time-series-data-using-timescaledb-with-ruby-on-rails
evilmartians.com
TimescaleDB: integrating time-series data with Ruby on Rails—Martian Chronicles, Evil Martians’ team blog
Overview of TimescaleDB highlights. Understanding time-series data. Integrating with Ruby on Rails. Implementing views counter demo
Ruby / Rails Inside
https://blog.saeloun.com/2021/11/17/rails-7-added-css-app-generator
Saeloun Blog
Rails 7 added --css app generator
Rails 7 added --css app generator for configuring CSS processors.
Ruby / Rails Inside
https://blog.appsignal.com/2021/11/17/practical-garbage-collection-tuning-in-ruby.html
Appsignal
Practical Garbage Collection Tuning in Ruby | AppSignal Blog
Explore how to implement and customize garbage collection in Ruby.
Ruby / Rails Inside
https://thoughtbot.com/blog/meet-fiber-thread-s-cooperative-cousin
thoughtbot
Meet Fiber, Thread's Cooperative Cousin
A brief introduction to Ruby’s lightweight concurrency primitive.
Ruby / Rails Inside
https://alextaylor.ca/read/caller-tricks/
alextaylor.ca
The hidden features of `caller`
I use Ruby’s caller feature a lot when I’m debugging and trying to figure out the stack trace of a particular code path. I used to think that it couldn’t do much beyond returning the full stack tra...
Ruby / Rails Inside
https://mensfeld.pl/2021/11/reading-the-uncompressed-gzip-file-size-in-ruby-without-decompression/
Closer to Code
Reading the uncompressed GZIP file size in Ruby without decompression - Closer to Code
There are cases where you have a compressed GZIP file for which you want to determine the uncompressed data size without having to extract it. For example, if you work with large text-based documents, you can either display their content directly in the browser…
Ruby / Rails Inside
https://hanamimastery.com/articles/sequel-over-activerecord
Hanami Mastery - a knowledge base to hanami framework
ROM and Sequel over ActiveRecord?
I've wondered why Hanami uses sequel under the hood. There are some problems with ActiveRecord, but I've wanted to know exactly, what it is about. Here is the summary of my foundings.
Ruby / Rails Inside
https://weblog.rubyonrails.org/2021/11/21/this-week-in-rails-automated-shard-swapping-middleware-standardised-error-reporting-interface-and-more-843a0431/
Ruby on Rails
Automated shard swapping middleware, standardised error reporting interface and more!
Hey, this is Greg, bringing you the latest news about Ruby on Rails.
Ruby / Rails Inside
https://www.ruby-lang.org/en/news/2021/11/24/buffer-overrun-in-cgi-escape_html-cve-2021-41816/
www.ruby-lang.org
CVE-2021-41816: Buffer Overrun in CGI.escape_html
Ruby / Rails Inside
https://learnetto.com/tutorials/how-to-use-react-with-rails-7
Learnetto
How to use React with Rails 7 | Learnetto
Tutorial How to use React with Rails 7 | Full Stack Rails Mastery
Ruby / Rails Inside
https://blog.arkency.com/difference-between-cache-and-read-model-an-example/
Arkency Blog
The Difference Between a Cache and a Read Model, an example
Hi, we're Arkency and it's our blog with meaty content.
Ruby / Rails Inside
https://www.ruby-lang.org/en/news/2021/11/24/ruby-3-0-3-released/
www.ruby-lang.org
Ruby 3.0.3 Released
Ruby / Rails Inside
https://blog.saeloun.com/2021/11/24/ruby-adds-matchdata-match-and-match-length
Saeloun Blog
Ruby 3.1 adds MatchData#match and MatchData#match_length
Ruby 3.1 MatchData#match returns the substring corresponding to the argument, while MatchData#match_length returns the length of the captured substring.