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
Currently if you define a mapped attribute, the original FileMaker attribute name will get a writer method due to how Spyke works (uses method_missing).
E.g.
classFoo < FmRest::Spyke::Baseattributesfoo: "FooBar"endf=Foo.newf.FooBar="oopsie!"# this will work, but it shouldn't!f.foo# => "oopsie!"
Only the mapped version should work (e.g. foo= in the above example).
The text was updated successfully, but these errors were encountered:
Currently if you define a mapped attribute, the original FileMaker attribute name will get a writer method due to how Spyke works (uses
method_missing
).E.g.
Only the mapped version should work (e.g.
foo=
in the above example).The text was updated successfully, but these errors were encountered: