Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 927 Bytes

commerce.md

File metadata and controls

32 lines (23 loc) · 927 Bytes

Faker::Commerce

Faker::Commerce.color #=> "lavender"

# Keyword arguments: max, fixed_amount
Faker::Commerce.department #=> "Grocery, Health & Beauty"
Faker::Commerce.department(max: 5) #=> "Grocery, Books, Health & Beauty"
Faker::Commerce.department(max: 2, fixed_amount: true) #=> "Books & Tools"

Faker::Commerce.material #=> "Steel"

Faker::Commerce.product_name #=> "Practical Granite Shirt"

# Produces a Float by default
# Keyword arguments: range, as_string
Faker::Commerce.price #=> 44.6
Faker::Commerce.price(range: 0..10.0, as_string: true) #=> "2.18"

# Generate a random promotion code.
# Keyword arguments: digits
Faker::Commerce.promotion_code #=> "AmazingDeal829102"
Faker::Commerce.promotion_code(digits: 2) #=> "AmazingPrice57"

Faker::Commerce.material #=> "Plastic"

# Generate a random brand
Faker::Commerce.brand #=> "Apple"

# Generate a random vendor
Faker::Commerce.vendor #=> "Walmart"