Sha256: a4a5596ee68d4977a5dca0de046611a736536a9759728c09274d0096d2cf9430

Contents?: true

Size: 416 Bytes

Versions: 4

Compression:

Stored size: 416 Bytes

Contents

# frozen_string_literal: true

require_relative "url/valid"

module ConvenientService
  module Examples
    module Standard
      module V1
        class RequestParams
          module Utils
            module URL
              class << self
                def valid?(url)
                  Valid.call(url)
                end
              end
            end
          end
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
convenient_service-0.17.0 lib/convenient_service/examples/standard/v1/request_params/utils/url.rb
convenient_service-0.16.0 lib/convenient_service/examples/standard/v1/request_params/utils/url.rb
convenient_service-0.15.0 lib/convenient_service/examples/standard/v1/request_params/utils/url.rb
convenient_service-0.14.0 lib/convenient_service/examples/standard/v1/request_params/utils/url.rb