Daniel Gilchrist
Daniel Gilchrist
Hello and thank you for this gem! I'm in the process of integrating Prosopite into our Rails codebase and we're going for an incremental approach by setting `Prosopite.raise = false`...
Just recently upgraded to `v0.4.2` and I noticed that currently the cop doesn't pick up offenders in `class_methods do...end` blocks Cases using `module ClassMethods` works great ```ruby module Personable extend...
It's possible to access instance variables on an instance of a class similarly to `instance_variable_get` in Ruby ```crystal class MyKlass def initialize(@my_instance_var : String); end end puts MyKlass.new("hello").@my_instance_var # =>...