Sha256: afa8b424cc7fd3f82825923fb7b8e702e249a5a914df894714ffc88974c4ae3d
Contents?: true
Size: 1.44 KB
Versions: 3
Compression:
Stored size: 1.44 KB
Contents
module Clamp class Option def initialize(switches, type, description, options = {}) @switches = Array(switches) @type = type @description = description if options.has_key?(:attribute_name) @attribute_name = options[:attribute_name].to_s end if options.has_key?(:default) @default_value = options[:default] end end attr_reader :switches, :type, :description, :default_value def attribute_name @attribute_name ||= long_switch.sub(/^--(\[no-\])?/, '').tr('-', '_') end def long_switch switches.find { |switch| switch =~ /^--/ } end def handles?(switch) recognised_switches.member?(switch) end def flag? @type == :flag end def flag_value(switch) !(switch =~ /^--no-(.*)/ && switches.member?("--\[no-\]#{$1}")) end def extract_value(switch, arguments) if flag? flag_value(switch) else arguments.shift end end def help lhs = switches.join(", ") lhs += " " + type unless flag? rhs = description if defined?(@default_value) rhs += " (default: #{@default_value.inspect})" end [lhs, rhs] end private def recognised_switches switches.map do |switch| if switch =~ /^--\[no-\](.*)/ ["--#{$1}", "--no-#{$1}"] else switch end end.flatten end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
clamp-0.1.6 | lib/clamp/option.rb |
clamp-0.1.5 | lib/clamp/option.rb |
clamp-0.1.4 | lib/clamp/option.rb |