Class: MiniMagick::CommandBuilder
- Inherits:
-
Object
- Object
- MiniMagick::CommandBuilder
- Defined in:
- lib/mini_magick.rb
Instance Attribute Summary collapse
-
#args ⇒ Object
readonly
Returns the value of attribute args.
Instance Method Summary collapse
- #+(value) ⇒ Object
-
#initialize ⇒ CommandBuilder
constructor
A new instance of CommandBuilder.
- #method_missing(symbol, *args) ⇒ Object
Constructor Details
#initialize ⇒ CommandBuilder
Returns a new instance of CommandBuilder.
219 220 221 |
# File 'lib/mini_magick.rb', line 219 def initialize @args = [] end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(symbol, *args) ⇒ Object
223 224 225 226 |
# File 'lib/mini_magick.rb', line 223 def method_missing(symbol, *args) @args << "-#{symbol}" @args += args end |
Instance Attribute Details
#args ⇒ Object (readonly)
Returns the value of attribute args.
217 218 219 |
# File 'lib/mini_magick.rb', line 217 def args @args end |
Instance Method Details
#+(value) ⇒ Object
228 229 230 |
# File 'lib/mini_magick.rb', line 228 def +(value) @args << "+#{value}" end |