class Socialinvestigator::HammerOfTheGods

Public Instance Methods

hello( name ) click to toggle source
# File lib/socialinvestigator/cli.rb, line 22
def hello( name )
  greeting = "Hello, #{name}"
  greeting.upcase! if options[:upcase]
  puts greeting
end