class DMap::Validations::Within

Public Class Methods

parent_name() click to toggle source
# File lib/dmap/validations/within.rb, line 4
def self.parent_name
  "Within"
end
validate(command=nil) click to toggle source
# File lib/dmap/validations/within.rb, line 8
def self.validate(command=nil)
  ret = DMap::Validations::Core::Numbers.run command
  ret1 = DMap::Validations::Core::Fields.run command
  ret.merge!(ret1)
end