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
sidekiq-statsd-0.1.1 vendor/ruby/1.9.1/gems/activesupport-3.2.13/lib/active_support/json/decoding.rb
sidekiq-statsd-0.1.0 vendor/ruby/1.9.1/gems/activesupport-3.2.13/lib/active_support/json/decoding.rb
fc-webicons-0.0.4 vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.13/lib/active_support/json/decoding.rb
challah-1.0.0.beta2 vendor/bundle/gems/activesupport-3.2.13/lib/active_support/json/decoding.rb
challah-1.0.0.beta vendor/bundle/gems/activesupport-3.2.13/lib/active_support/json/decoding.rb
challah-1.0.0.beta vendor/bundle/gems/activesupport-3.2.11/lib/active_support/json/decoding.rb
fc-webicons-0.0.3 vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.13/lib/active_support/json/decoding.rb
fc-webicons-0.0.2 vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.13/lib/active_support/json/decoding.rb
fc-webicons-0.0.1 vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.13/lib/active_support/json/decoding.rb
activesupport-3.2.13 lib/active_support/json/decoding.rb
activesupport-3.1.12 lib/active_support/json/decoding.rb
activesupport-3.2.13.rc2 lib/active_support/json/decoding.rb
activesupport-3.2.13.rc1 lib/active_support/json/decoding.rb
active_mailer-0.0.5 test/fixtures/dummyapp_rails_3.2/vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.12/lib/active_support/json/decoding.rb
active_mailer-0.0.4 test/fixtures/dummyapp_rails_3.2/vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.12/lib/active_support/json/decoding.rb
active_mailer-0.0.3 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.12 lib/active_support/json/decoding.rb
activesupport-3.1.11 lib/active_support/json/decoding.rb
graphael-on-rails-0.5.1 vendor/bundle/gems/activesupport-3.2.11/lib/active_support/json/decoding.rb
graphael-on-rails-0.0.1 vendor/bundle/gems/activesupport-3.2.11/lib/active_support/json/decoding.rb