class PseudoEntity::Randoms::RandomCreditUnionNames

Public Class Methods

new(credit_union_prefixes) click to toggle source

CREDIT_UNION_PREFIXES.combination(2).map { |x| (x << “Credit Union”).join(‘ ’) }

Calls superclass method
# File lib/pseudo_entity/randoms.rb, line 773
def initialize(credit_union_prefixes)
  super(credit_union_prefixes, 2)
end

Public Instance Methods

fetch(x) click to toggle source
Calls superclass method
# File lib/pseudo_entity/randoms.rb, line 777
def fetch(x)
  (super(x) << "Credit Union").join(' ')
end