Sha256: 9f296e2d631dc2e1f2b5215570cb9a50a595f68a8f0076a4e59486628e28fcd0
Contents?: true
Size: 1.33 KB
Versions: 9
Compression:
Stored size: 1.33 KB
Contents
require 'rbbt/util/simpleopt/accessor' module SOPT def self.fix_shortcut(short, long) return short unless short and shortcuts.include?(short) chars = long.chars.to_a current = [chars.shift] short = current * "" if shortcuts.include? short and long.index "-" or long.index "_" parts = long.split(/[_-]/) acc = parts.collect{|s| s[0] } * "" return acc unless shortcuts.include? acc end while shortcuts.include? short while shortcuts[short].index current * "" next_letter = chars.shift return nil if next_letter.nil? current << next_letter end short = current * "" end short end def self.register(short, long, asterisk, description) short = fix_shortcut(short, long) shortcuts[short] = long if short inputs << long input_shortcuts[long] = short input_descriptions[long] = description input_types[long] = asterisk ? :string : :boolean end def self.parse(opt_str) info = {} inputs = [] opt_str.split(/[:\n]+/).each do |entry| entry.strip! next if entry.empty? names, _sep, description = entry.partition /\s+/ short, long, asterisk = names.match(/\s*(?:-(.+))?(?:--(.+?))([*])?$/).values_at 1,2,3 inputs << long register short, long, asterisk, description end inputs end end
Version data entries
9 entries across 9 versions & 1 rubygems