Sha256: af39600b67413b0abcbe43971b6f880de082897ea29b55afd4ac2872e834b7cc

Contents?: true

Size: 486 Bytes

Versions: 1

Compression:

Stored size: 486 Bytes

Contents

require "how_i_start/version"


# All code in the gem is namespaced under this module.
module HowIStart

	# The URL of the article about how I start.
  Url = "http://howistart.org/posts/ruby/1"

  # The main Hola driver
  class Hola
  	# Say hi to the world!
  	#
  	# Example:
  	# 	>> HowIStart::Hola.hi("chinese")
  	# 	=> 你好世界
  	def self.hi(language = "english")
  		translator = Translator.new(language)
  		translator.hi
  	end
  end
end

require "how_i_start/translator"

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
how_i_start-greyby-1.0.0 lib/how_i_start.rb