Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/raven/okjson.rb
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,7 @@ def strenc(s)

def numenc(x)
if ((x.nan? || x.infinite?) rescue false)
raise Error, "Numeric cannot be represented: #{x}"
return strenc(x.to_s)
end
"#{x}"
end
Expand Down
6 changes: 4 additions & 2 deletions spec/raven/okjson_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,11 @@
it 'encodes anything that responds to to_s' do
data = [
(1..5),
:symbol
:symbol,
1/0.0,
0/0.0
]
expect(Raven::OkJson.encode(data)).to eq "[\"1..5\",\"symbol\"]"
expect(Raven::OkJson.encode(data)).to eq "[\"1..5\",\"symbol\",\"Infinity\",\"NaN\"]"
end

it 'does not parse scientific notation' do
Expand Down