#ruby
Read more stories on Hashnode
Articles with this tag
While reading the official documentation, I did not understand some parts of the set up. Let's me explain here. My setup: 1 main database 1...
On 2024-04-30, I released the Ruby 3.3.1 (from 3.2.3) with success. It been 10 days since, no problem in production or local environments. The main...
With Rails 7.1, you can list unused routes with: ./bin/rails routes --unused For Rails 6.0, 6.1 and 7.0, below is a script I used in my project to...
Are you good at regexp? I'm not and I found an extremely easy way to update a regexp to split a string in Ruby. Input abc,abc abc abc abc I just want...
Never forget the environment you are in. # .irbrc module ColorString refine String do def cyan = "\e[36m#{self}\e[0m" def bg_red =...
You just need bundler-cache: true # .github/workflows/my_very_special_job.yml jobs: my_very_special_job: steps: - name: Setup Ruby ...