Sha256: 7dfe60102279c59dbf6e44b06ca604012c2b45ae78b907b24bdcc9a4b300092b
Contents?: true
Size: 652 Bytes
Versions: 37
Compression:
Stored size: 652 Bytes
Contents
# frozen_string_literal: true module Faker class Appliance < Base class << self ## # Produces the name of an appliance brand. # # @return [String] # # @example # Faker::Appliance.brand #=> "Bosch" # # @faker.version 1.9.0 def brand fetch('appliance.brand') end ## # Produces the name of a type of appliance equipment. # # @return [String] # # @example # Faker::Appliance.equipment #=> "Appliance plug" # # @faker.version 1.9.0 def equipment fetch('appliance.equipment') end end end end
Version data entries
37 entries across 37 versions & 2 rubygems