Sha256: 69cf508053eecaf3b7be2c593505d61c74ab514cd9acd723a8949d3773cb4d62

Contents?: true

Size: 631 Bytes

Versions: 8

Compression:

Stored size: 631 Bytes

Contents

# frozen_string_literal: true

require_relative "request/parse_body"
require_relative "request/parse_path"

module ConvenientService
  module Examples
    module Standard
      module RequestParams
        module Utils
          module HTTP
            module Request
              class << self
                def parse_body(http_string)
                  ParseBody.call(http_string: http_string)
                end

                def parse_path(http_string)
                  ParsePath.call(http_string: http_string)
                end
              end
            end
          end
        end
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
convenient_service-0.12.0 lib/convenient_service/examples/standard/request_params/utils/http/request.rb
convenient_service-0.11.0 lib/convenient_service/examples/standard/request_params/utils/http/request.rb
convenient_service-0.10.1 lib/convenient_service/examples/standard/request_params/utils/http/request.rb
convenient_service-0.10.0 lib/convenient_service/examples/standard/request_params/utils/http/request.rb
convenient_service-0.9.0 lib/convenient_service/examples/standard/request_params/utils/http/request.rb
convenient_service-0.8.0 lib/convenient_service/examples/standard/request_params/utils/http/request.rb
convenient_service-0.7.0 lib/convenient_service/examples/standard/request_params/utils/http/request.rb
convenient_service-0.6.0 lib/convenient_service/examples/standard/request_params/utils/http/request.rb