Sha256: 57232cb47a80080d68178bd68915aa2f442628eea6008d650bf4dabb725832ee

Contents?: true

Size: 1.33 KB

Versions: 72

Compression:

Stored size: 1.33 KB

Contents

module Clamp
  module Attribute

    module Declaration

      protected

      def define_accessors_for(attribute, &block)
        define_reader_for(attribute)
        define_default_for(attribute)
        if attribute.multivalued?
          define_appender_for(attribute, &block)
          define_multi_writer_for(attribute)
        else
          define_simple_writer_for(attribute, &block)
        end
      end

      def define_reader_for(attribute)
        define_method(attribute.read_method) do
          attribute.of(self)._read
        end
      end

      def define_default_for(attribute)
        define_method(attribute.default_method) do
          attribute.default_value
        end
      end

      def define_simple_writer_for(attribute, &block)
        define_method(attribute.write_method) do |value|
          value = instance_exec(value, &block) if block
          attribute.of(self).set(value)
        end
      end

      def define_appender_for(attribute, &block)
        define_method(attribute.append_method) do |value|
          value = instance_exec(value, &block) if block
          attribute.of(self)._append(value)
        end
      end

      def define_multi_writer_for(attribute)
        define_method(attribute.write_method) do |values|
          attribute.of(self)._replace(values)
        end
      end

    end

  end
end

Version data entries

72 entries across 68 versions & 18 rubygems

Version Path
logstash-output-scalyr-0.1.9 vendor/bundle/jruby/2.5.0/gems/clamp-0.6.5/lib/clamp/attribute/declaration.rb
logstash-output-scalyr-0.1.8 vendor/bundle/jruby/2.5.0/gems/clamp-0.6.5/lib/clamp/attribute/declaration.rb
logstash-output-scalyr-0.1.7 vendor/bundle/jruby/2.5.0/gems/clamp-0.6.5/lib/clamp/attribute/declaration.rb
logstash-output-scalyr-0.1.6 vendor/bundle/jruby/2.5.0/gems/clamp-0.6.5/lib/clamp/attribute/declaration.rb
logstash-output-newrelic-1.2.0 vendor/bundle/jruby/2.5.0/gems/clamp-0.6.5/lib/clamp/attribute/declaration.rb
logstash-filter-csharp-0.2.1 vendor/bundle/jruby/2.5.0/gems/clamp-0.6.5/lib/clamp/attribute/declaration.rb
logstash-filter-csharp-0.2.1 vendor/bundle/jruby/2.3.0/gems/clamp-0.6.5/lib/clamp/attribute/declaration.rb
logstash-filter-csharp-0.2.0 vendor/bundle/jruby/2.5.0/gems/clamp-0.6.5/lib/clamp/attribute/declaration.rb
logstash-filter-csharp-0.2.0 vendor/bundle/jruby/2.3.0/gems/clamp-0.6.5/lib/clamp/attribute/declaration.rb
logstash-output-scalyr-0.1.5 vendor/bundle/jruby/2.5.0/gems/clamp-0.6.5/lib/clamp/attribute/declaration.rb
logstash-output-scalyr-0.1.4 vendor/bundle/jruby/2.5.0/gems/clamp-0.6.5/lib/clamp/attribute/declaration.rb
logstash-output-scalyr-0.1.3 vendor/bundle/jruby/2.5.0/gems/clamp-0.6.5/lib/clamp/attribute/declaration.rb
logstash-output-scalyr-0.1.2 vendor/bundle/jruby/2.5.0/gems/clamp-0.6.5/lib/clamp/attribute/declaration.rb
logstash-filter-device_detection-1.0.7-java vendor/bundle/jruby/1.9/gems/clamp-0.6.5/lib/clamp/attribute/declaration.rb
mrcooper-logstash-output-azuresearch-0.2.2 vendor/jruby/2.5.0/gems/clamp-0.6.5/lib/clamp/attribute/declaration.rb
logstash-output-icinga-1.1.0 vendor/jruby/1.9/gems/clamp-0.6.5/lib/clamp/attribute/declaration.rb
logstash-output-icinga-1.1.0 vendor/jruby/2.3.0/gems/clamp-0.6.5/lib/clamp/attribute/declaration.rb
logstash-filter-cache-redis-0.3.1 vendor/bundle/jruby/1.9/gems/clamp-0.6.5/lib/clamp/attribute/declaration.rb
logstash-filter-cache-redis-0.3.0 vendor/bundle/jruby/1.9/gems/clamp-0.6.5/lib/clamp/attribute/declaration.rb
logstash-filter-cache-redis-0.2.0 vendor/bundle/jruby/1.9/gems/clamp-0.6.5/lib/clamp/attribute/declaration.rb