Class: MiniMagick::CommandBuilder

Inherits:
Object
  • Object
show all
Defined in:
lib/mini_magick.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeCommandBuilder

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

#argsObject (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