response_with_limit.rb 176 B

12345678910
  1. # frozen_string_literal: true
  2. class ResponseWithLimit
  3. def initialize(response, limit)
  4. @response = response
  5. @limit = limit
  6. end
  7. attr_reader :response, :limit
  8. end