ctran/annotate_models

View on GitHub
lib/annotate/active_record_patch.rb

Summary

Maintainability
A
0 mins
Test Coverage
# monkey patches

module ::ActiveRecord
  class Base
    def self.method_missing(_name, *_args)
      # ignore this, so unknown/unloaded macros won't cause parsing to fail
    end
  end
end