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
When I try to define an attribute named :method, I get the following error:
Attributor::DumpError: Error while dumping attribute method of type V1::MediaTypes::Hello for context $. Reason: wrong number of arguments (0 for 1)
ArgumentError: wrong number of arguments (0 for 1)
@arangamani the models are still backed by normal ruby objects (i.e. Object class), therefore there are some methods that cannot be used as attributes as they already exist (because or ruby, or really, other libraries that might inject and intercept them).
What #71 describes is to migrate the backing object to BasicObject which is a blank slate, but unfortunately, that is not necessarily a cakewalk to do...so we'll have to see about the interest and priorities of other issues I guess.
When I try to define an attribute named
:method
, I get the following error:This is possibly related to #71
The text was updated successfully, but these errors were encountered: