ceedling 1.1.2 → 1.1.4

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.
Files changed (173) hide show
  1. checksums.yaml +4 -4
  2. data/GIT_COMMIT_SHA +1 -1
  3. data/README.md +1 -1
  4. data/assets/fake_crash_test_fixture.rb +14 -0
  5. data/assets/partial_all_module.h +11 -0
  6. data/assets/run_with_ubsan.rb +15 -0
  7. data/assets/same_dir_pairing_module.c +4 -0
  8. data/assets/same_dir_pairing_module.h +8 -0
  9. data/assets/same_dir_pairing_module_func.h +6 -0
  10. data/assets/same_dir_pairing_other.c +4 -0
  11. data/assets/same_dir_pairing_other.h +8 -0
  12. data/assets/test_example_file_crash_sigsegv_with_param.c +32 -0
  13. data/assets/test_example_file_ub_shift_overflow.c +22 -0
  14. data/assets/test_partial_all_module.c +16 -0
  15. data/assets/test_same_dir_pairing.c +23 -0
  16. data/bin/actions_wrapper.rb +7 -6
  17. data/docs/Changelog.md +29 -1
  18. data/docs/mkdocs/configuration/reference/index.md +8 -0
  19. data/docs/mkdocs/configuration/reference/partials.md +38 -0
  20. data/examples/wondrous_forest/src/LightSensor.c +21 -4
  21. data/examples/wondrous_forest/src/LightSensor.h +12 -4
  22. data/examples/wondrous_forest/test/TestLightSensor.c +34 -4
  23. data/lib/ceedling/c_extractor/c_extractor.rb +37 -11
  24. data/lib/ceedling/c_extractor/c_extractor_constants.rb +0 -3
  25. data/lib/ceedling/c_extractor/c_extractor_declarations.rb +26 -25
  26. data/lib/ceedling/c_extractor/c_extractor_functions.rb +5 -12
  27. data/lib/ceedling/config/configurator.rb +8 -1
  28. data/lib/ceedling/config/configurator_setup.rb +26 -0
  29. data/lib/ceedling/defaults.rb +16 -2
  30. data/lib/ceedling/file_path_utils.rb +7 -0
  31. data/lib/ceedling/file_wrapper.rb +8 -0
  32. data/lib/ceedling/generators/generator.rb +15 -0
  33. data/lib/ceedling/generators/generator_helper.rb +25 -6
  34. data/lib/ceedling/generators/generator_partials.rb +84 -3
  35. data/lib/ceedling/generators/generator_test_results_backtrace.rb +268 -100
  36. data/lib/ceedling/generators/generator_test_runner.rb +20 -2
  37. data/lib/ceedling/includes/includes.rb +66 -11
  38. data/lib/ceedling/objects.yml +5 -0
  39. data/lib/ceedling/partials/partializer.rb +18 -3
  40. data/lib/ceedling/partials/partializer_utils.rb +6 -1
  41. data/lib/ceedling/preprocess/preprocessinator_includes_handler.rb +43 -16
  42. data/lib/ceedling/test_invoker/test_build_executor.rb +19 -8
  43. data/lib/version.rb +1 -1
  44. data/mkdocs.yml +1 -0
  45. data/plugins/gcov/lib/gcov.rb +2 -2
  46. data/site-local/404.html +30 -0
  47. data/site-local/configuration/environment-vars.html +30 -0
  48. data/site-local/configuration/global-collections.html +30 -0
  49. data/site-local/configuration/index.html +30 -0
  50. data/site-local/configuration/loading.html +30 -0
  51. data/site-local/configuration/mixins.html +30 -0
  52. data/site-local/configuration/parallel-builds.html +30 -0
  53. data/site-local/configuration/project-file.html +30 -0
  54. data/site-local/configuration/reference/cexception.html +30 -0
  55. data/site-local/configuration/reference/cmock.html +30 -0
  56. data/site-local/configuration/reference/defines.html +30 -0
  57. data/site-local/configuration/reference/environment.html +30 -0
  58. data/site-local/configuration/reference/extension.html +30 -0
  59. data/site-local/configuration/reference/files.html +30 -0
  60. data/site-local/configuration/reference/flags.html +30 -0
  61. data/site-local/configuration/reference/index.html +36 -0
  62. data/site-local/configuration/reference/libraries.html +30 -0
  63. data/site-local/configuration/reference/mixins.html +30 -0
  64. data/site-local/configuration/reference/partials.html +4257 -0
  65. data/site-local/configuration/reference/paths.html +30 -0
  66. data/site-local/configuration/reference/plugins.html +30 -0
  67. data/site-local/configuration/reference/project.html +30 -0
  68. data/site-local/configuration/reference/release-build.html +31 -1
  69. data/site-local/configuration/reference/test-build.html +31 -1
  70. data/site-local/configuration/reference/test-runner.html +30 -0
  71. data/site-local/configuration/reference/tools.html +30 -0
  72. data/site-local/configuration/reference/unity.html +30 -0
  73. data/site-local/configuration/which-ceedling.html +30 -0
  74. data/site-local/development/index.html +30 -0
  75. data/site-local/development/plugins/configuration.html +30 -0
  76. data/site-local/development/plugins/index.html +30 -0
  77. data/site-local/development/plugins/plugin-subclass.html +30 -0
  78. data/site-local/development/plugins/rake-tasks.html +30 -0
  79. data/site-local/development/workflow.html +30 -0
  80. data/site-local/getting-started/command-line.html +30 -0
  81. data/site-local/getting-started/example-projects/cipher-quest.html +30 -0
  82. data/site-local/getting-started/example-projects/index.html +30 -0
  83. data/site-local/getting-started/example-projects/temp-sensor.html +30 -0
  84. data/site-local/getting-started/example-projects/wondrous-forest.html +30 -0
  85. data/site-local/getting-started/index.html +30 -0
  86. data/site-local/getting-started/installation.html +30 -0
  87. data/site-local/getting-started/quick-start.html +30 -0
  88. data/site-local/help.html +30 -0
  89. data/site-local/index.html +30 -0
  90. data/site-local/overview/build-system.html +30 -0
  91. data/site-local/overview/index.html +30 -0
  92. data/site-local/overview/test-environments.html +30 -0
  93. data/site-local/overview/tools-and-frameworks.html +30 -0
  94. data/site-local/plugins/beep.html +30 -0
  95. data/site-local/plugins/bullseye.html +30 -0
  96. data/site-local/plugins/command-hooks.html +30 -0
  97. data/site-local/plugins/compile-commands-json-db.html +30 -0
  98. data/site-local/plugins/cppcheck.html +30 -0
  99. data/site-local/plugins/dependencies.html +30 -0
  100. data/site-local/plugins/fff.html +30 -0
  101. data/site-local/plugins/gcov/examples.html +30 -0
  102. data/site-local/plugins/gcov/gcovr.html +30 -0
  103. data/site-local/plugins/gcov/index.html +30 -0
  104. data/site-local/plugins/gcov/overview.html +30 -0
  105. data/site-local/plugins/gcov/reportgenerator.html +30 -0
  106. data/site-local/plugins/gcov/reporting.html +30 -0
  107. data/site-local/plugins/gcov/setup.html +30 -0
  108. data/site-local/plugins/gcov/tool-versions.html +30 -0
  109. data/site-local/plugins/gcov/troubleshooting.html +30 -0
  110. data/site-local/plugins/index.html +30 -0
  111. data/site-local/plugins/module-generator.html +30 -0
  112. data/site-local/plugins/report-build-warnings-log.html +30 -0
  113. data/site-local/plugins/report-tests-gtestlike-stdout.html +30 -0
  114. data/site-local/plugins/report-tests-ide-stdout.html +30 -0
  115. data/site-local/plugins/report-tests-log-factory.html +30 -0
  116. data/site-local/plugins/report-tests-pretty-stdout.html +30 -0
  117. data/site-local/plugins/report-tests-raw-output-log.html +30 -0
  118. data/site-local/plugins/report-tests-teamcity-stdout.html +30 -0
  119. data/site-local/plugins/valgrind.html +30 -0
  120. data/site-local/project/release-history.html +30 -0
  121. data/site-local/project/upgrade.html +30 -0
  122. data/site-local/reference/build-directives.html +30 -0
  123. data/site-local/reference/command-line.html +30 -0
  124. data/site-local/reference/environment-vars.html +30 -0
  125. data/site-local/reference/gcov-plugin.html +30 -0
  126. data/site-local/reference/global-collections.html +30 -0
  127. data/site-local/reference/index.html +30 -0
  128. data/site-local/reference/partials-macros.html +30 -0
  129. data/site-local/reference/project-configuration.html +30 -0
  130. data/site-local/sitemap.xml.gz +0 -0
  131. data/site-local/snapshot/examples/cipher_quest/index.html +30 -0
  132. data/site-local/snapshot/examples/temp_sensor/index.html +30 -0
  133. data/site-local/snapshot/examples/wondrous_forest/index.html +30 -0
  134. data/site-local/testing-guide/build-directives.html +30 -0
  135. data/site-local/testing-guide/conventions.html +30 -0
  136. data/site-local/testing-guide/frameworks.html +30 -0
  137. data/site-local/testing-guide/index.html +30 -0
  138. data/site-local/testing-guide/partials/configuration.html +30 -0
  139. data/site-local/testing-guide/partials/conventions.html +30 -0
  140. data/site-local/testing-guide/partials/directives.html +30 -0
  141. data/site-local/testing-guide/partials/example.html +30 -0
  142. data/site-local/testing-guide/partials/index.html +30 -0
  143. data/site-local/testing-guide/partials/overview.html +30 -0
  144. data/site-local/testing-guide/partials/variables.html +30 -0
  145. data/site-local/testing-guide/test-cases.html +30 -0
  146. data/site-local/testing-guide/test-sample.html +30 -0
  147. data/site-local/testing-guide/test-suite-anatomy.html +30 -0
  148. data/spec/support/system/spec_system_helper.rb +25 -0
  149. data/spec/support/system/system_context.rb +15 -0
  150. data/spec/system/deployment_as_gem_spec.rb +14 -0
  151. data/spec/system/deployment_as_vendor_spec.rb +19 -0
  152. data/spec/system/encoding_stress_spec.rb +4 -4
  153. data/spec/system/example_wondrous_forest_spec.rb +2 -2
  154. data/spec/system/support/common_test_cases.rb +227 -0
  155. data/spec/units/c_extractor/c_extractor_declarations_spec.rb +27 -4
  156. data/spec/units/c_extractor/c_extractor_functions_spec.rb +1 -11
  157. data/spec/units/c_extractor/c_extractor_integration_spec.rb +18 -11
  158. data/spec/units/c_extractor/c_extractor_spec.rb +57 -1
  159. data/spec/units/config/configurator_setup_spec.rb +61 -0
  160. data/spec/units/configurator_spec.rb +45 -0
  161. data/spec/units/file_path_utils_spec.rb +17 -0
  162. data/spec/units/generators/generator_helper_spec.rb +34 -7
  163. data/spec/units/generators/generator_partials_spec.rb +120 -12
  164. data/spec/units/generators/generator_test_results_backtrace_spec.rb +248 -41
  165. data/spec/units/generators/generator_test_runner_spec.rb +26 -2
  166. data/spec/units/includes/include_spec.rb +30 -18
  167. data/spec/units/includes/includes_spec.rb +100 -10
  168. data/spec/units/partials/partializer_spec.rb +113 -1
  169. data/spec/units/partials/partializer_utils_spec.rb +11 -0
  170. data/spec/units/preprocess/preprocessinator_includes_handler_spec.rb +96 -7
  171. data/spec/units/system_wrapper_spec.rb +72 -0
  172. data/spec/units/test_context_extractor_spec.rb +3 -3
  173. metadata +20 -2
