Sha256: 9ca7ccd61b2891a9a3ff398ecf60aa3d898daac006ff86f645856701e317d80f
Contents?: true
Size: 288 Bytes
Versions: 4
Compression:
Stored size: 288 Bytes
Contents
# frozen_string_literal: true module Onyphe module Clients class IP < Client def get_by_ip(ip, page = 1) raise ArgumentError, "Invalid IP address: #{ip}" unless Validator.valid_ip?(ip) get("/ip/#{ip}", page: page) { |json| json } end end end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
onyphe-0.2.3 | lib/onyphe/clients/ip.rb |
onyphe-0.2.2 | lib/onyphe/clients/ip.rb |
onyphe-0.2.1 | lib/onyphe/clients/ip.rb |
onyphe-0.2.0 | lib/onyphe/clients/ip.rb |