lib/firstGem.rb in firstGem-0.0.2 vs lib/firstGem.rb in firstGem-0.0.3
- old
+ new
@@ -1,7 +1,11 @@
require "firstGem/version"
module FirstGem
- def self.print_hello
- puts "hello"
+ module ClassMethods
+
+ def self.print_hello
+ puts "hello"
+ end
+
end
end