Module: MiscHelper

Defined in:
app/helpers/misc_helper.rb

Instance Method Summary collapse

Instance Method Details

#help_sloganObject



3
4
5
6
7
8
9
10
11
12
13
# File 'app/helpers/misc_helper.rb', line 3

def help_slogan
  slogans =
    [
     "Help?  We don't NEED no steenkin' help!",
     "Help serves only to coddle the weak!",
     "Help is only for the weak and timid.",
     "You want HELP?  You can't handle the HELP!",
     "Move along now.  This is not the help that you are searching for.",
    ]
  slogans[rand(slogans.size)]
end