Module: FFaker::CompanyIT
Constant Summary
collapse
- PREFIXES =
['Studio Legale', 'Studio Tecnico', 'Laboratorio'].freeze
- SUFFIXES =
%w(S.p.a. s.r.l. s.n.c. Avvocati Architetti Ingegneri).freeze
Instance Method Summary
collapse
const_missing, k, underscore
#fetch_sample, #rand, #shuffle
Instance Method Details
#name ⇒ Object
11
12
13
14
15
16
17
|
# File 'lib/ffaker/company_it.rb', line 11
def name
case rand(2)
when 0 then "#{NameIT.last_name} #{suffix}"
when 1 then "#{NameIT.last_name} e #{NameIT.last_name} #{suffix}"
when 2 then "#{prefix} #{NameIT.last_name}"
end
end
|
#prefix ⇒ Object
23
24
25
|
# File 'lib/ffaker/company_it.rb', line 23
def prefix
fetch_sample(PREFIXES)
end
|
#suffix ⇒ Object
19
20
21
|
# File 'lib/ffaker/company_it.rb', line 19
def suffix
fetch_sample(SUFFIXES)
end
|