Sha256: 36e01603268e7cc0711ec963e87151a82a1dd57746eeb82e6300ca71e067ad5c

Contents?: true

Size: 434 Bytes

Versions: 4

Compression:

Stored size: 434 Bytes

Contents

# frozen_string_literal: true

module ConvenientService
  module Examples
    module Standard
      module V1
        class RequestParams
          module Entities
            class Logger
              class << self
                def log(message, out: $stdout)
                  out.puts message

                  message
                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/entities/logger.rb
convenient_service-0.16.0 lib/convenient_service/examples/standard/v1/request_params/entities/logger.rb
convenient_service-0.15.0 lib/convenient_service/examples/standard/v1/request_params/entities/logger.rb
convenient_service-0.14.0 lib/convenient_service/examples/standard/v1/request_params/entities/logger.rb