Sha256: 053995cba81c01427ef0349f6fcca24fb3cf04d9d98f26ba6b9b328eae26b0aa

Contents?: true

Size: 318 Bytes

Versions: 7

Compression:

Stored size: 318 Bytes

Contents

require 'menuboy'

include Menuboy::DSL

mainmenu "Main Menu" do
  option "say cheese!" do
    puts "CHEESE!"
  end

  submenu "animal sounds" do
    submenu "duck sounds" do
      option "loud quack" do
        puts "QUACK!!!"
      end

      option "soft quack" do
        puts "quack!"
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
menuboy-0.2.0 test/simpler.rb
menuboy-0.1.2 test/simpler.rb
menuboy-0.1.1 test/simpler.rb
menuboy-0.1.0 test/simpler.rb
menuboy-0.0.3 test/simpler.rb
menuboy-0.0.2 test/simpler.rb
menuboy-0.0.1 test/simpler.rb