summaryrefslogtreecommitdiff
path: root/lib/json/add/set.rb
diff options
context:
space:
mode:
authorJosh Kline <github.com@track.jonfram.net>2013-12-28 15:37:33 -0800
committerFlorian Frank <flori@ping.de>2017-10-04 17:20:44 +0200
commit06f93995137e0a61dd829fef3306fde262f88628 (patch)
tree2f9d98720cf4bd9228c8199ca003c5eac9183624 /lib/json/add/set.rb
parent23825068ced076d5d8e1b1808430dfd860deec36 (diff)
downloadjson-06f93995137e0a61dd829fef3306fde262f88628.tar.gz
JSON marshalling support for Set and SortedSet
Diffstat (limited to 'lib/json/add/set.rb')
-rw-r--r--lib/json/add/set.rb29
1 files changed, 29 insertions, 0 deletions
diff --git a/lib/json/add/set.rb b/lib/json/add/set.rb
new file mode 100644
index 0000000..71e2a0a
--- /dev/null
+++ b/lib/json/add/set.rb
@@ -0,0 +1,29 @@
+unless defined?(::JSON::JSON_LOADED) and ::JSON::JSON_LOADED
+ require 'json'
+end
+defined?(::Set) or require 'set'
+
+class Set
+ # Import a JSON Marshalled object.
+ #
+ # method used for JSON marshalling support.
+ def self.json_create(object)
+ new object['a']
+ end
+
+ # Marshal the object to JSON.
+ #
+ # method used for JSON marshalling support.
+ def as_json(*)
+ {
+ JSON.create_id => self.class.name,
+ 'a' => to_a,
+ }
+ end
+
+ # return the JSON value
+ def to_json(*args)
+ as_json.to_json(*args)
+ end
+end
+