Class: DataMapper::Types::Regexp

Inherits:
DataMapper::Type show all
Defined in:
lib/gems/dm-types-0.9.9/lib/dm-types/regexp.rb

Constant Summary

Constants inherited from DataMapper::Type

DataMapper::Type::PROPERTY_OPTIONS, DataMapper::Type::PROPERTY_OPTION_ALIASES

Class Method Summary collapse

Methods inherited from DataMapper::Type

bind, configure, inherited, options, primitive

Class Method Details

.dump(value, property) ⇒ Object



10
11
12
13
# File 'lib/gems/dm-types-0.9.9/lib/dm-types/regexp.rb', line 10

def self.dump(value, property)
  return nil if value.nil?
  value.source
end

.load(value, property) ⇒ Object



6
7
8
# File 'lib/gems/dm-types-0.9.9/lib/dm-types/regexp.rb', line 6

def self.load(value, property)
  ::Regexp.new(value) unless value.nil?
end

.typecast(value, property) ⇒ Object



15
16
17
# File 'lib/gems/dm-types-0.9.9/lib/dm-types/regexp.rb', line 15

def self.typecast(value, property)
  value.kind_of?(::Regexp) ? value : load(value, property)
end