Class: FieldedArray

Inherits:
Object
  • Object
show all
Includes:
Fieldable
Defined in:
lib/arrayfields.rb

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Fieldable

#fields, #fields=, #fieldset

Constructor Details

#initialize(fields = [], array = []) ⇒ FieldedArray

Returns a new instance of FieldedArray.



396
397
398
399
# File 'lib/arrayfields.rb', line 396

def initialize fields = [], array = []
  @a = array
  self.fields = fields
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(meth, *args, &block) ⇒ Object



400
401
402
# File 'lib/arrayfields.rb', line 400

def method_missing(meth, *args, &block)
  @a.send(meth, *args, &block)
end

Class Method Details

.[](*pairs) ⇒ Object

Raises:

  • (ArgumentError)


385
386
387
388
389
390
391
392
393
394
# File 'lib/arrayfields.rb', line 385

def [](*pairs)
  pairs.flatten!
  raise ArgumentError, "argument must be key/val pairs" unless 
    (pairs.size % 2 == 0)
  fields, elements = [], []
  while((f = pairs.shift) and (e = pairs.shift)) 
    fields << f and elements << e
  end
  new fields, elements
end