class Faker::Religion::Bible

Public Class Methods

character() click to toggle source

Returns a random bible character.

@return [String]

@example Faker::Religion::Bible.character #=> “Jesus”

@faker.version next

# File lib/faker/religion/bible.rb, line 18
def character
  fetch('bible.character')
end
location() click to toggle source

Returns a random location(city or town) from the bible

@return [String]

@example Faker::Religion::Bible.location #=> “Nasareth”

@faker.version next

# File lib/faker/religion/bible.rb, line 31
def location
  fetch('bible.location')
end
quote() click to toggle source

Returns a random quote from the location.

@return [String]

@example Faker::Religion::Bible.quote #=> “Seek first the kingdom of God ”

@faker.version next

# File lib/faker/religion/bible.rb, line 44
def quote
  fetch('bible.quote')
end