summaryrefslogtreecommitdiff
path: root/lib/json/add/regexp.rb
diff options
context:
space:
mode:
authorSho Hashimoto <sho.hsmt@gmail.com>2019-01-15 22:16:05 +0900
committerFlorian Frank <flori@ping.de>2019-04-29 16:25:33 +0200
commit36a7ef6790881afc813e5d025efddb7ee95d3db4 (patch)
treedf056eae8dd6a4c86efd3cd6f9c8a8bee004bafa /lib/json/add/regexp.rb
parent09aa02ede8d7e70a113bfa87be5ed34676d57206 (diff)
downloadjson-36a7ef6790881afc813e5d025efddb7ee95d3db4.tar.gz
Pass args all #to_json in json/add/*.
Diffstat (limited to 'lib/json/add/regexp.rb')
-rw-r--r--lib/json/add/regexp.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/json/add/regexp.rb b/lib/json/add/regexp.rb
index a93866b..39d69fe 100644
--- a/lib/json/add/regexp.rb
+++ b/lib/json/add/regexp.rb
@@ -24,7 +24,7 @@ class Regexp
# Stores class name (Regexp) with options <tt>o</tt> and source <tt>s</tt>
# (Regexp or String) as JSON string
- def to_json(*)
- as_json.to_json
+ def to_json(*args)
+ as_json.to_json(*args)
end
end