Class: Babushka::Cmdline::Helpers
Class Method Summary
collapse
Methods included from LogHelpers
debug, deprecated!, log, log_block, log_error, log_ok, log_stderr, log_warn, removed!
Class Method Details
.generate_list_for(to_list, filter_str) ⇒ Object
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
# File 'lib/babushka/cmdline/helpers.rb', line 56
def self.generate_list_for to_list, filter_str
context = to_list == :deps ? Base.program_name : ':template =>'
match_str = filter_str.downcase
Base.sources.all_present.each {|source|
source.load!
}.map {|source|
[source, source.send(to_list).items]
}.map {|(source,items)|
if match_str.nil? || source.name.downcase[match_str]
[source, items]
else
[source, items.select {|item| item.name.downcase[match_str] }]
end
}.select {|(_,items)|
!items.empty?
}.sort_by {|(source,_)|
source.name
}.each {|(source,items)|
indent = (items.map {|item| "#{source.name}:#{item.name}".length }.max || 0) + 3
log ""
log "# #{source.name} (#{source.type})#{" - #{source.uri}" unless source.implicit?}"
log "# #{items.length} #{to_list.to_s.chomp(items.length == 1 ? 's' : '')}#{" matching '#{filter_str}'" unless filter_str.nil?}:"
items.each {|dep|
log "#{context} #{"'#{source.name}:#{dep.name}'".ljust(indent)}"
}
}
end
|
.github_autosource_regex ⇒ Object
52
53
54
|
# File 'lib/babushka/cmdline/helpers.rb', line 52
def self.github_autosource_regex
/^\w+\:\/\/github\.com\/(.*)\/babushka-deps(\.git)?/
end
|
.print_examples ⇒ Object
34
35
36
37
38
39
40
41
42
43
44
45
|
# File 'lib/babushka/cmdline/helpers.rb', line 34
def self.print_examples
log "\nExamples:"
log " # Inspect the 'system' dep (and all its sub-deps) without touching the system.".colorize('grey')
log " #{Base.program_name} system --dry-run"
log "\n"
log " # Meet the 'fish' dep (i.e. install fish and all its dependencies).".colorize('grey')
log " #{Base.program_name} fish"
log "\n"
log " # Meet the 'user setup' dep, printing lots of debugging (including realtime".colorize('grey')
log " # shell command output).".colorize('grey')
log " #{Base.program_name} 'user setup' --debug"
end
|
.print_handlers ⇒ Object
27
28
29
30
31
32
|
# File 'lib/babushka/cmdline/helpers.rb', line 27
def self.print_handlers
log "\nCommands:"
Handler.all.each {|handler|
log " #{handler.name.ljust(10)} #{handler.description}"
}
end
|
.print_notes ⇒ Object
47
48
49
50
|
# File 'lib/babushka/cmdline/helpers.rb', line 47
def self.print_notes
log "\nCommands can be abbrev'ed, as long as they remain unique."
log " e.g. '#{Base.program_name} l' is short for '#{Base.program_name} list'."
end
|
.print_usage ⇒ Object
18
19
20
21
22
23
24
25
|
# File 'lib/babushka/cmdline/helpers.rb', line 18
def self.print_usage
log "\nThe gist:"
log " #{Base.program_name} <command> [options]"
log "\nAlso:"
log " #{Base.program_name} help <command> # Print command-specific usage info"
log " #{Base.program_name} <dep name> # A shortcut for 'babushka meet <dep name>'"
log " #{Base.program_name} babushka # Update babushka itself (what babushka.me/up does)"
end
|
.print_version(opts = {}) ⇒ Object
8
9
10
11
12
13
14
15
16
|
# File 'lib/babushka/cmdline/helpers.rb', line 8
def self.print_version opts = {}
if opts[:full]
log "Babushka v#{VERSION} (#{Base.ref}), (c) Ben Hoskings <[email protected]>"
elsif Base.ref
log "#{VERSION} (#{Base.ref})"
else
log "#{VERSION}"
end
end
|