@@ -1788,6 +1788,8 @@
1788
1788
 
1789
1789
 
1790
1790
 
1791
+
1792
+
1791
1793
 
1792
1794
 
1793
1795
 
@@ -1935,6 +1937,34 @@
1935
1937
 
1936
1938
 
1937
1939
 
1940
+ <li class="md-nav__item">
1941
+ <a href="../configuration/reference/partials.html" class="md-nav__link">
1942
+
1943
+
1944
+
1945
+ <span class="md-ellipsis">
1946
+
1947
+
1948
+ Partials Settings
1949
+
1950
+
1951
+
1952
+ </span>
1953
+
1954
+
1955
+
1956
+ </a>
1957
+ </li>
1958
+
1959
+
1960
+
1961
+
1962
+
1963
+
1964
+
1965
+
1966
+
1967
+
1938
1968
  <li class="md-nav__item">
1939
1969
  <a href="../configuration/reference/release-build.html" class="md-nav__link">
1940
1970
 
Binary file
@@ -1782,6 +1782,8 @@
1782
1782
 
1783
1783
 
1784
1784
 
1785
+
1786
+
1785
1787
 
1786
1788
 
1787
1789
 
@@ -1929,6 +1931,34 @@
1929
1931
 
1930
1932
 
1931
1933
 
