We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
http://slides.jcoglan.com/di-eurucamp
class Github::Client def initialize(http_client) @http = http_client end def get_user(name) data = @http.get("/users/#{name}").json_data Github::User.new(data) end end
There was an error while loading. Please reload this page.