Trying to use the gem in a model with a BIC field called encrypted_BIC results in :
ArgumentError: Unknown validator: 'BicValidator'
after installing the gem and following the installations instructions.
the model has the following:
class ModelName < ActiveRecord::Base
...
validates :encrypted_BIC, bic: true
...
end
and when trying in the console to do:
ModelName.new
then get the above error.