1934
+ <li class="md-nav__item">
1935
+ <a href="../../../configuration/reference/partials.html" class="md-nav__link">
1936
+
1937
+
1938
+
1939
+ <span class="md-ellipsis">
1940
+
1941
+
1942
+ Partials Settings
1943
+
1944
+
1945
+
1946
+ </span>
1947
+
1948
+
1949
+
1950
+ </a>
1951
+ </li>
1952
+
1953
+
1954
+
1955
+
1956
+
1957
+
1958
+
1959
+
1960
+
1961
+
1932
1962
  <li class="md-nav__item">
1933
1963
  <a href="../../../configuration/reference/release-build.html" class="md-nav__link">
1934
1964
 
@@ -1782,6 +1782,8 @@
1782
1782
 
1783
1783
 
1784
1784
 
1785
+
1786
+
1785
1787
 
1786
1788
 
1787
1789
 
@@ -1929,6 +1931,34 @@
1929
1931
 
1930
1932
 
1931
1933
 
1934
+ <li class="md-nav__item">
1935
+ <a href="../../../configuration/reference/partials.html" class="md-nav__link">
1936
+
1937
+
1938
+
1939
+ <span class="md-ellipsis">
1940
+
1941
+
1942
+ Partials Settings
1943
+
1944
+
1945
+
1946
+ </span>
1947
+
1948
+
1949
+
1950
+ </a>
1951
+ </li>
1952
+
1953
+
1954
+
1955
+
1956
+
1957
+
1958
+
1959
+
1960
+
1961
+
1932
1962
  <li class="md-nav__item">
