class Repro::Response
Attributes
body[R]
status[R]
Public Class Methods
new(response)
click to toggle source
# File lib/repro/response.rb, line 7 def initialize(response) @status = response.status @body = JSON.parse(response.body) end