1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
|
# frozen_string_literal: true
module Faker
class DcComics < Base
##
# Produces a hero name from DC Comics
#
# @return [String]
#
# @example
# Faker::DcComics.hero #=> "Batman"
#
# @faker.version 1.9.2
def self.hero
fetch('dc_comics.hero')
end
##
# Produces a heroine name from DC Comics
#
# @return [String]
#
# @example
# Faker::DcComics.heroine #=> "Supergirl"
#
# @faker.version 1.9.2
def self.heroine
fetch('dc_comics.heroine')
end
##
# Produces a villain name from DC Comics
#
# @return [String]
#
# @example
# Faker::DcComics.villain #=> "The Joker"
#
# @faker.version 1.9.2
def self.villain
fetch('dc_comics.villain')
end
##
# Produces a character name from DC Comics
#
# @return [String]
#
# @example
# Faker::DcComics.name #=> "Clark Kent"
#
# @faker.version 1.9.2
def self.name
fetch('dc_comics.name')
end
##
# Produces a comic book title from DC Comics
#
# @return [String]
#
# @example
# Faker::DcComics.title #=> "Batman: The Long Halloween"
#
# @faker.version 1.9.2
def self.title
fetch('dc_comics.title')
end
end
end
|