aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/json/decoding.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activesupport/lib/active_support/json/decoding.rb')
-rw-r--r--activesupport/lib/active_support/json/decoding.rb13
1 files changed, 9 insertions, 4 deletions
diff --git a/activesupport/lib/active_support/json/decoding.rb b/activesupport/lib/active_support/json/decoding.rb
index 60003a94e5..08446d3a83 100644
--- a/activesupport/lib/active_support/json/decoding.rb
+++ b/activesupport/lib/active_support/json/decoding.rb
@@ -15,19 +15,24 @@ module ActiveSupport
end
protected
+
# Ensure that ":" and "," are always followed by a space
def convert_json_to_yaml(json) #:nodoc:
scanner, quoting, marks = StringScanner.new(json), false, []
- while scanner.scan_until(/(['":,]|\\.)/)
+ while scanner.scan_until(/(\\['"]|['":,\\]|\\.)/)
case char = scanner[1]
when '"', "'"
- quoting = quoting == char ? false : char
- when ":", ","
+ if !quoting
+ quoting = char
+ elsif quoting == char
+ quoting = false
+ end
+ when ":",","
marks << scanner.pos - 1 unless quoting
end
end
-
+
if marks.empty?
json
else