sunitparekh/data-anonymization

View on GitHub
lib/strategy/field/random_boolean.rb

Summary

Maintainability
A
0 mins
Test Coverage
module DataAnon
  module Strategy
    module Field


      class RandomBoolean

        BOOL_VALUES = [true,false]

        def anonymize field
           BOOL_VALUES.sample
        end

      end


    end
  end
end