class Faker::TvShows::Supernatural

Public Class Methods

character() click to toggle source

Produces the name of a character from Supernatural.

@return [String]

@example

Faker::TvShows::Supernatural.character #=> "Dean Winchester"

@faker.version next

# File lib/faker/tv_shows/supernatural.rb, line 16
def character
  fetch('supernatural.character')
end
creature() click to toggle source

Produces the name of a hunted creature.

@return [String]

@example

Faker::TvShows::Supernatural.creature #=> "Demon"

@faker.version next

# File lib/faker/tv_shows/supernatural.rb, line 29
def creature
  fetch('supernatural.creature')
end
weapon() click to toggle source

Produces the name of a weapon used by the hunters.

@return [String]

@example

Faker::TvShows::Supernatural.weapon #=> "Colt"

@faker.version next

# File lib/faker/tv_shows/supernatural.rb, line 42
def weapon
  fetch('supernatural.weapon')
end