module Hello::Rubygems
Constants
- VERSION
Public Class Methods
normal()
click to toggle source
@return “Hello, world”
# File lib/hello/rubygems.rb, line 11 def normal "hello, world" end
param(text = "Ruby")
click to toggle source
@return “Hello, [input]”
# File lib/hello/rubygems.rb, line 21 def param text = "Ruby" "Hello, #{text}" end
rubygems()
click to toggle source
@return “Hello, Rubygems
!”
# File lib/hello/rubygems.rb, line 16 def rubygems "Hello, Rubygems!" end