File: active_support/json/variable.rb

Overview
Module Structure
Class Hierarchy
Code

Overview

Module Structure

  module: <Toplevel Module>
  module: ActiveSupport#1
  module: JSON#2
  class: Variable#4
inherits from
  String ( Builtin-Module )
has properties
method: to_json / 1 #5

Class Hierarchy

Code

   1  module ActiveSupport
   2    module JSON
   3      # A string that returns itself as its JSON-encoded form.
   4      class Variable < String
   5        def to_json(options=nil)
   6          self
   7        end
   8      end
   9    end
  10  end