Method: Pairer::Config.hash_id_salt=

Defined in:
lib/pairer/config.rb

.hash_id_salt=(val) ⇒ Object



18
19
20
21
22
23
24
# File 'lib/pairer/config.rb', line 18

def self.hash_id_salt=(val)
  if val.is_a?(String)
    @@hash_id_salt = val
  else
    raise ArgumentError.new("hash_id_salt must be String")
  end
end