Class: SimplestGem

Inherits:
Object
  • Object
show all
Defined in:
lib/simplest-gem.rb

Overview

Some comments…

Class Method Summary collapse

Class Method Details

.hiObject

main method



6
7
8
# File 'lib/simplest-gem.rb', line 6

def self.hi
  p 'hi, it is simplest gem'
end

.rand(*args) ⇒ Object



9
10
11
# File 'lib/simplest-gem.rb', line 9

def self.rand *args
  Random.rand *args
end