Module: Boson::Commands::Core

Extended by:
Core
Included in:
Core
Defined in:
lib/boson/commands/core.rb

Overview

:nodoc:

Instance Method Summary collapse

Instance Method Details

#commands(options = {}) ⇒ Object



39
40
41
42
# File 'lib/boson/commands/core.rb', line 39

def commands(options={})
  cmds = options[:index] ? (Boson::Index.read || true) && Boson::Index.commands : Boson.commands
  options[:local] ? cmds.select {|e| e.library && e.library.local? } : cmds
end

#configObject



4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# File 'lib/boson/commands/core.rb', line 4

def config
  command_attributes = Boson::Command::ATTRIBUTES + [:usage, :full_name, :render_options]
  library_attributes = Boson::Library::ATTRIBUTES + [:library_type]

  commands = {
    'usage'=>{:desc=>"Print a command's usage", :options=>{
      :verbose=>{:desc=>"Display global options", :type=>:boolean},
      :render_options=>{:desc=>"Render options for option tables", :default=>{},
        :keys=>[:vertical, :fields, :hide_empty]} } },
    'commands'=>{
      :desc=>"List or search commands. Query must come before any options.", :default_option=>'query',
      :options=>{ :index=>{:type=>:boolean, :desc=>"Searches index"},
        :local=>{:type=>:boolean, :desc=>"Local commands only" } },
      :render_options=>{
        [:headers,:H]=>{:default=>{:desc=>'description'}},
        :query=>{:keys=>command_attributes, :default_keys=>'full_name'},
        :fields=>{:default=>[:full_name, :lib, :alias, :usage, :desc], :values=>command_attributes, :enum=>false},
        :filters=>{:default=>{:render_options=>:inspect, :options=>:inspect, :args=>:inspect, :config=>:inspect}}
      }
    },
    'libraries'=>{
      :desc=>"List or search libraries. Query must come before any options.", :default_option=>'query',
      :options=>{ :index=>{:type=>:boolean, :desc=>"Searches index"},
        :local=>{:type=>:boolean, :desc=>"Local libraries only" } },
      :render_options=>{
        :query=>{:keys=>library_attributes, :default_keys=>'name'},
        :fields=>{:default=>[:name, :commands, :gems, :library_type], :values=>library_attributes, :enum=>false},
        :filters=>{:default=>{:gems=>[:join, ','],:commands=>:size}, :desc=>"Filters to apply to library fields" }}
    },
    'load_library'=>{:desc=>"Load a library", :options=>{[:verbose,:V]=>true}}
  }

  {:namespace=>false, :library_file=>File.expand_path(__FILE__), :commands=>commands}
end

#libraries(options = {}) ⇒ Object



44
45
46
47
# File 'lib/boson/commands/core.rb', line 44

def libraries(options={})
  libs = options[:index] ? (Boson::Index.read || true) && Boson::Index.libraries : Boson.libraries
  options[:local] ? libs.select {|e| e.local? } : libs
end

#load_library(library, options = {}) ⇒ Object



49
50
51
# File 'lib/boson/commands/core.rb', line 49

def load_library(library, options={})
  Boson::Manager.load(library, options)
end

#usage(command, options = {}) ⇒ Object



53
54
55
56
57
58
59
60
61
62
63
64
65
66
# File 'lib/boson/commands/core.rb', line 53

def usage(command, options={})
  puts Boson::Command.usage(command)

  if (cmd = Boson::Command.find(command))
    if cmd.options && !cmd.options.empty?
      puts "\nLOCAL OPTIONS"
      cmd.option_parser.print_usage_table options[:render_options].dup.merge(:local=>true)
    end
    if options[:verbose] && cmd.render_option_parser
      puts "\nGLOBAL OPTIONS"
      cmd.render_option_parser.print_usage_table options[:render_options].dup
    end
  end
end