1933
1963
  <a href="../../../configuration/reference/release-build.html" class="md-nav__link">
1934
1964
 
@@ -1782,6 +1782,8 @@
1782
1782
 
1783
1783
 
1784
1784
 
1785
+
1786
+
1785
1787
 
1786
1788
 
1787
1789
 
@@ -1929,6 +1931,34 @@
1929
1931
 
1930
1932
 
1931
1933
 
1934
+ <li class="md-nav__item">
1935
+ <a href="../../../configuration/reference/partials.html" class="md-nav__link">
1936
+
1937
+
1938
+
1939
+ <span class="md-ellipsis">
1940
+
1941
+
1942
+ Partials Settings
1943
+
1944
+
1945
+
1946
+ </span>
1947
+
1948
+
1949
+
1950
+ </a>
1951
+ </li>
1952
+
1953
+
1954
+
1955
+
1956
+
1957
+
1958
+
1959
+
1960
+
1961
+
1932
1962
  <li class="md-nav__item">
1933
1963
  <a href="../../../configuration/reference/release-build.html" class="md-nav__link">
1934
1964
 
@@ -1954,6 +1954,8 @@
1954
1954
 
1955
1955
 
1956
1956
 
1957
+
1958
+
1957
1959
 
1958
1960
 
1959
1961
 
