Tutorials
Getting Started with Rails — Ruby on Rails Guides
Getting Started with RailsThis guide covers getting up and running with Ruby on Rails.After reading this guide, you will know: How to install Rails, create a new Rails application, and connect your application to a database. The general layout of ...
Calculating the largest known prime in Ruby - JP Camara
Looking to impress your Ruby friends by calculating the largest known prime, 2 ** 136_279_841-1?
On Ruby 3.4.0-preview2 and earlier, 2 ** 136_279_841-1 logs a warning and returns Infinity 😔:
2 ** 136_279_841-1 # warning: in a**b, b may be too big ...
Fixing Gem Install Errors on M3 Mac with Ruby 2.7 · Daniela Baron
Starting a new role always comes with exciting challenges, and one of my first tasks in a recent new role was setting up a 10-year-old legacy Rails project on an M3 MacBook. The project was running Rails 6.1 and Ruby 2.7.8, with several older vers...