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.



171
172
173
# File 'lib/mini_magick.rb', line 171

def initialize
  @args = []
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(symbol, *args) ⇒ Object



175
176
177
178
# File 'lib/mini_magick.rb', line 175

def method_missing(symbol, *args)
  @args << "-#{symbol}"
  @args += args
end

Instance Attribute Details

#argsObject (readonly)

Returns the value of attribute args.



169
170
171
# File 'lib/mini_magick.rb', line 169

def args
  @args
end

Instance Method Details

#+(value) ⇒ Object



180
181
182
# File 'lib/mini_magick.rb', line 180

def +(value)
  @args << "+#{value}"
end