class Faker::Movies::Hackers

Public Class Methods

character() click to toggle source

Produces a real character name from Hackers.

@return [String]

@example

Faker::Movies::Hackers.character #=> "Dade Murphy"

@faker.version next

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

Produces a character hacker “handle” from Hackers.

@return [String]

@example

Faker::Movies::Hackers.handle #=> "Zero Cool"

@faker.version next

# File lib/faker/movies/hackers.rb, line 29
def handle
  fetch('hackers.handles')
end
quote() click to toggle source

Produces a quote from Hackers.

@return [String]

@example

Faker::Movies::Hackers.quote #=> "Hack the Planet!"

@faker.version next

# File lib/faker/movies/hackers.rb, line 42
def quote
  fetch('hackers.quotes')
end