Evaluasi Kode Ruby Dengan Reek
- Categories:
- ruby
Gem Reek adalah sebuah gem yang dibuat oleh Kevin Rutherford untuk menganalisa atau melakukan code smell kode Ruby yang dibuat. Setelah melakukan code smell detection, Reek akan memberikan report yang sangat mudah untuk dimerngerti seperti di bawah ini.
Ada beberapa aspek yang digunakan oleh reek untuk melakukan code smell, diantaranya adalah sebagai berikut.
- Control Couple
- Data Clump
- Feature Envy
- Large Class
- Long Method
- Long Parameter List
- Simulated Polymorphism
- Uncommunicative Name
Dengan banyaknya aspek yang digunakan, akan membuat evaluasi kode menjadi lebih baik dan akan membuat programmer membuat kode lebih baik pula. Selain itu, Reek juga kompatibel dengan Ruby 1.8.6, 1.8.7, dan 1.9.1. Untuk informasi lebih detail, dapat dilihat wiki dari reek tersebut.
Recent Posts
How to Defend Against Brute-Force and DoS Attacks with Fail2ban, Nginx limit_req, and iptables
In this tutorial, I’ll explain how to protect your public-facing Linux server and Nginx web server from common threats, including brute-force and DoS attacks.
Is Getting AWS Solutions Architect Associate Certification Worth It?
If you are a full-time Software Engineer, there's no strong need to pursue this certification.
DevSecOps
My Notes about DevSecOps
AWS Secrets Manager
Explanation about AWS Secrets Manager with example code.
Envelope Encryption
Envelope encryption is the practice of encrypting plaintext data with a data key, and then encrypting the data key under another key.