class Faker::Movies::VForVendetta

Public Class Methods

character() click to toggle source

Produces a character from V For Vendetta.

@return [String]

@example

Faker::Movies::VForVendetta.character #=> "V"

@faker.version 1.8.5

# File lib/faker/movies/v_for_vendetta.rb, line 16
def character
  fetch('v_for_vendetta.characters')
end
quote() click to toggle source

Produces a quote from V For Vendetta.

@return [String]

@example

Faker::Movies::VForVendetta.quote
  #=> "People should not be afraid of their governments. Governments should be afraid of their people."

@faker.version 1.8.5

# File lib/faker/movies/v_for_vendetta.rb, line 44
def quote
  fetch('v_for_vendetta.quotes')
end
speech() click to toggle source

Produces a speech from V For Vendetta.

@return [String]

@example

Faker::Movies::VForVendetta.speech
  #=> "Remember, remember, the Fifth of November, the Gunpowder Treason and Plot. I know of no reason why the Gunpowder Treason should ever be forgot..."

@faker.version 1.8.5

# File lib/faker/movies/v_for_vendetta.rb, line 30
def speech
  fetch('v_for_vendetta.speeches')
end