OSDN Git Service

ajust
[pettanr/pettanr.git] / lib / locmare / profiler / column / json.rb
1 module Locmare
2   module ProfilerModule
3     module ColumnModule
4       class Json < Base
5         
6         def value
7           JSON.pretty_generate(JSON.parse(super))
8         end
9         
10         def template_file_name
11           "json"
12         end
13         
14       end
15     end
16   end
17 end