RubyGems Navigation menu

trollop 1.5

Trollop is YAFCLAP --- yet another fine commandline argument processing library for Ruby. Trollop is designed to provide the maximal amount of GNU-style argument processing in the minimum number of lines of code (for you, the programmer). Trollop provides a nice automatically-generated help page, robust option parsing, and sensible defaults for everything you don't specify. Synopsis: ###### simple ###### opts = Trollop::options do opt :monkey, "Use monkey mode." opt :goat, "Use goat model", :default => true opt :num_limbs, "Set number of limbs", :default => 4 end p opts ###### complex ###### opts = Trollop::options do version "test 1.2.3 (c) 2007 William Morgan" banner <<-EOS Test is an awesome program that does something very, very important. Usage: test [options] <filenames>+ where [options] are: EOS opt :ignore, "Ignore incorrect values" opt :file, "Extra data filename to read in, with a very long option description like this one", :type => String opt :volume, "Volume level", :default => 3.0 opt :iters, "Number of iterations", :default => 5 end Trollop::die :volume, "must be non-negative" if opts[:volume] < 0 Trollop::die :file, "must exist" unless File.exists?(opts[:file]) if opts[:file] == REQUIREMENTS: * none

Gemfile:
= 复制到剪贴板 已复制!

安装:
=

版本列表:

  1. 2.9.10 - November 25, 2019 (29.0 KB)
  2. 2.9.9 - August 24, 2018 (29.0 KB)
  3. 2.1.3 - July 11, 2018 (29.5 KB)
  4. 2.1.2 - March 11, 2015 (25.5 KB)
  5. 2.1.1 - January 05, 2015 (25.5 KB)
  6. 1.5 - March 31, 2007* (13.5 KB)
显示所有版本 (共 32 个)

业主:

作者:

  • William Morgan

SHA 256 校验和:

93c4e3aad8731b59dd7a93b58bbdd675b75876e4bab4b185c8b19058b546df24

下载总量 60,080,010

这个版本 4,334

许可:

需要的 Ruby 版本: > 0.0.0

链接: