module Nucleus
Nucleus is a RESTful abstraction layer to achieve unified deployment and management functions of Platform-as-a-Service (PaaS) providers.
Constants
- VERSION
Public Class Methods
root()
click to toggle source
Return the project’s root directory. @return [Path] project’s root directory
# File lib/nucleus/root_dir.rb, line 4 def self.root File.join(__dir__, '..', '..') end
src()
click to toggle source
Return the project’s main source code directory ‘lib/nucleus”. @return [Path] project’s main source code directory
# File lib/nucleus/root_dir.rb, line 10 def self.src File.join(Nucleus.root, '/lib/nucleus') end