You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please, add the __FILE__ and __LINE__ constants as the 2nd and 3rd arguments to the class- and module_eval calls in Origin::Forwardable#__forward__ to impove the debugging process.
require'mongoid'classPersonincludeMongoid::Documentend# without __FILE__, __LINE__Person.method(:where).source_location#=> ["(eval)", 1]# with __FILE__, __LINE__Person.method(:where).source_location#=> ["/home/user/<...>/origin-2.1.1/lib/origin/forwardable.rb", 47]
The text was updated successfully, but these errors were encountered:
Please, add the
__FILE__
and__LINE__
constants as the 2nd and 3rd arguments to the class- and module_eval calls inOrigin::Forwardable#__forward__
to impove the debugging process.The text was updated successfully, but these errors were encountered: