Class: Faker::Hacker

Inherits:
Base
  • Object
show all
Defined in:
lib/faker/default/hacker.rb

Constant Summary

Constants inherited from Base

Base::Letters, Base::Numbers, Base::ULetters

Class Method Summary collapse

Methods inherited from Base

bothify, disable_enforce_available_locales, fetch, fetch_all, flexible, letterify, method_missing, numerify, parse, rand, rand_in_range, regexify, resolve, respond_to_missing?, sample, shuffle, translate, unique, with_locale

Class Method Details

.abbreviationObject



13
14
15
# File 'lib/faker/default/hacker.rb', line 13

def abbreviation
  fetch('hacker.abbreviation')
end

.adjectiveObject



17
18
19
# File 'lib/faker/default/hacker.rb', line 17

def adjective
  fetch('hacker.adjective')
end

.ingverbObject



29
30
31
# File 'lib/faker/default/hacker.rb', line 29

def ingverb
  fetch('hacker.ingverb')
end

.nounObject



21
22
23
# File 'lib/faker/default/hacker.rb', line 21

def noun
  fetch('hacker.noun')
end

.phrasesObject



33
34
35
36
37
38
39
40
41
42
# File 'lib/faker/default/hacker.rb', line 33

def phrases
  ["If we #{verb} the #{noun}, we can get to the #{abbreviation} #{noun} through the #{adjective} #{abbreviation} #{noun}!",
   "We need to #{verb} the #{adjective} #{abbreviation} #{noun}!",
   "Try to #{verb} the #{abbreviation} #{noun}, maybe it will #{verb} the #{adjective} #{noun}!",
   "You can't #{verb} the #{noun} without #{ingverb} the #{adjective} #{abbreviation} #{noun}!",
   "Use the #{adjective} #{abbreviation} #{noun}, then you can #{verb} the #{adjective} #{noun}!",
   "The #{abbreviation} #{noun} is down, #{verb} the #{adjective} #{noun} so we can #{verb} the #{abbreviation} #{noun}!",
   "#{ingverb} the #{noun} won't do anything, we need to #{verb} the #{adjective} #{abbreviation} #{noun}!".capitalize,
   "I'll #{verb} the #{adjective} #{abbreviation} #{noun}, that should #{noun} the #{abbreviation} #{noun}!"]
end

.say_something_smartObject



9
10
11
# File 'lib/faker/default/hacker.rb', line 9

def say_something_smart
  sample(phrases)
end

.verbObject



25
26
27
# File 'lib/faker/default/hacker.rb', line 25

def verb
  fetch('hacker.verb')
end