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
173 174 175 |
# File 'lib/mini_magick.rb', line 173 def initialize @args = [] end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(symbol, *args) ⇒ Object
177 178 179 180 |
# File 'lib/mini_magick.rb', line 177 def method_missing(symbol, *args) @args << "-#{symbol}" @args += args end |
Instance Attribute Details
#args ⇒ Object (readonly)
Returns the value of attribute args.
171 172 173 |
# File 'lib/mini_magick.rb', line 171 def args @args end |
Instance Method Details
#+(value) ⇒ Object
182 183 184 |
# File 'lib/mini_magick.rb', line 182 def +(value) @args << "+#{value}" end |