class ActiveSupport::JSON::Variable

Deprecated: A string that returns itself as its JSON-encoded form.

def as_json(options = nil) self end #:nodoc:

:nodoc:
def as_json(options = nil) self end #:nodoc:

def encode_json(encoder) self end #:nodoc:

:nodoc:
:nodoc:
def encode_json(encoder) self end #:nodoc:

def initialize(*args)

def initialize(*args)
  message = 'ActiveSupport::JSON::Variable is deprecated and will be removed in Rails 4.1. ' \
            'For your own custom JSON literals, define #as_json and #encode_json yourself.'
  ActiveSupport::Deprecation.warn message
  super
end