Ruby 2.2.0 リファレンスマニュアル > ライブラリ一覧 > jsonライブラリ > JSON::Generator::GeneratorMethods::String::Extendモジュール
クラスの継承リスト: JSON::Generator::GeneratorMethods::String::Extend
aliases: JSON::Ext::Generator::GeneratorMethods::String::Extend
String に JSON で使用する特異メソッドを追加するためのモジュールです。
json_create(hash) -> String
[permalink][rdoc]JSON のオブジェクトから Ruby の文字列を生成して返します。
require 'json' String.json_create({"raw" => [0x41, 0x42, 0x43]}) # => "ABC"