Class: Parametric::Policies::Format

Inherits:
Object
  • Object
show all
Defined in:
lib/parametric/policies.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(fmt, msg = "invalid format") ⇒ Format

Returns a new instance of Format.



6
7
8
9
# File 'lib/parametric/policies.rb', line 6

def initialize(fmt, msg = "invalid format")
  @message = msg
  @fmt = fmt
end

Instance Attribute Details

#messageObject (readonly)

Returns the value of attribute message.



4
5
6
# File 'lib/parametric/policies.rb', line 4

def message
  @message
end

Instance Method Details

#coerce(value, key, context) ⇒ Object



15
16
17
# File 'lib/parametric/policies.rb', line 15

def coerce(value, key, context)
  value
end

#eligible?(value, key, payload) ⇒ Boolean

Returns:

  • (Boolean)


11
12
13
# File 'lib/parametric/policies.rb', line 11

def eligible?(value, key, payload)
  payload.key?(key)
end

#meta_dataObject



23
24
25
# File 'lib/parametric/policies.rb', line 23

def 
  {}
end

#valid?(value, key, payload) ⇒ Boolean

Returns:

  • (Boolean)


19
20
21
# File 'lib/parametric/policies.rb', line 19

def valid?(value, key, payload)
  !payload.key?(key) || !!(value.to_s =~ @fmt)
end