Print Smarter in Ruby - Know When and How to Use Each Method
A quick tour through the most common ways to print in Ruby
A quick tour through the most common ways to print in Ruby
Learn how to spot and fix N+1 query problems in your Rails app with practical examples, tools, and simple performance tips.
An update to How to Build a Twitter Clone with Rails and React
Tips for the new Rails 8 Authentication Generator
Morphs, Presence, and Typing Indicators
Using the Rails browser console in a safe way
An update to How to Build a Twitter Clone with Rails and Hotwire
Quick tutorial to get time zones across the stack
An update to How to Build a Twitter Clone with rails, ActionCable, and React
An update to How to Build a Twitter Clone with rails, ActionCable, and React
Sending mail from a Rails application has been covered by hundreds or thousands of articles, however, there is not a ton of articles about receiving, parsing and using the new ActionMailbox . The following is an excerpt from my book Build A SaaS App in Rails 6 and is used in a new product I am building Mail Buffer . Thus, I am standing by the tutorial here with real world usage! Lastly, as this is…
Tip to inspect a Ruby Object
Adding Bootstrap 4 and how to use a theme
19 Must-Have Gems for 2020
A response to building a Twitter clone with Rails, CableReady, and StimulusReflex
Ruby and RVM
Rails and PostgreSQL
When it comes to working with directories Ruby comes with a class for dealing with directories and paths. Ruby Dir Doc Page . If you want a quick demo of how to get the names of files in a directory, look no further! ## Gets the current path of your Ruby script/console Dir . pwd ## ["array.rb", "of", "files.rb", "and", "folders"] Dir . children ( Dir . pwd ) You can also provide an instance a…