Class Sequel::Plugins::JsonSerializer::Literal
In: lib/sequel/plugins/json_serializer.rb
Parent: Object

Helper class used for making sure that cascading options for model associations works correctly. Cascaded options work by creating instances of this class, which take a literal JSON string and have to_json return it.

Methods

new   to_json  

Public Class methods

Store the literal JSON to use

[Source]

     # File lib/sequel/plugins/json_serializer.rb, line 126
126:         def initialize(json)
127:           @json = json
128:         end

Public Instance methods

Return the literal JSON to use

[Source]

     # File lib/sequel/plugins/json_serializer.rb, line 131
131:         def to_json(*a)
132:           @json
133:         end

[Validate]