Class: Faker::Company

Inherits:
Base
  • Object
show all
Defined in:
lib/faker/company.rb

Constant Summary

Constants inherited from Base

Base::Letters, Base::Numbers, Base::ULetters

Class Method Summary collapse

Methods inherited from Base

bothify, fetch, fetch_all, flexible, letterify, method_missing, numerify, parse, rand_in_range, regexify, translate, unique, with_locale

Class Method Details

.australian_business_numberObject



55
56
57
58
59
60
# File 'lib/faker/company.rb', line 55

def australian_business_number
  base = ('%09d' % rand(10 ** 9))
  abn = "00#{base}" 

  (99 - (abn_checksum(abn) % 89)).to_s + base
end

.bsObject

When a straight answer won’t do, BS to the rescue!



28
29
30
# File 'lib/faker/company.rb', line 28

def bs
  translate('faker.company.bs').collect {|list| list.sample }.join(' ')
end

.buzzwordObject



23
24
25
# File 'lib/faker/company.rb', line 23

def buzzword
  translate('faker.company.buzzwords').flatten.sample
end

.catch_phraseObject

Generate a buzzword-laden catch phrase.



19
20
21
# File 'lib/faker/company.rb', line 19

def catch_phrase
  translate('faker.company.buzzwords').collect {|list| list.sample }.join(' ')
end

.duns_numberObject



36
37
38
# File 'lib/faker/company.rb', line 36

def duns_number
  ('%09d' % rand(10 ** 9)).gsub(/(\d{2})(\d{3})(\d{4})/, '\\1-\\2-\\3')
end

.einObject



32
33
34
# File 'lib/faker/company.rb', line 32

def ein
  ('%09d' % rand(10 ** 9)).gsub(/(\d{2})(\d{7})/, '\\1-\\2')
end

.industryObject



14
15
16
# File 'lib/faker/company.rb', line 14

def industry
  fetch('company.industry')
end

.logoObject

Get a random company logo url in PNG format.



41
42
43
44
# File 'lib/faker/company.rb', line 41

def 
  rand_num = Random.rand(13) + 1
  "https://pigment.github.io/fake-logos/logos/medium/color/#{rand_num}.png"
end

.nameObject



6
7
8
# File 'lib/faker/company.rb', line 6

def name
  parse('company.name')
end

.professionObject



62
63
64
# File 'lib/faker/company.rb', line 62

def profession
  fetch('company.profession')
end

.suffixObject



10
11
12
# File 'lib/faker/company.rb', line 10

def suffix
  fetch('company.suffix')
end

.swedish_organisation_numberObject

Get a random Swedish organization number. See more here sv.wikipedia.org/wiki/Organisationsnummer



47
48
49
50
51
52
53
# File 'lib/faker/company.rb', line 47

def swedish_organisation_number
  # Valid leading digit: 1, 2, 3, 5, 6, 7, 8, 9
  # Valid third digit: >= 2
  # Last digit is a control digit
  base = [[1, 2, 3, 5, 6, 7, 8, 9].sample, (0..9).to_a.sample, (2..9).to_a.sample, ('%06d' % rand(10 ** 6))].join
  base + luhn_algorithm(base).to_s
end