Class: Cowsapi::DefaultCow

Inherits:
Object
  • Object
show all
Defined in:
lib/cowsapi/cow.rb

Instance Method Summary collapse

Instance Method Details

#nameObject



38
39
40
# File 'lib/cowsapi/cow.rb', line 38

def name
  'cow'
end

#say(string) ⇒ Object



42
43
44
# File 'lib/cowsapi/cow.rb', line 42

def say(string)
  `cowsay #{Shellwords.escape(string)}`
end