@@ -2101,6 +2103,34 @@
2101
2103
 
2102
2104
 
2103
2105
 
2106
+ <li class="md-nav__item">
2107
+ <a href="../configuration/reference/partials.html" class="md-nav__link">
2108
+
2109
+
2110
+
2111
+ <span class="md-ellipsis">
2112
+
2113
+
2114
+ Partials Settings
2115
+
2116
+
2117
+
2118
+ </span>
2119
+
2120
+
2121
+
2122
+ </a>
2123
+ </li>
2124
+
2125
+
2126
+
2127
+
2128
+
2129
+
2130
+
2131
+
2132
+
2133
+
2104
2134
  <li class="md-nav__item">
2105
2135
  <a href="../configuration/reference/release-build.html" class="md-nav__link">
2106
2136
 
@@ -2137,6 +2137,8 @@
2137
2137
 
2138
2138
 
2139
2139
 
2140
+
2141
+
2140
2142
 
2141
2143
 
2142
2144
 
@@ -2284,6 +2286,34 @@
2284
2286
 
2285
2287
 
2286
2288
 
2289
+ <li class="md-nav__item">
2290
+ <a href="../configuration/reference/partials.html" class="md-nav__link">
2291
+
2292
+
2293
+
2294
+ <span class="md-ellipsis">
2295
+
2296
+
2297
+ Partials Settings
2298
+
2299
+
2300
+
2301
+ </span>
2302
+
2303
+
2304
+
2305
+ </a>
2306
+ </li>
2307
+
2308
+
2309
+
2310
+
2311
+
2312
+
2313
+
2314
+
2315
+
2316
+
2287
2317
  <li class="md-nav__item">
2288
2318
  <a href="../configuration/reference/release-build.html" class="md-nav__link">
2289
2319
 
@@ -1949,6 +1949,8 @@
1949
1949
 
1950
1950
 
1951
1951
 
1952
+
1953
+
1952
1954
 
1953
1955
 
1954
1956
 
@@ -2096,6 +2098,34 @@
2096
2098
 
2097
2099
 
2098
2100
 
2101
+ <li class="md-nav__item">
2102
+ <a href="../configuration/reference/partials.html" class="md-nav__link">
2103
+
2104
+
2105
+
2106
+ <span class="md-ellipsis">
2107
+
2108
+
2109
+ Partials Settings
2110
+
2111
+
2112
+
2113
+ </span>
2114
+
2115
+
2116
+
2117
+ </a>
2118
+ </li>
2119
+
2120
+
2121
+
2122
+
2123
+
2124
+
2125
+
2126
+
2127
+
2128
+
2099
2129
  <li class="md-nav__item">
2100
2130
  <a href="../configuration/reference/release-build.html" class="md-nav__link">
2101
2131
 
@@ -1796,6 +1796,8 @@
1796
1796
 
1797
1797
 
1798
1798
 
1799
+
1800
+
1799
1801
 
1800
1802
 
1801
1803
 
@@ -1943,6 +1945,34 @@
1943
1945
 
1944
1946
 
1945
1947
 
1948
+ <li class="md-nav__item">
1949
+ <a href="../configuration/reference/partials.html" class="md-nav__link">
1950
+
1951
+
1952
+
1953
+ <span class="md-ellipsis">
1954
+
1955
+
1956
+ Partials Settings
1957
+
1958
+
1959
+
1960
+ </span>
1961
+
1962
+
1963
+
1964
+ </a>
1965
+ </li>
1966
+
1967
+
1968
+
1969
+
1970
+
1971
+
1972
+
1973
+
1974
+
1975
+
1946
1976
  <li class="md-nav__item">
1947
1977
  <a href="../configuration/reference/release-build.html" class="md-nav__link">
