Sha256: 2355b58bcde24cf0764aecdd0e3082d707211f55cf31d5ae6ba5e1ec4683c107

Contents?: true

Size: 530 Bytes

Versions: 4

Compression:

Stored size: 530 Bytes

Contents

# frozen_string_literal: true

##
# @internal
#   NOTE: `require_relative "integer/safe_parse"` does NOT work. Why?
#
require_relative "integer/safe_parse"

module ConvenientService
  module Examples
    module Standard
      module V1
        class RequestParams
          module Utils
            module Integer
              class << self
                def safe_parse(string)
                  SafeParse.call(string)
                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/integer.rb
convenient_service-0.16.0 lib/convenient_service/examples/standard/v1/request_params/utils/integer.rb
convenient_service-0.15.0 lib/convenient_service/examples/standard/v1/request_params/utils/integer.rb
convenient_service-0.14.0 lib/convenient_service/examples/standard/v1/request_params/utils/integer.rb