Class: ArSync::Field
- Inherits:
-
Object
show all
- Defined in:
- lib/ar_sync/field.rb
Instance Attribute Summary collapse
Instance Method Summary
collapse
Constructor Details
#initialize(name) ⇒ Field
Returns a new instance of Field.
3
4
5
|
# File 'lib/ar_sync/field.rb', line 3
def initialize(name)
@name = name
end
|
Instance Attribute Details
#name ⇒ Object
Returns the value of attribute name.
2
3
4
|
# File 'lib/ar_sync/field.rb', line 2
def name
@name
end
|
Instance Method Details
#action_convert(action) ⇒ Object
11
12
13
|
# File 'lib/ar_sync/field.rb', line 11
def action_convert(action)
action
end
|
#order_param ⇒ Object
15
|
# File 'lib/ar_sync/field.rb', line 15
def order_param; end
|
#skip_propagation?(_parent, _child, _path) ⇒ Boolean
7
8
9
|
# File 'lib/ar_sync/field.rb', line 7
def skip_propagation?(_parent, _child, _path)
false
end
|