module SampleGem::Core

Constants

VERSION

Public Class Methods

init(options = {}) click to toggle source

Your code goes here…

# File lib/sample-gem.rb, line 4
def self.init(options = {})
  x = "Init complete"
  puts x if !options[:quiet]
  x
end