Sha256: 299be787eeb843309f2f73adb3a8186684dc83f0c0f81660bf47cb7ac75ff456

Contents?: true

Size: 1.79 KB

Versions: 119

Compression:

Stored size: 1.79 KB

Contents

require 'active_support/core_ext/module/attribute_accessors'
require 'active_support/core_ext/module/delegation'
require 'multi_json'

module ActiveSupport
  # Look for and parse json strings that look like ISO 8601 times.
  mattr_accessor :parse_json_times

  module JSON
    class << self
      def decode(json, options ={})
        # Can't reliably detect whether MultiJson responds to load, since it's
        # a reserved word. Use adapter as a proxy for new features.
        data = if MultiJson.respond_to?(:adapter)
          MultiJson.load(json, options)
        else
          MultiJson.decode(json, options)
        end
        if ActiveSupport.parse_json_times
          convert_dates_from(data)
        else
          data
        end
      end

      def engine
        if MultiJson.respond_to?(:adapter)
          MultiJson.adapter
        else
          MultiJson.engine
        end
      end
      alias :backend :engine

      def engine=(name)
        if MultiJson.respond_to?(:use)
          MultiJson.use name
        else
          MultiJson.engine = name
        end
      end
      alias :backend= :engine=

      def with_backend(name)
        old_backend, self.backend = backend, name
        yield
      ensure
        self.backend = old_backend
      end

      def parse_error
        MultiJson::DecodeError
      end

      private

      def convert_dates_from(data)
        case data
        when nil
          nil
        when DATE_REGEX
          begin
            DateTime.parse(data)
          rescue ArgumentError
            data
          end
        when Array
          data.map! { |d| convert_dates_from(d) }
        when Hash
          data.each do |key, value|
            data[key] = convert_dates_from(value)
          end
        else
          data
        end
      end
    end
  end
end

Version data entries

119 entries across 91 versions & 22 rubygems

Version Path
mdg-1.0.1 vendor/bundle/ruby/2.3.0/gems/activesupport-3.2.22.5/lib/active_support/json/decoding.rb
activesupport-3.2.22.5 lib/active_support/json/decoding.rb
activesupport-3.2.22.4 lib/active_support/json/decoding.rb
activesupport-3.2.22.3 lib/active_support/json/decoding.rb
activesupport-3.2.22.2 lib/active_support/json/decoding.rb
activesupport-3.2.22.1 lib/active_support/json/decoding.rb
active_mailer-0.0.10 test/fixtures/dummyapp_rails_3.2/vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.12/lib/active_support/json/decoding.rb
activesupport-3.2.22 lib/active_support/json/decoding.rb
judge-2.0.5 vendor/bundle/ruby/2.1.0/gems/activesupport-3.2.12/lib/active_support/json/decoding.rb
activesupport-3.2.21 lib/active_support/json/decoding.rb
apl-library-0.0.90 vendor/bundle/ruby/1.8/gems/activesupport-3.2.18/lib/active_support/json/decoding.rb
apl-library-0.0.90 vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.18/lib/active_support/json/decoding.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/activesupport-3.2.18/lib/active_support/json/decoding.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/apl-library-0.0.90/vendor/bundle/ruby/1.8/gems/activesupport-3.2.18/lib/active_support/json/decoding.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/apl-library-0.0.90/vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.18/lib/active_support/json/decoding.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/apl-library-0.0.90/vendor/bundle/ruby/2.1.0/gems/activesupport-3.2.18/lib/active_support/json/decoding.rb
activesupport-3.2.20 lib/active_support/json/decoding.rb
activesupport-3.2.19 lib/active_support/json/decoding.rb
activesupport-3.2.18 lib/active_support/json/decoding.rb
activesupport-3.2.17 lib/active_support/json/decoding.rb