Sha256: d136e904effcf32b3fc6e48abd142afb2beb7f63b365d744df1ff332d2c4749e

Contents?: true

Size: 563 Bytes

Versions: 5

Compression:

Stored size: 563 Bytes

Contents

# frozen_string_literal: true

##
#
#
module ConvenientService
  module Examples
    module Standard
      class RequestParams
        module Utils
          module Object
            ##
            # TODO: Specs.
            #
            class Present < ConvenientService::Command
              attr_reader :object

              def initialize(object)
                @object = object
              end

              def call
                Utils::Object.blank?(object)
              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/object/present.rb
convenient_service-0.16.0 lib/convenient_service/examples/standard/request_params/utils/object/present.rb
convenient_service-0.15.0 lib/convenient_service/examples/standard/request_params/utils/object/present.rb
convenient_service-0.14.0 lib/convenient_service/examples/standard/request_params/utils/object/present.rb
convenient_service-0.13.0 lib/convenient_service/examples/standard/request_params/utils/object/present.rb