RoyalZSoftware

RoyalZSoftware

Follow
homeWork with usnewsletter
Tag

Ruby

#ruby

More content

Read more stories on Hashnode


Articles with this tag

The Power of Test-Driven Development: Writing Tests Before Code

Alexander PanovAlexander Panov
Jun 6, 20233 min read 163 views

Introduction: In the world of software development, Test-Driven Development (TDD) has gained significant popularity. One of the fundamental principles...

The Power of Test-Driven Development: Writing Tests Before Code

Discover My 3 Key Takeaways from Rails Administrate

Alexander PanovAlexander Panov
May 23, 20232 min read 52 views

Building an Administration Dashboard with Ruby on Rails is simple. With the gem architecture of Rails itself and the Gem `Administrate`, you can...

Discover My 3 Key Takeaways from Rails Administrate

Spies, Mocks, Fakes, Dummies, Stubs, what are these?

Alexander PanovAlexander Panov
May 15, 20233 min read 44 views

In many testing scenarios, we want to check if one specific part of our software works. Having dependencies that you need to construct in a way makes...

Spies, Mocks, Fakes, Dummies, Stubs, what are these?

Testing 1o1: Don't test private methods

Alexander PanovAlexander Panov
May 11, 20232 min read 55 views

I can't stress this enough. You should never, NEVER, come to the point where you have to change the access modifier, just to test a...

Testing 1o1: Don't test private methods

How to build a reusable sortable table in Ruby on Rails with Stimulus

Alexander PanovAlexander Panov
Mar 31, 20234 min read 246 views

This article is all about writing a sortable table with reusable software modules in Stimulus and the Ruby on Rails backend too. The result and its...

How to build a reusable sortable table in Ruby on Rails with Stimulus