1948
1978
 
@@ -1917,6 +1917,8 @@
1917
1917
 
1918
1918
 
1919
1919
 
1920
+
1921
+
1920
1922
 
1921
1923
 
1922
1924
 
@@ -2064,6 +2066,34 @@
2064
2066
 
2065
2067
 
2066
2068
 
2069
+ <li class="md-nav__item">
2070
+ <a href="../../configuration/reference/partials.html" class="md-nav__link">
2071
+
2072
+
2073
+
2074
+ <span class="md-ellipsis">
2075
+
2076
+
2077
+ Partials Settings
2078
+
2079
+
2080
+
2081
+ </span>
2082
+
2083
+
2084
+
2085
+ </a>
2086
+ </li>
2087
+
2088
+
2089
+
2090
+
2091
+
2092
+
2093
+
2094
+
2095
+
2096
+
2067
2097
  <li class="md-nav__item">
2068
2098
  <a href="../../configuration/reference/release-build.html" class="md-nav__link">
2069
2099
 
@@ -1895,6 +1895,8 @@
1895
1895
 
1896
1896
 
1897
1897
 
1898
+
1899
+
1898
1900
 
1899
1901
 
1900
1902
 
@@ -2042,6 +2044,34 @@
2042
2044
 
2043
2045
 
2044
2046
 
2047
+ <li class="md-nav__item">
2048
+ <a href="../../configuration/reference/partials.html" class="md-nav__link">
2049
+
2050
+
2051
+
2052
+ <span class="md-ellipsis">
2053
+
2054
+
2055
+ Partials Settings
2056
+
2057
+
2058
+
2059
+ </span>
2060
+
2061
+
2062
+
2063
+ </a>
2064
+ </li>
2065
+
2066
+
2067
+
2068
+
2069
+
2070
+
2071
+
2072
+
2073
+
2074
+
2045
2075
  <li class="md-nav__item">
2046
2076
  <a href="../../configuration/reference/release-build.html" class="md-nav__link">
2047
2077
 
@@ -1967,6 +1967,8 @@
1967
1967
 
1968
1968
 
1969
1969
 
1970
+
1971
+
1970
1972
 
1971
1973
 
1972
1974
 
@@ -2114,6 +2116,34 @@
2114
2116
 
2115
2117
 
2116
2118
 
2119
+ <li class="md-nav__item">
2120
+ <a href="../../configuration/reference/partials.html" class="md-nav__link">
2121
+
2122
+
2123
+
2124
+ <span class="md-ellipsis">
2125
+
2126
+
2127
+ Partials Settings
2128
+
2129
+
2130
+
2131
+ </span>
2132
+
2133
+
2134
+
2135
+ </a>
2136
+ </li>
2137
+
2138
+
2139
+
2140
+
2141
+
2142
+
2143
+
2144
+
2145
+
2146
+
2117
2147
  <li class="md-nav__item">
2118
2148
  <a href="../../configuration/reference/release-build.html" class="md-nav__link">
2119
2149
 
@@ -1923,6 +1923,8 @@
1923
1923
 
1924
1924
 
1925
1925
 
1926
+
1927
+
1926
1928
 
1927
1929
 
1928
1930
 
@@ -2070,6 +2072,34 @@
2070
2072
 
2071
2073
 
2072
2074
 
2075
+ <li class="md-nav__item">
2076
+ <a href="../../configuration/reference/partials.html" class="md-nav__link">
2077
+
2078
+
2079
+
2080
+ <span class="md-ellipsis">
2081
+
2082
+
2083
+ Partials Settings
2084
+
2085
+
2086
+
2087
+ </span>
2088
+
2089
+
2090
+
2091
+ </a>
2092
+ </li>
2093
+
2094
+
2095
+
2096
+
2097
+
2098
+
2099
+
2100
+
2101
+
2102
+
2073
2103
  <li class="md-nav__item">
2074
2104
  <a href="../../configuration/reference/release-build.html" class="md-nav__link">
