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,399 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require "tilt"
4
-
5
- module Haml
6
- # The module containing the default Haml filters,
7
- # as well as the base module, {Haml::Filters::Base}.
8
- #
9
- # @see Haml::Filters::Base
10
- module Filters
11
-
12
- extend self
13
-
14
- # @return [{String => Haml::Filters::Base}] a hash mapping filter names to
15
- # classes.
16
- attr_reader :defined
17
- @defined = {}
18
-
19
- # Loads an external template engine from
20
- # [Tilt](https://github.com/rtomayko/tilt) as a filter. This method is used
21
- # internally by Haml to set up filters for Sass, SCSS, Less, Coffeescript,
22
- # and others. It's left public to make it easy for developers to add their
23
- # own Tilt-based filters if they choose.
24
- #
25
- # @return [Module] The generated filter.
26
- # @param [Hash] options Options for generating the filter module.
27
- # @option options [Boolean] :precompiled Whether the filter should be
28
- # precompiled. Erb, Nokogiri and Builder use this, for example.
29
- # @option options [Class] :template_class The Tilt template class to use,
30
- # in the event it can't be inferred from an extension.
31
- # @option options [String] :extension The extension associated with the
32
- # content, for example "markdown". This lets Tilt choose the preferred
33
- # engine when there are more than one.
34
- # @option options [String,Array<String>] :alias Any aliases for the filter.
35
- # For example, :coffee is also available as :coffeescript.
36
- # @option options [String] :extend The name of a module to extend when
37
- # defining the filter. Defaults to "Plain". This allows filters such as
38
- # Coffee to "inherit" from Javascript, wrapping its output in script tags.
39
- # @since 4.0
40
- def register_tilt_filter(name, options = {})
41
- if constants.map(&:to_s).include?(name.to_s)
42
- raise "#{name} filter already defined"
43
- end
44
-
45
- filter = const_set(name, Module.new)
46
- filter.extend const_get(options[:extend] || "Plain")
47
- filter.extend TiltFilter
48
- filter.extend PrecompiledTiltFilter if options.has_key? :precompiled
49
-
50
- if options.has_key? :template_class
51
- filter.template_class = options[:template_class]
52
- else
53
- filter.tilt_extension = options.fetch(:extension) { name.downcase }
54
- end
55
-
56
- # All ":coffeescript" as alias for ":coffee", etc.
57
- if options.has_key?(:alias)
58
- [options[:alias]].flatten.each {|x| Filters.defined[x.to_s] = filter}
59
- end
60
- filter
61
- end
62
-
63
- # Removes a filter from Haml. If the filter was removed, it returns
64
- # the Module that was removed upon success, or nil on failure. If you try
65
- # to redefine a filter, Haml will raise an error. Use this method first to
66
- # explicitly remove the filter before redefining it.
67
- # @return Module The filter module that has been removed
68
- # @since 4.0
69
- def remove_filter(name)
70
- defined.delete name.to_s.downcase
71
- if constants.map(&:to_s).include?(name.to_s)
72
- remove_const name.to_sym
73
- end
74
- end
75
-
76
- # The base module for Haml filters.
77
- # User-defined filters should be modules including this module.
78
- # The name of the filter is taken by downcasing the module name.
79
- # For instance, if the module is named `FooBar`, the filter will be `:foobar`.
80
- #
81
- # A user-defined filter should override either \{#render} or {\#compile}.
82
- # \{#render} is the most common.
83
- # It takes a string, the filter source,
84
- # and returns another string, the result of the filter.
85
- # For example, the following will define a filter named `:sass`:
86
- #
87
- # module Haml::Filters::Sass
88
- # include Haml::Filters::Base
89
- #
90
- # def render(text)
91
- # ::Sass::Engine.new(text).render
92
- # end
93
- # end
94
- #
95
- # For details on overriding \{#compile}, see its documentation.
96
- #
97
- # Note that filters overriding \{#render} automatically support `#{}`
98
- # for interpolating Ruby code.
99
- # Those overriding \{#compile} will need to add such support manually
100
- # if it's desired.
101
- module Base
102
- # This method is automatically called when {Base} is included in a module.
103
- # It automatically defines a filter
104
- # with the downcased name of that module.
105
- # For example, if the module is named `FooBar`, the filter will be `:foobar`.
106
- #
107
- # @param base [Module, Class] The module that this is included in
108
- def self.included(base)
109
- Filters.defined[base.name.split("::").last.downcase] = base
110
- base.extend(base)
111
- end
112
-
113
- # Takes the source text that should be passed to the filter
114
- # and returns the result of running the filter on that string.
115
- #
116
- # This should be overridden in most individual filter modules
117
- # to render text with the given filter.
118
- # If \{#compile} is overridden, however, \{#render} doesn't need to be.
119
- #
120
- # @param text [String] The source text for the filter to process
121
- # @return [String] The filtered result
122
- # @raise [Haml::Error] if it's not overridden
123
- def render(_text)
124
- raise Error.new("#{self.inspect}#render not defined!")
125
- end
126
-
127
- # Same as \{#render}, but takes a {Haml::Engine} options hash as well.
128
- # It's only safe to rely on options made available in {Haml::Engine#options\_for\_buffer}.
129
- #
130
- # @see #render
131
- # @param text [String] The source text for the filter to process
132
- # @return [String] The filtered result
133
- # @raise [Haml::Error] if it or \{#render} isn't overridden
134
- def render_with_options(text, _options)
135
- render(text)
136
- end
137
-
138
- # Same as \{#compile}, but requires the necessary files first.
139
- # *This is used by {Haml::Engine} and is not intended to be overridden or used elsewhere.*
140
- #
141
- # @see #compile
142
- def internal_compile(*args)
143
- compile(*args)
144
- end
145
-
146
- # This should be overridden when a filter needs to have access to the Haml
147
- # evaluation context. Rather than applying a filter to a string at
148
- # compile-time, \{#compile} uses the {Haml::Compiler} instance to compile
149
- # the string to Ruby code that will be executed in the context of the
150
- # active Haml template.
151
- #
152
- # Warning: the {Haml::Compiler} interface is neither well-documented
153
- # nor guaranteed to be stable.
154
- # If you want to make use of it, you'll probably need to look at the
155
- # source code and should test your filter when upgrading to new Haml
156
- # versions.
157
- #
158
- # @param compiler [Haml::Compiler] The compiler instance
159
- # @param text [String] The text of the filter
160
- # @raise [Haml::Error] if none of \{#compile}, \{#render}, and
161
- # \{#render_with_options} are overridden
162
- def compile(compiler, text)
163
- filter = self
164
- compiler.instance_eval do
165
- if contains_interpolation?(text)
166
- return if options[:suppress_eval]
167
-
168
- escape = options[:escape_filter_interpolations]
169
- # `escape_filter_interpolations` defaults to `escape_html` if unset.
170
- escape = options[:escape_html] if escape.nil?
171
-
172
- text = unescape_interpolation(text, escape).gsub(/(\\+)n/) do |s|
173
- escapes = $1.size
174
- next s if escapes % 2 == 0
175
- "#{'\\' * (escapes - 1)}\n"
176
- end
177
- # We need to add a newline at the beginning to get the
178
- # filter lines to line up (since the Haml filter contains
179
- # a line that doesn't show up in the source, namely the
180
- # filter name). Then we need to escape the trailing
181
- # newline so that the whole filter block doesn't take up
182
- # too many.
183
- text = %[\n#{text.sub(/\n"\Z/, "\\n\"")}]
184
- push_script <<RUBY.rstrip, :escape_html => false
185
- find_and_preserve(#{filter.inspect}.render_with_options(#{text}, _hamlout.options))
186
- RUBY
187
- return
188
- end
189
-
190
- rendered = Haml::Helpers::find_and_preserve(filter.render_with_options(text.to_s, compiler.options), compiler.options[:preserve])
191
- push_text("#{rendered.rstrip}\n")
192
- end
193
- end
194
- end
195
-
196
- # Does not parse the filtered text.
197
- # This is useful for large blocks of text without HTML tags, when you don't
198
- # want lines starting with `.` or `-` to be parsed.
199
- module Plain
200
- include Base
201
-
202
- # @see Base#render
203
- def render(text); text; end
204
- end
205
-
206
- # Surrounds the filtered text with `<script>` and CDATA tags. Useful for
207
- # including inline Javascript.
208
- module Javascript
209
- include Base
210
-
211
- # @see Base#render_with_options
212
- def render_with_options(text, options)
213
- indent = options[:cdata] ? ' ' : ' ' # 4 or 2 spaces
214
- if options[:format] == :html5
215
- type = ''
216
- else
217
- type = " type=#{options[:attr_wrapper]}text/javascript#{options[:attr_wrapper]}"
218
- end
219
-
220
- text = text.rstrip
221
- text.gsub!("\n", "\n#{indent}")
222
-
223
- %!<script#{type}>\n#{" //<![CDATA[\n" if options[:cdata]}#{indent}#{text}\n#{" //]]>\n" if options[:cdata]}</script>!
224
- end
225
- end
226
-
227
- # Surrounds the filtered text with `<style>` and CDATA tags. Useful for
228
- # including inline CSS.
229
- module Css
230
- include Base
231
-
232
- # @see Base#render_with_options
233
- def render_with_options(text, options)
234
- indent = options[:cdata] ? ' ' : ' ' # 4 or 2 spaces
235
- if options[:format] == :html5
236
- type = ''
237
- else
238
- type = " type=#{options[:attr_wrapper]}text/css#{options[:attr_wrapper]}"
239
- end
240
-
241
- text = text.rstrip
242
- text.gsub!("\n", "\n#{indent}")
243
-
244
- %(<style#{type}>\n#{" /*<![CDATA[*/\n" if options[:cdata]}#{indent}#{text}\n#{" /*]]>*/\n" if options[:cdata]}</style>)
245
- end
246
- end
247
-
248
- # Surrounds the filtered text with CDATA tags.
249
- module Cdata
250
- include Base
251
-
252
- # @see Base#render
253
- def render(text)
254
- "<![CDATA[#{"\n#{text.rstrip}".gsub("\n", "\n ")}\n]]>"
255
- end
256
- end
257
-
258
- # Works the same as {Plain}, but HTML-escapes the text before placing it in
259
- # the document.
260
- module Escaped
261
- include Base
262
-
263
- # @see Base#render
264
- def render(text)
265
- Haml::Helpers.html_escape text
266
- end
267
- end
268
-
269
- # Parses the filtered text with the normal Ruby interpreter. Creates an IO
270
- # object named `haml_io`, anything written to it is output into the Haml
271
- # document. In previous version this filter redirected any output to `$stdout`
272
- # to the Haml document, this was not threadsafe and has been removed, you
273
- # should use `haml_io` instead.
274
- #
275
- # Not available if the {file:REFERENCE.md#suppress_eval-option `:suppress_eval`}
276
- # option is set to true. The Ruby code is evaluated in the same context as
277
- # the Haml template.
278
- module Ruby
279
- include Base
280
- require 'stringio'
281
-
282
- # @see Base#compile
283
- def compile(compiler, text)
284
- return if compiler.options[:suppress_eval]
285
- compiler.instance_eval do
286
- push_silent "#{<<-FIRST.tr("\n", ';')}#{text}#{<<-LAST.tr("\n", ';')}"
287
- begin
288
- haml_io = StringIO.new(_hamlout.buffer, 'a')
289
- FIRST
290
- ensure
291
- haml_io.close
292
- haml_io = nil
293
- end
294
- LAST
295
- end
296
- end
297
- end
298
-
299
- # Inserts the filtered text into the template with whitespace preserved.
300
- # `preserve`d blocks of text aren't indented, and newlines are replaced with
301
- # the HTML escape code for newlines, to preserve nice-looking output.
302
- #
303
- # @see Haml::Helpers#preserve
304
- module Preserve
305
- include Base
306
-
307
- # @see Base#render
308
- def render(text)
309
- Haml::Helpers.preserve text
310
- end
311
- end
312
-
313
- # @private
314
- module TiltFilter
315
- extend self
316
- attr_accessor :tilt_extension, :options
317
- attr_writer :template_class
318
-
319
- def template_class
320
- (@template_class if defined? @template_class) or begin
321
- @template_class = Tilt["t.#{tilt_extension}"] or
322
- raise Error.new(Error.message(:cant_run_filter, tilt_extension))
323
- rescue LoadError => e
324
- dep = e.message.split('--').last.strip
325
- raise Error.new(Error.message(:gem_install_filter_deps, tilt_extension, dep))
326
- end
327
- end
328
-
329
- def self.extended(base)
330
- base.options = {}
331
- # There's a bug in 1.9.2 where the same parse tree cannot be shared
332
- # across several singleton classes -- this bug is fixed in 1.9.3.
333
- # We work around this by using a string eval instead of a block eval
334
- # so that a new parse tree is created for each singleton class.
335
- base.instance_eval %Q{
336
- include Base
337
-
338
- def render_with_options(text, compiler_options)
339
- text = template_class.new(nil, 1, options) {text}.render
340
- super(text, compiler_options)
341
- end
342
- }
343
- end
344
- end
345
-
346
- # @private
347
- module PrecompiledTiltFilter
348
- def precompiled(text)
349
- template_class.new(nil, 1, options) { text }.send(:precompiled, {}).first
350
- end
351
-
352
- def compile(compiler, text)
353
- return if compiler.options[:suppress_eval]
354
- compiler.send(:push_script, precompiled(text))
355
- end
356
- end
357
-
358
- # @!parse module Sass; end
359
- register_tilt_filter "Sass", :extend => "Css"
360
-
361
- # @!parse module Scss; end
362
- register_tilt_filter "Scss", :extend => "Css"
363
-
364
- # @!parse module Less; end
365
- register_tilt_filter "Less", :extend => "Css"
366
-
367
- # @!parse module Markdown; end
368
- register_tilt_filter "Markdown"
369
-
370
- # @!parse module Erb; end
371
- register_tilt_filter "Erb", :precompiled => true
372
-
373
- # @!parse module Coffee; end
374
- register_tilt_filter "Coffee", :alias => "coffeescript", :extend => "Javascript"
375
-
376
- # Parses the filtered text with ERB.
377
- # Not available if the {file:REFERENCE.md#suppress_eval-option
378
- # `:suppress_eval`} option is set to true. Embedded Ruby code is evaluated
379
- # in the same context as the Haml template.
380
- module Erb
381
- class << self
382
- def precompiled(text)
383
- #workaround for https://github.com/rtomayko/tilt/pull/183
384
- require 'erubis' if (defined?(::Erubis) && !defined?(::Erubis::Eruby))
385
- super.sub(/^#coding:.*?\n/, '')
386
- end
387
- end
388
- end
389
- end
390
- end
391
-
392
- # These filters have been demoted to Haml Contrib but are still included by
393
- # default in Haml 4.0. Still, we rescue from load error if for some reason
394
- # haml-contrib is not installed.
395
- begin
396
- require "haml/filters/maruku"
397
- require "haml/filters/textile"
398
- rescue LoadError
399
- end
@@ -1,42 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Haml
4
- # Ruby code generator, which is a limited version of Temple::Generator.
5
- # Limit methods since Haml doesn't need most of them.
6
- class Generator
7
- include Temple::Mixins::CompiledDispatcher
8
- include Temple::Mixins::Options
9
-
10
- define_options freeze_static: RUBY_VERSION >= '2.1'
11
-
12
- def call(exp)
13
- compile(exp)
14
- end
15
-
16
- def on_multi(*exp)
17
- exp.map { |e| compile(e) }.join('; ')
18
- end
19
-
20
- def on_static(text)
21
- concat(options[:freeze_static] ? "#{Util.inspect_obj(text)}.freeze" : Util.inspect_obj(text))
22
- end
23
-
24
- def on_dynamic(code)
25
- concat(code)
26
- end
27
-
28
- def on_code(exp)
29
- exp
30
- end
31
-
32
- def on_newline
33
- "\n"
34
- end
35
-
36
- private
37
-
38
- def concat(str)
39
- "_hamlout.buffer << (#{str});"
40
- end
41
- end
42
- end
@@ -1,60 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Haml
4
- module Helpers
5
- @@action_view_defined = true
6
-
7
- # This module contains various useful helper methods
8
- # that either tie into ActionView or the rest of the ActionPack stack,
9
- # or are only useful in that context.
10
- # Thus, the methods defined here are only available
11
- # if ActionView is installed.
12
- module ActionViewExtensions
13
- # Returns a value for the "class" attribute
14
- # unique to this controller/action pair.
15
- # This can be used to target styles specifically at this action or controller.
16
- # For example, if the current action were `EntryController#show`,
17
- #
18
- # %div{:class => page_class} My Div
19
- #
20
- # would become
21
- #
22
- # <div class="entry show">My Div</div>
23
- #
24
- # Then, in a stylesheet (shown here as [Sass](http://sass-lang.com)),
25
- # you could refer to this specific action:
26
- #
27
- # .entry.show
28
- # font-weight: bold
29
- #
30
- # or to all actions in the entry controller:
31
- #
32
- # .entry
33
- # color: #00f
34
- #
35
- # @return [String] The class name for the current page
36
- def page_class
37
- "#{controller.controller_name} #{controller.action_name}"
38
- end
39
- alias_method :generate_content_class_names, :page_class
40
-
41
- # Treats all input to \{Haml::Helpers#haml\_concat} within the block
42
- # as being HTML safe for Rails' XSS protection.
43
- # This is useful for wrapping blocks of code that concatenate HTML en masse.
44
- #
45
- # This has no effect if Rails' XSS protection isn't enabled.
46
- #
47
- # @yield A block in which all input to `#haml_concat` is treated as raw.
48
- # @see Haml::Util#rails_xss_safe?
49
- def with_raw_haml_concat
50
- old = instance_variable_defined?(:@_haml_concat_raw) ? @_haml_concat_raw : false
51
- @_haml_concat_raw = true
52
- yield
53
- ensure
54
- @_haml_concat_raw = old
55
- end
56
- end
57
-
58
- include ActionViewExtensions
59
- end
60
- end
@@ -1,132 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Haml
4
- module Helpers
5
- module ActionViewMods
6
- def render(*args, &block)
7
- options = args.first
8
-
9
- # If render :layout is used with a block, it concats rather than returning
10
- # a string so we need it to keep thinking it's Haml until it hits the
11
- # sub-render.
12
- if is_haml? && !(options.is_a?(Hash) && options[:layout] && block_given?)
13
- return non_haml { super }
14
- end
15
- super
16
- end
17
-
18
- def output_buffer
19
- return haml_buffer.buffer if is_haml?
20
- super
21
- end
22
-
23
- def output_buffer=(new_buffer)
24
- if is_haml?
25
- if Haml::Util.rails_xss_safe? && new_buffer.is_a?(ActiveSupport::SafeBuffer)
26
- new_buffer = String.new(new_buffer)
27
- end
28
- haml_buffer.buffer = new_buffer
29
- else
30
- super
31
- end
32
- end
33
- end
34
- ActionView::Base.send(:prepend, ActionViewMods)
35
- end
36
- end
37
-
38
- module ActionView
39
- module Helpers
40
- module CaptureHelper
41
- def capture_with_haml(*args, &block)
42
- if Haml::Helpers.block_is_haml?(block)
43
- #double assignment is to avoid warnings
44
- _hamlout = _hamlout = eval('_hamlout', block.binding) # Necessary since capture_haml checks _hamlout
45
-
46
- capture_haml(*args, &block)
47
- else
48
- capture_without_haml(*args, &block)
49
- end
50
- end
51
- alias_method :capture_without_haml, :capture
52
- alias_method :capture, :capture_with_haml
53
- end
54
-
55
- module TagHelper
56
- DEFAULT_PRESERVE_OPTIONS = %w(textarea pre code).freeze
57
-
58
- def content_tag_with_haml(name, *args, &block)
59
- return content_tag_without_haml(name, *args, &block) unless is_haml?
60
-
61
- preserve = haml_buffer.options.fetch(:preserve, DEFAULT_PRESERVE_OPTIONS).include?(name.to_s)
62
-
63
- if block_given? && block_is_haml?(block) && preserve
64
- return content_tag_without_haml(name, *args) do
65
- haml_buffer.fix_textareas!(Haml::Helpers.preserve(&block)).html_safe
66
- end
67
- end
68
-
69
- content = content_tag_without_haml(name, *args, &block)
70
- if preserve && content
71
- content = haml_buffer.fix_textareas!(Haml::Helpers.preserve(content)).html_safe
72
- end
73
- content
74
- end
75
-
76
- alias_method :content_tag_without_haml, :content_tag
77
- alias_method :content_tag, :content_tag_with_haml
78
- end
79
-
80
- module HamlSupport
81
- include Haml::Helpers
82
-
83
- def haml_buffer
84
- @template_object.send :haml_buffer
85
- end
86
-
87
- def is_haml?
88
- @template_object.send :is_haml?
89
- end
90
- end
91
-
92
- module Tags
93
- class TextArea
94
- include HamlSupport
95
- end
96
- end
97
-
98
- class InstanceTag
99
- include HamlSupport
100
-
101
- def content_tag(*args, &block)
102
- html_tag = content_tag_with_haml(*args, &block)
103
- return html_tag unless respond_to?(:error_wrapping)
104
- return error_wrapping(html_tag) if method(:error_wrapping).arity == 1
105
- return html_tag unless object.respond_to?(:errors) && object.errors.respond_to?(:on)
106
- return error_wrapping(html_tag, object.errors.on(@method_name))
107
- end
108
- end
109
-
110
- module FormTagHelper
111
- def form_tag_with_haml(url_for_options = {}, options = {}, *parameters_for_url, &proc)
112
- if is_haml?
113
- wrap_block = block_given? && block_is_haml?(proc)
114
- if wrap_block
115
- oldproc = proc
116
- proc = haml_bind_proc do |*args|
117
- concat "\n"
118
- with_tabs(1) {oldproc.call(*args)}
119
- end
120
- end
121
- res = form_tag_without_haml(url_for_options, options, *parameters_for_url, &proc) << "\n"
122
- res << "\n" if wrap_block
123
- res
124
- else
125
- form_tag_without_haml(url_for_options, options, *parameters_for_url, &proc)
126
- end
127
- end
128
- alias_method :form_tag_without_haml, :form_tag
129
- alias_method :form_tag, :form_tag_with_haml
130
- end
131
- end
132
- end
@@ -1,60 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module ActionView
4
- module Helpers
5
- module CaptureHelper
6
- def with_output_buffer_with_haml_xss(*args, &block)
7
- res = with_output_buffer_without_haml_xss(*args, &block)
8
- case res
9
- when Array; res.map {|s| Haml::Util.html_safe(s)}
10
- when String; Haml::Util.html_safe(res)
11
- else; res
12
- end
13
- end
14
- alias_method :with_output_buffer_without_haml_xss, :with_output_buffer
15
- alias_method :with_output_buffer, :with_output_buffer_with_haml_xss
16
- end
17
-
18
- module FormTagHelper
19
- def form_tag_with_haml_xss(*args, &block)
20
- res = form_tag_without_haml_xss(*args, &block)
21
- res = Haml::Util.html_safe(res) unless block_given?
22
- res
23
- end
24
- alias_method :form_tag_without_haml_xss, :form_tag
25
- alias_method :form_tag, :form_tag_with_haml_xss
26
- end
27
-
28
- module FormHelper
29
- def form_for_with_haml_xss(*args, &block)
30
- res = form_for_without_haml_xss(*args, &block)
31
- return Haml::Util.html_safe(res) if res.is_a?(String)
32
- return res
33
- end
34
- alias_method :form_for_without_haml_xss, :form_for
35
- alias_method :form_for, :form_for_with_haml_xss
36
- end
37
-
38
- module TextHelper
39
- def concat_with_haml_xss(string)
40
- if is_haml?
41
- haml_buffer.buffer.concat(haml_xss_html_escape(string))
42
- else
43
- concat_without_haml_xss(string)
44
- end
45
- end
46
- alias_method :concat_without_haml_xss, :concat
47
- alias_method :concat, :concat_with_haml_xss
48
-
49
- def safe_concat_with_haml_xss(string)
50
- if is_haml?
51
- haml_buffer.buffer.concat(string)
52
- else
53
- safe_concat_without_haml_xss(string)
54
- end
55
- end
56
- alias_method :safe_concat_without_haml_xss, :safe_concat
57
- alias_method :safe_concat, :safe_concat_with_haml_xss
58
- end
59
- end
60
- end