Class: Souvlaki

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

Overview

The main Class driver

Defined Under Namespace

Classes: Translator

Class Method Summary collapse

Class Method Details

.say_in(language) ⇒ Object

Say the recipe!

Example:

>> Souvlaki.say_in("english")
=> display the recipe

Arguments:

language: (String)


11
12
13
14
# File 'lib/souvlaki.rb', line 11

def self.say_in(language)
  translator = Translator.new(language)
  translator.say_in
end