2075
2105
 
@@ -1798,6 +1798,8 @@
1798
1798
 
1799
1799
 
1800
1800
 
1801
+
1802
+
1801
1803
 
1802
1804
 
1803
1805
 
@@ -1945,6 +1947,34 @@
1945
1947
 
1946
1948
 
1947
1949
 
1950
+ <li class="md-nav__item">
1951
+ <a href="../../configuration/reference/partials.html" class="md-nav__link">
1952
+
1953
+
1954
+
1955
+ <span class="md-ellipsis">
1956
+
1957
+
1958
+ Partials Settings
1959
+
1960
+
1961
+
1962
+ </span>
1963
+
1964
+
1965
+
1966
+ </a>
1967
+ </li>
1968
+
1969
+
1970
+
1971
+
1972
+
1973
+
1974
+
1975
+
1976
+
1977
+
1948
1978
  <li class="md-nav__item">
1949
1979
  <a href="../../configuration/reference/release-build.html" class="md-nav__link">
1950
1980
 
@@ -1878,6 +1878,8 @@
1878
1878
 
1879
1879
 
1880
1880
 
1881
+
1882
+
1881
1883
 
1882
1884
 
1883
1885
 
@@ -2025,6 +2027,34 @@
2025
2027
 
2026
2028
 
2027
2029
 
2030
+ <li class="md-nav__item">
2031
+ <a href="../../configuration/reference/partials.html" class="md-nav__link">
2032
+
2033
+
2034
+
2035
+ <span class="md-ellipsis">
2036
+
2037
+
2038
+ Partials Settings
2039
+
2040
+
2041
+
2042
+ </span>
2043
+
2044
+
2045
+
2046
+ </a>
2047
+ </li>
2048
+
2049
+
2050
+
2051
+
2052
+
2053
+
2054
+
2055
+
2056
+
2057
+
2028
2058
  <li class="md-nav__item">
2029
2059
  <a href="../../configuration/reference/release-build.html" class="md-nav__link">
2030
2060
 
@@ -1934,6 +1934,8 @@
1934
1934
 
1935
1935
 
1936
1936
 
1937
+
1938
+
1937
1939
 
1938
1940
 
1939
1941
 
@@ -2081,6 +2083,34 @@
2081
2083
 
2082
2084
 
2083
2085
 
2086
+ <li class="md-nav__item">
2087
+ <a href="../../configuration/reference/partials.html" class="md-nav__link">
2088
+
2089
+
2090
+
2091
+ <span class="md-ellipsis">
2092
+
2093
+
2094
+ Partials Settings
2095
+
2096
+
2097
+
2098
+ </span>
2099
+
2100
+
2101
+
2102
+ </a>
2103
+ </li>
2104
+
2105
+
2106
+
2107
+
2108
+
2109
+
2110
+
2111
+
2112
+
2113
+
2084
2114
  <li class="md-nav__item">
2085
2115
  <a href="../../configuration/reference/release-build.html" class="md-nav__link">
2086
2116
 
@@ -1920,6 +1920,8 @@
1920
1920
 
1921
1921
 
1922
1922
 
1923
+
1924
+
1923
1925
 
1924
1926
 
1925
1927
 
@@ -2067,6 +2069,34 @@
2067
2069
 
2068
2070
 
2069
2071
 
2072
+ <li class="md-nav__item">
2073
+ <a href="../configuration/reference/partials.html" class="md-nav__link">
2074
+
2075
+
2076
+
2077
+ <span class="md-ellipsis">
2078
+
2079
+
2080
+ Partials Settings
2081
+
2082
+
2083
+
2084
+ </span>
2085
+
2086
+
2087
+
2088
+ </a>
2089
+ </li>
2090
+
2091
+
2092
+
2093
+
2094
+
2095
+
2096
+
2097
+
2098
+
2099
+
2070
2100
  <li class="md-nav__item">
2071
2101
  <a href="../configuration/reference/release-build.html" class="md-nav__link">
2072
2102