Categories: None [Edit]
    lazy-pp-json
Lazy pp json responses.
### JSON#pretty_generate
```ruby
example_json = "[[0,1395671860.99505,2.50339508056641e-05],{"alloc_count":136,"starttime":1395671856,"uptime":4,"version":"4.0.0","n_queries":0,"cache_hit_rate":0.0,"command_version":1,"default_command_version":1,"max_command_version":2}]"
puts JSON.pretty_generate(JSON.parse(example_json))
#=>
# [
#   [
#     0,
#     1395671860.99505,
#     2.50339508056641e-05
#   ],
#   {
#     "alloc_count": 136,
#     "starttime": 1395671856,
#     "uptime": 4,
#     "version": "4.0.0",
#     "n_queries": 0,
#     "cache_hit_rate": 0.0,
#     "command_version": 1,
#     "default_command_version": 1,
#     "max_command_version": 2
#   }
# ]
```
### lazy-pp-json
```ruby
example_json = "[[0,1395671860.99505,2.50339508056641e-05],{"alloc_count":136,"starttime":1395671856,"uptime":4,"version":"4.0.0","n_queries":0,"cache_hit_rate":0.0,"command_version":1,"default_command_version":1,"max_command_version":2}]"
pp Lazy::PP::JSON.new(example_json)
#=>
[
  [0, 1395671860.99505, 2.50339508056641e-05],
  {
    "alloc_count"            :136,
    "starttime"              :1395671856,
    "uptime"                 :4,
    "version"                :"4.0.0",
    "n_queries"              :0,
    "cache_hit_rate"         :0.0,
    "command_version"        :1,
    "default_command_version":1,
    "max_command_version"    :2
  }
]
```
    Total
Ranking: 64,781 of 187,571
          Downloads: 15,470
        Daily
Ranking: 43,003 of 187,548
          Downloads: 9
        Downloads Trends
Ranking Trends
Num of Versions Trends
Popular Versions (Major)
Popular Versions (Major.Minor)
Depended by
| Rank | Downloads | Name | 
|---|---|---|
| 71,445 | 13,395 | grnline | 
Depends on
| Rank | Downloads | Name | 
|---|---|---|
| 1 | 3,010,000,950 | bundler | 
| 10 | 1,165,196,519 | rake | 
| 13 | 1,135,784,591 | json | 
| 644 | 80,222,187 | test-unit | 
| 8,850 | 376,155 | test-unit-notify | 
Owners
| # | Gravatar | Handle | 
|---|---|---|
| 1 | yoshihara | 
 xmisao
xmisao