Skip to content

Commit

Permalink
Ruby 1.9 compat: fix JSON decoding to work properly with multibyte va…
Browse files Browse the repository at this point in the history
…lues

[rails#1969 state:committed]

Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
  • Loading branch information
amatsuda authored and jeremy committed Feb 17, 2009
1 parent b0792a3 commit 13bf5c5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
5 changes: 3 additions & 2 deletions activesupport/lib/active_support/json/decoding.rb
Expand Up @@ -46,10 +46,11 @@ def convert_json_to_yaml(json) #:nodoc:
json.gsub(/\\\//, '/')
else
left_pos = [-1].push(*marks)
right_pos = marks << json.length
right_pos = marks << scanner.pos + scanner.rest_size
output = []
left_pos.each_with_index do |left, i|
output << json[left.succ..right_pos[i]]
scanner.pos = left.succ
output << scanner.peek(right_pos[i] - scanner.pos + 1)
end
output = output * " "

Expand Down
3 changes: 3 additions & 0 deletions activesupport/test/json/decoding_test.rb
@@ -1,3 +1,4 @@
# encoding: UTF-8
require 'abstract_unit'

class TestJSONDecoding < Test::Unit::TestCase
Expand All @@ -10,6 +11,8 @@ class TestJSONDecoding < Test::Unit::TestCase
%({"returnTo":[1,"\\"a\\",", "b"]}) => {"returnTo" => [1, "\"a\",", "b"]},
%({a: "'", "b": "5,000"}) => {"a" => "'", "b" => "5,000"},
%({a: "a's, b's and c's", "b": "5,000"}) => {"a" => "a's, b's and c's", "b" => "5,000"},
# multibyte
%({"matzue": "松江", "asakusa": "浅草"}) => {"matzue" => "松江", "asakusa" => "浅草"},
%({a: "2007-01-01"}) => {'a' => Date.new(2007, 1, 1)},
%({a: "2007-01-01 01:12:34 Z"}) => {'a' => Time.utc(2007, 1, 1, 1, 12, 34)},
# no time zone
Expand Down

0 comments on commit 13bf5c5

Please sign in to comment.