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

- old
+ new

@@ -1,8 +1,10 @@ require "hello_hayashi/version" module HelloHayashi class Error < StandardError; end - def greets - puts 'Hello, Hayashi!' + class Hayashi + def greets + puts 'Hello, Hayashi!' + end end end