文件名称:pargser:ruby gem to wite CLI keysargs 以 ruby 方式解析(例如简单且很快)
文件大小:9KB
文件格式:ZIP
更新时间:2024-07-20 02:42:33
Ruby
帕格瑟 无需为解析命令行选项而头疼的编写 CLI 工具的 ruby 方式。 让你不用花时间在上面,专注于功能。 安装 将此行添加到应用程序的 Gemfile 中: gem 'pargser' 然后执行: $ bundle 或者自己安装: $ gem install pargser 用法 比较直接 p = Pargser.new.key('-f', '--fantastic') { @fantastic = true } .key('--omit-me', doc: 'the description is optional') { @omit = true } .key('--this-is', '-t', needs_value: true, doc: 'you should specify it!') { |value| # Note that this
【文件预览】:
pargser-master
----.gitignore(124B)
----.rspec(30B)
----pargser.gemspec(947B)
----LICENSE.txt(1KB)
----spec()
--------spec_helper.rb(4KB)
--------pargser_spec.rb(3KB)
----README.md(2KB)
----lib()
--------pargser.rb(5KB)
----Gemfile(92B)
----Rakefile(29B)