Class: SimplestGem
- Inherits:
-
Object
- Object
- SimplestGem
- Defined in:
- lib/simplest-gem.rb
Overview
Some comments…
Class Method Summary collapse
-
.hi ⇒ Object
main method.
- .rand(*args) ⇒ Object
Class Method Details
.hi ⇒ Object
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 |