Sha256: 70f399ae648746d307cdf66256009314ff08f971a6a056c43c7d1854e63605f7

Contents?: true

Size: 371 Bytes

Versions: 4

Compression:

Stored size: 371 Bytes

Contents

$LOAD_PATH << File.expand_path("./centuria", __dir__)

require "centuria/version"
require "generator/commands"
require "generator/gene_base"

module Centuria
  class Error < StandardError; end
    
    def self.greet(word)
      "Hi!, #{word}"
    end
    
    def self.add(a, b)
      "#{a + b}"
    end
    
    def self.logging
      "[LOG]: this is logs"
    end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
centuria-0.2.3 lib/centuria.rb
centuria-0.2.2 lib/centuria.rb
centuria-0.2.1 lib/centuria.rb
centuria-0.2.0 lib/centuria.rb