Sha256: e81c8c1b293fb3f845420ae0095cb11cf3552fd166c4613a787ca3e0f9b08555

Contents?: true

Size: 1.01 KB

Versions: 21

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

21 entries across 21 versions & 4 rubygems

Version Path
activesupport-2.0.0 lib/active_support/json/encoding.rb
activesupport-2.0.1 lib/active_support/json/encoding.rb
activesupport-2.0.2 lib/active_support/json/encoding.rb
activesupport-2.0.5 lib/active_support/json/encoding.rb
activesupport-2.0.4 lib/active_support/json/encoding.rb
radiant-0.6.5.1 vendor/rails/activesupport/lib/active_support/json/encoding.rb
radiant-0.6.5 vendor/rails/activesupport/lib/active_support/json/encoding.rb
radiant-0.6.6 vendor/rails/activesupport/lib/active_support/json/encoding.rb
radiant-0.6.7 vendor/rails/activesupport/lib/active_support/json/encoding.rb
radiant-0.6.8 vendor/rails/activesupport/lib/active_support/json/encoding.rb
radiant-0.6.9 vendor/rails/activesupport/lib/active_support/json/encoding.rb
spree-0.0.9 vendor/rails/activesupport/lib/active_support/json/encoding.rb
spree-0.2.0 vendor/rails/activesupport/lib/active_support/json/encoding.rb
swivel-0.0.150 vendor/activesupport-2.0.2-/lib/active_support/json/encoding.rb
swivel-0.0.149 vendor/activesupport-2.0.2-/lib/active_support/json/encoding.rb
swivel-0.0.156 vendor/activesupport-2.0.2-/lib/active_support/json/encoding.rb
swivel-0.0.157 vendor/activesupport-2.0.2-/lib/active_support/json/encoding.rb
swivel-0.0.160 vendor/activesupport-2.0.2-/lib/active_support/json/encoding.rb
swivel-0.0.175 vendor/activesupport-2.0.2-/lib/active_support/json/encoding.rb
swivel-0.0.152 vendor/activesupport-2.0.2-/lib/active_support/json/encoding.rb