Class: ActiveMocker::CreateTable

Inherits:
Object
  • Object
show all
Defined in:
lib/active_mocker/active_record/schema.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeCreateTable

Returns a new instance of CreateTable.



66
67
68
# File 'lib/active_mocker/active_record/schema.rb', line 66

def initialize
  @fields = []
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(meth, *args) ⇒ Object



70
71
72
# File 'lib/active_mocker/active_record/schema.rb', line 70

def method_missing(meth, *args)
  base_field meth, args
end

Instance Attribute Details

#fieldsObject (readonly)

Returns the value of attribute fields.



64
65
66
# File 'lib/active_mocker/active_record/schema.rb', line 64

def fields
  @fields
end

Instance Method Details

#base_field(type, args) ⇒ Object



74
75
76
# File 'lib/active_mocker/active_record/schema.rb', line 74

def base_field(type, args)
  fields << Field.new(args.shift, type, args)
end