Class: Babushka::PacmanHelper
Class Method Summary (collapse)
-
+ (Object) manager_key
The name of the binary itself How packages should be specified in deps, e.g.
- + (Object) pkg_binary
-
+ (Object) pkg_cmd
The full command to run the package manager.
-
+ (Object) pkg_type
a description of the type of package, that makes sense in the context of, e.g.
Methods inherited from PkgHelper
all_manager_keys, bin_path, cmd_in_path?, cmdline_spec_for, has?, install!, manager_dep, pkg_update_command, pkg_update_timeout, prefix, present?, should_sudo?, update_pkg_lists, update_pkg_lists_if_required
Methods included from VersionOf::Helpers
Methods included from ShellHelpers
#cmd_dir, #failable_shell, #log_shell, #login_shell, #raw_shell, #shell, #shell!, #shell?, #sudo, #which
Methods included from LogHelpers
#debug, #log, #log_block, #log_error, #log_ok, #log_verbose, #log_warn
Class Method Details
+ (Object) manager_key
The name of the binary itself How packages should be specified in deps, e.g. "via :apt, 'zsh'"
7 |
# File 'lib/babushka/pkg_helpers/pacman_helper.rb', line 7 def manager_key; :pacman end |
+ (Object) pkg_binary
6 |
# File 'lib/babushka/pkg_helpers/pacman_helper.rb', line 6 def pkg_binary; "pacman" end |
+ (Object) pkg_cmd
The full command to run the package manager
5 |
# File 'lib/babushka/pkg_helpers/pacman_helper.rb', line 5 def pkg_cmd; "#{pkg_binary}" end |
+ (Object) pkg_type
a description of the type of package, that makes sense in the context of, e.g. "the zsh deb"
4 |
# File 'lib/babushka/pkg_helpers/pacman_helper.rb', line 4 def pkg_type; :package end |