mirror of
https://github.com/fluencelabs/redis
synced 2025-04-03 00:01:04 +00:00
ruby19 compat: use each_line on string
This commit is contained in:
parent
5fba9f717b
commit
27dd15268c
@ -79,7 +79,7 @@ class Redis
|
|||||||
info = {}
|
info = {}
|
||||||
write("INFO\r\n")
|
write("INFO\r\n")
|
||||||
x = get_response
|
x = get_response
|
||||||
x.each do |kv|
|
x.each_line do |kv|
|
||||||
k,v = kv.split(':', 2)
|
k,v = kv.split(':', 2)
|
||||||
k,v = k.chomp, v = v.chomp
|
k,v = k.chomp, v = v.chomp
|
||||||
info[k.to_sym] = v
|
info[k.to_sym] = v
|
||||||
|
Loading…
x
Reference in New Issue
Block a user