log_magic 0.0.6 → 0.0.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 41025b0281e6367ff8b1c5b080fd92ac7632d5ee
4
- data.tar.gz: 7f149bcc08e1ce2a648d27df4e55bef3b34dc1ea
3
+ metadata.gz: 3b7c3e7d672405276b37d2d2687204c96f97c7b7
4
+ data.tar.gz: 0828e5259dad51ba6152abad19fd0a760f387e87
5
5
  SHA512:
6
- metadata.gz: 96b931b3a04f2937f861fda5de7197b52ae8a64a7859bc674251ffb9d6f32efbbb3b42867904dfe9007815f7f0bae9963f9edac16cd531443d82e6f1623c932b
7
- data.tar.gz: 03c699de9bdec97e3059b13938c4a730feb978e32a44ef65ff9925a1828336f2050f64e4db46f9016c1297b02e314b2eb82112aba6b00e7cb076ad33b99fb00d
6
+ metadata.gz: b049a8b5e5f7ca84de3465bd06981476a2aa9cd76286f2a49ed444266a6590911fcbd6bfa518260a9dabf59a387903837211342a14aa80aca009f6f5ac5d9ff2
7
+ data.tar.gz: 449efca4319c2ff636f6dd2ec09faaaaffdf6978da49d999bb70e797a8570a733144ba938db011c340800b0897401d8b5468f619f3eff4fafbefaa731f41bea8
@@ -0,0 +1,2 @@
1
+ %a{href: 'https://www.elastic.co/guide/en/elasticsearch/reference/current/mapping-all-field.html'}
2
+ = term_name
@@ -0,0 +1,7 @@
1
+ class LogMagic::SearchkickExplainer::UnderscoreAllExplainerSection
2
+ include ::LogMagic::TemplatingUtils
3
+
4
+ def term_name
5
+ '_all'
6
+ end
7
+ end
@@ -23,7 +23,8 @@ class LogMagic::SearchkickExplainer::QueryExplainerSection
23
23
  ::LogMagic::SearchkickExplainer::MatchExplainerSection,
24
24
  ::LogMagic::SearchkickExplainer::AnalyzerExplainerSection,
25
25
  ::LogMagic::SearchkickExplainer::FuzzyTranspositionsSection,
26
- ::LogMagic::SearchkickExplainer::MaxExpansionsSection
26
+ ::LogMagic::SearchkickExplainer::MaxExpansionsSection,
27
+ ::LogMagic::SearchkickExplainer::UnderscoreAllExplainerSection
27
28
  ]
28
29
  end
29
30
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: log_magic
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
4
+ version: 0.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Manuel Korfmann
@@ -105,6 +105,7 @@ files:
105
105
  - bin/log_magic
106
106
  - bin/rebuild
107
107
  - lib/log_magic.rb
108
+ - lib/log_magic/explainer_templates/_all.haml
108
109
  - lib/log_magic/explainer_templates/analyzer.haml
109
110
  - lib/log_magic/explainer_templates/boost.haml
110
111
  - lib/log_magic/explainer_templates/dis_max.haml
@@ -114,6 +115,7 @@ files:
114
115
  - lib/log_magic/explainer_templates/query.haml
115
116
  - lib/log_magic/explainer_templates/searchkick.haml
116
117
  - lib/log_magic/explainer_templates/settings.haml
118
+ - lib/log_magic/explainers/explainer_sections/_all_explainer.rb
117
119
  - lib/log_magic/explainers/explainer_sections/analyzer_explainer.rb
118
120
  - lib/log_magic/explainers/explainer_sections/boost_explainer.rb
119
121
  - lib/log_magic/explainers/explainer_sections/dis_max_explainer.rb