Sha256: 54c62e3148fcfd3e9536ccae78c63e8ac20f16ebeb76d1586275816edcb832e2
Contents?: true
Size: 1.88 KB
Versions: 2
Compression:
Stored size: 1.88 KB
Contents
require 'clamp/attribute/instance' module Clamp module Attribute class Definition def initialize(options) if options.has_key?(:attribute_name) @attribute_name = options[:attribute_name].to_s end if options.has_key?(:default) @default_value = options[:default] end if options.has_key?(:environment_variable) @environment_variable = options[:environment_variable] end if options.has_key?(:hidden) @hidden = options[:hidden] end end attr_reader :description, :environment_variable def help_rhs description + default_description end def help [help_lhs, help_rhs] end def ivar_name "@#{attribute_name}" end def read_method attribute_name end def default_method "default_#{read_method}" end def write_method "#{attribute_name}=" end def append_method if multivalued? "append_to_#{attribute_name}" end end def multivalued? @multivalued end def required? @required end def hidden? @hidden end def attribute_name @attribute_name ||= infer_attribute_name end def default_value if defined?(@default_value) @default_value elsif multivalued? [] end end def of(command) Attribute::Instance.new(self, command) end private def default_description default_sources = [ ("$#{@environment_variable}" if defined?(@environment_variable)), (@default_value.inspect if defined?(@default_value)) ].compact return "" if default_sources.empty? " (default: " + default_sources.join(", or ") + ")" end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
clamp-1.0.1 | lib/clamp/attribute/definition.rb |
clamp-1.0.0 | lib/clamp/attribute/definition.rb |