OSDN Git Service

ruby-1.9.1-rc1
[splhack/AndroidRuby.git] / lib / ruby-1.9.1-rc1 / ext / json / lib / json / ext.rb
1 require 'json/common'
2
3 module JSON
4   # This module holds all the modules/classes that implement JSON's
5   # functionality as C extensions.
6   module Ext
7     require 'json/ext/parser'
8     require 'json/ext/generator'
9     $DEBUG and warn "Using c extension for JSON."
10     JSON.parser = Parser
11     JSON.generator = Generator
12   end
13 end