flash-gordon on v1.3.3
flash-gordon on master
Bump version to 1.3.3 (compare)
flash-gordon on master
Update CHANGELOG (compare)
flash-gordon on master
Halt with mutable backtrace Ex… Merge pull request #116 from jo… (compare)
#[]
interface
#call
API
#[]
is an alias
Serialize
) which will receive object that needs to be serialized and mapper as #call
arguments.Serialize
) object in core
container or in API sub-app container? I’m in doubt since looking at berg, all “wrappers” are a part of core component, however, in this case, serialization will be performed only for sub-app.require "yaks"
module Main
class JsonSerializer
Serializer = Yaks.new do
# yaks config here
end
def call(*args)
Serializer.call(*args)
end
end
end
Main
container as Main[“main.json_serializer”]
JsonSerializer
basically just “wraps” the yaks instance