Class: ImageProcessing::Builder
- Inherits:
-
Object
- Object
- ImageProcessing::Builder
- Includes:
- Chainable
- Defined in:
- lib/image_processing/builder.rb
Instance Attribute Summary collapse
-
#options ⇒ Object
readonly
Returns the value of attribute options.
Instance Method Summary collapse
-
#call!(**call_options) ⇒ Object
Calls the pipeline to perform the processing from built options.
-
#initialize(options) ⇒ Builder
constructor
A new instance of Builder.
Methods included from Chainable
#apply, #branch, #call, #convert, #instrumenter, #loader, #operation, #saver, #source
Constructor Details
#initialize(options) ⇒ Builder
Returns a new instance of Builder.
7 8 9 |
# File 'lib/image_processing/builder.rb', line 7 def initialize() @options = end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class ImageProcessing::Chainable
Instance Attribute Details
#options ⇒ Object (readonly)
Returns the value of attribute options.
5 6 7 |
# File 'lib/image_processing/builder.rb', line 5 def @options end |