class Faker::Quotes::Shakespeare

def as_you_like_it

def as_you_like_it
  fetch('shakespeare.as_you_like_it')
end

def as_you_like_it_quote

def as_you_like_it_quote
  sample(as_you_like_it)
end

def hamlet

def hamlet
  fetch('shakespeare.hamlet')
end

def hamlet_quote

def hamlet_quote
  sample(hamlet)
end

def king_richard_iii

def king_richard_iii
  fetch('shakespeare.king_richard_iii')
end

def king_richard_iii_quote

def king_richard_iii_quote
  sample(king_richard_iii)
end

def romeo_and_juliet

def romeo_and_juliet
  fetch('shakespeare.romeo_and_juliet')
end

def romeo_and_juliet_quote

def romeo_and_juliet_quote
  sample(romeo_and_juliet)
end