Class: OverlapValidator
- Inherits:
-
ActiveModel::EachValidator
- Object
- ActiveModel::EachValidator
- OverlapValidator
- Defined in:
- lib/validates_overlap/overlap_validator.rb
Constant Summary collapse
- BEGIN_OF_UNIX_TIME =
Time.at(-2147483648).to_datetime
- END_OF_UNIX_TIME =
Time.at(2147483648).to_datetime
Instance Attribute Summary collapse
-
#scoped_model ⇒ Object
Returns the value of attribute scoped_model.
-
#sql_conditions ⇒ Object
Returns the value of attribute sql_conditions.
-
#sql_values ⇒ Object
Returns the value of attribute sql_values.
Instance Method Summary collapse
-
#initialize(args) ⇒ OverlapValidator
constructor
A new instance of OverlapValidator.
- #validate(record) ⇒ Object
Constructor Details
#initialize(args) ⇒ OverlapValidator
12 13 14 15 |
# File 'lib/validates_overlap/overlap_validator.rb', line 12 def initialize(args) attributes_are_range(args[:attributes]) super end |
Instance Attribute Details
#scoped_model ⇒ Object
Returns the value of attribute scoped_model.
10 11 12 |
# File 'lib/validates_overlap/overlap_validator.rb', line 10 def scoped_model @scoped_model end |
#sql_conditions ⇒ Object
Returns the value of attribute sql_conditions.
8 9 10 |
# File 'lib/validates_overlap/overlap_validator.rb', line 8 def sql_conditions @sql_conditions end |
#sql_values ⇒ Object
Returns the value of attribute sql_values.
9 10 11 |
# File 'lib/validates_overlap/overlap_validator.rb', line 9 def sql_values @sql_values end |
Instance Method Details
#validate(record) ⇒ Object
17 18 19 20 21 22 23 24 25 |
# File 'lib/validates_overlap/overlap_validator.rb', line 17 def validate(record) if self.find_crossed(record) if record.respond_to? attributes.first record.errors.add([:message_title] || attributes.first, [:message_content] || :overlap) else record.errors.add([:message_title] || :base, [:message_content] || :overlap) end end end |