module Faker::Company

Constants

POSITIONS
POSITION_PREFIXES
SUFFIXES

Public Instance Methods

bs() click to toggle source

When a straight answer won’t do, BS to the rescue! Wordlist from dack.com/web/bullshit.html

# File lib/ffakerer/company.rb, line 28
def bs
  "#{BS_PRE.rand} #{BS_MID.rand} #{BS_POS.rand}"
end
catch_phrase() click to toggle source

Generate a buzzword-laden catch phrase. Wordlist from www.1728.com/buzzword.htm

# File lib/ffakerer/company.rb, line 22
def catch_phrase
  "#{CATCH_PRE.rand} #{CATCH_MID.rand} #{CATCH_POS.rand}"
end
name() click to toggle source
# File lib/ffakerer/company.rb, line 8
def name
  case rand(3)
  when 0 then "#{Name.last_name} #{suffix}"
  when 1 then "#{Name.last_name}-#{Name.last_name}"
  when 2 then "%s, %s and %s" % [ Name.last_name, Name.last_name, Name.last_name ]
  end
end
position() click to toggle source
# File lib/ffakerer/company.rb, line 32
def position
  case rand(3)
  when 0 then [POSITION_PREFIXES.rand, POSITIONS.rand]
  when 1 then [POSITION_AREAS.rand, POSITIONS.rand]
  when 2 then [POSITION_PREFIXES.rand, POSITION_AREAS.rand, POSITIONS.rand]
  end.join(' ')
end
suffix() click to toggle source
# File lib/ffakerer/company.rb, line 16
def suffix
  SUFFIXES.rand
end