diff options
author | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-05-05 02:32:49 +0000 |
---|---|---|
committer | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-05-05 02:32:49 +0000 |
commit | 4f364c6bf7f5bcc064b5a12b235fd63b200359a0 (patch) | |
tree | 057f7862f43f36e096a5037c9fcdcd1259a4c5d4 /ext/json/lib/json/pure.rb | |
parent | 1735892962c9e05ff679fc32f933a66141b2cbaf (diff) |
Update to JSON 1.1.4.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@23346 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/json/lib/json/pure.rb')
-rw-r--r-- | ext/json/lib/json/pure.rb | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/ext/json/lib/json/pure.rb b/ext/json/lib/json/pure.rb deleted file mode 100644 index 6af8705c5b..0000000000 --- a/ext/json/lib/json/pure.rb +++ /dev/null @@ -1,22 +0,0 @@ -require 'json/common' -require 'json/pure/parser' -require 'json/pure/generator' - -module JSON - # Swap consecutive bytes of _string_ in place. - def self.swap!(string) # :nodoc: - 0.upto(string.size / 2) do |i| - break unless string[2 * i + 1] - string[2 * i], string[2 * i + 1] = string[2 * i + 1], string[2 * i] - end - string - end - - # 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 -end |