8 lines
100 B
Ruby
8 lines
100 B
Ruby
|
|
module Requests
|
||
|
|
module JsonHelpers
|
||
|
|
def json
|
||
|
|
JSON.parse(response.body)
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|