class Faker::Book

def author

Returns:
  • (String) -
def author
  parse('book.author')
end

def genre

Returns:
  • (String) -
def genre
  fetch('book.genre')
end

def publisher

Returns:
  • (String) -
def publisher
  fetch('book.publisher')
end

def title

Returns:
  • (String) -
def title
  fetch('book.title')
end