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 =
Raykit::Git::Directory.new(Rake.application.original_dir)
- 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
28
29
30
|
# File 'lib/raykit.rb', line 28
def run(command, quit_on_failure = true)
Raykit::TopLevel.run(command, quit_on_failure)
end
|
#show_value(name, value) ⇒ Object
36
37
38
|
# File 'lib/raykit.rb', line 36
def show_value(name,value)
Raykit::Log.show_value(name,value)
end
|
#start_task(task_name) ⇒ Object
32
33
34
|
# File 'lib/raykit.rb', line 32
def start_task(task_name)
Raykit::Log.start_task(task_name)
end
|