Sha256: 1a3cf1a3bfdb1d3da0641eb6ebd633308b2bdeca2acac6d31c404413c5427a6a

Contents?: true

Size: 1.67 KB

Versions: 25

Compression:

Stored size: 1.67 KB

Contents

#!/usr/bin/env ruby

require "rubygems"
require "highline/import"

# The old way, using ask() and say()...
choices = %w{ruby python perl}
say("This is the old way using ask() and say()...")
say("Please choose your favorite programming language:")
say(choices.map { |c| "  #{c}\n" }.join)

case ask("?  ", choices)
when "ruby"
  say("Good choice!")
else
  say("Not from around here, are you?")
end

# The new and improved choose()...
say("\nThis is the new mode (default)...")
choose do |menu|
  menu.prompt = "Please choose your favorite programming language?  "

  menu.choice :ruby do say("Good choice!") end
  menu.choices(:python, :perl) do say("Not from around here, are you?") end
end

say("\nThis is letter indexing...")
choose do |menu|
  menu.index        = :letter
  menu.index_suffix = ") "

  menu.prompt = "Please choose your favorite programming language?  "

  menu.choice :ruby do say("Good choice!") end
  menu.choices(:python, :perl) do say("Not from around here, are you?") end
end

say("\nThis is with a different layout...")
choose do |menu|
  menu.layout = :one_line

  menu.header = "Languages"
  menu.prompt = "Favorite?  "

  menu.choice :ruby do say("Good choice!") end
  menu.choices(:python, :perl) do say("Not from around here, are you?") end
end

say("\nYou can even build shells...")
loop do
  choose do |menu|
    menu.layout = :menu_only
  
    menu.shell  = true
  
    menu.choice(:load, "Load a file.") do |command, details|
      say("Loading file with options:  #{details}...")
    end
    menu.choice(:save, "Save a file.") do |command, details|
      say("Saving file with options:  #{details}...")
    end
    menu.choice(:quit, "Exit program.") { exit }
  end
end

Version data entries

25 entries across 17 versions & 3 rubygems

Version Path
challah-1.0.0.beta vendor/bundle/gems/highline-1.6.15/examples/menus.rb
challah-0.9.1.beta.3 vendor/bundle/gems/highline-1.6.15/examples/menus.rb
challah-0.9.1.beta vendor/bundle/gems/highline-1.6.15/examples/menus.rb
challah-0.9.0 vendor/bundle/gems/highline-1.6.15/examples/menus.rb
challah-rolls-0.2.0 vendor/bundle/gems/highline-1.6.15/examples/menus.rb
challah-rolls-0.2.0 vendor/bundle/gems/challah-0.8.0.pre/vendor/bundle/gems/highline-1.6.13/examples/menus.rb
challah-rolls-0.2.0 vendor/bundle/gems/challah-0.8.3/vendor/bundle/gems/highline-1.6.14/examples/menus.rb
challah-rolls-0.2.0 vendor/bundle/gems/challah-0.8.3/vendor/bundle/gems/highline-1.6.15/examples/menus.rb
challah-rolls-0.2.0 vendor/bundle/gems/highline-1.6.13/examples/menus.rb
challah-rolls-0.2.0 vendor/bundle/gems/highline-1.6.14/examples/menus.rb
challah-0.8.3 vendor/bundle/gems/highline-1.6.14/examples/menus.rb
challah-0.8.3 vendor/bundle/gems/highline-1.6.15/examples/menus.rb
challah-0.8.1 vendor/bundle/gems/highline-1.6.14/examples/menus.rb
highline-1.6.15 examples/menus.rb
challah-rolls-0.1.0 vendor/bundle/gems/highline-1.6.13/examples/menus.rb
challah-rolls-0.1.0 vendor/bundle/gems/highline-1.6.14/examples/menus.rb
challah-rolls-0.1.0 vendor/bundle/gems/challah-0.8.0.pre/vendor/bundle/gems/highline-1.6.13/examples/menus.rb
challah-0.8.0.pre vendor/bundle/gems/highline-1.6.13/examples/menus.rb
challah-0.7.1 vendor/bundle/gems/highline-1.6.13/examples/menus.rb
highline-1.6.14 examples/menus.rb