summaryrefslogtreecommitdiff
path: root/lib/json/ext.rb
blob: ff4fa42329473617abdde1a9f769df9a581d2036 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'json/common'

module JSON
  # This module holds all the modules/classes that implement JSON's
  # functionality as C extensions.
  module Ext
    require 'json/ext/parser'
    require 'json/ext/generator'
    $DEBUG and warn "Using c extension for JSON."
    JSON.parser = Parser
    JSON.generator = Generator
  end
end