mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Disprefer JSONGem decoder since it only decodes JSON objects
This commit is contained in:
parent
ea4f8ef33f
commit
a87683fb38
1 changed files with 1 additions and 1 deletions
|
@ -7,7 +7,7 @@ module ActiveSupport
|
||||||
|
|
||||||
module JSON
|
module JSON
|
||||||
# Listed in order of preference.
|
# Listed in order of preference.
|
||||||
DECODERS = %w(Yajl JSONGem Yaml)
|
DECODERS = %w(Yajl Yaml)
|
||||||
|
|
||||||
class << self
|
class << self
|
||||||
attr_reader :parse_error
|
attr_reader :parse_error
|
||||||
|
|
Loading…
Reference in a new issue