aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/vendor/multi_json.rb
diff options
context:
space:
mode:
authorJack Nagel2013-06-22 16:51:10 -0500
committerJack Nagel2013-06-22 21:40:26 -0500
commit49b2065a95b8668a64ba90420908adf0f9ddbc4a (patch)
treefe942690f259c518654742498919f141cd8f15b8 /Library/Homebrew/vendor/multi_json.rb
parentc7c8d6c02dc54de7c3448207b85e226c75e7e611 (diff)
downloadhomebrew-49b2065a95b8668a64ba90420908adf0f9ddbc4a.tar.bz2
Remove MultiJson
Closes #20696.
Diffstat (limited to 'Library/Homebrew/vendor/multi_json.rb')
-rw-r--r--Library/Homebrew/vendor/multi_json.rb116
1 files changed, 0 insertions, 116 deletions
diff --git a/Library/Homebrew/vendor/multi_json.rb b/Library/Homebrew/vendor/multi_json.rb
deleted file mode 100644
index 61ce79ba5..000000000
--- a/Library/Homebrew/vendor/multi_json.rb
+++ /dev/null
@@ -1,116 +0,0 @@
-module MultiJson
- class DecodeError < StandardError
- attr_reader :data
- def initialize(message="", backtrace=[], data="")
- super(message)
- self.set_backtrace(backtrace)
- @data = data
- end
- end
-
- @adapter = nil
-
- REQUIREMENT_MAP = [
- ["oj", :oj],
- ["yajl", :yajl],
- ["json", :json_gem],
- ["json/pure", :json_pure]
- ]
-
- class << self
-
- # The default adapter based on what you currently
- # have loaded and installed. First checks to see
- # if any adapters are already loaded, then checks
- # to see which are installed if none are loaded.
- def default_adapter
- :ok_json
- end
- # :nodoc:
- alias :default_engine :default_adapter
-
- # Get the current adapter class.
- def adapter
- return @adapter if @adapter
- self.use self.default_adapter
- @adapter
- end
- # :nodoc:
- alias :engine :adapter
-
- # Set the JSON parser utilizing a symbol, string, or class.
- # Supported by default are:
- #
- # * <tt>:oj</tt>
- # * <tt>:json_gem</tt>
- # * <tt>:json_pure</tt>
- # * <tt>:ok_json</tt>
- # * <tt>:yajl</tt>
- # * <tt>:nsjsonserialization</tt> (MacRuby only)
- def use(new_adapter)
- @adapter = load_adapter(new_adapter)
- end
- alias :adapter= :use
- # :nodoc:
- alias :engine= :use
-
- def load_adapter(new_adapter)
- case new_adapter
- when String, Symbol
- require "vendor/multi_json/adapters/#{new_adapter}"
- MultiJson::Adapters.const_get(:"#{new_adapter.to_s.split('_').map{|s| s.capitalize}.join('')}")
- when NilClass, FalseClass
- default_adapter = self.default_adapter
- require "vendor/multi_json/adapters/#{default_adapter}"
- MultiJson::Adapters.const_get(:"#{default_adapter.to_s.split('_').map{|s| s.capitalize}.join('')}")
- when Class
- new_adapter
- else
- raise "Did not recognize your adapter specification. Please specify either a symbol or a class."
- end
- end
-
- # Decode a JSON string into Ruby.
- #
- # <b>Options</b>
- #
- # <tt>:symbolize_keys</tt> :: If true, will use symbols instead of strings for the keys.
- # <tt>:adapter</tt> :: If set, the selected engine will be used just for the call.
- def load(string, options={})
- adapter = current_adapter(options)
- begin
- adapter.load(string, options)
- rescue adapter::ParseError => exception
- raise DecodeError.new(exception.message, exception.backtrace, string)
- end
- end
- # :nodoc:
- alias :decode :load
-
- def current_adapter(options)
- if new_adapter = (options || {}).delete(:adapter)
- load_adapter(new_adapter)
- else
- adapter
- end
- end
-
- # Encodes a Ruby object as JSON.
- def dump(object, options={})
- adapter = current_adapter(options)
- adapter.dump(object, options)
- end
- # :nodoc:
- alias :encode :dump
-
- def with_adapter(new_adapter)
- old_adapter, self.adapter = adapter, new_adapter
- yield
- ensure
- self.adapter = old_adapter
- end
- alias :with_engine :with_adapter
-
- end
-
-end