Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Automatic code quality tool for Ruby? [closed]

One thing I really miss about Java is the tool support. FindBugs, Checkstyle and PMD made for a holy trinity of code quality metrics and automatic bug checking.

Is there anything that will check for simple bugs and / or style violations of Ruby code? Bonus points if I can adapt it for frameworks such as Rails so that Rails idioms are adhered to.

like image 435
Will Sargent Avatar asked Sep 10 '08 21:09

Will Sargent


People also ask

Which tool is used for automatic coding standards verification?

SonarQube. SonarQube is the popular static analysis tool for continuously inspecting the code quality and security of your codebases and guiding development teams during code reviews. SonarQube is used for automated code review with CI/CD Integration.

Which tool is used for code analysis?

Source code analysis tools, also known as Static Application Security Testing (SAST) Tools, can help analyze source code or compiled versions of code to help find security flaws. SAST tools can be added into your IDE. Such tools can help you detect issues during software development.


1 Answers

I've recently started looking for something like this for Ruby. What I've run across so far:

  • Saikuro
  • Roodi
  • Flog

These might be places to start. Unfortunately I haven't used any of the three enough yet to offer a good opinion.

like image 91
Austin Moody Avatar answered Sep 23 '22 06:09

Austin Moody