aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/gems/json-1.5.1/lib/json/pure.rb
diff options
context:
space:
mode:
authorSeb Bacon <seb.bacon@gmail.com>2012-03-12 13:05:19 +0000
committerSeb Bacon <seb.bacon@gmail.com>2012-03-12 13:05:19 +0000
commit37bff4c0154b57b35a3194a9b31a9422496b955b (patch)
tree61592a6bb9d1d9fea378a6e4efa8fdf7d5525b8a /vendor/gems/json-1.5.1/lib/json/pure.rb
parent8b49dc894066e452232cabd09333895487f86986 (diff)
parent8acea24f98268fbb9b73b66b9e98a1788a3b30ac (diff)
Merge branch 'merged-bundler' into develop
Diffstat (limited to 'vendor/gems/json-1.5.1/lib/json/pure.rb')
-rw-r--r--vendor/gems/json-1.5.1/lib/json/pure.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/vendor/gems/json-1.5.1/lib/json/pure.rb b/vendor/gems/json-1.5.1/lib/json/pure.rb
deleted file mode 100644
index dbac93cf6..000000000
--- a/vendor/gems/json-1.5.1/lib/json/pure.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-require 'json/common'
-require 'json/pure/parser'
-require 'json/pure/generator'
-
-module JSON
- # This module holds all the modules/classes that implement JSON's
- # functionality in pure ruby.
- module Pure
- $DEBUG and warn "Using Pure library for JSON."
- JSON.parser = Parser
- JSON.generator = Generator
- end
-
- JSON_LOADED = true unless defined?(::JSON::JSON_LOADED)
-end