Hi there,
I'm seeing an issue when jumping to edge rails (6.0.0.alpha) from 5.2.0.rc1 which you may be already aware of:
super: no superclass method `extract_default' for #<ActiveRecord::TypedStore::Column:0x00007f9582c27c88>
We have a model with JSON column, defined as follows in the model:
typed_store :metadata, coder: JSONCoder do |p|
p.integer :foo
end
JSONCoder is copy-paste of the DumbCoder in the Readme:
module JSONCoder
extend self
def load(data)
data || {}
end
def dump(data)
data || {}
end
end
Ruby: 2.5.0
I had a quick dig and get a little overwhelmed. Happy hear your thoughts on this. Cheers!
Hi there,
I'm seeing an issue when jumping to edge rails (6.0.0.alpha) from 5.2.0.rc1 which you may be already aware of:
super: no superclass method `extract_default' for #<ActiveRecord::TypedStore::Column:0x00007f9582c27c88>We have a model with JSON column, defined as follows in the model:
JSONCoder is copy-paste of the DumbCoder in the Readme:
Ruby: 2.5.0
I had a quick dig and get a little overwhelmed. Happy hear your thoughts on this. Cheers!