class Gem_new::Translator
% cat lib/hola/translator.rb
Public Class Methods
new(language)
click to toggle source
# File lib/gem_new/translator.rb, line 3 def initialize(language) @language = language end
Public Instance Methods
hi()
click to toggle source
# File lib/gem_new/translator.rb, line 7 def hi case @language when "spanish" "hola mundo" else "hello world" end end