Class: Ardb::RecordSpy::Validation

Inherits:
Object
  • Object
show all
Defined in:
lib/ardb/record_spy.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(type, *args, &block) ⇒ Validation

Returns a new instance of Validation.



228
229
230
231
232
233
234
235
236
# File 'lib/ardb/record_spy.rb', line 228

def initialize(type, *args, &block)
  @type  = type.to_sym
  @options = args.last.kind_of?(::Hash) ? args.pop : {}
  @args = args
  @block = block
  if @type == :custom
    @method_name = @args.first
  end
end

Instance Attribute Details

#argsObject (readonly) Also known as: columns, associations, classes

Returns the value of attribute args.



223
224
225
# File 'lib/ardb/record_spy.rb', line 223

def args
  @args
end

#blockObject (readonly)

Returns the value of attribute block.



223
224
225
# File 'lib/ardb/record_spy.rb', line 223

def block
  @block
end

#method_nameObject (readonly)

Returns the value of attribute method_name.



223
224
225
# File 'lib/ardb/record_spy.rb', line 223

def method_name
  @method_name
end

#optionsObject (readonly)

Returns the value of attribute options.



223
224
225
# File 'lib/ardb/record_spy.rb', line 223

def options
  @options
end

#typeObject (readonly)

Returns the value of attribute type.



223
224
225
# File 'lib/ardb/record_spy.rb', line 223

def type
  @type
end