Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Are there any gems which can enforce Ruby code conventions?

Are there any gems which can enforce ruby/rails coding conventions as mentioned by the guides below.

https://github.com/bbatsov/ruby-style-guide
https://github.com/bbatsov/rails-style-guide
like image 424
Sam Avatar asked Mar 09 '13 10:03

Sam


1 Answers

RuboCop is a static code analyzer based on the Ruby Style Guide, by the same author.

The Rails Best Practices gem can detect certain problems in Rails projects.

like image 196
Patrick Brinich-Langlois Avatar answered Sep 28 '22 00:09

Patrick Brinich-Langlois