class Bake::Command::Top
The top level command line application.
Public Instance Methods
Source
# File vendor/bundle/ruby/3.4.0/gems/bake-0.23.1/lib/bake/command/top.rb, line 49 def bakefile_path @options[:bakefile] || Dir.pwd end
Source
# File vendor/bundle/ruby/3.4.0/gems/bake-0.23.1/lib/bake/command/top.rb, line 57 def call if @options[:help] self.print_usage else @command.call end end
Source
# File vendor/bundle/ruby/3.4.0/gems/bake-0.23.1/lib/bake/command/top.rb, line 53 def context Context.load(self.bakefile_path) end
Source
# File vendor/bundle/ruby/3.4.0/gems/bake-0.23.1/lib/bake/command/top.rb, line 32 def terminal(output = self.output) terminal = Console::Terminal.for(output) terminal[:context] = terminal[:loader] = terminal.style(nil, nil, :bold) terminal[:command] = terminal.style(nil, nil, :bold) terminal[:description] = terminal.style(:blue) terminal[:key] = terminal[:opt] = terminal.style(:green) terminal[:req] = terminal.style(:red) terminal[:keyreq] = terminal.style(:red, nil, :bold) terminal[:keyrest] = terminal.style(:green) terminal[:parameter] = terminal[:opt] return terminal end