NAME
Faker::Provider::en_US::Company - Faker Localized en_US Company Provider
VERSION
version 0.11
SYNOPSIS
use Faker;
use Faker::Provider::en_US::Company;
my $faker = Faker->new(locale => 'en_US');
my $company = Faker::Provider::en_US::Company->new(factory => $faker);
say $company->tagline;
DESCRIPTION
Faker::Provider::en_US::Company is a Faker provider localized under en_US, which provides fake company data. Faker::Provider::en_US::Company inherits all attributes and methods from Faker::Provider::Company and implements the following new ones. Note: This is an early release available for testing and feedback and as such is subject to change.
METHODS
buzzword_type1
$address->buzzword_type1;
# leverage
# utilize
# deliver
The buzzword_type1 method generates a random business-related verb, common in the en_US locale.
buzzword_type2
$address->buzzword_type2;
# frictionless
# back-end
# next-generation
The buzzword_type2 method generates a random business-related adjective, common in the en_US locale.
buzzword_type3
$address->buzzword_type3;
# architectures
# applications
# networks
The buzzword_type3 method generates a random business-related noun, common in the en_US locale.
description
$address->description;
# Offering tangible Inverse adapter
# Excels at clear-thinking Cross-group middleware
# Offering transitional Advanced help-desk
The description method generates a random company description based on buzzwords, common in the en_US locale.
jargon_buzz_word
$address->jargon_buzz_word;
# synergy
# ability
# focusgroup
The jargon_buzz_word method generates a random business-related buzzword, common in the en_US locale.
jargon_edge_word
$address->jargon_edge_word;
# Function-based
# Triple-buffered
# Future-proofed
The jargon_edge_word method generates a random business-related marketing jargon, common in the en_US locale.
jargon_prop_word
$address->jargon_prop_word;
# explicit
# 3rdgeneration
# mobile
The jargon_prop_word method generates random business-related proposition, common in the en_US locale.
tagline
$address->tagline;
# e-tailers robust incubate
# mindshare global transition
# paradigms visionary e-enable
The tagline method generates a random ficticious nonsense business-related tagline, common in the en_US locale.
AUTHOR
Al Newkirk <anewkirk@ana.io>
COPYRIGHT AND LICENSE
This software is copyright (c) 2014 by Al Newkirk.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.