An open API service indexing awesome lists of open source software.

https://github.com/brett-richardson/ast_guidelines

Analyze Ruby code for high level architectural issues
https://github.com/brett-richardson/ast_guidelines

Last synced: 4 months ago
JSON representation

Analyze Ruby code for high level architectural issues

Awesome Lists containing this project

README

        

AstGuidelines
=============

This is bad:

```ruby
class MyClass
module MyModule
end
end
```

But this is ok:

```ruby
module MyModule
class MyClass
end
end
```

this gem tells you it's not ok