Sha256: 59d66411545b845972b7ee72614786300f4eeda8cd53cec48b1c01d0928ca048

Contents?: true

Size: 1.01 KB

Versions: 39

Compression:

Stored size: 1.01 KB

Contents

require 'active_support/json/variable'
require 'active_support/json/encoders/object' # Require explicitly for rdoc.
Dir["#{File.dirname(__FILE__)}/encoders/**/*.rb"].each do |file|
  basename = File.basename(file, '.rb')
  unless basename == 'object'
    require "active_support/json/encoders/#{basename}"
  end
end

module ActiveSupport
  module JSON
    class CircularReferenceError < StandardError
    end

    class << self
      REFERENCE_STACK_VARIABLE = :json_reference_stack #:nodoc:

      # Converts a Ruby object into a JSON string.
      def encode(value, options = {})
        raise_on_circular_reference(value) do
          value.send(:to_json, options)
        end
      end

      protected
        def raise_on_circular_reference(value) #:nodoc:
          stack = Thread.current[REFERENCE_STACK_VARIABLE] ||= []
          raise CircularReferenceError, 'object references itself' if
            stack.include? value
          stack << value
          yield
        ensure
          stack.pop
        end
    end
  end
end

Version data entries

39 entries across 38 versions & 13 rubygems

Version Path
3mix-castronaut-0.5.0.2 vendor/activesupport/lib/active_support/json/encoding.rb
masover-castronaut-0.4.4.4 vendor/activesupport/lib/active_support/json/encoding.rb
masover-castronaut-0.4.4.5 vendor/activesupport/lib/active_support/json/encoding.rb
masover-castronaut-0.5.0.1 vendor/activesupport/lib/active_support/json/encoding.rb
p8-castronaut-0.6.1.1 vendor/activesupport/lib/active_support/json/encoding.rb
relevance-castronaut-0.4.1 vendor/activesupport/lib/active_support/json/encoding.rb
relevance-castronaut-0.4.2 vendor/activesupport/lib/active_support/json/encoding.rb
relevance-castronaut-0.4.3 vendor/activesupport/lib/active_support/json/encoding.rb
relevance-castronaut-0.4.4 vendor/activesupport/lib/active_support/json/encoding.rb
relevance-castronaut-0.4.5 vendor/activesupport/lib/active_support/json/encoding.rb
relevance-castronaut-0.4.6 vendor/activesupport/lib/active_support/json/encoding.rb
relevance-castronaut-0.5.0 vendor/activesupport/lib/active_support/json/encoding.rb
relevance-castronaut-0.5.1 vendor/activesupport/lib/active_support/json/encoding.rb
relevance-castronaut-0.5.2 vendor/activesupport/lib/active_support/json/encoding.rb
relevance-castronaut-0.5.3 vendor/activesupport/lib/active_support/json/encoding.rb
relevance-castronaut-0.5.4 vendor/activesupport/lib/active_support/json/encoding.rb
relevance-castronaut-0.6.0 vendor/activesupport/lib/active_support/json/encoding.rb
relevance-castronaut-0.6.1 vendor/activesupport/lib/active_support/json/encoding.rb
relevance-castronaut-0.7.4 vendor/activesupport/lib/active_support/json/encoding.rb
relevance-castronaut-0.7.5 vendor/activesupport/lib/active_support/json/encoding.rb