class Faker::Hacker

Public Class Methods

abbreviation() click to toggle source
# File lib/faker/hacker.rb, line 11
def abbreviation
  fetch('hacker.abbreviation')
end
adjective() click to toggle source
# File lib/faker/hacker.rb, line 15
def adjective
  fetch('hacker.adjective')
end
ingverb() click to toggle source
# File lib/faker/hacker.rb, line 27
def ingverb
  fetch('hacker.ingverb')
end
noun() click to toggle source
# File lib/faker/hacker.rb, line 19
def noun
  fetch('hacker.noun')
end
phrases() click to toggle source
# File lib/faker/hacker.rb, line 31
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_smart() click to toggle source
# File lib/faker/hacker.rb, line 7
def say_something_smart
  sample(phrases)
end
verb() click to toggle source
# File lib/faker/hacker.rb, line 23
def verb
  fetch('hacker.verb')
end