Sha256: a841cd0a01979fb8171fe8d885451a31717f72b378fb3973352ef2e7ded5f572

Contents?: true

Size: 506 Bytes

Versions: 8

Compression:

Stored size: 506 Bytes

Contents

# frozen_string_literal: true

require_relative "object/blank"
require_relative "object/present"

module ConvenientService
  module Examples
    module Standard
      module RequestParams
        module Utils
          module Object
            class << self
              def blank?(object)
                Blank.call(object)
              end

              def present?(object)
                Present.call(object)
              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/object.rb
convenient_service-0.11.0 lib/convenient_service/examples/standard/request_params/utils/object.rb
convenient_service-0.10.1 lib/convenient_service/examples/standard/request_params/utils/object.rb
convenient_service-0.10.0 lib/convenient_service/examples/standard/request_params/utils/object.rb
convenient_service-0.9.0 lib/convenient_service/examples/standard/request_params/utils/object.rb
convenient_service-0.8.0 lib/convenient_service/examples/standard/request_params/utils/object.rb
convenient_service-0.7.0 lib/convenient_service/examples/standard/request_params/utils/object.rb
convenient_service-0.6.0 lib/convenient_service/examples/standard/request_params/utils/object.rb