File: json_gem.rb

package info (click to toggle)
ruby-multi-json 1.15.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 404 kB
  • sloc: ruby: 1,530; makefile: 3
file content (11 lines) | stat: -rw-r--r-- 222 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
require 'json/ext'
require 'multi_json/adapters/json_common'

module MultiJson
  module Adapters
    # Use the JSON gem to dump/load.
    class JsonGem < JsonCommon
      ParseError = ::JSON::ParserError
    end
  end
end