When run with ruby -w, Mongoid is fairly noisy. Most of the complaints seem to be around redefined methods, which I suspect are not a problem but might indicate an incomplete refactoring at some point in the past. It would be good to silence these, so that people can run Ruby with warnings enabled and not have the Mongoid warnings be distracting.
$ ruby -w -Ilib -rmongoid -e '{}' .../lib/mongoid/contextual.rb:49: warning: method redefined; discarding old load_async .../ruby/3.3.0/forwardable.rb:231: warning: previous definition of load_async was here .../lib/mongoid/association/relatable.rb:311: warning: method redefined; discarding old parent_inclusions .../ruby/3.3.0/forwardable.rb:231: warning: method redefined; discarding old text_search .../ruby/3.3.0/forwardable.rb:231: warning: previous definition of text_search was here .../ruby/3.3.0/forwardable.rb:231: warning: method redefined; discarding old count .../lib/mongoid/findable.rb:74: warning: previous definition of count was here .../lib/mongoid/serializable.rb:22: warning: method redefined; discarding old include_root_in_json .../ruby/gems/3.3.0/gems/activemodel-7.1.3.4/lib/active_model/serializers/json.rb:15: warning: previous definition of include_root_in_json was here .../lib/mongoid/traversable.rb:161: warning: method redefined; discarding old discriminator_key .../lib/mongoid/traversable.rb:158: warning: previous definition of discriminator_key was here
- is duplicated by
-
MONGOID-1612 Remove ruby warnings.
- Closed