Sha256: fcf804c6d62922236c818b32c89ae0067372b4ea56435e15af34f8e64af65842

Contents?: true

Size: 1.02 KB

Versions: 4

Compression:

Stored size: 1.02 KB

Contents

require 'singleton'
require 'multi_json/options'

module MultiJson
  class Adapter
    extend Options
    include Singleton
    class << self

      def defaults(action, value)
        metaclass = class << self; self; end

        metaclass.instance_eval do
          define_method("default_#{action}_options"){ value }
        end
      end

      def load(string, options={})
        instance.load(string, collect_load_options(string, options))
      end

      def dump(object, options={})
        instance.dump(object, collect_dump_options(object, options))
      end

    protected

      def collect_load_options(string, options)
        collect_options :load_options, options, [ string, options ]
      end

      def collect_dump_options(object, options)
        collect_options :dump_options, options, [ object, options ]
      end

      def collect_options(method, overrides, args)
        global, local = *[MultiJson, self].map{ |r| r.send(method, *args) }
        local.merge(global).merge(overrides)
      end

    end
  end
end

Version data entries

4 entries across 4 versions & 3 rubygems

Version Path
challah-1.0.0.beta3 vendor/bundle/gems/multi_json-1.7.3/lib/multi_json/adapter.rb
sidekiq-statsd-0.1.1 vendor/ruby/1.9.1/gems/multi_json-1.7.3/lib/multi_json/adapter.rb
sidekiq-statsd-0.1.0 vendor/ruby/1.9.1/gems/multi_json-1.7.3/lib/multi_json/adapter.rb
multi_json-1.7.3 lib/multi_json/adapter.rb