Sha256: 0ebccce4cc8e5f1ad75b43773dab993d04158065ea2d04436671e32206fdb1c0

Contents?: true

Size: 264 Bytes

Versions: 1

Compression:

Stored size: 264 Bytes

Contents

# The main Hola driver
class Hola
  # Say hi!
  #
  # Example:
  #   >> Hola.hi("south")
  #   => howdy y'all
  #
  # Arguments:
  #   region: (String)

  def self.hi(area = 'northwest')
    region = Region.new(area)
    region.hi
  end
end

require 'hola/region'

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
hola_mschneider-0.0.2 lib/hola.rb