File: active_support/json/encoders/false_class.rb

Overview
Module Structure
Class Hierarchy
Code

Overview

Module Structure

  module: <Toplevel Module>
  module: <Built-in Module>
  class: FalseClass#1
inherits from
  Object ( Builtin-Module )
has properties
constant: AS_JSON #2
method: as_json / 1 #4

Class Hierarchy

Object ( Builtin-Module )
  FalseClass    #1

Code

   1  class FalseClass
   2    AS_JSON = ActiveSupport::JSON::Variable.new('false').freeze
   3 
   4    def as_json(options = nil) #:nodoc:
   5      AS_JSON
   6    end
   7  end