Class: ViewModel::Controller::CompiledJson

Inherits:
Object
  • Object
show all
Defined in:
lib/view_model/controller.rb

Overview

Wrap raw JSON in such a way that MultiJSON knows to pass it through untouched. Requires a MultiJson adapter other than ActiveSupport’s (modified) JsonGem.

Instance Method Summary collapse

Constructor Details

#initialize(s) ⇒ CompiledJson

Returns a new instance of CompiledJson.



132
# File 'lib/view_model/controller.rb', line 132

def initialize(s);  @s = s; end

Instance Method Details

#to_json(*args) ⇒ Object



133
# File 'lib/view_model/controller.rb', line 133

def to_json(*args); @s;     end

#to_sObject



134
# File 'lib/view_model/controller.rb', line 134

def to_s;           @s;     end