I am trying to get to grips with Ruby, and I asked a previous question about serialization and validation, and someone mentioned using the json gem which allows you to tell your object how to serialize with the to_json method... however Ruby seems to do LOTS of complicated things really easily, however on the flip side some really simple things seem to be quite complicated, Serialization being one of those things.
Now I am trying to find out if there is a way to basically have a clean object (i.e)
class CleanClass
attr_accessor :variable1
attr_accessor :variable2
attr_accessor :variable3
end
cleanObject = CleanClass.new
So ideally I dont want to have to dirty the model, I just want to pass it to something and tell it what the output type should be and let it work its magic.
An example of what I would be after would be something like:
jsonOutput = MagicSerializer::Json.Serialize(cleanObject)
xmlOutput = MagicSerializer::Xml.Serialize(cleanObject)
yamlOutput = MagicSerializer::Yaml.Serialize(cleanObject)
revertedJsonObject = MagicSerializer::Json.Unserialize(jsonOutput)
revertedXmlObject = MagicSerializer::Xml.Unserialize(xmlOutput)
revertedYamlObject = MagicSerializer::Yaml.Unserialize(yamlOutput)
So basically I want to be able to just pass something an object, and get the strings outputted, then be able to convert it back.
I know ActiveModel has serialization functionality but you need to dirty your class to do this, and I want to not have to change the model if at all possible. ActiveSupport seems to satisfy the JSON criteria as you can just call that and it will take an object and spit out the json, but I would like to support other types.
Any further information would be great!