brakeman 7.0.2 → 7.1.0

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 (541) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGES.md +11 -0
  3. data/bundle/load.rb +16 -16
  4. data/bundle/ruby/{3.1.0/gems/csv-3.3.3 → 3.2.0/gems/csv-3.3.5}/NEWS.md +20 -1
  5. data/bundle/ruby/{3.1.0/gems/csv-3.3.3 → 3.2.0/gems/csv-3.3.5}/lib/csv/parser.rb +1 -1
  6. data/bundle/ruby/{3.1.0/gems/csv-3.3.3 → 3.2.0/gems/csv-3.3.5}/lib/csv/version.rb +1 -1
  7. data/bundle/ruby/{3.1.0/gems/haml-5.2.2 → 3.2.0/gems/haml-6.3.0}/CHANGELOG.md +168 -4
  8. data/bundle/ruby/{3.1.0/gems/haml-5.2.2 → 3.2.0/gems/haml-6.3.0}/FAQ.md +1 -1
  9. data/bundle/ruby/3.2.0/gems/haml-6.3.0/Gemfile +27 -0
  10. data/bundle/ruby/{3.1.0/gems/haml-5.2.2 → 3.2.0/gems/haml-6.3.0}/MIT-LICENSE +1 -1
  11. data/bundle/ruby/{3.1.0/gems/haml-5.2.2 → 3.2.0/gems/haml-6.3.0}/README.md +22 -34
  12. data/bundle/ruby/{3.1.0/gems/haml-5.2.2 → 3.2.0/gems/haml-6.3.0}/REFERENCE.md +95 -159
  13. data/bundle/ruby/3.2.0/gems/haml-6.3.0/exe/haml +6 -0
  14. data/bundle/ruby/3.2.0/gems/haml-6.3.0/haml.gemspec +43 -0
  15. data/bundle/ruby/3.2.0/gems/haml-6.3.0/lib/haml/ambles.rb +20 -0
  16. data/bundle/ruby/3.2.0/gems/haml-6.3.0/lib/haml/attribute_builder.rb +162 -0
  17. data/bundle/ruby/3.2.0/gems/haml-6.3.0/lib/haml/attribute_compiler.rb +133 -0
  18. data/bundle/ruby/3.2.0/gems/haml-6.3.0/lib/haml/attribute_parser.rb +116 -0
  19. data/bundle/ruby/3.2.0/gems/haml-6.3.0/lib/haml/cli.rb +154 -0
  20. data/bundle/ruby/3.2.0/gems/haml-6.3.0/lib/haml/compiler/children_compiler.rb +155 -0
  21. data/bundle/ruby/3.2.0/gems/haml-6.3.0/lib/haml/compiler/comment_compiler.rb +51 -0
  22. data/bundle/ruby/3.2.0/gems/haml-6.3.0/lib/haml/compiler/doctype_compiler.rb +52 -0
  23. data/bundle/ruby/3.2.0/gems/haml-6.3.0/lib/haml/compiler/script_compiler.rb +114 -0
  24. data/bundle/ruby/3.2.0/gems/haml-6.3.0/lib/haml/compiler/silent_script_compiler.rb +24 -0
  25. data/bundle/ruby/3.2.0/gems/haml-6.3.0/lib/haml/compiler/tag_compiler.rb +76 -0
  26. data/bundle/ruby/3.2.0/gems/haml-6.3.0/lib/haml/compiler.rb +97 -0
  27. data/bundle/ruby/3.2.0/gems/haml-6.3.0/lib/haml/dynamic_merger.rb +67 -0
  28. data/bundle/ruby/3.2.0/gems/haml-6.3.0/lib/haml/engine.rb +59 -0
  29. data/bundle/ruby/{3.1.0/gems/haml-5.2.2 → 3.2.0/gems/haml-6.3.0}/lib/haml/error.rb +5 -4
  30. data/bundle/ruby/3.2.0/gems/haml-6.3.0/lib/haml/escape.rb +13 -0
  31. data/bundle/ruby/3.2.0/gems/haml-6.3.0/lib/haml/escape_any.rb +21 -0
  32. data/bundle/ruby/3.2.0/gems/haml-6.3.0/lib/haml/filters/base.rb +12 -0
  33. data/bundle/ruby/3.2.0/gems/haml-6.3.0/lib/haml/filters/cdata.rb +20 -0
  34. data/bundle/ruby/3.2.0/gems/haml-6.3.0/lib/haml/filters/coffee.rb +17 -0
  35. data/bundle/ruby/3.2.0/gems/haml-6.3.0/lib/haml/filters/css.rb +33 -0
  36. data/bundle/ruby/3.2.0/gems/haml-6.3.0/lib/haml/filters/erb.rb +10 -0
  37. data/bundle/ruby/3.2.0/gems/haml-6.3.0/lib/haml/filters/escaped.rb +22 -0
  38. data/bundle/ruby/3.2.0/gems/haml-6.3.0/lib/haml/filters/javascript.rb +33 -0
  39. data/bundle/ruby/3.2.0/gems/haml-6.3.0/lib/haml/filters/less.rb +20 -0
  40. data/bundle/ruby/3.2.0/gems/haml-6.3.0/lib/haml/filters/markdown.rb +11 -0
  41. data/bundle/ruby/3.2.0/gems/haml-6.3.0/lib/haml/filters/plain.rb +29 -0
  42. data/bundle/ruby/3.2.0/gems/haml-6.3.0/lib/haml/filters/preserve.rb +22 -0
  43. data/bundle/ruby/3.2.0/gems/haml-6.3.0/lib/haml/filters/ruby.rb +10 -0
  44. data/bundle/ruby/3.2.0/gems/haml-6.3.0/lib/haml/filters/sass.rb +15 -0
  45. data/bundle/ruby/3.2.0/gems/haml-6.3.0/lib/haml/filters/scss.rb +15 -0
  46. data/bundle/ruby/3.2.0/gems/haml-6.3.0/lib/haml/filters/text_base.rb +25 -0
  47. data/bundle/ruby/3.2.0/gems/haml-6.3.0/lib/haml/filters/tilt_base.rb +59 -0
  48. data/bundle/ruby/3.2.0/gems/haml-6.3.0/lib/haml/filters.rb +75 -0
  49. data/bundle/ruby/3.2.0/gems/haml-6.3.0/lib/haml/force_escape.rb +29 -0
  50. data/bundle/ruby/3.2.0/gems/haml-6.3.0/lib/haml/helpers.rb +15 -0
  51. data/bundle/ruby/3.2.0/gems/haml-6.3.0/lib/haml/html.rb +22 -0
  52. data/bundle/ruby/3.2.0/gems/haml-6.3.0/lib/haml/identity.rb +13 -0
  53. data/bundle/ruby/3.2.0/gems/haml-6.3.0/lib/haml/object_ref.rb +35 -0
  54. data/bundle/ruby/{3.1.0/gems/haml-5.2.2 → 3.2.0/gems/haml-6.3.0}/lib/haml/parser.rb +158 -23
  55. data/bundle/ruby/3.2.0/gems/haml-6.3.0/lib/haml/rails_helpers.rb +53 -0
  56. data/bundle/ruby/3.2.0/gems/haml-6.3.0/lib/haml/rails_template.rb +62 -0
  57. data/bundle/ruby/3.2.0/gems/haml-6.3.0/lib/haml/railtie.rb +10 -0
  58. data/bundle/ruby/3.2.0/gems/haml-6.3.0/lib/haml/ruby_expression.rb +32 -0
  59. data/bundle/ruby/3.2.0/gems/haml-6.3.0/lib/haml/string_splitter.rb +140 -0
  60. data/bundle/ruby/3.2.0/gems/haml-6.3.0/lib/haml/template.rb +20 -0
  61. data/bundle/ruby/{3.1.0/gems/haml-5.2.2 → 3.2.0/gems/haml-6.3.0}/lib/haml/temple_line_counter.rb +2 -1
  62. data/bundle/ruby/{3.1.0/gems/haml-5.2.2 → 3.2.0/gems/haml-6.3.0}/lib/haml/util.rb +19 -15
  63. data/bundle/ruby/{3.1.0/gems/haml-5.2.2 → 3.2.0/gems/haml-6.3.0}/lib/haml/version.rb +1 -2
  64. data/bundle/ruby/3.2.0/gems/haml-6.3.0/lib/haml/whitespace.rb +8 -0
  65. data/bundle/ruby/3.2.0/gems/haml-6.3.0/lib/haml.rb +13 -0
  66. data/bundle/ruby/3.2.0/gems/parallel-1.27.0/lib/parallel/version.rb +4 -0
  67. data/bundle/ruby/{3.1.0/gems/parallel-1.26.3 → 3.2.0/gems/parallel-1.27.0}/lib/parallel.rb +1 -1
  68. data/bundle/ruby/{3.1.0/gems/tilt-2.6.0 → 3.2.0/gems/tilt-2.6.1}/lib/tilt/template.rb +6 -1
  69. data/bundle/ruby/{3.1.0/gems/tilt-2.6.0 → 3.2.0/gems/tilt-2.6.1}/lib/tilt.rb +1 -1
  70. data/lib/brakeman/app_tree.rb +16 -4
  71. data/lib/brakeman/checks/check_eol_rails.rb +1 -0
  72. data/lib/brakeman/checks/check_eol_ruby.rb +1 -0
  73. data/lib/brakeman/commandline.rb +5 -0
  74. data/lib/brakeman/messages.rb +1 -1
  75. data/lib/brakeman/options.rb +4 -0
  76. data/lib/brakeman/parsers/haml6_embedded.rb +23 -0
  77. data/lib/brakeman/parsers/template_parser.rb +32 -7
  78. data/lib/brakeman/processor.rb +2 -0
  79. data/lib/brakeman/processors/base_processor.rb +2 -0
  80. data/lib/brakeman/processors/haml6_template_processor.rb +92 -0
  81. data/lib/brakeman/processors/haml_template_processor.rb +7 -1
  82. data/lib/brakeman/processors/lib/render_helper.rb +38 -1
  83. data/lib/brakeman/processors/template_processor.rb +1 -1
  84. data/lib/brakeman/report/report_html.rb +1 -1
  85. data/lib/brakeman/report/report_junit.rb +4 -57
  86. data/lib/brakeman/report/templates/header.html.erb +7 -2
  87. data/lib/brakeman/report/templates/ignored_warnings.html.erb +3 -3
  88. data/lib/brakeman/tracker.rb +6 -0
  89. data/lib/brakeman/version.rb +1 -1
  90. data/lib/brakeman.rb +4 -0
  91. metadata +490 -469
  92. data/bundle/ruby/3.1.0/gems/haml-5.2.2/Gemfile +0 -16
  93. data/bundle/ruby/3.1.0/gems/haml-5.2.2/TODO +0 -24
  94. data/bundle/ruby/3.1.0/gems/haml-5.2.2/haml.gemspec +0 -45
  95. data/bundle/ruby/3.1.0/gems/haml-5.2.2/lib/haml/attribute_builder.rb +0 -219
  96. data/bundle/ruby/3.1.0/gems/haml-5.2.2/lib/haml/attribute_compiler.rb +0 -237
  97. data/bundle/ruby/3.1.0/gems/haml-5.2.2/lib/haml/attribute_parser.rb +0 -150
  98. data/bundle/ruby/3.1.0/gems/haml-5.2.2/lib/haml/buffer.rb +0 -182
  99. data/bundle/ruby/3.1.0/gems/haml-5.2.2/lib/haml/compiler.rb +0 -330
  100. data/bundle/ruby/3.1.0/gems/haml-5.2.2/lib/haml/engine.rb +0 -238
  101. data/bundle/ruby/3.1.0/gems/haml-5.2.2/lib/haml/escapable.rb +0 -77
  102. data/bundle/ruby/3.1.0/gems/haml-5.2.2/lib/haml/exec.rb +0 -347
  103. data/bundle/ruby/3.1.0/gems/haml-5.2.2/lib/haml/filters.rb +0 -399
  104. data/bundle/ruby/3.1.0/gems/haml-5.2.2/lib/haml/generator.rb +0 -42
  105. data/bundle/ruby/3.1.0/gems/haml-5.2.2/lib/haml/helpers/action_view_extensions.rb +0 -60
  106. data/bundle/ruby/3.1.0/gems/haml-5.2.2/lib/haml/helpers/action_view_mods.rb +0 -132
  107. data/bundle/ruby/3.1.0/gems/haml-5.2.2/lib/haml/helpers/action_view_xss_mods.rb +0 -60
  108. data/bundle/ruby/3.1.0/gems/haml-5.2.2/lib/haml/helpers/safe_erubi_template.rb +0 -20
  109. data/bundle/ruby/3.1.0/gems/haml-5.2.2/lib/haml/helpers/safe_erubis_template.rb +0 -33
  110. data/bundle/ruby/3.1.0/gems/haml-5.2.2/lib/haml/helpers/xss_mods.rb +0 -114
  111. data/bundle/ruby/3.1.0/gems/haml-5.2.2/lib/haml/helpers.rb +0 -709
  112. data/bundle/ruby/3.1.0/gems/haml-5.2.2/lib/haml/options.rb +0 -273
  113. data/bundle/ruby/3.1.0/gems/haml-5.2.2/lib/haml/plugin.rb +0 -54
  114. data/bundle/ruby/3.1.0/gems/haml-5.2.2/lib/haml/railtie.rb +0 -53
  115. data/bundle/ruby/3.1.0/gems/haml-5.2.2/lib/haml/sass_rails_filter.rb +0 -47
  116. data/bundle/ruby/3.1.0/gems/haml-5.2.2/lib/haml/template/options.rb +0 -27
  117. data/bundle/ruby/3.1.0/gems/haml-5.2.2/lib/haml/template.rb +0 -39
  118. data/bundle/ruby/3.1.0/gems/haml-5.2.2/lib/haml/temple_engine.rb +0 -124
  119. data/bundle/ruby/3.1.0/gems/haml-5.2.2/lib/haml.rb +0 -25
  120. data/bundle/ruby/3.1.0/gems/haml-5.2.2/yard/default/fulldoc/html/css/common.sass +0 -15
  121. data/bundle/ruby/3.1.0/gems/haml-5.2.2/yard/default/layout/html/footer.erb +0 -12
  122. data/bundle/ruby/3.1.0/gems/parallel-1.26.3/lib/parallel/version.rb +0 -4
  123. /data/bundle/ruby/{3.1.0/gems/csv-3.3.3 → 3.2.0/gems/csv-3.3.5}/LICENSE.txt +0 -0
  124. /data/bundle/ruby/{3.1.0/gems/csv-3.3.3 → 3.2.0/gems/csv-3.3.5}/README.md +0 -0
  125. /data/bundle/ruby/{3.1.0/gems/csv-3.3.3 → 3.2.0/gems/csv-3.3.5}/lib/csv/core_ext/array.rb +0 -0
  126. /data/bundle/ruby/{3.1.0/gems/csv-3.3.3 → 3.2.0/gems/csv-3.3.5}/lib/csv/core_ext/string.rb +0 -0
  127. /data/bundle/ruby/{3.1.0/gems/csv-3.3.3 → 3.2.0/gems/csv-3.3.5}/lib/csv/fields_converter.rb +0 -0
  128. /data/bundle/ruby/{3.1.0/gems/csv-3.3.3 → 3.2.0/gems/csv-3.3.5}/lib/csv/input_record_separator.rb +0 -0
  129. /data/bundle/ruby/{3.1.0/gems/csv-3.3.3 → 3.2.0/gems/csv-3.3.5}/lib/csv/row.rb +0 -0
  130. /data/bundle/ruby/{3.1.0/gems/csv-3.3.3 → 3.2.0/gems/csv-3.3.5}/lib/csv/table.rb +0 -0
  131. /data/bundle/ruby/{3.1.0/gems/csv-3.3.3 → 3.2.0/gems/csv-3.3.5}/lib/csv/writer.rb +0 -0
  132. /data/bundle/ruby/{3.1.0/gems/csv-3.3.3 → 3.2.0/gems/csv-3.3.5}/lib/csv.rb +0 -0
  133. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/erubis-2.7.0/CHANGES.txt +0 -0
  134. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/erubis-2.7.0/MIT-LICENSE +0 -0
  135. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/erubis-2.7.0/README.txt +0 -0
  136. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/erubis-2.7.0/contrib/erubis +0 -0
  137. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/erubis-2.7.0/contrib/erubis-run.rb +0 -0
  138. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/erubis-2.7.0/contrib/inline-require +0 -0
  139. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/erubis-2.7.0/lib/erubis/context.rb +0 -0
  140. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/erubis-2.7.0/lib/erubis/converter.rb +0 -0
  141. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/erubis-2.7.0/lib/erubis/engine/ec.rb +0 -0
  142. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/erubis-2.7.0/lib/erubis/engine/ecpp.rb +0 -0
  143. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/erubis-2.7.0/lib/erubis/engine/ejava.rb +0 -0
  144. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/erubis-2.7.0/lib/erubis/engine/ejavascript.rb +0 -0
  145. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/erubis-2.7.0/lib/erubis/engine/enhanced.rb +0 -0
  146. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/erubis-2.7.0/lib/erubis/engine/eperl.rb +0 -0
  147. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/erubis-2.7.0/lib/erubis/engine/ephp.rb +0 -0
  148. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/erubis-2.7.0/lib/erubis/engine/eruby.rb +0 -0
  149. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/erubis-2.7.0/lib/erubis/engine/escheme.rb +0 -0
  150. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/erubis-2.7.0/lib/erubis/engine/optimized.rb +0 -0
  151. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/erubis-2.7.0/lib/erubis/engine.rb +0 -0
  152. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/erubis-2.7.0/lib/erubis/enhancer.rb +0 -0
  153. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/erubis-2.7.0/lib/erubis/error.rb +0 -0
  154. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/erubis-2.7.0/lib/erubis/evaluator.rb +0 -0
  155. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/erubis-2.7.0/lib/erubis/generator.rb +0 -0
  156. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/erubis-2.7.0/lib/erubis/helper.rb +0 -0
  157. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/erubis-2.7.0/lib/erubis/helpers/rails_form_helper.rb +0 -0
  158. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/erubis-2.7.0/lib/erubis/helpers/rails_helper.rb +0 -0
  159. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/erubis-2.7.0/lib/erubis/local-setting.rb +0 -0
  160. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/erubis-2.7.0/lib/erubis/main.rb +0 -0
  161. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/erubis-2.7.0/lib/erubis/preprocessing.rb +0 -0
  162. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/erubis-2.7.0/lib/erubis/tiny.rb +0 -0
  163. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/erubis-2.7.0/lib/erubis/util.rb +0 -0
  164. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/erubis-2.7.0/lib/erubis.rb +0 -0
  165. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/erubis-2.7.0/setup.rb +0 -0
  166. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/highline-3.1.2/AUTHORS +0 -0
  167. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/highline-3.1.2/COPYING +0 -0
  168. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/highline-3.1.2/Changelog.md +0 -0
  169. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/highline-3.1.2/Gemfile +0 -0
  170. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/highline-3.1.2/LICENSE +0 -0
  171. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/highline-3.1.2/README.md +0 -0
  172. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/highline-3.1.2/TODO +0 -0
  173. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/highline-3.1.2/highline.gemspec +0 -0
  174. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/highline-3.1.2/lib/highline/builtin_styles.rb +0 -0
  175. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/highline-3.1.2/lib/highline/color_scheme.rb +0 -0
  176. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/highline-3.1.2/lib/highline/compatibility.rb +0 -0
  177. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/highline-3.1.2/lib/highline/custom_errors.rb +0 -0
  178. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/highline-3.1.2/lib/highline/import.rb +0 -0
  179. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/highline-3.1.2/lib/highline/io_console_compatible.rb +0 -0
  180. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/highline-3.1.2/lib/highline/list.rb +0 -0
  181. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/highline-3.1.2/lib/highline/list_renderer.rb +0 -0
  182. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/highline-3.1.2/lib/highline/menu/item.rb +0 -0
  183. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/highline-3.1.2/lib/highline/menu.rb +0 -0
  184. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/highline-3.1.2/lib/highline/paginator.rb +0 -0
  185. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/highline-3.1.2/lib/highline/question/answer_converter.rb +0 -0
  186. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/highline-3.1.2/lib/highline/question.rb +0 -0
  187. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/highline-3.1.2/lib/highline/question_asker.rb +0 -0
  188. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/highline-3.1.2/lib/highline/simulate.rb +0 -0
  189. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/highline-3.1.2/lib/highline/statement.rb +0 -0
  190. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/highline-3.1.2/lib/highline/string.rb +0 -0
  191. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/highline-3.1.2/lib/highline/string_extensions.rb +0 -0
  192. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/highline-3.1.2/lib/highline/style.rb +0 -0
  193. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/highline-3.1.2/lib/highline/template_renderer.rb +0 -0
  194. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/highline-3.1.2/lib/highline/terminal/io_console.rb +0 -0
  195. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/highline-3.1.2/lib/highline/terminal/ncurses.rb +0 -0
  196. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/highline-3.1.2/lib/highline/terminal/unix_stty.rb +0 -0
  197. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/highline-3.1.2/lib/highline/terminal.rb +0 -0
  198. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/highline-3.1.2/lib/highline/version.rb +0 -0
  199. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/highline-3.1.2/lib/highline/wrapper.rb +0 -0
  200. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/highline-3.1.2/lib/highline.rb +0 -0
  201. /data/bundle/ruby/{3.1.0/gems/parallel-1.26.3 → 3.2.0/gems/parallel-1.27.0}/MIT-LICENSE.txt +0 -0
  202. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/reline-0.6.1/BSDL +0 -0
  203. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/reline-0.6.1/COPYING +0 -0
  204. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/reline-0.6.1/README.md +0 -0
  205. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/reline-0.6.1/lib/reline/config.rb +0 -0
  206. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/reline-0.6.1/lib/reline/face.rb +0 -0
  207. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/reline-0.6.1/lib/reline/history.rb +0 -0
  208. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/reline-0.6.1/lib/reline/io/ansi.rb +0 -0
  209. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/reline-0.6.1/lib/reline/io/dumb.rb +0 -0
  210. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/reline-0.6.1/lib/reline/io/windows.rb +0 -0
  211. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/reline-0.6.1/lib/reline/io.rb +0 -0
  212. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/reline-0.6.1/lib/reline/key_actor/base.rb +0 -0
  213. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/reline-0.6.1/lib/reline/key_actor/composite.rb +0 -0
  214. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/reline-0.6.1/lib/reline/key_actor/emacs.rb +0 -0
  215. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/reline-0.6.1/lib/reline/key_actor/vi_command.rb +0 -0
  216. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/reline-0.6.1/lib/reline/key_actor/vi_insert.rb +0 -0
  217. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/reline-0.6.1/lib/reline/key_actor.rb +0 -0
  218. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/reline-0.6.1/lib/reline/key_stroke.rb +0 -0
  219. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/reline-0.6.1/lib/reline/kill_ring.rb +0 -0
  220. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/reline-0.6.1/lib/reline/line_editor.rb +0 -0
  221. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/reline-0.6.1/lib/reline/unicode/east_asian_width.rb +0 -0
  222. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/reline-0.6.1/lib/reline/unicode.rb +0 -0
  223. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/reline-0.6.1/lib/reline/version.rb +0 -0
  224. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/reline-0.6.1/lib/reline.rb +0 -0
  225. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/reline-0.6.1/license_of_rb-readline +0 -0
  226. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/rexml-3.4.1/LICENSE.txt +0 -0
  227. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/rexml-3.4.1/NEWS.md +0 -0
  228. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/rexml-3.4.1/README.md +0 -0
  229. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/rexml-3.4.1/lib/rexml/attlistdecl.rb +0 -0
  230. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/rexml-3.4.1/lib/rexml/attribute.rb +0 -0
  231. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/rexml-3.4.1/lib/rexml/cdata.rb +0 -0
  232. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/rexml-3.4.1/lib/rexml/child.rb +0 -0
  233. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/rexml-3.4.1/lib/rexml/comment.rb +0 -0
  234. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/rexml-3.4.1/lib/rexml/doctype.rb +0 -0
  235. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/rexml-3.4.1/lib/rexml/document.rb +0 -0
  236. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/rexml-3.4.1/lib/rexml/dtd/attlistdecl.rb +0 -0
  237. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/rexml-3.4.1/lib/rexml/dtd/dtd.rb +0 -0
  238. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/rexml-3.4.1/lib/rexml/dtd/elementdecl.rb +0 -0
  239. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/rexml-3.4.1/lib/rexml/dtd/entitydecl.rb +0 -0
  240. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/rexml-3.4.1/lib/rexml/dtd/notationdecl.rb +0 -0
  241. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/rexml-3.4.1/lib/rexml/element.rb +0 -0
  242. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/rexml-3.4.1/lib/rexml/encoding.rb +0 -0
  243. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/rexml-3.4.1/lib/rexml/entity.rb +0 -0
  244. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/rexml-3.4.1/lib/rexml/formatters/default.rb +0 -0
  245. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/rexml-3.4.1/lib/rexml/formatters/pretty.rb +0 -0
  246. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/rexml-3.4.1/lib/rexml/formatters/transitive.rb +0 -0
  247. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/rexml-3.4.1/lib/rexml/functions.rb +0 -0
  248. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/rexml-3.4.1/lib/rexml/instruction.rb +0 -0
  249. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/rexml-3.4.1/lib/rexml/light/node.rb +0 -0
  250. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/rexml-3.4.1/lib/rexml/namespace.rb +0 -0
  251. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/rexml-3.4.1/lib/rexml/node.rb +0 -0
  252. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/rexml-3.4.1/lib/rexml/output.rb +0 -0
  253. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/rexml-3.4.1/lib/rexml/parent.rb +0 -0
  254. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/rexml-3.4.1/lib/rexml/parseexception.rb +0 -0
  255. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/rexml-3.4.1/lib/rexml/parsers/baseparser.rb +0 -0
  256. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/rexml-3.4.1/lib/rexml/parsers/lightparser.rb +0 -0
  257. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/rexml-3.4.1/lib/rexml/parsers/pullparser.rb +0 -0
  258. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/rexml-3.4.1/lib/rexml/parsers/sax2parser.rb +0 -0
  259. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/rexml-3.4.1/lib/rexml/parsers/streamparser.rb +0 -0
  260. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/rexml-3.4.1/lib/rexml/parsers/treeparser.rb +0 -0
  261. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/rexml-3.4.1/lib/rexml/parsers/ultralightparser.rb +0 -0
  262. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/rexml-3.4.1/lib/rexml/parsers/xpathparser.rb +0 -0
  263. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/rexml-3.4.1/lib/rexml/quickpath.rb +0 -0
  264. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/rexml-3.4.1/lib/rexml/rexml.rb +0 -0
  265. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/rexml-3.4.1/lib/rexml/sax2listener.rb +0 -0
  266. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/rexml-3.4.1/lib/rexml/security.rb +0 -0
  267. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/rexml-3.4.1/lib/rexml/source.rb +0 -0
  268. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/rexml-3.4.1/lib/rexml/streamlistener.rb +0 -0
  269. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/rexml-3.4.1/lib/rexml/text.rb +0 -0
  270. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/rexml-3.4.1/lib/rexml/undefinednamespaceexception.rb +0 -0
  271. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/rexml-3.4.1/lib/rexml/validation/relaxng.rb +0 -0
  272. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/rexml-3.4.1/lib/rexml/validation/validation.rb +0 -0
  273. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/rexml-3.4.1/lib/rexml/validation/validationexception.rb +0 -0
  274. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/rexml-3.4.1/lib/rexml/xmldecl.rb +0 -0
  275. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/rexml-3.4.1/lib/rexml/xmltokens.rb +0 -0
  276. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/rexml-3.4.1/lib/rexml/xpath.rb +0 -0
  277. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/rexml-3.4.1/lib/rexml/xpath_parser.rb +0 -0
  278. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/rexml-3.4.1/lib/rexml.rb +0 -0
  279. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/ruby2ruby-2.5.2/History.rdoc +0 -0
  280. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/ruby2ruby-2.5.2/Manifest.txt +0 -0
  281. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/ruby2ruby-2.5.2/README.rdoc +0 -0
  282. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/ruby2ruby-2.5.2/lib/ruby2ruby.rb +0 -0
  283. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/ruby_parser-3.20.3/History.rdoc +0 -0
  284. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/ruby_parser-3.20.3/Manifest.txt +0 -0
  285. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/ruby_parser-3.20.3/README.rdoc +0 -0
  286. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/ruby_parser-3.20.3/compare/normalize.rb +0 -0
  287. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/ruby_parser-3.20.3/debugging.md +0 -0
  288. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/ruby_parser-3.20.3/gauntlet.md +0 -0
  289. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/ruby_parser-3.20.3/lib/rp_extensions.rb +0 -0
  290. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/ruby_parser-3.20.3/lib/rp_stringscanner.rb +0 -0
  291. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/ruby_parser-3.20.3/lib/ruby20_parser.rb +0 -0
  292. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/ruby_parser-3.20.3/lib/ruby20_parser.y +0 -0
  293. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/ruby_parser-3.20.3/lib/ruby21_parser.rb +0 -0
  294. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/ruby_parser-3.20.3/lib/ruby21_parser.y +0 -0
  295. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/ruby_parser-3.20.3/lib/ruby22_parser.rb +0 -0
  296. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/ruby_parser-3.20.3/lib/ruby22_parser.y +0 -0
  297. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/ruby_parser-3.20.3/lib/ruby23_parser.rb +0 -0
  298. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/ruby_parser-3.20.3/lib/ruby23_parser.y +0 -0
  299. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/ruby_parser-3.20.3/lib/ruby24_parser.rb +0 -0
  300. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/ruby_parser-3.20.3/lib/ruby24_parser.y +0 -0
  301. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/ruby_parser-3.20.3/lib/ruby25_parser.rb +0 -0
  302. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/ruby_parser-3.20.3/lib/ruby25_parser.y +0 -0
  303. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/ruby_parser-3.20.3/lib/ruby26_parser.rb +0 -0
  304. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/ruby_parser-3.20.3/lib/ruby26_parser.y +0 -0
  305. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/ruby_parser-3.20.3/lib/ruby27_parser.rb +0 -0
  306. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/ruby_parser-3.20.3/lib/ruby27_parser.y +0 -0
  307. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/ruby_parser-3.20.3/lib/ruby30_parser.rb +0 -0
  308. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/ruby_parser-3.20.3/lib/ruby30_parser.y +0 -0
  309. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/ruby_parser-3.20.3/lib/ruby31_parser.rb +0 -0
  310. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/ruby_parser-3.20.3/lib/ruby31_parser.y +0 -0
  311. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/ruby_parser-3.20.3/lib/ruby32_parser.rb +0 -0
  312. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/ruby_parser-3.20.3/lib/ruby32_parser.y +0 -0
  313. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/ruby_parser-3.20.3/lib/ruby3_parser.yy +0 -0
  314. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/ruby_parser-3.20.3/lib/ruby_lexer.rb +0 -0
  315. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/ruby_parser-3.20.3/lib/ruby_lexer.rex +0 -0
  316. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/ruby_parser-3.20.3/lib/ruby_lexer.rex.rb +0 -0
  317. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/ruby_parser-3.20.3/lib/ruby_lexer_strings.rb +0 -0
  318. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/ruby_parser-3.20.3/lib/ruby_parser.rb +0 -0
  319. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/ruby_parser-3.20.3/lib/ruby_parser.yy +0 -0
  320. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/ruby_parser-3.20.3/lib/ruby_parser_extras.rb +0 -0
  321. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/ruby_parser-3.20.3/tools/munge.rb +0 -0
  322. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/ruby_parser-3.20.3/tools/ripper.rb +0 -0
  323. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/sexp_processor-4.17.3/History.rdoc +0 -0
  324. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/sexp_processor-4.17.3/Manifest.txt +0 -0
  325. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/sexp_processor-4.17.3/README.rdoc +0 -0
  326. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/sexp_processor-4.17.3/lib/composite_sexp_processor.rb +0 -0
  327. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/sexp_processor-4.17.3/lib/pt_testcase.rb +0 -0
  328. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/sexp_processor-4.17.3/lib/sexp.rb +0 -0
  329. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/sexp_processor-4.17.3/lib/sexp_matcher.rb +0 -0
  330. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/sexp_processor-4.17.3/lib/sexp_processor.rb +0 -0
  331. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/sexp_processor-4.17.3/lib/strict_sexp.rb +0 -0
  332. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/sexp_processor-4.17.3/lib/unique.rb +0 -0
  333. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/slim-5.2.1/CHANGES +0 -0
  334. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/slim-5.2.1/Gemfile +0 -0
  335. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/slim-5.2.1/LICENSE +0 -0
  336. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/slim-5.2.1/README.jp.md +0 -0
  337. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/slim-5.2.1/README.md +0 -0
  338. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/slim-5.2.1/lib/slim/code_attributes.rb +0 -0
  339. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/slim-5.2.1/lib/slim/command.rb +0 -0
  340. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/slim-5.2.1/lib/slim/controls.rb +0 -0
  341. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/slim-5.2.1/lib/slim/do_inserter.rb +0 -0
  342. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/slim-5.2.1/lib/slim/embedded.rb +0 -0
  343. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/slim-5.2.1/lib/slim/end_inserter.rb +0 -0
  344. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/slim-5.2.1/lib/slim/engine.rb +0 -0
  345. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/slim-5.2.1/lib/slim/erb_converter.rb +0 -0
  346. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/slim-5.2.1/lib/slim/filter.rb +0 -0
  347. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/slim-5.2.1/lib/slim/grammar.rb +0 -0
  348. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/slim-5.2.1/lib/slim/include.rb +0 -0
  349. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/slim-5.2.1/lib/slim/interpolation.rb +0 -0
  350. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/slim-5.2.1/lib/slim/logic_less/context.rb +0 -0
  351. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/slim-5.2.1/lib/slim/logic_less/filter.rb +0 -0
  352. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/slim-5.2.1/lib/slim/logic_less.rb +0 -0
  353. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/slim-5.2.1/lib/slim/parser.rb +0 -0
  354. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/slim-5.2.1/lib/slim/railtie.rb +0 -0
  355. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/slim-5.2.1/lib/slim/smart/escaper.rb +0 -0
  356. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/slim-5.2.1/lib/slim/smart/filter.rb +0 -0
  357. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/slim-5.2.1/lib/slim/smart/parser.rb +0 -0
  358. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/slim-5.2.1/lib/slim/smart.rb +0 -0
  359. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/slim-5.2.1/lib/slim/splat/builder.rb +0 -0
  360. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/slim-5.2.1/lib/slim/splat/filter.rb +0 -0
  361. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/slim-5.2.1/lib/slim/template.rb +0 -0
  362. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/slim-5.2.1/lib/slim/translator.rb +0 -0
  363. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/slim-5.2.1/lib/slim/version.rb +0 -0
  364. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/slim-5.2.1/lib/slim.rb +0 -0
  365. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/slim-5.2.1/slim.gemspec +0 -0
  366. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/temple-0.10.3/CHANGES +0 -0
  367. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/temple-0.10.3/EXPRESSIONS.md +0 -0
  368. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/temple-0.10.3/Gemfile +0 -0
  369. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/temple-0.10.3/LICENSE +0 -0
  370. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/temple-0.10.3/README.md +0 -0
  371. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/temple-0.10.3/lib/temple/engine.rb +0 -0
  372. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/temple-0.10.3/lib/temple/erb/engine.rb +0 -0
  373. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/temple-0.10.3/lib/temple/erb/parser.rb +0 -0
  374. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/temple-0.10.3/lib/temple/erb/template.rb +0 -0
  375. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/temple-0.10.3/lib/temple/erb/trimming.rb +0 -0
  376. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/temple-0.10.3/lib/temple/exceptions.rb +0 -0
  377. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/temple-0.10.3/lib/temple/filter.rb +0 -0
  378. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/temple-0.10.3/lib/temple/filters/ambles.rb +0 -0
  379. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/temple-0.10.3/lib/temple/filters/code_merger.rb +0 -0
  380. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/temple-0.10.3/lib/temple/filters/control_flow.rb +0 -0
  381. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/temple-0.10.3/lib/temple/filters/dynamic_inliner.rb +0 -0
  382. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/temple-0.10.3/lib/temple/filters/dynamic_merger.rb +0 -0
  383. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/temple-0.10.3/lib/temple/filters/encoding.rb +0 -0
  384. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/temple-0.10.3/lib/temple/filters/eraser.rb +0 -0
  385. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/temple-0.10.3/lib/temple/filters/escapable.rb +0 -0
  386. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/temple-0.10.3/lib/temple/filters/multi_flattener.rb +0 -0
  387. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/temple-0.10.3/lib/temple/filters/remove_bom.rb +0 -0
  388. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/temple-0.10.3/lib/temple/filters/static_analyzer.rb +0 -0
  389. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/temple-0.10.3/lib/temple/filters/static_merger.rb +0 -0
  390. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/temple-0.10.3/lib/temple/filters/string_splitter.rb +0 -0
  391. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/temple-0.10.3/lib/temple/filters/validator.rb +0 -0
  392. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/temple-0.10.3/lib/temple/generator.rb +0 -0
  393. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/temple-0.10.3/lib/temple/generators/array.rb +0 -0
  394. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/temple-0.10.3/lib/temple/generators/array_buffer.rb +0 -0
  395. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/temple-0.10.3/lib/temple/generators/erb.rb +0 -0
  396. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/temple-0.10.3/lib/temple/generators/rails_output_buffer.rb +0 -0
  397. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/temple-0.10.3/lib/temple/generators/string_buffer.rb +0 -0
  398. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/temple-0.10.3/lib/temple/grammar.rb +0 -0
  399. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/temple-0.10.3/lib/temple/html/attribute_merger.rb +0 -0
  400. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/temple-0.10.3/lib/temple/html/attribute_remover.rb +0 -0
  401. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/temple-0.10.3/lib/temple/html/attribute_sorter.rb +0 -0
  402. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/temple-0.10.3/lib/temple/html/dispatcher.rb +0 -0
  403. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/temple-0.10.3/lib/temple/html/fast.rb +0 -0
  404. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/temple-0.10.3/lib/temple/html/filter.rb +0 -0
  405. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/temple-0.10.3/lib/temple/html/pretty.rb +0 -0
  406. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/temple-0.10.3/lib/temple/html/safe.rb +0 -0
  407. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/temple-0.10.3/lib/temple/map.rb +0 -0
  408. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/temple-0.10.3/lib/temple/mixins/dispatcher.rb +0 -0
  409. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/temple-0.10.3/lib/temple/mixins/engine_dsl.rb +0 -0
  410. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/temple-0.10.3/lib/temple/mixins/grammar_dsl.rb +0 -0
  411. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/temple-0.10.3/lib/temple/mixins/options.rb +0 -0
  412. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/temple-0.10.3/lib/temple/mixins/template.rb +0 -0
  413. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/temple-0.10.3/lib/temple/parser.rb +0 -0
  414. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/temple-0.10.3/lib/temple/static_analyzer.rb +0 -0
  415. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/temple-0.10.3/lib/temple/templates/rails.rb +0 -0
  416. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/temple-0.10.3/lib/temple/templates/tilt.rb +0 -0
  417. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/temple-0.10.3/lib/temple/templates.rb +0 -0
  418. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/temple-0.10.3/lib/temple/utils.rb +0 -0
  419. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/temple-0.10.3/lib/temple/version.rb +0 -0
  420. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/temple-0.10.3/lib/temple.rb +0 -0
  421. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/temple-0.10.3/temple.gemspec +0 -0
  422. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/terminal-table-4.0.0/Gemfile +0 -0
  423. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/terminal-table-4.0.0/History.rdoc +0 -0
  424. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/terminal-table-4.0.0/LICENSE.txt +0 -0
  425. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/terminal-table-4.0.0/Manifest +0 -0
  426. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/terminal-table-4.0.0/README.md +0 -0
  427. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/terminal-table-4.0.0/Todo.rdoc +0 -0
  428. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/terminal-table-4.0.0/lib/terminal-table/cell.rb +0 -0
  429. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/terminal-table-4.0.0/lib/terminal-table/import.rb +0 -0
  430. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/terminal-table-4.0.0/lib/terminal-table/row.rb +0 -0
  431. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/terminal-table-4.0.0/lib/terminal-table/separator.rb +0 -0
  432. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/terminal-table-4.0.0/lib/terminal-table/style.rb +0 -0
  433. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/terminal-table-4.0.0/lib/terminal-table/table.rb +0 -0
  434. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/terminal-table-4.0.0/lib/terminal-table/table_helper.rb +0 -0
  435. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/terminal-table-4.0.0/lib/terminal-table/util.rb +0 -0
  436. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/terminal-table-4.0.0/lib/terminal-table/version.rb +0 -0
  437. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/terminal-table-4.0.0/lib/terminal-table.rb +0 -0
  438. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/terminal-table-4.0.0/terminal-table.gemspec +0 -0
  439. /data/bundle/ruby/{3.1.0/gems/tilt-2.6.0 → 3.2.0/gems/tilt-2.6.1}/COPYING +0 -0
  440. /data/bundle/ruby/{3.1.0/gems/tilt-2.6.0 → 3.2.0/gems/tilt-2.6.1}/lib/tilt/_emacs_org.rb +0 -0
  441. /data/bundle/ruby/{3.1.0/gems/tilt-2.6.0 → 3.2.0/gems/tilt-2.6.1}/lib/tilt/_handlebars.rb +0 -0
  442. /data/bundle/ruby/{3.1.0/gems/tilt-2.6.0 → 3.2.0/gems/tilt-2.6.1}/lib/tilt/_jbuilder.rb +0 -0
  443. /data/bundle/ruby/{3.1.0/gems/tilt-2.6.0 → 3.2.0/gems/tilt-2.6.1}/lib/tilt/_org.rb +0 -0
  444. /data/bundle/ruby/{3.1.0/gems/tilt-2.6.0 → 3.2.0/gems/tilt-2.6.1}/lib/tilt/asciidoc.rb +0 -0
  445. /data/bundle/ruby/{3.1.0/gems/tilt-2.6.0 → 3.2.0/gems/tilt-2.6.1}/lib/tilt/babel.rb +0 -0
  446. /data/bundle/ruby/{3.1.0/gems/tilt-2.6.0 → 3.2.0/gems/tilt-2.6.1}/lib/tilt/builder.rb +0 -0
  447. /data/bundle/ruby/{3.1.0/gems/tilt-2.6.0 → 3.2.0/gems/tilt-2.6.1}/lib/tilt/cli.rb +0 -0
  448. /data/bundle/ruby/{3.1.0/gems/tilt-2.6.0 → 3.2.0/gems/tilt-2.6.1}/lib/tilt/coffee.rb +0 -0
  449. /data/bundle/ruby/{3.1.0/gems/tilt-2.6.0 → 3.2.0/gems/tilt-2.6.1}/lib/tilt/commonmarker.rb +0 -0
  450. /data/bundle/ruby/{3.1.0/gems/tilt-2.6.0 → 3.2.0/gems/tilt-2.6.1}/lib/tilt/creole.rb +0 -0
  451. /data/bundle/ruby/{3.1.0/gems/tilt-2.6.0 → 3.2.0/gems/tilt-2.6.1}/lib/tilt/csv.rb +0 -0
  452. /data/bundle/ruby/{3.1.0/gems/tilt-2.6.0 → 3.2.0/gems/tilt-2.6.1}/lib/tilt/erb.rb +0 -0
  453. /data/bundle/ruby/{3.1.0/gems/tilt-2.6.0 → 3.2.0/gems/tilt-2.6.1}/lib/tilt/erubi.rb +0 -0
  454. /data/bundle/ruby/{3.1.0/gems/tilt-2.6.0 → 3.2.0/gems/tilt-2.6.1}/lib/tilt/etanni.rb +0 -0
  455. /data/bundle/ruby/{3.1.0/gems/tilt-2.6.0 → 3.2.0/gems/tilt-2.6.1}/lib/tilt/haml.rb +0 -0
  456. /data/bundle/ruby/{3.1.0/gems/tilt-2.6.0 → 3.2.0/gems/tilt-2.6.1}/lib/tilt/kramdown.rb +0 -0
  457. /data/bundle/ruby/{3.1.0/gems/tilt-2.6.0 → 3.2.0/gems/tilt-2.6.1}/lib/tilt/liquid.rb +0 -0
  458. /data/bundle/ruby/{3.1.0/gems/tilt-2.6.0 → 3.2.0/gems/tilt-2.6.1}/lib/tilt/livescript.rb +0 -0
  459. /data/bundle/ruby/{3.1.0/gems/tilt-2.6.0 → 3.2.0/gems/tilt-2.6.1}/lib/tilt/mapping.rb +0 -0
  460. /data/bundle/ruby/{3.1.0/gems/tilt-2.6.0 → 3.2.0/gems/tilt-2.6.1}/lib/tilt/markaby.rb +0 -0
  461. /data/bundle/ruby/{3.1.0/gems/tilt-2.6.0 → 3.2.0/gems/tilt-2.6.1}/lib/tilt/nokogiri.rb +0 -0
  462. /data/bundle/ruby/{3.1.0/gems/tilt-2.6.0 → 3.2.0/gems/tilt-2.6.1}/lib/tilt/pandoc.rb +0 -0
  463. /data/bundle/ruby/{3.1.0/gems/tilt-2.6.0 → 3.2.0/gems/tilt-2.6.1}/lib/tilt/pipeline.rb +0 -0
  464. /data/bundle/ruby/{3.1.0/gems/tilt-2.6.0 → 3.2.0/gems/tilt-2.6.1}/lib/tilt/plain.rb +0 -0
  465. /data/bundle/ruby/{3.1.0/gems/tilt-2.6.0 → 3.2.0/gems/tilt-2.6.1}/lib/tilt/prawn.rb +0 -0
  466. /data/bundle/ruby/{3.1.0/gems/tilt-2.6.0 → 3.2.0/gems/tilt-2.6.1}/lib/tilt/radius.rb +0 -0
  467. /data/bundle/ruby/{3.1.0/gems/tilt-2.6.0 → 3.2.0/gems/tilt-2.6.1}/lib/tilt/rdiscount.rb +0 -0
  468. /data/bundle/ruby/{3.1.0/gems/tilt-2.6.0 → 3.2.0/gems/tilt-2.6.1}/lib/tilt/rdoc.rb +0 -0
  469. /data/bundle/ruby/{3.1.0/gems/tilt-2.6.0 → 3.2.0/gems/tilt-2.6.1}/lib/tilt/redcarpet.rb +0 -0
  470. /data/bundle/ruby/{3.1.0/gems/tilt-2.6.0 → 3.2.0/gems/tilt-2.6.1}/lib/tilt/redcloth.rb +0 -0
  471. /data/bundle/ruby/{3.1.0/gems/tilt-2.6.0 → 3.2.0/gems/tilt-2.6.1}/lib/tilt/rst-pandoc.rb +0 -0
  472. /data/bundle/ruby/{3.1.0/gems/tilt-2.6.0 → 3.2.0/gems/tilt-2.6.1}/lib/tilt/sass.rb +0 -0
  473. /data/bundle/ruby/{3.1.0/gems/tilt-2.6.0 → 3.2.0/gems/tilt-2.6.1}/lib/tilt/slim.rb +0 -0
  474. /data/bundle/ruby/{3.1.0/gems/tilt-2.6.0 → 3.2.0/gems/tilt-2.6.1}/lib/tilt/string.rb +0 -0
  475. /data/bundle/ruby/{3.1.0/gems/tilt-2.6.0 → 3.2.0/gems/tilt-2.6.1}/lib/tilt/typescript.rb +0 -0
  476. /data/bundle/ruby/{3.1.0/gems/tilt-2.6.0 → 3.2.0/gems/tilt-2.6.1}/lib/tilt/yajl.rb +0 -0
  477. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/unicode-display_width-3.1.4/CHANGELOG.md +0 -0
  478. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/unicode-display_width-3.1.4/MIT-LICENSE.txt +0 -0
  479. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/unicode-display_width-3.1.4/README.md +0 -0
  480. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/unicode-display_width-3.1.4/data/display_width.marshal.gz +0 -0
  481. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/unicode-display_width-3.1.4/lib/unicode/display_width/constants.rb +0 -0
  482. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/unicode-display_width-3.1.4/lib/unicode/display_width/emoji_support.rb +0 -0
  483. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/unicode-display_width-3.1.4/lib/unicode/display_width/index.rb +0 -0
  484. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/unicode-display_width-3.1.4/lib/unicode/display_width/no_string_ext.rb +0 -0
  485. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/unicode-display_width-3.1.4/lib/unicode/display_width/reline_ext.rb +0 -0
  486. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/unicode-display_width-3.1.4/lib/unicode/display_width/string_ext.rb +0 -0
  487. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/unicode-display_width-3.1.4/lib/unicode/display_width.rb +0 -0
  488. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/unicode-emoji-4.0.4/CHANGELOG.md +0 -0
  489. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/unicode-emoji-4.0.4/CODE_OF_CONDUCT.md +0 -0
  490. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/unicode-emoji-4.0.4/Gemfile +0 -0
  491. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/unicode-emoji-4.0.4/Gemfile.lock +0 -0
  492. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/unicode-emoji-4.0.4/MIT-LICENSE.txt +0 -0
  493. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/unicode-emoji-4.0.4/README.md +0 -0
  494. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/unicode-emoji-4.0.4/data/emoji.marshal.gz +0 -0
  495. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/unicode-emoji-4.0.4/data/generate_constants.rb +0 -0
  496. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/unicode-emoji-4.0.4/lib/unicode/emoji/constants.rb +0 -0
  497. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/unicode-emoji-4.0.4/lib/unicode/emoji/generated/regex.rb +0 -0
  498. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/unicode-emoji-4.0.4/lib/unicode/emoji/generated/regex_basic.rb +0 -0
  499. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/unicode-emoji-4.0.4/lib/unicode/emoji/generated/regex_emoji_keycap.rb +0 -0
  500. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/unicode-emoji-4.0.4/lib/unicode/emoji/generated/regex_include_mqe.rb +0 -0
  501. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/unicode-emoji-4.0.4/lib/unicode/emoji/generated/regex_include_mqe_uqe.rb +0 -0
  502. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/unicode-emoji-4.0.4/lib/unicode/emoji/generated/regex_include_text.rb +0 -0
  503. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/unicode-emoji-4.0.4/lib/unicode/emoji/generated/regex_picto.rb +0 -0
  504. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/unicode-emoji-4.0.4/lib/unicode/emoji/generated/regex_picto_no_emoji.rb +0 -0
  505. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/unicode-emoji-4.0.4/lib/unicode/emoji/generated/regex_possible.rb +0 -0
  506. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/unicode-emoji-4.0.4/lib/unicode/emoji/generated/regex_prop_component.rb +0 -0
  507. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/unicode-emoji-4.0.4/lib/unicode/emoji/generated/regex_prop_emoji.rb +0 -0
  508. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/unicode-emoji-4.0.4/lib/unicode/emoji/generated/regex_prop_modifier.rb +0 -0
  509. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/unicode-emoji-4.0.4/lib/unicode/emoji/generated/regex_prop_modifier_base.rb +0 -0
  510. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/unicode-emoji-4.0.4/lib/unicode/emoji/generated/regex_prop_presentation.rb +0 -0
  511. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/unicode-emoji-4.0.4/lib/unicode/emoji/generated/regex_text.rb +0 -0
  512. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/unicode-emoji-4.0.4/lib/unicode/emoji/generated/regex_text_presentation.rb +0 -0
  513. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/unicode-emoji-4.0.4/lib/unicode/emoji/generated/regex_valid.rb +0 -0
  514. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/unicode-emoji-4.0.4/lib/unicode/emoji/generated/regex_valid_include_text.rb +0 -0
  515. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/unicode-emoji-4.0.4/lib/unicode/emoji/generated/regex_well_formed.rb +0 -0
  516. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/unicode-emoji-4.0.4/lib/unicode/emoji/generated/regex_well_formed_include_text.rb +0 -0
  517. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/unicode-emoji-4.0.4/lib/unicode/emoji/generated_native/regex.rb +0 -0
  518. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/unicode-emoji-4.0.4/lib/unicode/emoji/generated_native/regex_basic.rb +0 -0
  519. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/unicode-emoji-4.0.4/lib/unicode/emoji/generated_native/regex_emoji_keycap.rb +0 -0
  520. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/unicode-emoji-4.0.4/lib/unicode/emoji/generated_native/regex_include_mqe.rb +0 -0
  521. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/unicode-emoji-4.0.4/lib/unicode/emoji/generated_native/regex_include_mqe_uqe.rb +0 -0
  522. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/unicode-emoji-4.0.4/lib/unicode/emoji/generated_native/regex_include_text.rb +0 -0
  523. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/unicode-emoji-4.0.4/lib/unicode/emoji/generated_native/regex_picto.rb +0 -0
  524. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/unicode-emoji-4.0.4/lib/unicode/emoji/generated_native/regex_picto_no_emoji.rb +0 -0
  525. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/unicode-emoji-4.0.4/lib/unicode/emoji/generated_native/regex_possible.rb +0 -0
  526. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/unicode-emoji-4.0.4/lib/unicode/emoji/generated_native/regex_prop_component.rb +0 -0
  527. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/unicode-emoji-4.0.4/lib/unicode/emoji/generated_native/regex_prop_emoji.rb +0 -0
  528. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/unicode-emoji-4.0.4/lib/unicode/emoji/generated_native/regex_prop_modifier.rb +0 -0
  529. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/unicode-emoji-4.0.4/lib/unicode/emoji/generated_native/regex_prop_modifier_base.rb +0 -0
  530. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/unicode-emoji-4.0.4/lib/unicode/emoji/generated_native/regex_prop_presentation.rb +0 -0
  531. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/unicode-emoji-4.0.4/lib/unicode/emoji/generated_native/regex_text.rb +0 -0
  532. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/unicode-emoji-4.0.4/lib/unicode/emoji/generated_native/regex_text_presentation.rb +0 -0
  533. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/unicode-emoji-4.0.4/lib/unicode/emoji/generated_native/regex_valid.rb +0 -0
  534. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/unicode-emoji-4.0.4/lib/unicode/emoji/generated_native/regex_valid_include_text.rb +0 -0
  535. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/unicode-emoji-4.0.4/lib/unicode/emoji/generated_native/regex_well_formed.rb +0 -0
  536. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/unicode-emoji-4.0.4/lib/unicode/emoji/generated_native/regex_well_formed_include_text.rb +0 -0
  537. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/unicode-emoji-4.0.4/lib/unicode/emoji/index.rb +0 -0
  538. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/unicode-emoji-4.0.4/lib/unicode/emoji/lazy_constants.rb +0 -0
  539. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/unicode-emoji-4.0.4/lib/unicode/emoji/list.rb +0 -0
  540. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/unicode-emoji-4.0.4/lib/unicode/emoji.rb +0 -0
  541. /data/bundle/ruby/{3.1.0 → 3.2.0}/gems/unicode-emoji-4.0.4/unicode-emoji.gemspec +0 -0
