elasticsearch-dsl 0.1.6 → 0.1.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/Gemfile +22 -0
- data/LICENSE.txt +199 -10
- data/Rakefile +28 -0
- data/elasticsearch-dsl.gemspec +19 -2
- data/lib/elasticsearch-dsl.rb +17 -0
- data/lib/elasticsearch/dsl.rb +17 -0
- data/lib/elasticsearch/dsl/search.rb +21 -2
- data/lib/elasticsearch/dsl/search/aggregation.rb +17 -0
- data/lib/elasticsearch/dsl/search/aggregations/avg.rb +17 -0
- data/lib/elasticsearch/dsl/search/aggregations/cardinality.rb +17 -0
- data/lib/elasticsearch/dsl/search/aggregations/children.rb +17 -0
- data/lib/elasticsearch/dsl/search/aggregations/date_histogram.rb +17 -0
- data/lib/elasticsearch/dsl/search/aggregations/date_range.rb +17 -0
- data/lib/elasticsearch/dsl/search/aggregations/extended_stats.rb +17 -0
- data/lib/elasticsearch/dsl/search/aggregations/filter.rb +17 -0
- data/lib/elasticsearch/dsl/search/aggregations/filters.rb +17 -0
- data/lib/elasticsearch/dsl/search/aggregations/geo_bounds.rb +17 -0
- data/lib/elasticsearch/dsl/search/aggregations/geo_distance.rb +17 -0
- data/lib/elasticsearch/dsl/search/aggregations/geohash_grid.rb +17 -0
- data/lib/elasticsearch/dsl/search/aggregations/global.rb +17 -0
- data/lib/elasticsearch/dsl/search/aggregations/histogram.rb +17 -0
- data/lib/elasticsearch/dsl/search/aggregations/ip_range.rb +17 -0
- data/lib/elasticsearch/dsl/search/aggregations/max.rb +17 -0
- data/lib/elasticsearch/dsl/search/aggregations/min.rb +17 -0
- data/lib/elasticsearch/dsl/search/aggregations/missing.rb +17 -0
- data/lib/elasticsearch/dsl/search/aggregations/nested.rb +17 -0
- data/lib/elasticsearch/dsl/search/aggregations/percentile_ranks.rb +17 -0
- data/lib/elasticsearch/dsl/search/aggregations/percentiles.rb +17 -0
- data/lib/elasticsearch/dsl/search/aggregations/pipeline/avg_bucket.rb +17 -0
- data/lib/elasticsearch/dsl/search/aggregations/pipeline/bucket_script.rb +17 -0
- data/lib/elasticsearch/dsl/search/aggregations/pipeline/bucket_selector.rb +17 -0
- data/lib/elasticsearch/dsl/search/aggregations/pipeline/cumulative_sum.rb +17 -0
- data/lib/elasticsearch/dsl/search/aggregations/pipeline/derivative.rb +17 -0
- data/lib/elasticsearch/dsl/search/aggregations/pipeline/extended_stats_bucket.rb +17 -0
- data/lib/elasticsearch/dsl/search/aggregations/pipeline/max_bucket.rb +17 -0
- data/lib/elasticsearch/dsl/search/aggregations/pipeline/min_bucket.rb +17 -0
- data/lib/elasticsearch/dsl/search/aggregations/pipeline/moving_avg.rb +17 -0
- data/lib/elasticsearch/dsl/search/aggregations/pipeline/percentiles_bucket.rb +17 -0
- data/lib/elasticsearch/dsl/search/aggregations/pipeline/serial_diff.rb +17 -0
- data/lib/elasticsearch/dsl/search/aggregations/pipeline/stats_bucket.rb +17 -0
- data/lib/elasticsearch/dsl/search/aggregations/pipeline/sum_bucket.rb +17 -0
- data/lib/elasticsearch/dsl/search/aggregations/range.rb +17 -0
- data/lib/elasticsearch/dsl/search/aggregations/reverse_nested.rb +17 -0
- data/lib/elasticsearch/dsl/search/aggregations/scripted_metric.rb +17 -0
- data/lib/elasticsearch/dsl/search/aggregations/significant_terms.rb +17 -0
- data/lib/elasticsearch/dsl/search/aggregations/stats.rb +17 -0
- data/lib/elasticsearch/dsl/search/aggregations/sum.rb +17 -0
- data/lib/elasticsearch/dsl/search/aggregations/terms.rb +17 -0
- data/lib/elasticsearch/dsl/search/aggregations/top_hits.rb +17 -0
- data/lib/elasticsearch/dsl/search/aggregations/value_count.rb +17 -0
- data/lib/elasticsearch/dsl/search/base_aggregation_component.rb +17 -0
- data/lib/elasticsearch/dsl/search/base_component.rb +17 -0
- data/lib/elasticsearch/dsl/search/base_compound_filter_component.rb +17 -0
- data/lib/elasticsearch/dsl/search/filter.rb +17 -0
- data/lib/elasticsearch/dsl/search/filters/and.rb +17 -0
- data/lib/elasticsearch/dsl/search/filters/bool.rb +17 -0
- data/lib/elasticsearch/dsl/search/filters/exists.rb +17 -0
- data/lib/elasticsearch/dsl/search/filters/geo_bounding_box.rb +17 -0
- data/lib/elasticsearch/dsl/search/filters/geo_distance.rb +17 -0
- data/lib/elasticsearch/dsl/search/filters/geo_distance_range.rb +17 -0
- data/lib/elasticsearch/dsl/search/filters/geo_polygon.rb +17 -0
- data/lib/elasticsearch/dsl/search/filters/geo_shape.rb +17 -0
- data/lib/elasticsearch/dsl/search/filters/geohash_cell.rb +17 -0
- data/lib/elasticsearch/dsl/search/filters/has_child.rb +17 -0
- data/lib/elasticsearch/dsl/search/filters/has_parent.rb +17 -0
- data/lib/elasticsearch/dsl/search/filters/ids.rb +17 -0
- data/lib/elasticsearch/dsl/search/filters/indices.rb +18 -1
- data/lib/elasticsearch/dsl/search/filters/limit.rb +17 -0
- data/lib/elasticsearch/dsl/search/filters/match_all.rb +17 -0
- data/lib/elasticsearch/dsl/search/filters/missing.rb +17 -0
- data/lib/elasticsearch/dsl/search/filters/nested.rb +26 -0
- data/lib/elasticsearch/dsl/search/filters/not.rb +17 -0
- data/lib/elasticsearch/dsl/search/filters/or.rb +17 -0
- data/lib/elasticsearch/dsl/search/filters/prefix.rb +17 -0
- data/lib/elasticsearch/dsl/search/filters/query.rb +17 -0
- data/lib/elasticsearch/dsl/search/filters/range.rb +17 -0
- data/lib/elasticsearch/dsl/search/filters/regexp.rb +17 -0
- data/lib/elasticsearch/dsl/search/filters/script.rb +17 -0
- data/lib/elasticsearch/dsl/search/filters/term.rb +17 -0
- data/lib/elasticsearch/dsl/search/filters/terms.rb +17 -0
- data/lib/elasticsearch/dsl/search/filters/type.rb +17 -0
- data/lib/elasticsearch/dsl/search/highlight.rb +17 -0
- data/lib/elasticsearch/dsl/search/options.rb +17 -0
- data/lib/elasticsearch/dsl/search/queries/bool.rb +20 -3
- data/lib/elasticsearch/dsl/search/queries/boosting.rb +17 -0
- data/lib/elasticsearch/dsl/search/queries/common.rb +17 -0
- data/lib/elasticsearch/dsl/search/queries/constant_score.rb +17 -0
- data/lib/elasticsearch/dsl/search/queries/dis_max.rb +17 -0
- data/lib/elasticsearch/dsl/search/queries/exists.rb +17 -0
- data/lib/elasticsearch/dsl/search/queries/filtered.rb +17 -0
- data/lib/elasticsearch/dsl/search/queries/function_score.rb +17 -0
- data/lib/elasticsearch/dsl/search/queries/fuzzy.rb +17 -0
- data/lib/elasticsearch/dsl/search/queries/fuzzy_like_this.rb +17 -0
- data/lib/elasticsearch/dsl/search/queries/fuzzy_like_this_field.rb +17 -0
- data/lib/elasticsearch/dsl/search/queries/geo_shape.rb +17 -0
- data/lib/elasticsearch/dsl/search/queries/has_child.rb +17 -0
- data/lib/elasticsearch/dsl/search/queries/has_parent.rb +17 -0
- data/lib/elasticsearch/dsl/search/queries/ids.rb +17 -0
- data/lib/elasticsearch/dsl/search/queries/indices.rb +17 -0
- data/lib/elasticsearch/dsl/search/queries/match.rb +17 -0
- data/lib/elasticsearch/dsl/search/queries/match_all.rb +17 -0
- data/lib/elasticsearch/dsl/search/queries/match_phrase.rb +17 -0
- data/lib/elasticsearch/dsl/search/queries/match_phrase_prefix.rb +17 -0
- data/lib/elasticsearch/dsl/search/queries/more_like_this.rb +17 -0
- data/lib/elasticsearch/dsl/search/queries/multi_match.rb +17 -0
- data/lib/elasticsearch/dsl/search/queries/nested.rb +17 -0
- data/lib/elasticsearch/dsl/search/queries/prefix.rb +17 -0
- data/lib/elasticsearch/dsl/search/queries/query_string.rb +18 -0
- data/lib/elasticsearch/dsl/search/queries/range.rb +17 -0
- data/lib/elasticsearch/dsl/search/queries/regexp.rb +17 -0
- data/lib/elasticsearch/dsl/search/queries/simple_query_string.rb +17 -0
- data/lib/elasticsearch/dsl/search/queries/span_first.rb +17 -0
- data/lib/elasticsearch/dsl/search/queries/span_multi.rb +17 -0
- data/lib/elasticsearch/dsl/search/queries/span_near.rb +17 -0
- data/lib/elasticsearch/dsl/search/queries/span_not.rb +17 -0
- data/lib/elasticsearch/dsl/search/queries/span_or.rb +17 -0
- data/lib/elasticsearch/dsl/search/queries/span_term.rb +17 -0
- data/lib/elasticsearch/dsl/search/queries/template.rb +17 -0
- data/lib/elasticsearch/dsl/search/queries/term.rb +17 -0
- data/lib/elasticsearch/dsl/search/queries/terms.rb +17 -0
- data/lib/elasticsearch/dsl/search/queries/top_children.rb +17 -0
- data/lib/elasticsearch/dsl/search/queries/wildcard.rb +17 -0
- data/lib/elasticsearch/dsl/search/query.rb +17 -0
- data/lib/elasticsearch/dsl/search/sort.rb +17 -0
- data/lib/elasticsearch/dsl/search/suggest.rb +17 -0
- data/lib/elasticsearch/dsl/utils.rb +17 -0
- data/lib/elasticsearch/dsl/version.rb +18 -1
- data/spec/elasticsearch/dsl/search/aggregations/avg_spec.rb +43 -0
- data/spec/elasticsearch/dsl/search/aggregations/cardinality_spec.rb +110 -0
- data/spec/elasticsearch/dsl/search/aggregations/children_spec.rb +66 -0
- data/spec/elasticsearch/dsl/search/aggregations/date_histogram_spec.rb +189 -0
- data/spec/elasticsearch/dsl/search/aggregations/date_range_spec.rb +89 -0
- data/spec/elasticsearch/dsl/search/aggregations/extended_stats_spec.rb +43 -0
- data/spec/elasticsearch/dsl/search/aggregations/filter_spec.rb +48 -0
- data/spec/elasticsearch/dsl/search/aggregations/filters_spec.rb +89 -0
- data/spec/elasticsearch/dsl/search/aggregations/geo_bounds_spec.rb +77 -0
- data/spec/elasticsearch/dsl/search/aggregations/geo_distance_spec.rb +113 -0
- data/spec/elasticsearch/dsl/search/aggregations/geo_grid_spec.rb +100 -0
- data/spec/elasticsearch/dsl/search/aggregations/global_spec.rb +62 -0
- data/spec/elasticsearch/dsl/search/aggregations/historgram_spec.rb +122 -0
- data/spec/elasticsearch/dsl/search/aggregations/ip_range_spec.rb +93 -0
- data/spec/elasticsearch/dsl/search/aggregations/max_spec.rb +43 -0
- data/spec/elasticsearch/dsl/search/aggregations/min_spec.rb +43 -0
- data/spec/elasticsearch/dsl/search/aggregations/missing_spec.rb +81 -0
- data/spec/elasticsearch/dsl/search/aggregations/nested_spec.rb +86 -0
- data/spec/elasticsearch/dsl/search/aggregations/percentile_ranks_spec.rb +126 -0
- data/spec/elasticsearch/dsl/search/aggregations/percentiles_spec.rb +125 -0
- data/spec/elasticsearch/dsl/search/aggregations/pipeline/avg_bucket_spec.rb +88 -0
- data/spec/elasticsearch/dsl/search/aggregations/pipeline/bucket_script_spec.rb +99 -0
- data/spec/elasticsearch/dsl/search/aggregations/pipeline/bucket_selector_spec.rb +88 -0
- data/spec/elasticsearch/dsl/search/aggregations/pipeline/cumulative_sum_spec.rb +77 -0
- data/spec/elasticsearch/dsl/search/aggregations/pipeline/derivative_spec.rb +88 -0
- data/spec/elasticsearch/dsl/search/aggregations/pipeline/extended_stats_bucket_spec.rb +88 -0
- data/spec/elasticsearch/dsl/search/aggregations/pipeline/max_bucket_spec.rb +88 -0
- data/spec/elasticsearch/dsl/search/aggregations/pipeline/min_bucket_spec.rb +88 -0
- data/spec/elasticsearch/dsl/search/aggregations/pipeline/moving_avg_test_spec.rb +132 -0
- data/spec/elasticsearch/dsl/search/aggregations/pipeline/percentiles_bucket_spec.rb +99 -0
- data/spec/elasticsearch/dsl/search/aggregations/pipeline/serial_diff_spec.rb +99 -0
- data/spec/elasticsearch/dsl/search/aggregations/pipeline/stats_bucket_spec.rb +88 -0
- data/spec/elasticsearch/dsl/search/aggregations/pipeline/sum_bucket_spec.rb +88 -0
- data/spec/elasticsearch/dsl/search/aggregations/range_spec.rb +119 -0
- data/spec/elasticsearch/dsl/search/aggregations/reverse_nested_spec.rb +32 -0
- data/spec/elasticsearch/dsl/search/aggregations/scripted_metric_spec.rb +121 -0
- data/spec/elasticsearch/dsl/search/aggregations/significant_terms_spec.rb +176 -0
- data/spec/elasticsearch/dsl/search/aggregations/stats_spec.rb +56 -0
- data/spec/elasticsearch/dsl/search/aggregations/sum_spec.rb +43 -0
- data/spec/elasticsearch/dsl/search/aggregations/terms_spec.rb +165 -0
- data/spec/elasticsearch/dsl/search/aggregations/top_hits_spec.rb +88 -0
- data/spec/elasticsearch/dsl/search/aggregations/value_count_spec.rb +43 -0
- data/spec/elasticsearch/dsl/search/filters/and_spec.rb +74 -0
- data/spec/elasticsearch/dsl/search/filters/bool_spec.rb +149 -0
- data/spec/elasticsearch/dsl/search/filters/exists_spec.rb +66 -0
- data/spec/elasticsearch/dsl/search/filters/geo_bounding_box_spec.rb +144 -0
- data/spec/elasticsearch/dsl/search/filters/geo_distance_range_spec.rb +103 -0
- data/spec/elasticsearch/dsl/search/filters/geo_distance_spec.rb +126 -0
- data/spec/elasticsearch/dsl/search/filters/geo_polygon_spec.rb +66 -0
- data/spec/elasticsearch/dsl/search/filters/geo_shape_spec.rb +77 -0
- data/spec/elasticsearch/dsl/search/filters/geohash_cell_spec.rb +99 -0
- data/spec/elasticsearch/dsl/search/filters/has_child_spec.rb +139 -0
- data/spec/elasticsearch/dsl/search/filters/has_parent_spec.rb +128 -0
- data/spec/elasticsearch/dsl/search/filters/ids_spec.rb +78 -0
- data/spec/elasticsearch/dsl/search/filters/indices_spec.rb +109 -0
- data/spec/elasticsearch/dsl/search/filters/limit_spec.rb +66 -0
- data/spec/elasticsearch/dsl/search/filters/match_all_spec.rb +32 -0
- data/spec/elasticsearch/dsl/search/filters/missing_spec.rb +66 -0
- data/spec/elasticsearch/dsl/search/filters/nested_spec.rb +91 -0
- data/spec/elasticsearch/dsl/search/filters/not_spec.rb +59 -0
- data/spec/elasticsearch/dsl/search/filters/or_spec.rb +75 -0
- data/spec/elasticsearch/dsl/search/filters/prefix_spec.rb +46 -0
- data/spec/elasticsearch/dsl/search/filters/query_spec.rb +59 -0
- data/spec/elasticsearch/dsl/search/filters/range_spec.rb +111 -0
- data/spec/elasticsearch/dsl/search/filters/regexp_spec.rb +88 -0
- data/spec/elasticsearch/dsl/search/filters/script_spec.rb +77 -0
- data/spec/elasticsearch/dsl/search/filters/term_spec.rb +57 -0
- data/spec/elasticsearch/dsl/search/filters/terms_spec.rb +46 -0
- data/spec/elasticsearch/dsl/search/filters/type_spec.rb +66 -0
- data/spec/elasticsearch/dsl/search/queries/bool_spec.rb +209 -0
- data/spec/elasticsearch/dsl/search/queries/boosting_spec.rb +90 -0
- data/spec/elasticsearch/dsl/search/queries/common_spec.rb +132 -0
- data/spec/elasticsearch/dsl/search/queries/constant_score_spec.rb +90 -0
- data/spec/elasticsearch/dsl/search/queries/dis_max_spec.rb +88 -0
- data/spec/elasticsearch/dsl/search/queries/exists_spec.rb +66 -0
- data/spec/elasticsearch/dsl/search/queries/filtered_spec.rb +93 -0
- data/spec/elasticsearch/dsl/search/queries/function_score_spec.rb +164 -0
- data/spec/elasticsearch/dsl/search/queries/fuzzy_like_this_field_spec.rb +132 -0
- data/spec/elasticsearch/dsl/search/queries/fuzzy_like_this_spec.rb +134 -0
- data/spec/elasticsearch/dsl/search/queries/fuzzy_spec.rb +110 -0
- data/spec/elasticsearch/dsl/search/queries/geo_shape_spec.rb +77 -0
- data/spec/elasticsearch/dsl/search/queries/has_child_spec.rb +126 -0
- data/spec/elasticsearch/dsl/search/queries/has_parent_spec.rb +100 -0
- data/spec/elasticsearch/dsl/search/queries/ids_spec.rb +78 -0
- data/spec/elasticsearch/dsl/search/queries/indices_spec.rb +89 -0
- data/spec/elasticsearch/dsl/search/queries/mach_spec.rb +107 -0
- data/spec/elasticsearch/dsl/search/queries/match_all_spec.rb +66 -0
- data/spec/elasticsearch/dsl/search/queries/match_phrase_prefix_spec.rb +103 -0
- data/spec/elasticsearch/dsl/search/queries/match_phrase_spec.rb +114 -0
- data/spec/elasticsearch/dsl/search/queries/more_like_this_spec.rb +87 -0
- data/spec/elasticsearch/dsl/search/queries/multi_match_spec.rb +74 -0
- data/spec/elasticsearch/dsl/search/queries/nested_spec.rb +98 -0
- data/spec/elasticsearch/dsl/search/queries/prefix_spec.rb +70 -0
- data/spec/elasticsearch/dsl/search/queries/query_string_spec.rb +89 -0
- data/spec/elasticsearch/dsl/search/queries/range_spec.rb +78 -0
- data/spec/elasticsearch/dsl/search/queries/regexp_spec.rb +82 -0
- data/spec/elasticsearch/dsl/search/queries/simple_query_string_spec.rb +74 -0
- data/spec/elasticsearch/dsl/search/queries/span_first_spec.rb +69 -0
- data/spec/elasticsearch/dsl/search/queries/span_multi_spec.rb +69 -0
- data/spec/elasticsearch/dsl/search/queries/span_near_spec.rb +72 -0
- data/spec/elasticsearch/dsl/search/queries/span_not_spec.rb +73 -0
- data/spec/elasticsearch/dsl/search/queries/span_or_spec.rb +69 -0
- data/spec/elasticsearch/dsl/search/queries/span_term_spec.rb +46 -0
- data/spec/elasticsearch/dsl/search/queries/template_spec.rb +84 -0
- data/spec/elasticsearch/dsl/search/queries/term_spec.rb +57 -0
- data/spec/elasticsearch/dsl/search/queries/terms_spec.rb +46 -0
- data/spec/elasticsearch/dsl/search/queries/top_children_spec.rb +93 -0
- data/spec/elasticsearch/dsl/search/queries/wildcard_spec.rb +81 -0
- data/spec/spec_helper.rb +24 -0
- data/test/integration/search_aggregation_children_test.rb +41 -28
- data/test/integration/search_aggregation_geo_test.rb +18 -1
- data/test/integration/search_aggregation_nested_test.rb +17 -0
- data/test/integration/search_aggregations_test.rb +21 -4
- data/test/integration/search_filters_test.rb +19 -2
- data/test/integration/search_options_test.rb +18 -1
- data/test/integration/search_query_test.rb +22 -5
- data/test/integration/search_size_from_test.rb +20 -3
- data/test/integration/search_sort_test.rb +17 -0
- data/test/integration/search_suggest_test.rb +17 -0
- data/test/integration/search_test.rb +18 -1
- data/test/test_helper.rb +26 -1
- data/test/unit/dsl_test.rb +17 -0
- data/test/unit/search_aggregation_test.rb +17 -0
- data/test/unit/search_base_aggregation_component_test.rb +17 -0
- data/test/unit/search_base_component_test.rb +17 -0
- data/test/unit/search_filter_test.rb +17 -0
- data/test/unit/search_highlight_test.rb +17 -0
- data/test/unit/search_options_test.rb +17 -0
- data/test/unit/search_query_test.rb +17 -0
- data/test/unit/search_size_from_test.rb +17 -0
- data/test/unit/search_sort_test.rb +17 -0
- data/test/unit/search_suggest_test.rb +17 -0
- data/test/unit/search_test.rb +17 -0
- data/test/unit/utils_test.rb +17 -0
- metadata +226 -225
- data/test/unit/aggregations/avg_test.rb +0 -24
- data/test/unit/aggregations/cardinality_test.rb +0 -40
- data/test/unit/aggregations/children_test.rb +0 -36
- data/test/unit/aggregations/date_histogram_test.rb +0 -49
- data/test/unit/aggregations/date_range_test.rb +0 -42
- data/test/unit/aggregations/extended_stats_test.rb +0 -24
- data/test/unit/aggregations/filter_test.rb +0 -31
- data/test/unit/aggregations/filters_test.rb +0 -52
- data/test/unit/aggregations/geo_bounds_test.rb +0 -37
- data/test/unit/aggregations/geo_distance_test.rb +0 -45
- data/test/unit/aggregations/geohash_grid_test.rb +0 -40
- data/test/unit/aggregations/global_test.rb +0 -38
- data/test/unit/aggregations/histogram_test.rb +0 -42
- data/test/unit/aggregations/ip_range_test.rb +0 -41
- data/test/unit/aggregations/max_test.rb +0 -24
- data/test/unit/aggregations/min_test.rb +0 -24
- data/test/unit/aggregations/missing_test.rb +0 -39
- data/test/unit/aggregations/nested_test.rb +0 -48
- data/test/unit/aggregations/percentile_ranks_test.rb +0 -41
- data/test/unit/aggregations/percentiles_test.rb +0 -40
- data/test/unit/aggregations/pipeline/avg_bucket_test.rb +0 -39
- data/test/unit/aggregations/pipeline/bucket_script_test.rb +0 -39
- data/test/unit/aggregations/pipeline/bucket_selector_test.rb +0 -38
- data/test/unit/aggregations/pipeline/cumulative_sum_test.rb +0 -37
- data/test/unit/aggregations/pipeline/derivative_test.rb +0 -39
- data/test/unit/aggregations/pipeline/extended_stats_bucket_test.rb +0 -38
- data/test/unit/aggregations/pipeline/max_bucket_test.rb +0 -38
- data/test/unit/aggregations/pipeline/min_bucket_test.rb +0 -38
- data/test/unit/aggregations/pipeline/moving_avg_test.rb +0 -41
- data/test/unit/aggregations/pipeline/percentiles_bucket_test.rb +0 -39
- data/test/unit/aggregations/pipeline/serial_diff_test.rb +0 -39
- data/test/unit/aggregations/pipeline/stats_bucket_test.rb +0 -38
- data/test/unit/aggregations/pipeline/sum_bucket_test.rb +0 -38
- data/test/unit/aggregations/range_test.rb +0 -59
- data/test/unit/aggregations/reverse_nested_test.rb +0 -20
- data/test/unit/aggregations/scripted_metric_test.rb +0 -41
- data/test/unit/aggregations/significant_terms_test.rb +0 -46
- data/test/unit/aggregations/stats_test.rb +0 -32
- data/test/unit/aggregations/sum_test.rb +0 -24
- data/test/unit/aggregations/terms_test.rb +0 -51
- data/test/unit/aggregations/top_hits_test.rb +0 -38
- data/test/unit/aggregations/value_count_test.rb +0 -24
- data/test/unit/filters/and_test.rb +0 -69
- data/test/unit/filters/bool_test.rb +0 -98
- data/test/unit/filters/exists_test.rb +0 -36
- data/test/unit/filters/geo_bounding_box_test.rb +0 -45
- data/test/unit/filters/geo_distance_range_test.rb +0 -51
- data/test/unit/filters/geo_distance_test.rb +0 -58
- data/test/unit/filters/geo_polygon_test.rb +0 -36
- data/test/unit/filters/geo_shape_test.rb +0 -37
- data/test/unit/filters/geohash_cell_test.rb +0 -43
- data/test/unit/filters/has_child_test.rb +0 -54
- data/test/unit/filters/has_parent_test.rb +0 -54
- data/test/unit/filters/ids_test.rb +0 -38
- data/test/unit/filters/indices_test.rb +0 -52
- data/test/unit/filters/limit_test.rb +0 -36
- data/test/unit/filters/match_all_test.rb +0 -20
- data/test/unit/filters/missing_test.rb +0 -38
- data/test/unit/filters/nested_test.rb +0 -40
- data/test/unit/filters/not_test.rb +0 -35
- data/test/unit/filters/or_test.rb +0 -53
- data/test/unit/filters/prefix_test.rb +0 -25
- data/test/unit/filters/query_test.rb +0 -33
- data/test/unit/filters/range_test.rb +0 -48
- data/test/unit/filters/regexp_test.rb +0 -42
- data/test/unit/filters/script_test.rb +0 -38
- data/test/unit/filters/term_test.rb +0 -27
- data/test/unit/filters/terms_test.rb +0 -24
- data/test/unit/filters/type_test.rb +0 -36
- data/test/unit/queries/bool_test.rb +0 -147
- data/test/unit/queries/boosting_test.rb +0 -41
- data/test/unit/queries/common_test.rb +0 -42
- data/test/unit/queries/constant_score_test.rb +0 -47
- data/test/unit/queries/dis_max_test.rb +0 -38
- data/test/unit/queries/exists_test.rb +0 -36
- data/test/unit/queries/filtered_test.rb +0 -51
- data/test/unit/queries/function_score_test.rb +0 -70
- data/test/unit/queries/fuzzy_like_this_field_test.rb +0 -42
- data/test/unit/queries/fuzzy_like_this_test.rb +0 -44
- data/test/unit/queries/fuzzy_test.rb +0 -40
- data/test/unit/queries/geo_shape_test.rb +0 -37
- data/test/unit/queries/has_child_test.rb +0 -55
- data/test/unit/queries/has_parent_test.rb +0 -41
- data/test/unit/queries/ids_test.rb +0 -38
- data/test/unit/queries/indices_test.rb +0 -39
- data/test/unit/queries/match_all_test.rb +0 -36
- data/test/unit/queries/match_phrase_prefix_test.rb +0 -62
- data/test/unit/queries/match_phrase_test.rb +0 -63
- data/test/unit/queries/match_test.rb +0 -65
- data/test/unit/queries/more_like_this_test.rb +0 -53
- data/test/unit/queries/multi_match_test.rb +0 -42
- data/test/unit/queries/nested_test.rb +0 -52
- data/test/unit/queries/prefix_test.rb +0 -37
- data/test/unit/queries/query_string_test.rb +0 -56
- data/test/unit/queries/range_test.rb +0 -41
- data/test/unit/queries/regexp_test.rb +0 -43
- data/test/unit/queries/simple_query_string_test.rb +0 -41
- data/test/unit/queries/span_first_test.rb +0 -36
- data/test/unit/queries/span_multi_test.rb +0 -36
- data/test/unit/queries/span_near_test.rb +0 -39
- data/test/unit/queries/span_not_test.rb +0 -40
- data/test/unit/queries/span_or_test.rb +0 -36
- data/test/unit/queries/span_term_test.rb +0 -24
- data/test/unit/queries/template_test.rb +0 -43
- data/test/unit/queries/term_test.rb +0 -27
- data/test/unit/queries/terms_test.rb +0 -24
- data/test/unit/queries/top_children_test.rb +0 -53
- data/test/unit/queries/wildcard_test.rb +0 -43
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: afb07ac938ef185bc8a443aa3342adb1728d4e3947be80591760cd38b1870a33
|
4
|
+
data.tar.gz: eab97dbc6c770bb122be1c9adbb53871771cc6861a688aea3d2f41aafddaba6c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 745dbe52e814395095ba7473c80595ad73f69de5d1def5ee9e82dac93d5864f5fda5564462990fc747e6963b1f7f72b352302e3a0d047229347bfc8737ba638e
|
7
|
+
data.tar.gz: 0c17e0f57cdf44e84f0247048e8e1ecbd76eac23642a38fd7a22f357c13840b9090da94163739dc48278b9c993db817d47d514498dac06d48fd18f51dead49f9
|
data/Gemfile
CHANGED
@@ -1,3 +1,20 @@
|
|
1
|
+
# Licensed to Elasticsearch B.V. under one or more contributor
|
2
|
+
# license agreements. See the NOTICE file distributed with
|
3
|
+
# this work for additional information regarding copyright
|
4
|
+
# ownership. Elasticsearch B.V. licenses this file to you under
|
5
|
+
# the Apache License, Version 2.0 (the "License"); you may
|
6
|
+
# not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing,
|
12
|
+
# software distributed under the License is distributed on an
|
13
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
14
|
+
# KIND, either express or implied. See the License for the
|
15
|
+
# specific language governing permissions and limitations
|
16
|
+
# under the License.
|
17
|
+
|
1
18
|
source 'https://rubygems.org'
|
2
19
|
|
3
20
|
# Specify your gem's dependencies in elasticsearch-dsl.gemspec
|
@@ -18,3 +35,8 @@ end
|
|
18
35
|
if File.exist? File.expand_path("../../elasticsearch-extensions", __FILE__)
|
19
36
|
gem 'elasticsearch-extensions', :path => File.expand_path("../../elasticsearch-extensions", __FILE__), :require => false
|
20
37
|
end
|
38
|
+
|
39
|
+
group :development do
|
40
|
+
gem 'rspec'
|
41
|
+
gem 'pry-nav'
|
42
|
+
end
|
data/LICENSE.txt
CHANGED
@@ -1,13 +1,202 @@
|
|
1
|
-
Copyright (c) 2014 Elasticsearch
|
2
1
|
|
3
|
-
|
4
|
-
|
5
|
-
|
2
|
+
Apache License
|
3
|
+
Version 2.0, January 2004
|
4
|
+
http://www.apache.org/licenses/
|
6
5
|
|
7
|
-
|
6
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
8
7
|
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
8
|
+
1. Definitions.
|
9
|
+
|
10
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
11
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
12
|
+
|
13
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
14
|
+
the copyright owner that is granting the License.
|
15
|
+
|
16
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
17
|
+
other entities that control, are controlled by, or are under common
|
18
|
+
control with that entity. For the purposes of this definition,
|
19
|
+
"control" means (i) the power, direct or indirect, to cause the
|
20
|
+
direction or management of such entity, whether by contract or
|
21
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
22
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
23
|
+
|
24
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
25
|
+
exercising permissions granted by this License.
|
26
|
+
|
27
|
+
"Source" form shall mean the preferred form for making modifications,
|
28
|
+
including but not limited to software source code, documentation
|
29
|
+
source, and configuration files.
|
30
|
+
|
31
|
+
"Object" form shall mean any form resulting from mechanical
|
32
|
+
transformation or translation of a Source form, including but
|
33
|
+
not limited to compiled object code, generated documentation,
|
34
|
+
and conversions to other media types.
|
35
|
+
|
36
|
+
"Work" shall mean the work of authorship, whether in Source or
|
37
|
+
Object form, made available under the License, as indicated by a
|
38
|
+
copyright notice that is included in or attached to the work
|
39
|
+
(an example is provided in the Appendix below).
|
40
|
+
|
41
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
42
|
+
form, that is based on (or derived from) the Work and for which the
|
43
|
+
editorial revisions, annotations, elaborations, or other modifications
|
44
|
+
represent, as a whole, an original work of authorship. For the purposes
|
45
|
+
of this License, Derivative Works shall not include works that remain
|
46
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
47
|
+
the Work and Derivative Works thereof.
|
48
|
+
|
49
|
+
"Contribution" shall mean any work of authorship, including
|
50
|
+
the original version of the Work and any modifications or additions
|
51
|
+
to that Work or Derivative Works thereof, that is intentionally
|
52
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
53
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
54
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
55
|
+
means any form of electronic, verbal, or written communication sent
|
56
|
+
to the Licensor or its representatives, including but not limited to
|
57
|
+
communication on electronic mailing lists, source code control systems,
|
58
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
59
|
+
Licensor for the purpose of discussing and improving the Work, but
|
60
|
+
excluding communication that is conspicuously marked or otherwise
|
61
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
62
|
+
|
63
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
64
|
+
on behalf of whom a Contribution has been received by Licensor and
|
65
|
+
subsequently incorporated within the Work.
|
66
|
+
|
67
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
68
|
+
this License, each Contributor hereby grants to You a perpetual,
|
69
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
70
|
+
copyright license to reproduce, prepare Derivative Works of,
|
71
|
+
publicly display, publicly perform, sublicense, and distribute the
|
72
|
+
Work and such Derivative Works in Source or Object form.
|
73
|
+
|
74
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
75
|
+
this License, each Contributor hereby grants to You a perpetual,
|
76
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
77
|
+
(except as stated in this section) patent license to make, have made,
|
78
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
79
|
+
where such license applies only to those patent claims licensable
|
80
|
+
by such Contributor that are necessarily infringed by their
|
81
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
82
|
+
with the Work to which such Contribution(s) was submitted. If You
|
83
|
+
institute patent litigation against any entity (including a
|
84
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
85
|
+
or a Contribution incorporated within the Work constitutes direct
|
86
|
+
or contributory patent infringement, then any patent licenses
|
87
|
+
granted to You under this License for that Work shall terminate
|
88
|
+
as of the date such litigation is filed.
|
89
|
+
|
90
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
91
|
+
Work or Derivative Works thereof in any medium, with or without
|
92
|
+
modifications, and in Source or Object form, provided that You
|
93
|
+
meet the following conditions:
|
94
|
+
|
95
|
+
(a) You must give any other recipients of the Work or
|
96
|
+
Derivative Works a copy of this License; and
|
97
|
+
|
98
|
+
(b) You must cause any modified files to carry prominent notices
|
99
|
+
stating that You changed the files; and
|
100
|
+
|
101
|
+
(c) You must retain, in the Source form of any Derivative Works
|
102
|
+
that You distribute, all copyright, patent, trademark, and
|
103
|
+
attribution notices from the Source form of the Work,
|
104
|
+
excluding those notices that do not pertain to any part of
|
105
|
+
the Derivative Works; and
|
106
|
+
|
107
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
108
|
+
distribution, then any Derivative Works that You distribute must
|
109
|
+
include a readable copy of the attribution notices contained
|
110
|
+
within such NOTICE file, excluding those notices that do not
|
111
|
+
pertain to any part of the Derivative Works, in at least one
|
112
|
+
of the following places: within a NOTICE text file distributed
|
113
|
+
as part of the Derivative Works; within the Source form or
|
114
|
+
documentation, if provided along with the Derivative Works; or,
|
115
|
+
within a display generated by the Derivative Works, if and
|
116
|
+
wherever such third-party notices normally appear. The contents
|
117
|
+
of the NOTICE file are for informational purposes only and
|
118
|
+
do not modify the License. You may add Your own attribution
|
119
|
+
notices within Derivative Works that You distribute, alongside
|
120
|
+
or as an addendum to the NOTICE text from the Work, provided
|
121
|
+
that such additional attribution notices cannot be construed
|
122
|
+
as modifying the License.
|
123
|
+
|
124
|
+
You may add Your own copyright statement to Your modifications and
|
125
|
+
may provide additional or different license terms and conditions
|
126
|
+
for use, reproduction, or distribution of Your modifications, or
|
127
|
+
for any such Derivative Works as a whole, provided Your use,
|
128
|
+
reproduction, and distribution of the Work otherwise complies with
|
129
|
+
the conditions stated in this License.
|
130
|
+
|
131
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
132
|
+
any Contribution intentionally submitted for inclusion in the Work
|
133
|
+
by You to the Licensor shall be under the terms and conditions of
|
134
|
+
this License, without any additional terms or conditions.
|
135
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
136
|
+
the terms of any separate license agreement you may have executed
|
137
|
+
with Licensor regarding such Contributions.
|
138
|
+
|
139
|
+
6. Trademarks. This License does not grant permission to use the trade
|
140
|
+
names, trademarks, service marks, or product names of the Licensor,
|
141
|
+
except as required for reasonable and customary use in describing the
|
142
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
143
|
+
|
144
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
145
|
+
agreed to in writing, Licensor provides the Work (and each
|
146
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
147
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
148
|
+
implied, including, without limitation, any warranties or conditions
|
149
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
150
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
151
|
+
appropriateness of using or redistributing the Work and assume any
|
152
|
+
risks associated with Your exercise of permissions under this License.
|
153
|
+
|
154
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
155
|
+
whether in tort (including negligence), contract, or otherwise,
|
156
|
+
unless required by applicable law (such as deliberate and grossly
|
157
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
158
|
+
liable to You for damages, including any direct, indirect, special,
|
159
|
+
incidental, or consequential damages of any character arising as a
|
160
|
+
result of this License or out of the use or inability to use the
|
161
|
+
Work (including but not limited to damages for loss of goodwill,
|
162
|
+
work stoppage, computer failure or malfunction, or any and all
|
163
|
+
other commercial damages or losses), even if such Contributor
|
164
|
+
has been advised of the possibility of such damages.
|
165
|
+
|
166
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
167
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
168
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
169
|
+
or other liability obligations and/or rights consistent with this
|
170
|
+
License. However, in accepting such obligations, You may act only
|
171
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
172
|
+
of any other Contributor, and only if You agree to indemnify,
|
173
|
+
defend, and hold each Contributor harmless for any liability
|
174
|
+
incurred by, or claims asserted against, such Contributor by reason
|
175
|
+
of your accepting any such warranty or additional liability.
|
176
|
+
|
177
|
+
END OF TERMS AND CONDITIONS
|
178
|
+
|
179
|
+
APPENDIX: How to apply the Apache License to your work.
|
180
|
+
|
181
|
+
To apply the Apache License to your work, attach the following
|
182
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
183
|
+
replaced with your own identifying information. (Don't include
|
184
|
+
the brackets!) The text should be enclosed in the appropriate
|
185
|
+
comment syntax for the file format. We also recommend that a
|
186
|
+
file or class name and description of purpose be included on the
|
187
|
+
same "printed page" as the copyright notice for easier
|
188
|
+
identification within third-party archives.
|
189
|
+
|
190
|
+
Copyright [yyyy] [name of copyright owner]
|
191
|
+
|
192
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
193
|
+
you may not use this file except in compliance with the License.
|
194
|
+
You may obtain a copy of the License at
|
195
|
+
|
196
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
197
|
+
|
198
|
+
Unless required by applicable law or agreed to in writing, software
|
199
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
200
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
201
|
+
See the License for the specific language governing permissions and
|
202
|
+
limitations under the License.
|
data/Rakefile
CHANGED
@@ -1,3 +1,20 @@
|
|
1
|
+
# Licensed to Elasticsearch B.V. under one or more contributor
|
2
|
+
# license agreements. See the NOTICE file distributed with
|
3
|
+
# this work for additional information regarding copyright
|
4
|
+
# ownership. Elasticsearch B.V. licenses this file to you under
|
5
|
+
# the Apache License, Version 2.0 (the "License"); you may
|
6
|
+
# not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing,
|
12
|
+
# software distributed under the License is distributed on an
|
13
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
14
|
+
# KIND, either express or implied. See the License for the
|
15
|
+
# specific language governing permissions and limitations
|
16
|
+
# under the License.
|
17
|
+
|
1
18
|
require "bundler/gem_tasks"
|
2
19
|
|
3
20
|
task(:default) { system "rake --tasks" }
|
@@ -6,16 +23,27 @@ task :test => 'test:unit'
|
|
6
23
|
# ----- Test tasks ------------------------------------------------------------
|
7
24
|
|
8
25
|
require 'rake/testtask'
|
26
|
+
require 'rspec/core/rake_task'
|
27
|
+
|
9
28
|
namespace :test do
|
10
29
|
|
30
|
+
desc "Wait for Elasticsearch to be in a green state"
|
31
|
+
task :wait_for_green do
|
32
|
+
sh '../scripts/wait-cluster.sh'
|
33
|
+
end
|
34
|
+
|
35
|
+
RSpec::Core::RakeTask.new(:spec)
|
36
|
+
|
11
37
|
Rake::TestTask.new(:unit) do |test|
|
12
38
|
test.libs << 'lib' << 'test'
|
13
39
|
test.test_files = FileList["test/unit/**/*_test.rb"]
|
40
|
+
test.deps = [ :spec ]
|
14
41
|
test.verbose = false
|
15
42
|
test.warning = false
|
16
43
|
end
|
17
44
|
|
18
45
|
Rake::TestTask.new(:integration) do |test|
|
46
|
+
test.deps = [ :wait_for_green ]
|
19
47
|
test.libs << 'lib' << 'test'
|
20
48
|
test.test_files = FileList["test/integration/**/*_test.rb"]
|
21
49
|
test.verbose = false
|
data/elasticsearch-dsl.gemspec
CHANGED
@@ -1,3 +1,20 @@
|
|
1
|
+
# Licensed to Elasticsearch B.V. under one or more contributor
|
2
|
+
# license agreements. See the NOTICE file distributed with
|
3
|
+
# this work for additional information regarding copyright
|
4
|
+
# ownership. Elasticsearch B.V. licenses this file to you under
|
5
|
+
# the Apache License, Version 2.0 (the "License"); you may
|
6
|
+
# not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing,
|
12
|
+
# software distributed under the License is distributed on an
|
13
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
14
|
+
# KIND, either express or implied. See the License for the
|
15
|
+
# specific language governing permissions and limitations
|
16
|
+
# under the License.
|
17
|
+
|
1
18
|
# coding: utf-8
|
2
19
|
lib = File.expand_path('../lib', __FILE__)
|
3
20
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
@@ -11,7 +28,7 @@ Gem::Specification.new do |s|
|
|
11
28
|
s.description = %q{A Ruby DSL builder for Elasticsearch}
|
12
29
|
s.summary = s.description
|
13
30
|
s.homepage = "https://github.com/elasticsearch/elasticsearch-ruby/tree/master/elasticsearch-dsl"
|
14
|
-
s.license = "Apache
|
31
|
+
s.license = "Apache-2.0"
|
15
32
|
|
16
33
|
s.files = `git ls-files`.split($/)
|
17
34
|
s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
@@ -23,7 +40,7 @@ Gem::Specification.new do |s|
|
|
23
40
|
|
24
41
|
s.required_ruby_version = '>= 1.9'
|
25
42
|
|
26
|
-
s.add_development_dependency "bundler"
|
43
|
+
s.add_development_dependency "bundler"
|
27
44
|
s.add_development_dependency "rake", "~> 11.1"
|
28
45
|
|
29
46
|
s.add_development_dependency "elasticsearch"
|
data/lib/elasticsearch-dsl.rb
CHANGED
@@ -1 +1,18 @@
|
|
1
|
+
# Licensed to Elasticsearch B.V. under one or more contributor
|
2
|
+
# license agreements. See the NOTICE file distributed with
|
3
|
+
# this work for additional information regarding copyright
|
4
|
+
# ownership. Elasticsearch B.V. licenses this file to you under
|
5
|
+
# the Apache License, Version 2.0 (the "License"); you may
|
6
|
+
# not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing,
|
12
|
+
# software distributed under the License is distributed on an
|
13
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
14
|
+
# KIND, either express or implied. See the License for the
|
15
|
+
# specific language governing permissions and limitations
|
16
|
+
# under the License.
|
17
|
+
|
1
18
|
require 'elasticsearch/dsl'
|
data/lib/elasticsearch/dsl.rb
CHANGED
@@ -1,3 +1,20 @@
|
|
1
|
+
# Licensed to Elasticsearch B.V. under one or more contributor
|
2
|
+
# license agreements. See the NOTICE file distributed with
|
3
|
+
# this work for additional information regarding copyright
|
4
|
+
# ownership. Elasticsearch B.V. licenses this file to you under
|
5
|
+
# the Apache License, Version 2.0 (the "License"); you may
|
6
|
+
# not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing,
|
12
|
+
# software distributed under the License is distributed on an
|
13
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
14
|
+
# KIND, either express or implied. See the License for the
|
15
|
+
# specific language governing permissions and limitations
|
16
|
+
# under the License.
|
17
|
+
|
1
18
|
require 'elasticsearch/dsl/version'
|
2
19
|
|
3
20
|
require 'elasticsearch/dsl/utils'
|
@@ -1,3 +1,20 @@
|
|
1
|
+
# Licensed to Elasticsearch B.V. under one or more contributor
|
2
|
+
# license agreements. See the NOTICE file distributed with
|
3
|
+
# this work for additional information regarding copyright
|
4
|
+
# ownership. Elasticsearch B.V. licenses this file to you under
|
5
|
+
# the Apache License, Version 2.0 (the "License"); you may
|
6
|
+
# not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing,
|
12
|
+
# software distributed under the License is distributed on an
|
13
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
14
|
+
# KIND, either express or implied. See the License for the
|
15
|
+
# specific language governing permissions and limitations
|
16
|
+
# under the License.
|
17
|
+
|
1
18
|
module Elasticsearch
|
2
19
|
module DSL
|
3
20
|
|
@@ -15,14 +32,16 @@ module Elasticsearch
|
|
15
32
|
# match title: 'test'
|
16
33
|
# end
|
17
34
|
# end
|
35
|
+
# definition.to_hash
|
36
|
+
# => {:query=>{:match=>{:title=>"test"}}}
|
18
37
|
#
|
19
38
|
# @example Using the class imperatively
|
20
39
|
#
|
21
40
|
# definition = Search.new
|
22
|
-
# query =
|
41
|
+
# query = Queries::Match.new title: 'test'
|
23
42
|
# definition.query query
|
24
43
|
# definition.to_hash
|
25
|
-
# # =>
|
44
|
+
# # => {:query=>{:match=>{:title=>"test"}}}
|
26
45
|
#
|
27
46
|
# @see http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/search.html
|
28
47
|
#
|
@@ -1,3 +1,20 @@
|
|
1
|
+
# Licensed to Elasticsearch B.V. under one or more contributor
|
2
|
+
# license agreements. See the NOTICE file distributed with
|
3
|
+
# this work for additional information regarding copyright
|
4
|
+
# ownership. Elasticsearch B.V. licenses this file to you under
|
5
|
+
# the Apache License, Version 2.0 (the "License"); you may
|
6
|
+
# not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing,
|
12
|
+
# software distributed under the License is distributed on an
|
13
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
14
|
+
# KIND, either express or implied. See the License for the
|
15
|
+
# specific language governing permissions and limitations
|
16
|
+
# under the License.
|
17
|
+
|
1
18
|
module Elasticsearch
|
2
19
|
module DSL
|
3
20
|
module Search
|
@@ -1,3 +1,20 @@
|
|
1
|
+
# Licensed to Elasticsearch B.V. under one or more contributor
|
2
|
+
# license agreements. See the NOTICE file distributed with
|
3
|
+
# this work for additional information regarding copyright
|
4
|
+
# ownership. Elasticsearch B.V. licenses this file to you under
|
5
|
+
# the Apache License, Version 2.0 (the "License"); you may
|
6
|
+
# not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing,
|
12
|
+
# software distributed under the License is distributed on an
|
13
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
14
|
+
# KIND, either express or implied. See the License for the
|
15
|
+
# specific language governing permissions and limitations
|
16
|
+
# under the License.
|
17
|
+
|
1
18
|
module Elasticsearch
|
2
19
|
module DSL
|
3
20
|
module Search
|