Tutorials
Every Rails page has footnotes that gives information about your application and links back to your editor
Every Rails page has footnotes that gives information about your application and links back to your editor - indirect/rails-footnotes: Every Rails page has footnotes that gives information about your application and links back to your.
Adding 'Sign in with Apple' to your Ruby on Rails 7.1 App: A Step-by-Step Guide
I added omniauth-apple to one of my side projects to get 'Sign in with Apple' authentication. I hit a couple of issues that took me a while to fix, so I want to share how I solved them, hoping it saves others some time.Getting StartedI'm working w...
How To Build Desktop Applications in Ruby (Andy Maleh)
Please star ("⭐️") this project and Glimmer DSL for LibUI to save for later reference with regards to Ruby Desktop Development. Glimmer DSL for LibUI was used in this workshop because it is the simplest and quickest to setup in standard Ruby (aka ...
How to use UUIDv7 in Rails for primary keys | ptrchm
Using UUIDs for primary keys offers many benefits, but there are some downsides to consider. The most widely-used UUIDv4 is fully random, which is ideal for minimizing the risk of collision. However, random IDs as primary keys do not index and sor...
For clarity merging hashes use with_defaults - Andy Croll
Rails is known for adding methods to existing core Ruby classes for improved readability via Active Support. One such example is the with_defaults method on Hash. This method is an alias of another added method reverse_merge, which should give you...