Sha256: 03452f0cc160a09407cecbfb95b668f476c9c23765b374a2c02473a4b85464d0

Contents?: true

Size: 1.75 KB

Versions: 70

Compression:

Stored size: 1.75 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
      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 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

70 entries across 66 versions & 18 rubygems

Version Path
able-neo4j-1.0.0 vendor/bundle/jruby/1.9/gems/clamp-0.6.5/lib/clamp/attribute/definition.rb
logstash-input-beats-2.0.2 vendor/jruby/1.9/gems/logstash-codec-json-2.0.3/vendor/gems/clamp-0.6.5/lib/clamp/attribute/definition.rb
logstash-input-beats-2.0.2 vendor/jruby/1.9/gems/clamp-0.6.5/lib/clamp/attribute/definition.rb
logstash-codec-json-2.0.3 vendor/gems/clamp-0.6.5/lib/clamp/attribute/definition.rb
logstash-input-beats-0.9.2 vendor/jruby/1.9/gems/clamp-0.6.5/lib/clamp/attribute/definition.rb
logstash-input-beats-0.9.1 vendor/jruby/1.9/gems/clamp-0.6.5/lib/clamp/attribute/definition.rb
clamp-0.6.5 lib/clamp/attribute/definition.rb
clamp-0.6.4 lib/clamp/attribute/definition.rb
clamp-0.6.3 lib/clamp/attribute/definition.rb
clamp-0.6.2 lib/clamp/attribute/definition.rb