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,801 of 183,107
Downloads: 14,148
Daily
Ranking: 28,793 of 183,092
Downloads: 5
Downloads Trends
Ranking Trends
Num of Versions Trends
Popular Versions (Major)
Popular Versions (Major.Minor)
Depended by
Rank | Downloads | Name |
---|---|---|
71,312 | 12,289 | grnline |
Depends on
Rank | Downloads | Name |
---|---|---|
1 | 2,407,087,911 | bundler |
10 | 953,844,246 | rake |
18 | 910,800,336 | json |
648 | 66,308,583 | test-unit |
8,498 | 339,128 | test-unit-notify |
Owners
# | Gravatar | Handle |
---|---|---|
1 | yoshihara |