class SimplestGem

Some comments…

Public Class Methods

hi() click to toggle source

main method

# File lib/simplest-gem.rb, line 6
def self.hi
  p 'hi, it is simplest gem'
end
rand(*args) click to toggle source
# File lib/simplest-gem.rb, line 9
def self.rand *args
  Random.rand *args
end