Sha256: 89edd5d238c4c51b993da5a3cca94378fa280ea237856f8ad3a95c86fd5a8927

Contents?: true

Size: 482 Bytes

Versions: 5

Compression:

Stored size: 482 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
      class RequestParams
        module Utils
          module Integer
            class << self
              def safe_parse(string)
                SafeParse.call(string)
              end
            end
          end
        end
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

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