lib/stanwood.rb in stanwood-0.1.0 vs lib/stanwood.rb in stanwood-0.1.1

- old
+ new

@@ -1,23 +1,7 @@ require "stanwood/version" module Stanwood - def self.hi - puts "Testing stanwood gem" + def self.hi(name) + puts "Testing stanwood gem" + name end end - -# -# class Stanwood::Translator -# def initialize(language) -# @language = language -# end -# -# def hi -# case @language -# when "spanish" -# "hola mundo" -# else -# "hello world" -# end -# end -# end