Sha256: 352e32f5deb921f425f4569cc55d113c6bfbbbc3f2c6e82bb735976c2ffd95c3
Contents?: true
Size: 558 Bytes
Versions: 1194
Compression:
Stored size: 558 Bytes
Contents
# frozen_string_literal: true module Playbook module PbPersonContact class PersonContact < Playbook::KitBase prop :contacts, type: Playbook::Props::HashArray, default: [] prop :first_name prop :last_name def wrong_contacts contacts.select { |contact| contact[:contact_type] == "wrong-phone" } end def valid_contacts contacts.reject { |contact| contact[:contact_type] == "wrong-phone" } end def classname generate_classname("pb_person_contact_kit") end end end end
Version data entries
1,194 entries across 1,194 versions & 1 rubygems