grntest 1.8.7 → 1.8.8
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 +4 -4
- data/doc/text/news.md +6 -0
- data/lib/grntest/executors/base-executor.rb +4 -4
- data/lib/grntest/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7acee753079da4976950cdffdd023e4bea5f5d8573938795618c71dd3a4e4589
|
|
4
|
+
data.tar.gz: f3a7f2162af9d338fc079b44eb3ea6843da0728e652738c4db7588bb8e85c53b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 206475d143b25fc45acf5c4bdb511f9c691025d5c0d9bbab122e5e3c1a5cd40626a7d51604200222d0711cfc74d148bf15342e4133eef2fde87de68ced921178
|
|
7
|
+
data.tar.gz: 1a8b75f6ac99ee2cc18b81ca9c64065cf0a77bcca0a33bcbd8e85b4ac01b3439a68ce156e307b110d683413f92ec1c0919228aa7c9e1edbc790e997077c9c339
|
data/doc/text/news.md
CHANGED
|
@@ -998,28 +998,28 @@ module Grntest
|
|
|
998
998
|
if name.start_with?("select[")
|
|
999
999
|
if sort_shard
|
|
1000
1000
|
first_shard_select_index ||= i
|
|
1001
|
-
[first_shard_select_index, name]
|
|
1001
|
+
[first_shard_select_index, name, i]
|
|
1002
1002
|
else
|
|
1003
1003
|
[i]
|
|
1004
1004
|
end
|
|
1005
1005
|
elsif name.start_with?("filter[")
|
|
1006
1006
|
if sort_shard
|
|
1007
1007
|
first_shard_filter_index ||= i
|
|
1008
|
-
[first_shard_filter_index, name]
|
|
1008
|
+
[first_shard_filter_index, name, i]
|
|
1009
1009
|
else
|
|
1010
1010
|
[i]
|
|
1011
1011
|
end
|
|
1012
1012
|
elsif name.start_with?("drilldowns[")
|
|
1013
1013
|
if sort_drilldown and not name.end_with?(".sort")
|
|
1014
1014
|
first_drilldowns_index ||= i
|
|
1015
|
-
[first_drilldowns_index, name]
|
|
1015
|
+
[first_drilldowns_index, name, i]
|
|
1016
1016
|
else
|
|
1017
1017
|
[i]
|
|
1018
1018
|
end
|
|
1019
1019
|
elsif name.start_with?("drilldown")
|
|
1020
1020
|
if sort_drilldown and not name.end_with?(".sort")
|
|
1021
1021
|
first_drilldown_index ||= i
|
|
1022
|
-
[first_drilldown_index, name, operation[:extra]]
|
|
1022
|
+
[first_drilldown_index, name, operation[:extra], i]
|
|
1023
1023
|
else
|
|
1024
1024
|
[i]
|
|
1025
1025
|
end
|
data/lib/grntest/version.rb
CHANGED