10 Signs of a good Ruby on Rails Developer

I have been working as Ruby on Rails developer since last five years with Josh Software, I felt that I should write down my learnings about the best practices followed by the RoR developer. How I learned …? of course to learn something you need to comm…


This content originally appeared on DEV Community and was authored by Pramod Shinde

I have been working as Ruby on Rails developer since last five years with Josh Software, I felt that I should write down my learnings about the best practices followed by the RoR developer. How I learned …? of course to learn something you need to commit the mistakes, thats how we learn right?

Let’s see, What all you should follow to be a ‘Good’ Ruby on Rails developer.

1. Your migrations are “thoughtful” …

Whenever you come across database table schema design do you think through all the aspects like

  • The table which is being designed where its going to be used? How much it might grow in terms of the data size? (Imagine the worst future of your design)

  • Have I kept correct data types, defaults, constraints if any? Most of the times we really don’t need integer columns, We can use smallint instead for smaller set of integers, similarly varchar(10) vs varchar(255) vs text.

  • Have I added indexes wherever necessary? Thinking through What kind of the queries this table is going to handle?

A special point…Do you write multiple migrations for same table? if yes, it's a bad habit.

Often we don’t think through all the points mentioned above and end up creating multiple migrations for same table which causes codebase to look scary.

Instead you should use up and down on the migration to fix or alter the table, change in the requirement is an exception to this.

2. You always follow the single responsibility principle

We all know a convention of “skinny controller and fat model”, some of us already follow this but do we follow it wisely.

We are living in the Rails 5 era, so Why overload models?

Why not to follow “keep everything skinny move extra fat to concerns or service objects from the models”, the classes in the codebase should be designed to handle single responsibility.

I came across the following posts about how to organise controllers and using service objects in Rails.

3. You write test cases to test the “code”

I have seen many applications whose CI builds takes ages to finish, What exactly they are testing?

Your test cases should be testing the “code” not the machine performance, better test suits

  • Share objects between different examples.
  • Uses method stubs and avoid the repetitive calls to the methods.
  • Don’t test same code twice, if you have sharable piece of code and used at multiple places then don’t write test cases in multiple places.
  • Does not creates unnecessary test records, unknowingly many developers end up creating unnecessary test records.

If your are using gems like faker , factory_bot_rails and database_cleaner to create and clean test records then creating unnecessary records can cost you time and speed.

Simple example,

  create_list(:user, 10)

Much better will be reduce the list size, if you are not doing anything special with 10 users.

  create_list(:user, 2)

4. You keep production environment healthy

If you are an engineer and reduce efforts of others, then you use the utilities of other engineers to reduce your efforts.

A healthy Rails production environment always have

  • Monit – Is everything up and running? if not get notified.
  • logrotate – rotates, compresses, and mails system logs.
  • crontabs with whenever, schedules work for you.
  • Database backup scripts running in maintenance window.
  • Exception notifiers like Sentry or Rollbar or ‘anything that suits you’.

5. You follow basic git etiquettes

If you are working in a team and using git then you follow the git etiquettes like

  • Don’t commit untracked files – we often keep git untracked files like something.swp, backup.sql, ‘schema.rborstructure.sql backups,some.test.script`, you should not commit such files.
  • Branch naming – naming something is always difficult but you have to do it, the feature branches should have sensible names, don’t use names like something-wip, somthing-test.
  • Delete the feature branches after merge – no explanation required.
  • Commit messages – your commit messages must have Github issue number or any project management story number/link, brief description about feature/task

6. You don’t ignore README.md

Remember you are not the only one who is going to work on particular application for your lifetime. Someone will takeover you and he should not waste his time in figuring out that how to setup things.

Your application repository must have updated README.md with detail steps about setting up an application for the first time.

7. Secrets are “really” secrets for you

We often use credentials for database configs, secrets.yml, third party api’s like AWS, payment gateway, sentry etc.

You should not commit such credentials/secrets/environment variables to the Github instead you keep them secure with gems like dotenv-rails, figaro or simple dot files that are not committed to the repository.

A sample file of such credentials should be committed and updated regularly.

8. You do code reviews and discuss feature with team

While working in a team you should get your feature reviewed from another team mate or before starting on any feature discuss it with the team thoroughly, advantages of the code reviews or feature discussion are you will come across many scenarios that are not thought of.

If you are the only one who is working on a application then you must criticise your own code and cover all the scenarios in test cases.

9. You are up-to-date and keep updating

In open source community we get frequent updates or releases for ruby, rails and gems, you must keep yourself aware and informed by subscribing to the repositories or mailing lists and update your application libraries.

Also you should stay alert on security fixes about the production operating system, database so you can take necessary action on time.

  1. Need not to say…

You write clean and maintainable code and your codebase is

Well there are many more points that can be included in this list but I feel these are the most important to fill in first into this list, If you find that I have missed anything more important then you can comment on this post.

Thanks for the reading upto here, hope this will help you to become a ‘Good’ developer.

PS: I am moving out of wordpress this is a cross post.


This content originally appeared on DEV Community and was authored by Pramod Shinde


Print Share Comment Cite Upload Translate Updates
APA

Pramod Shinde | Sciencx (2021-04-15T08:02:38+00:00) 10 Signs of a good Ruby on Rails Developer. Retrieved from https://www.scien.cx/2021/04/15/10-signs-of-a-good-ruby-on-rails-developer/

MLA
" » 10 Signs of a good Ruby on Rails Developer." Pramod Shinde | Sciencx - Thursday April 15, 2021, https://www.scien.cx/2021/04/15/10-signs-of-a-good-ruby-on-rails-developer/
HARVARD
Pramod Shinde | Sciencx Thursday April 15, 2021 » 10 Signs of a good Ruby on Rails Developer., viewed ,<https://www.scien.cx/2021/04/15/10-signs-of-a-good-ruby-on-rails-developer/>
VANCOUVER
Pramod Shinde | Sciencx - » 10 Signs of a good Ruby on Rails Developer. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2021/04/15/10-signs-of-a-good-ruby-on-rails-developer/
CHICAGO
" » 10 Signs of a good Ruby on Rails Developer." Pramod Shinde | Sciencx - Accessed . https://www.scien.cx/2021/04/15/10-signs-of-a-good-ruby-on-rails-developer/
IEEE
" » 10 Signs of a good Ruby on Rails Developer." Pramod Shinde | Sciencx [Online]. Available: https://www.scien.cx/2021/04/15/10-signs-of-a-good-ruby-on-rails-developer/. [Accessed: ]
rf:citation
» 10 Signs of a good Ruby on Rails Developer | Pramod Shinde | Sciencx | https://www.scien.cx/2021/04/15/10-signs-of-a-good-ruby-on-rails-developer/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.