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.



167
168
169
# File 'lib/mini_magick.rb', line 167

def initialize
  @args = []
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(symbol, *args) ⇒ Object



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

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

Instance Attribute Details

#argsObject (readonly)

Returns the value of attribute args.



165
166
167
# File 'lib/mini_magick.rb', line 165

def args
  @args
end

Instance Method Details

#+(value) ⇒ Object



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

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