9 lines
159 B
Ruby
9 lines
159 B
Ruby
|
module RablFastJson
|
||
|
module Renderers
|
||
|
class JSON < Base
|
||
|
def format_output(hash)
|
||
|
ActiveSupport::JSON.encode(hash)
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|