Class: FactoryHelper::Hacker
- Inherits:
-
Base
- Object
- Base
- FactoryHelper::Hacker
show all
- Defined in:
- lib/factory-helper/hacker.rb
Constant Summary
Constants inherited
from Base
Base::Letters, Base::Numbers, Base::ULetters
Class Method Summary
collapse
Methods inherited from Base
bothify, fetch, flexible, letterify, method_missing, numerify, parse, rand_in_range, regexify, translate
Class Method Details
.abbreviation ⇒ Object
12
|
# File 'lib/factory-helper/hacker.rb', line 12
def abbreviation; fetch('hacker.abbreviation'); end
|
.adjective ⇒ Object
13
|
# File 'lib/factory-helper/hacker.rb', line 13
def adjective; fetch('hacker.adjective'); end
|
.ingverb ⇒ Object
16
|
# File 'lib/factory-helper/hacker.rb', line 16
def ingverb; fetch('hacker.ingverb'); end
|
.noun ⇒ Object
14
|
# File 'lib/factory-helper/hacker.rb', line 14
def noun; fetch('hacker.noun'); end
|
.phrases ⇒ Object
18
19
20
21
22
23
24
25
26
27
28
|
# File 'lib/factory-helper/hacker.rb', line 18
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}!",
"I'll #{verb} the #{adjective} #{abbreviation} #{noun}, that should #{noun} the #{abbreviation} #{noun}!"
]
end
|
.say_something_smart ⇒ Object
8
9
10
|
# File 'lib/factory-helper/hacker.rb', line 8
def say_something_smart
phrases.sample(:random => FactoryHelper::Config.random)
end
|
.verb ⇒ Object
15
|
# File 'lib/factory-helper/hacker.rb', line 15
def verb; fetch('hacker.verb'); end
|