Sha256: 689a1c14d0cc22784a47f522919f0efe7155d2d7a04e541c704ab7ad582155e7

Contents?: true

Size: 1.01 KB

Versions: 7

Compression:

Stored size: 1.01 KB

Contents

module LeapCli; module Commands

  extend self
  extend LeapCli::Util
  extend LeapCli::Util::RemoteCommand

  def path(name)
    Path.named_path(name)
  end

  #
  # keeps prompting the user for a numbered choice, until they pick a good one or bail out.
  #
  # block is yielded and is responsible for rendering the choices.
  #
  def numbered_choice_menu(msg, items, &block)
    while true
      say("\n" + msg + ':')
      items.each_with_index &block
      say("q. quit")
      index = ask("number 1-#{items.length}> ")
      if index.empty?
        next
      elsif index =~ /q/
        bail!
      else
        i = index.to_i - 1
        if i < 0 || i >= items.length
          bail!
        else
          return i
        end
      end
    end
  end


  def parse_node_list(nodes)
    if nodes.is_a? Config::Object
      Config::ObjectList.new(nodes)
    elsif nodes.is_a? Config::ObjectList
      nodes
    elsif nodes.is_a? String
      manager.filter!(nodes)
    else
      bail! "argument error"
    end
  end

end; end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
leap_cli-1.7.4 lib/leap_cli/commands/util.rb
leap_cli-1.7.3 lib/leap_cli/commands/util.rb
leap_cli-1.6.2 lib/leap_cli/commands/util.rb
leap_cli-1.5.6 lib/leap_cli/commands/util.rb
leap_cli-1.5.1 lib/leap_cli/commands/util.rb
leap_cli-1.5.0 lib/leap_cli/commands/util.rb
leap_cli-1.2.5 lib/leap_cli/commands/util.rb