Class: Qonfig::Uploaders::Base Private

Inherits:
Object
  • Object
show all
Defined in:
lib/qonfig/uploaders/base.rb

Overview

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

rubocop:disable Style/StaticClass

Since:

  • 0.11.0

Direct Known Subclasses

File

Class Method Summary collapse

Class Method Details

.upload(settings, options: {}, &value_processor) ⇒ void

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

This method returns an undefined value.

Parameters:

  • settings (Qonfig::Settings)
  • options (Hash<Symbol,Any>) (defaults to: {})
  • value_procssor (Block)

Since:

  • 0.11.0



15
16
17
# File 'lib/qonfig/uploaders/base.rb', line 15

def upload(settings, options: {}, &value_processor)
  nil # NOTE: consciously return nil (for clarity)
end