Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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

Last synced: 12 days 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