@@ -1,273 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Haml
4
- # This class encapsulates all of the configuration options that Haml
5
- # understands. Please see the {file:REFERENCE.md#options Haml Reference} to
6
- # learn how to set the options.
7
- class Options
8
- @valid_formats = [:html4, :html5, :xhtml]
9
- @buffer_option_keys = [:autoclose, :preserve, :attr_wrapper, :format,
10
- :encoding, :escape_html, :escape_filter_interpolations, :escape_attrs, :hyphenate_data_attrs, :cdata]
11
-
12
- class << self
13
- # The default option values.
14
- # @return Hash
15
- def defaults
16
- @defaults ||= Haml::TempleEngine.options.to_hash.merge(encoding: 'UTF-8')
17
- end
18
-
19
- # An array of valid values for the `:format` option.
20
- # @return Array
21
- attr_reader :valid_formats
22
-
23
- # An array of keys that will be used to provide a hash of options to
24
- # {Haml::Buffer}.
25
- # @return Hash
26
- attr_reader :buffer_option_keys
27
-
28
- # Returns a subset of defaults: those that {Haml::Buffer} cares about.
29
- # @return [{Symbol => Object}] The options hash
30
- def buffer_defaults
31
- @buffer_defaults ||= buffer_option_keys.inject({}) do |hash, key|
32
- hash.merge(key => defaults[key])
33
- end
34
- end
35
-
36
- def wrap(options)
37
- if options.is_a?(Options)
38
- options
39
- else
40
- Options.new(options)
41
- end
42
- end
43
- end
44
-
45
- # The character that should wrap element attributes. This defaults to `'`
46
- # (an apostrophe). Characters of this type within the attributes will be
47
- # escaped (e.g. by replacing them with `&apos;`) if the character is an
48
- # apostrophe or a quotation mark.
49
- attr_reader :attr_wrapper
50
-
51
- # A list of tag names that should be automatically self-closed if they have
52
- # no content. This can also contain regular expressions that match tag names
53
- # (or any object which responds to `#===`). Defaults to `['meta', 'img',
54
- # 'link', 'br', 'hr', 'input', 'area', 'param', 'col', 'base']`.
55
- attr_accessor :autoclose
56
-
57
- # The encoding to use for the HTML output.
58
- # This can be a string or an `Encoding` Object. Note that Haml **does not**
59
- # automatically re-encode Ruby values; any strings coming from outside the
60
- # application should be converted before being passed into the Haml
61
- # template. Defaults to `Encoding.default_internal`; if that's not set,
62
- # defaults to the encoding of the Haml template; if that's `US-ASCII`,
63
- # defaults to `"UTF-8"`.
64
- attr_reader :encoding
65
-
66
- # Sets whether or not to escape HTML-sensitive characters in attributes. If
67
- # this is true, all HTML-sensitive characters in attributes are escaped. If
68
- # it's set to false, no HTML-sensitive characters in attributes are escaped.
69
- # If it's set to `:once`, existing HTML escape sequences are preserved, but
70
- # other HTML-sensitive characters are escaped.
71
- #
72
- # Defaults to `true`.
73
- attr_accessor :escape_attrs
74
-
75
- # Sets whether or not to escape HTML-sensitive characters in script. If this
76
- # is true, `=` behaves like {file:REFERENCE.md#escaping_html `&=`};
77
- # otherwise, it behaves like {file:REFERENCE.md#unescaping_html `!=`}. Note
78
- # that if this is set, `!=` should be used for yielding to subtemplates and
79
- # rendering partials. See also {file:REFERENCE.md#escaping_html Escaping HTML} and
80
- # {file:REFERENCE.md#unescaping_html Unescaping HTML}.
81
- #
82
- # Defaults to false.
83
- attr_accessor :escape_html
84
-
85
- # Sets whether or not to escape HTML-sensitive characters in interpolated strings.
86
- # See also {file:REFERENCE.md#escaping_html Escaping HTML} and
87
- # {file:REFERENCE.md#unescaping_html Unescaping HTML}.
88
- #
89
- # Defaults to the current value of `escape_html`.
90
- attr_accessor :escape_filter_interpolations
91
-
92
- # The name of the Haml file being parsed.
93
- # This is only used as information when exceptions are raised. This is
94
- # automatically assigned when working through ActionView, so it's really
95
- # only useful for the user to assign when dealing with Haml programatically.
96
- attr_accessor :filename
97
-
98
- # If set to `true`, Haml will convert underscores to hyphens in all
99
- # {file:REFERENCE.md#html5_custom_data_attributes Custom Data Attributes} As
100
- # of Haml 4.0, this defaults to `true`.
101
- attr_accessor :hyphenate_data_attrs
102
-
103
- # The line offset of the Haml template being parsed. This is useful for
104
- # inline templates, similar to the last argument to `Kernel#eval`.
105
- attr_accessor :line
106
-
107
- # Determines the output format. The default is `:html5`. The other options
108
- # are `:html4` and `:xhtml`. If the output is set to XHTML, then Haml
109
- # automatically generates self-closing tags and wraps the output of the
110
- # Javascript and CSS-like filters inside CDATA. When the output is set to
111
- # `:html5` or `:html4`, XML prologs are ignored. In all cases, an appropriate
112
- # doctype is generated from `!!!`.
113
- #
114
- # If the mime_type of the template being rendered is `text/xml` then a
115
- # format of `:xhtml` will be used even if the global output format is set to
116
- # `:html4` or `:html5`.
117
- attr :format
118
-
119
- # The mime type that the rendered document will be served with. If this is
120
- # set to `text/xml` then the format will be overridden to `:xhtml` even if
121
- # it has set to `:html4` or `:html5`.
122
- attr_accessor :mime_type
123
-
124
- # A list of tag names that should automatically have their newlines
125
- # preserved using the {Haml::Helpers#preserve} helper. This means that any
126
- # content given on the same line as the tag will be preserved. For example,
127
- # `%textarea= "Foo\nBar"` compiles to `<textarea>Foo&#x000A;Bar</textarea>`.
128
- # Defaults to `['textarea', 'pre']`. See also
129
- # {file:REFERENCE.md#whitespace_preservation Whitespace Preservation}.
130
- attr_accessor :preserve
131
-
132
- # If set to `true`, all tags are treated as if both
133
- # {file:REFERENCE.md#whitespace_removal__and_ whitespace removal} options
134
- # were present. Use with caution as this may cause whitespace-related
135
- # formatting errors.
136
- #
137
- # Defaults to `false`.
138
- attr_accessor :remove_whitespace
139
-
140
- # Whether or not attribute hashes and Ruby scripts designated by `=` or `~`
141
- # should be evaluated. If this is `true`, said scripts are rendered as empty
142
- # strings.
143
- #
144
- # Defaults to `false`.
145
- attr_accessor :suppress_eval
146
-
147
- # Whether to include CDATA sections around javascript and css blocks when
148
- # using the `:javascript` or `:css` filters.
149
- #
150
- # This option also affects the `:sass`, `:scss`, `:less` and `:coffeescript`
151
- # filters.
152
- #
153
- # Defaults to `false` for html, `true` for xhtml. Cannot be changed when using
154
- # xhtml.
155
- attr_accessor :cdata
156
-
157
- # The parser class to use. Defaults to Haml::Parser.
158
- attr_accessor :parser_class
159
-
160
- # The compiler class to use. Defaults to Haml::Compiler.
161
- attr_accessor :compiler_class
162
-
163
- # Enable template tracing. If true, it will add a 'data-trace' attribute to
164
- # each tag generated by Haml. The value of the attribute will be the
165
- # source template name and the line number from which the tag was generated,
166
- # separated by a colon. On Rails applications, the path given will be a
167
- # relative path as from the views directory. On non-Rails applications,
168
- # the path will be the full path.
169
- attr_accessor :trace
170
-
171
- # Key is filter name in String and value is Class to use. Defaults to {}.
172
- attr_accessor :filters
173
-
174
- def initialize(values = {})
175
- defaults.each {|k, v| instance_variable_set :"@#{k}", v}
176
- values.each {|k, v| send("#{k}=", v) if defaults.has_key?(k) && !v.nil?}
177
- yield if block_given?
178
- end
179
-
180
- # Retrieve an option value.
181
- # @param key The value to retrieve.
182
- def [](key)
183
- send key
184
- end
185
-
186
- # Set an option value.
187
- # @param key The key to set.
188
- # @param value The value to set for the key.
189
- def []=(key, value)
190
- send "#{key}=", value
191
- end
192
-
193
- [:escape_attrs, :hyphenate_data_attrs, :remove_whitespace, :suppress_eval].each do |method|
194
- class_eval(<<-END)
195
- def #{method}?
196
- !! @#{method}
197
- end
198
- END
199
- end
200
-
201
- # @return [Boolean] Whether or not the format is XHTML.
202
- def xhtml?
203
- not html?
204
- end
205
-
206
- # @return [Boolean] Whether or not the format is any flavor of HTML.
207
- def html?
208
- html4? or html5?
209
- end
210
-
211
- # @return [Boolean] Whether or not the format is HTML4.
212
- def html4?
213
- format == :html4
214
- end
215
-
216
- # @return [Boolean] Whether or not the format is HTML5.
217
- def html5?
218
- format == :html5
219
- end
220
-
221
- def attr_wrapper=(value)
222
- @attr_wrapper = value || self.class.defaults[:attr_wrapper]
223
- end
224
-
225
- # Undef :format to suppress warning. It's defined above with the `:attr`
226
- # macro in order to make it appear in Yard's list of instance attributes.
227
- undef :format
228
- def format
229
- mime_type == "text/xml" ? :xhtml : @format
230
- end
231
-
232
- def format=(value)
233
- unless self.class.valid_formats.include?(value)
234
- raise Haml::Error, "Invalid output format #{value.inspect}"
235
- end
236
- @format = value
237
- end
238
-
239
- undef :cdata
240
- def cdata
241
- xhtml? || @cdata
242
- end
243
-
244
- def encoding=(value)
245
- return unless value
246
- @encoding = value.is_a?(Encoding) ? value.name : value.to_s
247
- @encoding = "UTF-8" if @encoding.upcase == "US-ASCII"
248
- end
249
-
250
- # Returns a non-default subset of options: those that {Haml::Buffer} cares about.
251
- # All of the values here are such that when `#inspect` is called on the hash,
252
- # it can be `Kernel#eval`ed to get the same result back.
253
- #
254
- # See {file:REFERENCE.md#options the Haml options documentation}.
255
- #
256
- # @return [{Symbol => Object}] The options hash
257
- def for_buffer
258
- self.class.buffer_option_keys.inject({}) do |hash, key|
259
- value = public_send(key)
260
- if self.class.buffer_defaults[key] != value
261
- hash[key] = value
262
- end
263
- hash
264
- end
265
- end
266
-
267
- private
268
-
269
- def defaults
270
- self.class.defaults
271
- end
272
- end
273
- end
@@ -1,54 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Haml
4
-
5
- # This module makes Haml work with Rails using the template handler API.
6
- class Plugin
7
- class << self
8
- attr_accessor :annotate_rendered_view_with_filenames
9
- end
10
- self.annotate_rendered_view_with_filenames = false
11
-
12
- def handles_encoding?; true; end
13
-
14
- def compile(template, source)
15
- options = Haml::Template.options.dup
16
- if template.respond_to?(:type)
17
- options[:mime_type] = template.type
18
- elsif template.respond_to? :mime_type
19
- options[:mime_type] = template.mime_type
20
- end
21
- options[:filename] = template.identifier
22
-
23
- preamble = '@output_buffer = output_buffer ||= ActionView::OutputBuffer.new if defined?(ActionView::OutputBuffer);'
24
- postamble = ''
25
-
26
- if self.class.annotate_rendered_view_with_filenames
27
- # short_identifier is only available in Rails 6+. On older versions, 'inspect' gives similar results.
28
- ident = template.respond_to?(:short_identifier) ? template.short_identifier : template.inspect
29
- preamble += "haml_concat '<!-- BEGIN #{ident} -->'.html_safe;"
30
- postamble += "haml_concat '<!-- END #{ident} -->'.html_safe;"
31
- end
32
-
33
- Haml::Engine.new(source, options).compiler.precompiled_with_ambles(
34
- [],
35
- after_preamble: preamble,
36
- before_postamble: postamble
37
- )
38
- end
39
-
40
- def self.call(template, source = nil)
41
- source ||= template.source
42
-
43
- new.compile(template, source)
44
- end
45
-
46
- def cache_fragment(block, name = {}, options = nil)
47
- @view.fragment_for(block, name, options) do
48
- eval("_hamlout.buffer", block.binding)
49
- end
50
- end
51
- end
52
- end
53
-
54
- ActionView::Template.register_template_handler(:haml, Haml::Plugin)
@@ -1,53 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'haml/template/options'
4
-
5
- # check for a compatible Rails version when Haml is loaded
6
- if (activesupport_spec = Gem.loaded_specs['activesupport'])
7
- if activesupport_spec.version.to_s < '4.0'
8
- raise Exception.new("\n\n** Haml now requires Rails 4.0 and later. Use Haml version 4.0.x\n\n")
9
- end
10
- end
11
-
12
- module Haml
13
- module Filters
14
- module RailsErb
15
- extend Plain
16
- extend TiltFilter
17
- extend PrecompiledTiltFilter
18
- end
19
- end
20
-
21
- class Railtie < ::Rails::Railtie
22
- initializer :haml do |app|
23
- ActiveSupport.on_load(:action_view) do
24
- require "haml/template"
25
-
26
- if defined?(::Sass::Rails::SassTemplate) && app.config.assets.enabled
27
- require "haml/sass_rails_filter"
28
- end
29
-
30
- # Any object under ActionView::Template will be defined as the root constant with the same
31
- # name if it exists. If Erubi is loaded at all, ActionView::Template::Handlers::ERB::Erubi
32
- # will turn out to be a reference to the ::Erubi module.
33
- # In Rails 4.2, calling const_defined? results in odd exceptions, which seems to be
34
- # solved by looking for ::Erubi first.
35
- # However, in JRuby, the const_defined? finds it anyway, so we must make sure that it's
36
- # not just a reference to ::Erubi.
37
- if defined?(::Erubi) && (::ActionView::Template::Handlers::ERB.const_get('Erubi') != ::Erubi)
38
- require "haml/helpers/safe_erubi_template"
39
- Haml::Filters::RailsErb.template_class = Haml::SafeErubiTemplate
40
- else
41
- require "haml/helpers/safe_erubis_template"
42
- Haml::Filters::RailsErb.template_class = Haml::SafeErubisTemplate
43
- end
44
- Haml::Template.options[:filters] = { 'erb' => Haml::Filters::RailsErb }
45
-
46
- if app.config.respond_to?(:action_view) &&
47
- app.config.action_view.annotate_rendered_view_with_filenames
48
- Haml::Plugin.annotate_rendered_view_with_filenames = true
49
- end
50
- end
51
- end
52
- end
53
- end
@@ -1,47 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Haml
4
- module Filters
5
- # This is an extension of Sass::Rails's SassTemplate class that allows
6
- # Rails's asset helpers to be used inside Haml Sass filter.
7
- class SassRailsTemplate < ::Sass::Rails::SassTemplate
8
- if Gem::Version.new(Sprockets::VERSION) >= Gem::Version.new('3.0.0')
9
- def render(scope=Object.new, locals={}, &block)
10
- environment = ::Sprockets::Railtie.build_environment(::Rails.application)
11
- scope = environment.context_class.new(
12
- environment: environment,
13
- filename: "/",
14
- metadata: {}
15
- )
16
- super
17
- end
18
- else
19
- def render(scope=Object.new, locals={}, &block)
20
- scope = ::Rails.application.assets.context_class.new(::Rails.application.assets, "/", "/")
21
- super
22
- end
23
- end
24
-
25
- def sass_options(scope)
26
- options = super
27
- options[:custom][:resolver] = ::ActionView::Base.new
28
- options
29
- end
30
- end
31
-
32
- # This is an extension of Sass::Rails's SassTemplate class that allows
33
- # Rails's asset helpers to be used inside a Haml SCSS filter.
34
- class ScssRailsTemplate < SassRailsTemplate
35
- self.default_mime_type = 'text/css'
36
-
37
- def syntax
38
- :scss
39
- end
40
- end
41
-
42
- remove_filter :Sass
43
- remove_filter :Scss
44
- register_tilt_filter "Sass", :extend => "Css", :template_class => SassRailsTemplate
45
- register_tilt_filter "Scss", :extend => "Css", :template_class => ScssRailsTemplate
46
- end
47
- end
@@ -1,27 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- # We keep options in its own self-contained file
4
- # so that we can load it independently in Rails 3,
5
- # where the full template stuff is lazy-loaded.
6
-
7
- module Haml
8
- module Template
9
- extend self
10
-
11
- class Options < Hash
12
- def []=(key, value)
13
- super
14
- if Haml::Options.buffer_defaults.key?(key)
15
- Haml::Options.buffer_defaults[key] = value
16
- end
17
- end
18
- end
19
-
20
- @options = ::Haml::Template::Options.new
21
- # The options hash for Haml when used within Rails.
22
- # See {file:REFERENCE.md#options the Haml options documentation}.
23
- #
24
- # @return [Haml::Template::Options<Symbol => Object>]
25
- attr_accessor :options
26
- end
27
- end
@@ -1,39 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'haml/template/options'
4
- if defined?(ActiveSupport)
5
- ActiveSupport.on_load(:action_view) do
6
- require 'haml/helpers/action_view_mods'
7
- require 'haml/helpers/action_view_extensions'
8
- end
9
- else
10
- require 'haml/helpers/action_view_mods'
11
- require 'haml/helpers/action_view_extensions'
12
- end
13
- require 'haml/helpers/xss_mods'
14
- require 'haml/helpers/action_view_xss_mods'
15
-
16
- module Haml
17
- class TempleEngine
18
- def precompiled_method_return_value_with_haml_xss
19
- "::Haml::Util.html_safe(#{precompiled_method_return_value_without_haml_xss})"
20
- end
21
- alias_method :precompiled_method_return_value_without_haml_xss, :precompiled_method_return_value
22
- alias_method :precompiled_method_return_value, :precompiled_method_return_value_with_haml_xss
23
- end
24
-
25
- module Helpers
26
- include Haml::Helpers::XssMods
27
- end
28
-
29
- module Util
30
- undef :rails_xss_safe? if defined? rails_xss_safe?
31
- def rails_xss_safe?; true; end
32
- end
33
-
34
- end
35
-
36
-
37
- Haml::Template.options[:escape_html] = true
38
-
39
- require 'haml/plugin'
@@ -1,124 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'temple'
4
- require 'haml/escapable'
5
- require 'haml/generator'
6
-
7
- module Haml
8
- class TempleEngine < Temple::Engine
9
- define_options(
10
- attr_wrapper: "'",
11
- autoclose: %w(area base basefont br col command embed frame
12
- hr img input isindex keygen link menuitem meta
13
- param source track wbr),
14
- encoding: nil,
15
- escape_attrs: true,
16
- escape_html: false,
17
- escape_filter_interpolations: nil,
18
- filename: '(haml)',
19
- format: :html5,
20
- hyphenate_data_attrs: true,
21
- line: 1,
22
- mime_type: 'text/html',
23
- preserve: %w(textarea pre code),
24
- remove_whitespace: false,
25
- suppress_eval: false,
26
- cdata: false,
27
- parser_class: ::Haml::Parser,
28
- compiler_class: ::Haml::Compiler,
29
- trace: false,
30
- filters: {},
31
- )
32
-
33
- use :Parser, -> { options[:parser_class] }
34
- use :Compiler, -> { options[:compiler_class] }
35
- use Escapable
36
- filter :ControlFlow
37
- filter :MultiFlattener
38
- filter :StaticMerger
39
- use Generator
40
-
41
- def compile(template)
42
- initialize_encoding(template, options[:encoding])
43
- @precompiled = call(template)
44
- end
45
-
46
- # The source code that is evaluated to produce the Haml document.
47
- #
48
- # This is automatically converted to the correct encoding
49
- # (see {file:REFERENCE.md#encodings the `:encoding` option}).
50
- #
51
- # @return [String]
52
- def precompiled
53
- encoding = Encoding.find(@encoding || '')
54
- return @precompiled.dup.force_encoding(encoding) if encoding == Encoding::ASCII_8BIT
55
- return @precompiled.encode(encoding)
56
- end
57
-
58
- def precompiled_with_return_value
59
- "#{precompiled};#{precompiled_method_return_value}".dup
60
- end
61
-
62
- # The source code that is evaluated to produce the Haml document.
63
- #
64
- # This is automatically converted to the correct encoding
65
- # (see {file:REFERENCE.md#encodings the `:encoding` option}).
66
- #
67
- # @return [String]
68
- def precompiled_with_ambles(local_names, after_preamble: '', before_postamble: '')
69
- preamble = <<END.tr("\n", ';')
70
- begin
71
- extend Haml::Helpers
72
- _hamlout = @haml_buffer = Haml::Buffer.new(haml_buffer, #{Options.new(options).for_buffer.inspect})
73
- _erbout = _hamlout.buffer
74
- #{after_preamble}
75
- END
76
- postamble = <<END.tr("\n", ';')
77
- #{before_postamble}
78
- #{precompiled_method_return_value}
79
- ensure
80
- @haml_buffer = @haml_buffer.upper if @haml_buffer
81
- end
82
- END
83
- "#{preamble}#{locals_code(local_names)}#{precompiled}#{postamble}".dup
84
- end
85
-
86
- private
87
-
88
- def initialize_encoding(template, given_value)
89
- if given_value
90
- @encoding = given_value
91
- else
92
- @encoding = Encoding.default_internal || template.encoding
93
- end
94
- end
95
-
96
- # Returns the string used as the return value of the precompiled method.
97
- # This method exists so it can be monkeypatched to return modified values.
98
- def precompiled_method_return_value
99
- "_erbout"
100
- end
101
-
102
- def locals_code(names)
103
- names = names.keys if Hash === names
104
-
105
- names.map do |name|
106
- # Can't use || because someone might explicitly pass in false with a symbol
107
- sym_local = "_haml_locals[#{inspect_obj(name.to_sym)}]"
108
- str_local = "_haml_locals[#{inspect_obj(name.to_s)}]"
109
- "#{name} = #{sym_local}.nil? ? #{str_local} : #{sym_local};"
110
- end.join
111
- end
112
-
113
- def inspect_obj(obj)
114
- case obj
115
- when String
116
- %Q!"#{obj.gsub(/[\x00-\x7F]+/) {|s| s.inspect[1...-1]}}"!
117
- when Symbol
118
- ":#{inspect_obj(obj.to_s)}"
119
- else
120
- obj.inspect
121
- end
122
- end
123
- end
124
- end
@@ -1,25 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'haml/version'
4
-
5
- # The module that contains everything Haml-related:
6
- #
7
- # * {Haml::Parser} is Haml's parser.
8
- # * {Haml::Compiler} is Haml's compiler.
9
- # * {Haml::Engine} is the class used to render Haml within Ruby code.
10
- # * {Haml::Options} is where Haml's runtime options are defined.
11
- # * {Haml::Error} is raised when Haml encounters an error.
12
- #
13
- # Also see the {file:REFERENCE.md full Haml reference}.
14
- module Haml
15
-
16
- def self.init_rails(*args)
17
- # Maintain this as a no-op for any libraries that may be depending on the
18
- # previous definition here.
19
- end
20
-
21
- end
22
-
23
- require 'haml/util'
24
- require 'haml/engine'
25
- require 'haml/railtie' if defined?(Rails::Railtie)
@@ -1,15 +0,0 @@
1
- #filecontents
2
- *:target, dt:target + dd
3
- background-color: #ccf
4
- border: 1px solid #88b
5
- dt
6
- font-weight: bold
7
- dd
8
- margin:
9
- left: 0
10
- bottom: 0.7em
11
- padding-left: 3em
12
- dt:target
13
- border-bottom-style: none
14
- & + dd
15
- border-top-style: none
@@ -1,12 +0,0 @@
1
- <%= superb :footer %>
2
- <% if ENV["ANALYTICS"] %>
3
- <script type="text/javascript">
4
- var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
5
- document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
6
- </script>
7
- <script type="text/javascript">
8
- try {
9
- var pageTracker = _gat._getTracker("<%= ENV["ANALYTICS"] %>");
10
- pageTracker._trackPageview();
11
- } catch(err) {}</script>
12
- <% end %>
@@ -1,4 +0,0 @@
1
- # frozen_string_literal: true
2
- module Parallel
3
- VERSION = Version = '1.26.3' # rubocop:disable Naming/ConstantName
4
- end