Top Level Namespace

Defined Under Namespace

Modules: Raykit Classes: Dir, String

Constant Summary collapse

PROJECT =
Raykit::Project.new
SECRETS =
Raykit::Secrets.new
REPOSITORIES =
Raykit::Git::Repositories.new("#{Raykit::Environment.get_dev_dir("log")}/Raykit.Git.Repositories.json")
GIT_DIRECTORY =

if Dir.exist?(“.git”)

Raykit::Git::Directory.new(Rake.application.original_dir)
RAYKIT_GLOBALS =
true
BUFFER_SIZE =
1024
LOG =
Raykit::Logging.new
RAKE_DIRECTORY =
Rake.application.original_dir

Instance Method Summary collapse

Instance Method Details

#run(command, quit_on_failure = true) ⇒ Object



29
30
31
# File 'lib/raykit.rb', line 29

def run(command, quit_on_failure = true)
  Raykit::TopLevel.run(command, quit_on_failure)
end

#show_value(name, value) ⇒ Object



37
38
39
# File 'lib/raykit.rb', line 37

def show_value(name, value)
  Raykit::Log.show_value(name, value)
end

#start_task(task_name) ⇒ Object



33
34
35
# File 'lib/raykit.rb', line 33

def start_task(task_name)
  Raykit::Log.start_task(task_name)
end