matthuhiggins/arelastic

View on GitHub
lib/arelastic/aggregations/range.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Arelastic
  module Aggregations
    class Range < Arelastic::Aggregations::Bucket
      def as_elastic_aggregation
        {'range' => options}.merge(super)
      end
    end
  end
end