module Centuria

this file is managing gem version

Public Class Methods

add(a, b) click to toggle source
# File lib/centuria.rb, line 14
def self.add(a, b)
  "#{a + b}"
end
gem_version() click to toggle source
# File lib/centuria/gem_version.rb, line 5
def self.gem_version
  Gem::Version.new VERSION::STRING
end
greet(word) click to toggle source
# File lib/centuria.rb, line 10
def self.greet(word)
  "Hi!, #{word}"
end
logging() click to toggle source
# File lib/centuria.rb, line 18
def self.logging
  "[LOG]: this is logs"
end
version() click to toggle source
# File lib/centuria/version.rb, line 4
def self.version
  VERSION::STRING
end