zuora_connect_ui 0.9.1 → 0.9.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2288) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/zuora_connect_ui/datatable.js +4 -4
  3. data/app/assets/stylesheets/zuora_connect_ui/input.scss +3 -11
  4. data/app/helpers/zuora_connect_ui/application_helper.rb +2 -2
  5. data/app/helpers/zuora_connect_ui/input_helper.rb +1 -1
  6. data/app/views/partials/_filters.html.erb +10 -14
  7. data/app/views/partials/_table.html.erb +1 -1
  8. data/lib/zuora_connect_ui/version.rb +1 -1
  9. data/vendor/ruby/2.6.0/cache/actionpack-6.0.1.gem +0 -0
  10. data/vendor/ruby/2.6.0/cache/actionview-6.0.1.gem +0 -0
  11. data/vendor/ruby/2.6.0/cache/activesupport-6.0.1.gem +0 -0
  12. data/vendor/ruby/2.6.0/cache/autoprefixer-rails-9.7.1.gem +0 -0
  13. data/vendor/ruby/2.6.0/cache/brakeman-4.7.1.gem +0 -0
  14. data/vendor/ruby/2.6.0/cache/jaro_winkler-1.5.4.gem +0 -0
  15. data/vendor/ruby/2.6.0/cache/minitest-5.13.0.gem +0 -0
  16. data/vendor/ruby/2.6.0/cache/nokogiri-1.10.5.gem +0 -0
  17. data/vendor/ruby/2.6.0/cache/railties-6.0.1.gem +0 -0
  18. data/vendor/ruby/2.6.0/cache/rubocop-0.76.0.gem +0 -0
  19. data/vendor/ruby/2.6.0/cache/zeitwerk-2.2.1.gem +0 -0
  20. data/vendor/ruby/2.6.0/extensions/x86_64-linux/2.6.0/jaro_winkler-1.5.4/gem.build_complete +0 -0
  21. data/vendor/ruby/2.6.0/extensions/x86_64-linux/2.6.0/jaro_winkler-1.5.4/gem_make.out +83 -0
  22. data/vendor/ruby/2.6.0/extensions/x86_64-linux/2.6.0/jaro_winkler-1.5.4/jaro_winkler/jaro_winkler_ext.so +0 -0
  23. data/vendor/ruby/2.6.0/extensions/x86_64-linux/2.6.0/nokogiri-1.10.5/gem.build_complete +0 -0
  24. data/vendor/ruby/2.6.0/extensions/x86_64-linux/2.6.0/nokogiri-1.10.5/gem_make.out +435 -0
  25. data/vendor/ruby/2.6.0/extensions/x86_64-linux/2.6.0/nokogiri-1.10.5/mkmf.log +558 -0
  26. data/vendor/ruby/2.6.0/extensions/x86_64-linux/2.6.0/nokogiri-1.10.5/nokogiri/nokogiri.so +0 -0
  27. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/CHANGELOG.md +328 -0
  28. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/MIT-LICENSE +21 -0
  29. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/README.rdoc +58 -0
  30. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/abstract_controller.rb +27 -0
  31. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/abstract_controller/asset_paths.rb +12 -0
  32. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/abstract_controller/base.rb +267 -0
  33. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/abstract_controller/caching.rb +66 -0
  34. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/abstract_controller/caching/fragments.rb +150 -0
  35. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/abstract_controller/callbacks.rb +224 -0
  36. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/abstract_controller/collector.rb +43 -0
  37. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/abstract_controller/error.rb +6 -0
  38. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/abstract_controller/helpers.rb +194 -0
  39. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/abstract_controller/logger.rb +14 -0
  40. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/abstract_controller/railties/routes_helpers.rb +20 -0
  41. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/abstract_controller/rendering.rb +127 -0
  42. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/abstract_controller/translation.rb +32 -0
  43. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/abstract_controller/url_for.rb +35 -0
  44. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_controller.rb +70 -0
  45. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_controller/api.rb +150 -0
  46. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_controller/api/api_rendering.rb +16 -0
  47. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_controller/base.rb +271 -0
  48. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_controller/caching.rb +46 -0
  49. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_controller/form_builder.rb +50 -0
  50. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_controller/log_subscriber.rb +81 -0
  51. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_controller/metal.rb +256 -0
  52. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_controller/metal/basic_implicit_render.rb +13 -0
  53. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_controller/metal/conditional_get.rb +280 -0
  54. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_controller/metal/content_security_policy.rb +52 -0
  55. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_controller/metal/cookies.rb +16 -0
  56. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_controller/metal/data_streaming.rb +151 -0
  57. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_controller/metal/default_headers.rb +17 -0
  58. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_controller/metal/etag_with_flash.rb +18 -0
  59. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_controller/metal/etag_with_template_digest.rb +57 -0
  60. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_controller/metal/exceptions.rb +74 -0
  61. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_controller/metal/flash.rb +61 -0
  62. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_controller/metal/force_ssl.rb +58 -0
  63. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_controller/metal/head.rb +60 -0
  64. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_controller/metal/helpers.rb +122 -0
  65. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_controller/metal/http_authentication.rb +518 -0
  66. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_controller/metal/implicit_render.rb +63 -0
  67. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_controller/metal/instrumentation.rb +105 -0
  68. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_controller/metal/live.rb +314 -0
  69. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_controller/metal/mime_responds.rb +324 -0
  70. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_controller/metal/parameter_encoding.rb +51 -0
  71. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_controller/metal/params_wrapper.rb +297 -0
  72. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_controller/metal/redirecting.rb +133 -0
  73. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_controller/metal/renderers.rb +181 -0
  74. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_controller/metal/rendering.rb +122 -0
  75. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_controller/metal/request_forgery_protection.rb +456 -0
  76. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_controller/metal/rescue.rb +28 -0
  77. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_controller/metal/streaming.rb +223 -0
  78. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_controller/metal/strong_parameters.rb +1105 -0
  79. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_controller/metal/testing.rb +16 -0
  80. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_controller/metal/url_for.rb +58 -0
  81. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_controller/railtie.rb +89 -0
  82. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_controller/railties/helpers.rb +24 -0
  83. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_controller/renderer.rb +130 -0
  84. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_controller/template_assertions.rb +11 -0
  85. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_controller/test_case.rb +627 -0
  86. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch.rb +114 -0
  87. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/http/cache.rb +226 -0
  88. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/http/content_disposition.rb +45 -0
  89. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/http/content_security_policy.rb +284 -0
  90. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/http/filter_parameters.rb +86 -0
  91. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/http/filter_redirect.rb +37 -0
  92. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/http/headers.rb +132 -0
  93. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/http/mime_negotiation.rb +177 -0
  94. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/http/mime_type.rb +350 -0
  95. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/http/mime_types.rb +50 -0
  96. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/http/parameter_filter.rb +12 -0
  97. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/http/parameters.rb +136 -0
  98. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/http/rack_cache.rb +63 -0
  99. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/http/request.rb +427 -0
  100. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/http/response.rb +540 -0
  101. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/http/upload.rb +92 -0
  102. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/http/url.rb +350 -0
  103. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/journey.rb +7 -0
  104. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/journey/formatter.rb +189 -0
  105. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/journey/gtg/builder.rb +164 -0
  106. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/journey/gtg/simulator.rb +41 -0
  107. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/journey/gtg/transition_table.rb +158 -0
  108. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/journey/nfa/builder.rb +78 -0
  109. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/journey/nfa/dot.rb +36 -0
  110. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/journey/nfa/simulator.rb +47 -0
  111. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/journey/nfa/transition_table.rb +120 -0
  112. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/journey/nodes/node.rb +141 -0
  113. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/journey/parser.rb +199 -0
  114. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/journey/parser.y +50 -0
  115. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/journey/parser_extras.rb +31 -0
  116. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/journey/path/pattern.rb +203 -0
  117. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/journey/route.rb +204 -0
  118. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/journey/router.rb +153 -0
  119. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/journey/router/utils.rb +102 -0
  120. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/journey/routes.rb +81 -0
  121. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/journey/scanner.rb +71 -0
  122. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/journey/visitors.rb +268 -0
  123. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/journey/visualizer/fsm.css +30 -0
  124. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/journey/visualizer/fsm.js +134 -0
  125. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/journey/visualizer/index.html.erb +52 -0
  126. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/middleware/actionable_exceptions.rb +39 -0
  127. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/middleware/callbacks.rb +34 -0
  128. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/middleware/cookies.rb +663 -0
  129. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/middleware/debug_exceptions.rb +185 -0
  130. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/middleware/debug_locks.rb +124 -0
  131. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/middleware/debug_view.rb +68 -0
  132. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/middleware/exception_wrapper.rb +181 -0
  133. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/middleware/executor.rb +21 -0
  134. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/middleware/flash.rb +300 -0
  135. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/middleware/host_authorization.rb +103 -0
  136. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/middleware/public_exceptions.rb +61 -0
  137. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/middleware/reloader.rb +12 -0
  138. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/middleware/remote_ip.rb +181 -0
  139. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/middleware/request_id.rb +43 -0
  140. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/middleware/session/abstract_store.rb +92 -0
  141. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/middleware/session/cache_store.rb +54 -0
  142. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/middleware/session/cookie_store.rb +113 -0
  143. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/middleware/session/mem_cache_store.rb +28 -0
  144. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/middleware/show_exceptions.rb +62 -0
  145. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/middleware/ssl.rb +150 -0
  146. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/middleware/stack.rb +148 -0
  147. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/middleware/static.rb +129 -0
  148. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/middleware/templates/rescues/_actions.html.erb +13 -0
  149. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/middleware/templates/rescues/_actions.text.erb +0 -0
  150. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb +24 -0
  151. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.text.erb +23 -0
  152. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb +29 -0
  153. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/middleware/templates/rescues/_source.text.erb +8 -0
  154. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb +62 -0
  155. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.text.erb +9 -0
  156. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/middleware/templates/rescues/blocked_host.html.erb +7 -0
  157. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/middleware/templates/rescues/blocked_host.text.erb +5 -0
  158. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb +38 -0
  159. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.text.erb +9 -0
  160. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/middleware/templates/rescues/invalid_statement.html.erb +24 -0
  161. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/middleware/templates/rescues/invalid_statement.text.erb +15 -0
  162. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/middleware/templates/rescues/layout.erb +165 -0
  163. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/middleware/templates/rescues/missing_exact_template.html.erb +19 -0
  164. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/middleware/templates/rescues/missing_exact_template.text.erb +3 -0
  165. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb +11 -0
  166. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/middleware/templates/rescues/missing_template.text.erb +3 -0
  167. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb +32 -0
  168. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/middleware/templates/rescues/routing_error.text.erb +11 -0
  169. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb +20 -0
  170. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.text.erb +7 -0
  171. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb +6 -0
  172. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/middleware/templates/rescues/unknown_action.text.erb +3 -0
  173. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb +16 -0
  174. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb +203 -0
  175. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/railtie.rb +60 -0
  176. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/request/session.rb +242 -0
  177. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/request/utils.rb +78 -0
  178. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/routing.rb +261 -0
  179. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/routing/endpoint.rb +17 -0
  180. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/routing/inspector.rb +274 -0
  181. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/routing/mapper.rb +2289 -0
  182. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/routing/polymorphic_routes.rb +351 -0
  183. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/routing/redirection.rb +201 -0
  184. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/routing/route_set.rb +887 -0
  185. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/routing/routes_proxy.rb +69 -0
  186. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/routing/url_for.rb +237 -0
  187. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/system_test_case.rb +185 -0
  188. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/system_testing/browser.rb +80 -0
  189. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/system_testing/driver.rb +68 -0
  190. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/system_testing/server.rb +31 -0
  191. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/system_testing/test_helpers/screenshot_helper.rb +97 -0
  192. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/system_testing/test_helpers/setup_and_teardown.rb +32 -0
  193. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/testing/assertion_response.rb +47 -0
  194. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/testing/assertions.rb +24 -0
  195. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/testing/assertions/response.rb +106 -0
  196. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/testing/assertions/routing.rb +234 -0
  197. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/testing/integration.rb +659 -0
  198. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/testing/request_encoder.rb +55 -0
  199. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/testing/test_process.rb +50 -0
  200. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/testing/test_request.rb +71 -0
  201. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_dispatch/testing/test_response.rb +25 -0
  202. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_pack.rb +26 -0
  203. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_pack/gem_version.rb +17 -0
  204. data/vendor/ruby/2.6.0/gems/actionpack-6.0.1/lib/action_pack/version.rb +10 -0
  205. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/CHANGELOG.md +278 -0
  206. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/MIT-LICENSE +21 -0
  207. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/README.rdoc +40 -0
  208. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view.rb +98 -0
  209. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/base.rb +312 -0
  210. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/buffers.rb +67 -0
  211. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/cache_expiry.rb +54 -0
  212. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/context.rb +32 -0
  213. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/dependency_tracker.rb +175 -0
  214. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/digestor.rb +126 -0
  215. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/flows.rb +76 -0
  216. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/gem_version.rb +17 -0
  217. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/helpers.rb +66 -0
  218. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/helpers/active_model_helper.rb +55 -0
  219. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/helpers/asset_tag_helper.rb +488 -0
  220. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/helpers/asset_url_helper.rb +470 -0
  221. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/helpers/atom_feed_helper.rb +205 -0
  222. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/helpers/cache_helper.rb +271 -0
  223. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/helpers/capture_helper.rb +216 -0
  224. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/helpers/controller_helper.rb +36 -0
  225. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/helpers/csp_helper.rb +26 -0
  226. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/helpers/csrf_helper.rb +35 -0
  227. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/helpers/date_helper.rb +1200 -0
  228. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/helpers/debug_helper.rb +36 -0
  229. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/helpers/form_helper.rb +2569 -0
  230. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/helpers/form_options_helper.rb +896 -0
  231. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/helpers/form_tag_helper.rb +922 -0
  232. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/helpers/javascript_helper.rb +95 -0
  233. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/helpers/number_helper.rb +456 -0
  234. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/helpers/output_safety_helper.rb +70 -0
  235. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/helpers/rendering_helper.rb +101 -0
  236. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/helpers/sanitize_helper.rb +171 -0
  237. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/helpers/tag_helper.rb +314 -0
  238. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/helpers/tags.rb +44 -0
  239. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/helpers/tags/base.rb +196 -0
  240. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/helpers/tags/check_box.rb +66 -0
  241. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/helpers/tags/checkable.rb +18 -0
  242. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/helpers/tags/collection_check_boxes.rb +36 -0
  243. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/helpers/tags/collection_helpers.rb +119 -0
  244. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/helpers/tags/collection_radio_buttons.rb +31 -0
  245. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/helpers/tags/collection_select.rb +30 -0
  246. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/helpers/tags/color_field.rb +27 -0
  247. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/helpers/tags/date_field.rb +15 -0
  248. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/helpers/tags/date_select.rb +74 -0
  249. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/helpers/tags/datetime_field.rb +32 -0
  250. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/helpers/tags/datetime_local_field.rb +21 -0
  251. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/helpers/tags/datetime_select.rb +10 -0
  252. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/helpers/tags/email_field.rb +10 -0
  253. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/helpers/tags/file_field.rb +10 -0
  254. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/helpers/tags/grouped_collection_select.rb +31 -0
  255. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/helpers/tags/hidden_field.rb +10 -0
  256. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/helpers/tags/label.rb +81 -0
  257. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/helpers/tags/month_field.rb +15 -0
  258. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/helpers/tags/number_field.rb +20 -0
  259. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/helpers/tags/password_field.rb +14 -0
  260. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/helpers/tags/placeholderable.rb +24 -0
  261. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/helpers/tags/radio_button.rb +33 -0
  262. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/helpers/tags/range_field.rb +10 -0
  263. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/helpers/tags/search_field.rb +27 -0
  264. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/helpers/tags/select.rb +43 -0
  265. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/helpers/tags/tel_field.rb +10 -0
  266. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/helpers/tags/text_area.rb +24 -0
  267. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/helpers/tags/text_field.rb +34 -0
  268. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/helpers/tags/time_field.rb +15 -0
  269. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/helpers/tags/time_select.rb +10 -0
  270. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/helpers/tags/time_zone_select.rb +22 -0
  271. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/helpers/tags/translator.rb +39 -0
  272. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/helpers/tags/url_field.rb +10 -0
  273. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/helpers/tags/week_field.rb +15 -0
  274. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/helpers/text_helper.rb +486 -0
  275. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/helpers/translation_helper.rb +145 -0
  276. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/helpers/url_helper.rb +676 -0
  277. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/layouts.rb +433 -0
  278. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/locale/en.yml +56 -0
  279. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/log_subscriber.rb +96 -0
  280. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/lookup_context.rb +316 -0
  281. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/model_naming.rb +14 -0
  282. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/path_set.rb +95 -0
  283. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/railtie.rb +105 -0
  284. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/record_identifier.rb +112 -0
  285. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/renderer/abstract_renderer.rb +108 -0
  286. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/renderer/partial_renderer.rb +563 -0
  287. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/renderer/partial_renderer/collection_caching.rb +103 -0
  288. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/renderer/renderer.rb +68 -0
  289. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/renderer/streaming_template_renderer.rb +105 -0
  290. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/renderer/template_renderer.rb +108 -0
  291. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/rendering.rb +171 -0
  292. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/routing_url_for.rb +146 -0
  293. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/tasks/cache_digests.rake +25 -0
  294. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/template.rb +393 -0
  295. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/template/error.rb +161 -0
  296. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/template/handlers.rb +92 -0
  297. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/template/handlers/builder.rb +25 -0
  298. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/template/handlers/erb.rb +84 -0
  299. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/template/handlers/erb/erubi.rb +87 -0
  300. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/template/handlers/html.rb +11 -0
  301. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/template/handlers/raw.rb +11 -0
  302. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/template/html.rb +43 -0
  303. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/template/inline.rb +22 -0
  304. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/template/raw_file.rb +28 -0
  305. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/template/resolver.rb +394 -0
  306. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/template/sources.rb +13 -0
  307. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/template/sources/file.rb +17 -0
  308. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/template/text.rb +35 -0
  309. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/template/types.rb +57 -0
  310. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/test_case.rb +300 -0
  311. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/testing/resolvers.rb +67 -0
  312. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/unbound_template.rb +32 -0
  313. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/version.rb +10 -0
  314. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/action_view/view_paths.rb +129 -0
  315. data/vendor/ruby/2.6.0/gems/actionview-6.0.1/lib/assets/compiled/rails-ujs.js +746 -0
  316. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/CHANGELOG.md +617 -0
  317. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/MIT-LICENSE +20 -0
  318. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/README.rdoc +40 -0
  319. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support.rb +96 -0
  320. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/actionable_error.rb +48 -0
  321. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/all.rb +5 -0
  322. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/array_inquirer.rb +48 -0
  323. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/backtrace_cleaner.rb +132 -0
  324. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/benchmarkable.rb +51 -0
  325. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/builder.rb +8 -0
  326. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/cache.rb +830 -0
  327. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/cache/file_store.rb +196 -0
  328. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/cache/mem_cache_store.rb +212 -0
  329. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/cache/memory_store.rb +176 -0
  330. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/cache/null_store.rb +48 -0
  331. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/cache/redis_cache_store.rb +488 -0
  332. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/cache/strategy/local_cache.rb +194 -0
  333. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/cache/strategy/local_cache_middleware.rb +45 -0
  334. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/callbacks.rb +856 -0
  335. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/concern.rb +171 -0
  336. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/concurrency/load_interlock_aware_monitor.rb +17 -0
  337. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/concurrency/share_lock.rb +227 -0
  338. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/configurable.rb +146 -0
  339. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext.rb +5 -0
  340. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/array.rb +9 -0
  341. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/array/access.rb +104 -0
  342. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/array/conversions.rb +213 -0
  343. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/array/extract.rb +21 -0
  344. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/array/extract_options.rb +31 -0
  345. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/array/grouping.rb +109 -0
  346. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/array/inquiry.rb +19 -0
  347. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/array/prepend_and_append.rb +5 -0
  348. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/array/wrap.rb +48 -0
  349. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/benchmark.rb +16 -0
  350. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/big_decimal.rb +3 -0
  351. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/big_decimal/conversions.rb +14 -0
  352. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/class.rb +4 -0
  353. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/class/attribute.rb +141 -0
  354. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/class/attribute_accessors.rb +6 -0
  355. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/class/subclasses.rb +54 -0
  356. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/date.rb +7 -0
  357. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/date/acts_like.rb +10 -0
  358. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/date/blank.rb +14 -0
  359. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/date/calculations.rb +146 -0
  360. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/date/conversions.rb +96 -0
  361. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/date/zones.rb +8 -0
  362. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/date_and_time/calculations.rb +351 -0
  363. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/date_and_time/compatibility.rb +16 -0
  364. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/date_and_time/zones.rb +41 -0
  365. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/date_time.rb +7 -0
  366. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/date_time/acts_like.rb +16 -0
  367. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/date_time/blank.rb +14 -0
  368. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/date_time/calculations.rb +211 -0
  369. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/date_time/compatibility.rb +18 -0
  370. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/date_time/conversions.rb +107 -0
  371. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/digest.rb +3 -0
  372. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/digest/uuid.rb +53 -0
  373. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/enumerable.rb +188 -0
  374. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/file.rb +3 -0
  375. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/file/atomic.rb +70 -0
  376. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/hash.rb +10 -0
  377. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/hash/compact.rb +5 -0
  378. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/hash/conversions.rb +263 -0
  379. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/hash/deep_merge.rb +34 -0
  380. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/hash/deep_transform_values.rb +46 -0
  381. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/hash/except.rb +24 -0
  382. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/hash/indifferent_access.rb +24 -0
  383. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/hash/keys.rb +143 -0
  384. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/hash/reverse_merge.rb +25 -0
  385. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/hash/slice.rb +26 -0
  386. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/hash/transform_values.rb +5 -0
  387. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/integer.rb +5 -0
  388. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/integer/inflections.rb +31 -0
  389. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/integer/multiple.rb +12 -0
  390. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/integer/time.rb +22 -0
  391. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/kernel.rb +5 -0
  392. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/kernel/concern.rb +14 -0
  393. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/kernel/reporting.rb +45 -0
  394. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/kernel/singleton_class.rb +8 -0
  395. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/load_error.rb +9 -0
  396. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/marshal.rb +24 -0
  397. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/module.rb +13 -0
  398. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/module/aliasing.rb +31 -0
  399. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/module/anonymous.rb +30 -0
  400. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/module/attr_internal.rb +38 -0
  401. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/module/attribute_accessors.rb +212 -0
  402. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/module/attribute_accessors_per_thread.rb +144 -0
  403. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/module/concerning.rb +134 -0
  404. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/module/delegation.rb +313 -0
  405. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/module/deprecation.rb +25 -0
  406. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/module/introspection.rb +86 -0
  407. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/module/reachable.rb +6 -0
  408. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/module/redefine_method.rb +40 -0
  409. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/module/remove_method.rb +17 -0
  410. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/name_error.rb +38 -0
  411. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/numeric.rb +5 -0
  412. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/numeric/bytes.rb +66 -0
  413. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/numeric/conversions.rb +136 -0
  414. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/numeric/inquiry.rb +5 -0
  415. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/numeric/time.rb +66 -0
  416. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/object.rb +16 -0
  417. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/object/acts_like.rb +21 -0
  418. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/object/blank.rb +155 -0
  419. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/object/conversions.rb +6 -0
  420. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/object/deep_dup.rb +55 -0
  421. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/object/duplicable.rb +49 -0
  422. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/object/inclusion.rb +29 -0
  423. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/object/instance_variables.rb +30 -0
  424. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/object/json.rb +228 -0
  425. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/object/to_param.rb +3 -0
  426. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/object/to_query.rb +89 -0
  427. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/object/try.rb +156 -0
  428. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/object/with_options.rb +82 -0
  429. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/range.rb +7 -0
  430. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/range/compare_range.rb +76 -0
  431. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/range/conversions.rb +41 -0
  432. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/range/each.rb +25 -0
  433. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/range/include_range.rb +9 -0
  434. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/range/include_time_with_zone.rb +23 -0
  435. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/range/overlaps.rb +10 -0
  436. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/regexp.rb +7 -0
  437. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/securerandom.rb +45 -0
  438. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/string.rb +15 -0
  439. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/string/access.rb +114 -0
  440. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/string/behavior.rb +8 -0
  441. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/string/conversions.rb +59 -0
  442. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/string/exclude.rb +13 -0
  443. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/string/filters.rb +145 -0
  444. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/string/indent.rb +45 -0
  445. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/string/inflections.rb +259 -0
  446. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/string/inquiry.rb +15 -0
  447. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/string/multibyte.rb +58 -0
  448. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/string/output_safety.rb +316 -0
  449. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/string/starts_ends_with.rb +6 -0
  450. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/string/strip.rb +27 -0
  451. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/string/zones.rb +16 -0
  452. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/time.rb +7 -0
  453. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/time/acts_like.rb +10 -0
  454. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/time/calculations.rb +344 -0
  455. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/time/compatibility.rb +16 -0
  456. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/time/conversions.rb +72 -0
  457. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/time/zones.rb +113 -0
  458. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/uri.rb +25 -0
  459. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/current_attributes.rb +203 -0
  460. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/dependencies.rb +806 -0
  461. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/dependencies/autoload.rb +79 -0
  462. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/dependencies/interlock.rb +57 -0
  463. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/dependencies/zeitwerk_integration.rb +118 -0
  464. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/deprecation.rb +46 -0
  465. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/deprecation/behaviors.rb +109 -0
  466. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/deprecation/constant_accessor.rb +52 -0
  467. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/deprecation/instance_delegator.rb +39 -0
  468. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/deprecation/method_wrappers.rb +78 -0
  469. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/deprecation/proxy_wrappers.rb +173 -0
  470. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/deprecation/reporting.rb +114 -0
  471. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/descendants_tracker.rb +109 -0
  472. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/digest.rb +20 -0
  473. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/duration.rb +433 -0
  474. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/duration/iso8601_parser.rb +124 -0
  475. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/duration/iso8601_serializer.rb +54 -0
  476. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/encrypted_configuration.rb +45 -0
  477. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/encrypted_file.rb +100 -0
  478. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/evented_file_update_checker.rb +235 -0
  479. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/execution_wrapper.rb +129 -0
  480. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/executor.rb +8 -0
  481. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/file_update_checker.rb +163 -0
  482. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/gem_version.rb +17 -0
  483. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/gzip.rb +38 -0
  484. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/hash_with_indifferent_access.rb +399 -0
  485. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/i18n.rb +16 -0
  486. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/i18n_railtie.rb +126 -0
  487. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/inflections.rb +72 -0
  488. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/inflector.rb +9 -0
  489. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/inflector/inflections.rb +257 -0
  490. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/inflector/methods.rb +398 -0
  491. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/inflector/transliterate.rb +147 -0
  492. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/json.rb +4 -0
  493. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/json/decoding.rb +76 -0
  494. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/json/encoding.rb +134 -0
  495. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/key_generator.rb +41 -0
  496. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/lazy_load_hooks.rb +82 -0
  497. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/locale/en.rb +31 -0
  498. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/locale/en.yml +135 -0
  499. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/log_subscriber.rb +135 -0
  500. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/log_subscriber/test_helper.rb +106 -0
  501. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/logger.rb +93 -0
  502. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/logger_silence.rb +45 -0
  503. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/logger_thread_safe_level.rb +56 -0
  504. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/message_encryptor.rb +227 -0
  505. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/message_verifier.rb +205 -0
  506. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/messages/metadata.rb +71 -0
  507. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/messages/rotation_configuration.rb +22 -0
  508. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/messages/rotator.rb +56 -0
  509. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/multibyte.rb +23 -0
  510. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/multibyte/chars.rb +216 -0
  511. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/multibyte/unicode.rb +157 -0
  512. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/notifications.rb +253 -0
  513. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/notifications/fanout.rb +244 -0
  514. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/notifications/instrumenter.rb +165 -0
  515. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/number_helper.rb +378 -0
  516. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/number_helper/number_converter.rb +184 -0
  517. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/number_helper/number_to_currency_converter.rb +46 -0
  518. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/number_helper/number_to_delimited_converter.rb +31 -0
  519. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/number_helper/number_to_human_converter.rb +70 -0
  520. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/number_helper/number_to_human_size_converter.rb +61 -0
  521. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/number_helper/number_to_percentage_converter.rb +16 -0
  522. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/number_helper/number_to_phone_converter.rb +60 -0
  523. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/number_helper/number_to_rounded_converter.rb +56 -0
  524. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/number_helper/rounding_helper.rb +66 -0
  525. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/option_merger.rb +27 -0
  526. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/ordered_hash.rb +50 -0
  527. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/ordered_options.rb +85 -0
  528. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/parameter_filter.rb +129 -0
  529. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/per_thread_registry.rb +60 -0
  530. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/proxy_object.rb +15 -0
  531. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/rails.rb +29 -0
  532. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/railtie.rb +80 -0
  533. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/reloader.rb +130 -0
  534. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/rescuable.rb +174 -0
  535. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/security_utils.rb +31 -0
  536. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/string_inquirer.rb +34 -0
  537. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/subscriber.rb +169 -0
  538. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/tagged_logging.rb +88 -0
  539. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/test_case.rb +163 -0
  540. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/testing/assertions.rb +228 -0
  541. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/testing/autorun.rb +7 -0
  542. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/testing/constant_lookup.rb +51 -0
  543. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/testing/declarative.rb +28 -0
  544. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/testing/deprecation.rb +38 -0
  545. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/testing/file_fixtures.rb +38 -0
  546. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/testing/isolation.rb +110 -0
  547. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/testing/method_call_assertions.rb +70 -0
  548. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/testing/parallelization.rb +128 -0
  549. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/testing/setup_and_teardown.rb +55 -0
  550. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/testing/stream.rb +44 -0
  551. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/testing/tagged_logging.rb +27 -0
  552. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/testing/time_helpers.rb +200 -0
  553. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/time.rb +20 -0
  554. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/time_with_zone.rb +561 -0
  555. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/values/time_zone.rb +570 -0
  556. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/version.rb +10 -0
  557. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/xml_mini.rb +202 -0
  558. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/xml_mini/jdom.rb +183 -0
  559. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/xml_mini/libxml.rb +80 -0
  560. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/xml_mini/libxmlsax.rb +83 -0
  561. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/xml_mini/nokogiri.rb +83 -0
  562. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/xml_mini/nokogirisax.rb +86 -0
  563. data/vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/xml_mini/rexml.rb +130 -0
  564. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.7.1/CHANGELOG.md +1105 -0
  565. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.7.1/Gemfile +10 -0
  566. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.7.1/LICENSE +20 -0
  567. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.7.1/README.md +237 -0
  568. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.7.1/Rakefile +53 -0
  569. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.7.1/autoprefixer-rails.gemspec +32 -0
  570. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.7.1/lib/autoprefixer-rails.rb +41 -0
  571. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.7.1/lib/autoprefixer-rails/processor.rb +194 -0
  572. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.7.1/lib/autoprefixer-rails/railtie.rb +50 -0
  573. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.7.1/lib/autoprefixer-rails/result.rb +24 -0
  574. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.7.1/lib/autoprefixer-rails/sprockets.rb +62 -0
  575. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.7.1/lib/autoprefixer-rails/version.rb +3 -0
  576. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.7.1/lib/rake/autoprefixer_tasks.rb +28 -0
  577. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.7.1/spec/app/Rakefile +2 -0
  578. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.7.1/spec/app/app/assets/config/manifest.js +0 -0
  579. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.7.1/spec/app/app/assets/stylesheets/evaluate.css.erb +1 -0
  580. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.7.1/spec/app/app/assets/stylesheets/loaded.sass +2 -0
  581. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.7.1/spec/app/app/assets/stylesheets/sass.sass +1 -0
  582. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.7.1/spec/app/app/assets/stylesheets/test.css +3 -0
  583. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.7.1/spec/app/app/assets/stylesheets/wrong.css +2 -0
  584. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.7.1/spec/app/app/controllers/application_controller.rb +2 -0
  585. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.7.1/spec/app/app/controllers/css_controller.rb +6 -0
  586. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.7.1/spec/app/config.ru +2 -0
  587. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.7.1/spec/app/config/application.rb +16 -0
  588. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.7.1/spec/app/config/autoprefixer.yml +2 -0
  589. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.7.1/spec/app/config/boot.rb +2 -0
  590. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.7.1/spec/app/config/environment.rb +3 -0
  591. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.7.1/spec/app/config/environments/test.rb +9 -0
  592. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.7.1/spec/app/config/initializers/secret_token.rb +1 -0
  593. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.7.1/spec/app/config/routes.rb +3 -0
  594. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.7.1/spec/autoprefixer_spec.rb +121 -0
  595. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.7.1/spec/processor_spec.rb +25 -0
  596. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.7.1/spec/rails_spec.rb +40 -0
  597. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.7.1/spec/railtie_spec.rb +29 -0
  598. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.7.1/spec/spec_helper.rb +16 -0
  599. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.7.1/vendor/autoprefixer.js +67806 -0
  600. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/CHANGES.md +1177 -0
  601. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/FEATURES +16 -0
  602. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/README.md +199 -0
  603. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bin/brakeman +10 -0
  604. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/load.rb +14 -0
  605. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/erubis-2.7.0/CHANGES.txt +828 -0
  606. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/erubis-2.7.0/MIT-LICENSE +20 -0
  607. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/erubis-2.7.0/README.txt +102 -0
  608. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/erubis-2.7.0/contrib/erubis +3468 -0
  609. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/erubis-2.7.0/contrib/erubis-run.rb +132 -0
  610. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/erubis-2.7.0/contrib/inline-require +179 -0
  611. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/erubis-2.7.0/lib/erubis.rb +73 -0
  612. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/erubis-2.7.0/lib/erubis/context.rb +83 -0
  613. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/erubis-2.7.0/lib/erubis/converter.rb +357 -0
  614. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/erubis-2.7.0/lib/erubis/engine.rb +120 -0
  615. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/erubis-2.7.0/lib/erubis/engine/ec.rb +117 -0
  616. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/erubis-2.7.0/lib/erubis/engine/ecpp.rb +113 -0
  617. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/erubis-2.7.0/lib/erubis/engine/ejava.rb +110 -0
  618. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/erubis-2.7.0/lib/erubis/engine/ejavascript.rb +119 -0
  619. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/erubis-2.7.0/lib/erubis/engine/enhanced.rb +126 -0
  620. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/erubis-2.7.0/lib/erubis/engine/eperl.rb +95 -0
  621. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/erubis-2.7.0/lib/erubis/engine/ephp.rb +99 -0
  622. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/erubis-2.7.0/lib/erubis/engine/eruby.rb +125 -0
  623. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/erubis-2.7.0/lib/erubis/engine/escheme.rb +114 -0
  624. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/erubis-2.7.0/lib/erubis/engine/optimized.rb +127 -0
  625. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/erubis-2.7.0/lib/erubis/enhancer.rb +723 -0
  626. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/erubis-2.7.0/lib/erubis/error.rb +23 -0
  627. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/erubis-2.7.0/lib/erubis/evaluator.rb +88 -0
  628. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/erubis-2.7.0/lib/erubis/generator.rb +85 -0
  629. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/erubis-2.7.0/lib/erubis/helper.rb +47 -0
  630. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/erubis-2.7.0/lib/erubis/helpers/rails_form_helper.rb +197 -0
  631. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/erubis-2.7.0/lib/erubis/helpers/rails_helper.rb +353 -0
  632. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/erubis-2.7.0/lib/erubis/local-setting.rb +9 -0
  633. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/erubis-2.7.0/lib/erubis/main.rb +516 -0
  634. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/erubis-2.7.0/lib/erubis/preprocessing.rb +58 -0
  635. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/erubis-2.7.0/lib/erubis/tiny.rb +144 -0
  636. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/erubis-2.7.0/lib/erubis/util.rb +22 -0
  637. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/erubis-2.7.0/setup.rb +1331 -0
  638. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/haml-5.1.2/CHANGELOG.md +1481 -0
  639. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/haml-5.1.2/FAQ.md +147 -0
  640. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/haml-5.1.2/Gemfile +19 -0
  641. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/haml-5.1.2/MIT-LICENSE +20 -0
  642. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/haml-5.1.2/README.md +211 -0
  643. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/haml-5.1.2/REFERENCE.md +1351 -0
  644. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/haml-5.1.2/TODO +24 -0
  645. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/haml-5.1.2/haml.gemspec +44 -0
  646. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/haml-5.1.2/lib/haml.rb +25 -0
  647. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/haml-5.1.2/lib/haml/attribute_builder.rb +164 -0
  648. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/haml-5.1.2/lib/haml/attribute_compiler.rb +224 -0
  649. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/haml-5.1.2/lib/haml/attribute_parser.rb +150 -0
  650. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/haml-5.1.2/lib/haml/buffer.rb +238 -0
  651. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/haml-5.1.2/lib/haml/compiler.rb +330 -0
  652. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/haml-5.1.2/lib/haml/engine.rb +238 -0
  653. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/haml-5.1.2/lib/haml/error.rb +65 -0
  654. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/haml-5.1.2/lib/haml/escapable.rb +50 -0
  655. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/haml-5.1.2/lib/haml/exec.rb +347 -0
  656. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/haml-5.1.2/lib/haml/filters.rb +399 -0
  657. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/haml-5.1.2/lib/haml/generator.rb +42 -0
  658. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/haml-5.1.2/lib/haml/helpers.rb +703 -0
  659. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/haml-5.1.2/lib/haml/helpers/action_view_extensions.rb +60 -0
  660. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/haml-5.1.2/lib/haml/helpers/action_view_mods.rb +132 -0
  661. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/haml-5.1.2/lib/haml/helpers/action_view_xss_mods.rb +60 -0
  662. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/haml-5.1.2/lib/haml/helpers/safe_erubi_template.rb +20 -0
  663. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/haml-5.1.2/lib/haml/helpers/safe_erubis_template.rb +33 -0
  664. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/haml-5.1.2/lib/haml/helpers/xss_mods.rb +111 -0
  665. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/haml-5.1.2/lib/haml/options.rb +273 -0
  666. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/haml-5.1.2/lib/haml/parser.rb +828 -0
  667. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/haml-5.1.2/lib/haml/plugin.rb +37 -0
  668. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/haml-5.1.2/lib/haml/railtie.rb +48 -0
  669. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/haml-5.1.2/lib/haml/sass_rails_filter.rb +47 -0
  670. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/haml-5.1.2/lib/haml/template.rb +39 -0
  671. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/haml-5.1.2/lib/haml/template/options.rb +27 -0
  672. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/haml-5.1.2/lib/haml/temple_engine.rb +123 -0
  673. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/haml-5.1.2/lib/haml/temple_line_counter.rb +30 -0
  674. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/haml-5.1.2/lib/haml/util.rb +258 -0
  675. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/haml-5.1.2/lib/haml/version.rb +5 -0
  676. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/haml-5.1.2/yard/default/fulldoc/html/css/common.sass +15 -0
  677. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/haml-5.1.2/yard/default/layout/html/footer.erb +12 -0
  678. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/highline-2.0.3/AUTHORS +3 -0
  679. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/highline-2.0.3/COPYING +339 -0
  680. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/highline-2.0.3/Changelog.md +620 -0
  681. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/highline-2.0.3/Gemfile +22 -0
  682. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/highline-2.0.3/LICENSE +7 -0
  683. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/highline-2.0.3/README.md +202 -0
  684. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/highline-2.0.3/TODO +6 -0
  685. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/highline-2.0.3/appveyor.yml +37 -0
  686. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/highline-2.0.3/highline.gemspec +35 -0
  687. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/highline-2.0.3/lib/highline.rb +650 -0
  688. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/highline-2.0.3/lib/highline/builtin_styles.rb +129 -0
  689. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/highline-2.0.3/lib/highline/color_scheme.rb +151 -0
  690. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/highline-2.0.3/lib/highline/compatibility.rb +23 -0
  691. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/highline-2.0.3/lib/highline/custom_errors.rb +57 -0
  692. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/highline-2.0.3/lib/highline/import.rb +48 -0
  693. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/highline-2.0.3/lib/highline/io_console_compatible.rb +37 -0
  694. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/highline-2.0.3/lib/highline/list.rb +177 -0
  695. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/highline-2.0.3/lib/highline/list_renderer.rb +261 -0
  696. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/highline-2.0.3/lib/highline/menu.rb +576 -0
  697. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/highline-2.0.3/lib/highline/menu/item.rb +32 -0
  698. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/highline-2.0.3/lib/highline/paginator.rb +52 -0
  699. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/highline-2.0.3/lib/highline/question.rb +630 -0
  700. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/highline-2.0.3/lib/highline/question/answer_converter.rb +103 -0
  701. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/highline-2.0.3/lib/highline/question_asker.rb +150 -0
  702. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/highline-2.0.3/lib/highline/simulate.rb +59 -0
  703. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/highline-2.0.3/lib/highline/statement.rb +88 -0
  704. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/highline-2.0.3/lib/highline/string.rb +36 -0
  705. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/highline-2.0.3/lib/highline/string_extensions.rb +130 -0
  706. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/highline-2.0.3/lib/highline/style.rb +325 -0
  707. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/highline-2.0.3/lib/highline/template_renderer.rb +62 -0
  708. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/highline-2.0.3/lib/highline/terminal.rb +190 -0
  709. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/highline-2.0.3/lib/highline/terminal/io_console.rb +36 -0
  710. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/highline-2.0.3/lib/highline/terminal/ncurses.rb +38 -0
  711. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/highline-2.0.3/lib/highline/terminal/unix_stty.rb +51 -0
  712. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/highline-2.0.3/lib/highline/version.rb +6 -0
  713. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/highline-2.0.3/lib/highline/wrapper.rb +53 -0
  714. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/ruby2ruby-2.4.4/History.rdoc +435 -0
  715. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/ruby2ruby-2.4.4/Manifest.txt +8 -0
  716. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/ruby2ruby-2.4.4/README.rdoc +87 -0
  717. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/ruby2ruby-2.4.4/lib/ruby2ruby.rb +1309 -0
  718. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/ruby_parser-3.14.0/History.rdoc +1103 -0
  719. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/ruby_parser-3.14.0/Manifest.txt +37 -0
  720. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/ruby_parser-3.14.0/README.rdoc +109 -0
  721. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/ruby_parser-3.14.0/compare/normalize.rb +173 -0
  722. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/ruby_parser-3.14.0/debugging.md +18 -0
  723. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/ruby_parser-3.14.0/lib/rp_extensions.rb +74 -0
  724. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/ruby_parser-3.14.0/lib/rp_stringscanner.rb +64 -0
  725. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/ruby_parser-3.14.0/lib/ruby20_parser.rb +7045 -0
  726. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/ruby_parser-3.14.0/lib/ruby20_parser.y +2575 -0
  727. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/ruby_parser-3.14.0/lib/ruby21_parser.rb +7116 -0
  728. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/ruby_parser-3.14.0/lib/ruby21_parser.y +2594 -0
  729. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/ruby_parser-3.14.0/lib/ruby22_parser.rb +7149 -0
  730. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/ruby_parser-3.14.0/lib/ruby22_parser.y +2603 -0
  731. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/ruby_parser-3.14.0/lib/ruby23_parser.rb +7166 -0
  732. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/ruby_parser-3.14.0/lib/ruby23_parser.y +2605 -0
  733. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/ruby_parser-3.14.0/lib/ruby24_parser.rb +7178 -0
  734. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/ruby_parser-3.14.0/lib/ruby24_parser.y +2613 -0
  735. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/ruby_parser-3.14.0/lib/ruby25_parser.rb +7178 -0
  736. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/ruby_parser-3.14.0/lib/ruby25_parser.y +2613 -0
  737. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/ruby_parser-3.14.0/lib/ruby26_parser.rb +7198 -0
  738. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/ruby_parser-3.14.0/lib/ruby26_parser.y +2627 -0
  739. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/ruby_parser-3.14.0/lib/ruby_lexer.rb +1441 -0
  740. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/ruby_parser-3.14.0/lib/ruby_lexer.rex +179 -0
  741. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/ruby_parser-3.14.0/lib/ruby_lexer.rex.rb +365 -0
  742. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/ruby_parser-3.14.0/lib/ruby_parser.rb +92 -0
  743. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/ruby_parser-3.14.0/lib/ruby_parser.yy +2732 -0
  744. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/ruby_parser-3.14.0/lib/ruby_parser_extras.rb +1602 -0
  745. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/ruby_parser-3.14.0/tools/munge.rb +217 -0
  746. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/ruby_parser-3.14.0/tools/ripper.rb +39 -0
  747. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/ruby_parser-legacy-1.0.0/History.rdoc +6 -0
  748. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/ruby_parser-legacy-1.0.0/Manifest.txt +19 -0
  749. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/ruby_parser-legacy-1.0.0/README.rdoc +54 -0
  750. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/ruby_parser-legacy-1.0.0/lib/ruby_parser/legacy.rb +5 -0
  751. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/ruby_parser-legacy-1.0.0/lib/ruby_parser/legacy/ruby18_parser.rb +5794 -0
  752. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/ruby_parser-legacy-1.0.0/lib/ruby_parser/legacy/ruby18_parser.y +1909 -0
  753. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/ruby_parser-legacy-1.0.0/lib/ruby_parser/legacy/ruby19_parser.rb +6186 -0
  754. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/ruby_parser-legacy-1.0.0/lib/ruby_parser/legacy/ruby19_parser.y +2117 -0
  755. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/ruby_parser-legacy-1.0.0/lib/ruby_parser/legacy/ruby_lexer.rb +1412 -0
  756. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/ruby_parser-legacy-1.0.0/lib/ruby_parser/legacy/ruby_lexer.rex +179 -0
  757. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/ruby_parser-legacy-1.0.0/lib/ruby_parser/legacy/ruby_lexer.rex.rb +323 -0
  758. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/ruby_parser-legacy-1.0.0/lib/ruby_parser/legacy/ruby_parser.rb +30 -0
  759. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/ruby_parser-legacy-1.0.0/lib/ruby_parser/legacy/ruby_parser_extras.rb +1388 -0
  760. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/CHANGES.md +154 -0
  761. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/Gemfile +11 -0
  762. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/LICENSE.txt +22 -0
  763. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/README.md +191 -0
  764. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/bundle_install_all_ruby_versions.sh +11 -0
  765. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml.rb +94 -0
  766. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/deep.rb +34 -0
  767. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/libyaml_checker.rb +36 -0
  768. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/load.rb +181 -0
  769. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/parse/date.rb +37 -0
  770. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/parse/hexadecimal.rb +12 -0
  771. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/parse/sexagesimal.rb +26 -0
  772. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/psych_handler.rb +99 -0
  773. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/psych_resolver.rb +52 -0
  774. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/resolver.rb +94 -0
  775. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/safe_to_ruby_visitor.rb +29 -0
  776. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/store.rb +39 -0
  777. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/syck_hack.rb +36 -0
  778. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/syck_node_monkeypatch.rb +43 -0
  779. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/syck_resolver.rb +38 -0
  780. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/transform.rb +41 -0
  781. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/transform/to_boolean.rb +21 -0
  782. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/transform/to_date.rb +13 -0
  783. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/transform/to_float.rb +33 -0
  784. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/transform/to_integer.rb +26 -0
  785. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/transform/to_nil.rb +18 -0
  786. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/transform/to_symbol.rb +17 -0
  787. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/transform/transformation_map.rb +47 -0
  788. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/version.rb +3 -0
  789. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/run_specs_all_ruby_versions.sh +38 -0
  790. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/safe_yaml.gemspec +19 -0
  791. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/sexp_processor-4.13.0/History.rdoc +393 -0
  792. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/sexp_processor-4.13.0/Manifest.txt +15 -0
  793. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/sexp_processor-4.13.0/README.rdoc +93 -0
  794. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/sexp_processor-4.13.0/lib/composite_sexp_processor.rb +49 -0
  795. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/sexp_processor-4.13.0/lib/pt_testcase.rb +3128 -0
  796. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/sexp_processor-4.13.0/lib/sexp.rb +381 -0
  797. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/sexp_processor-4.13.0/lib/sexp_matcher.rb +1063 -0
  798. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/sexp_processor-4.13.0/lib/sexp_processor.rb +754 -0
  799. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/sexp_processor-4.13.0/lib/strict_sexp.rb +126 -0
  800. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/sexp_processor-4.13.0/lib/unique.rb +21 -0
  801. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/slim-4.0.1/CHANGES +456 -0
  802. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/slim-4.0.1/Gemfile +71 -0
  803. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/slim-4.0.1/LICENSE +21 -0
  804. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/slim-4.0.1/README.jp.md +1289 -0
  805. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/slim-4.0.1/README.md +1290 -0
  806. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/slim-4.0.1/lib/slim.rb +14 -0
  807. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/slim-4.0.1/lib/slim/code_attributes.rb +67 -0
  808. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/slim-4.0.1/lib/slim/command.rb +128 -0
  809. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/slim-4.0.1/lib/slim/controls.rb +60 -0
  810. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/slim-4.0.1/lib/slim/do_inserter.rb +33 -0
  811. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/slim-4.0.1/lib/slim/embedded.rb +248 -0
  812. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/slim-4.0.1/lib/slim/end_inserter.rb +62 -0
  813. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/slim-4.0.1/lib/slim/engine.rb +39 -0
  814. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/slim-4.0.1/lib/slim/erb_converter.rb +14 -0
  815. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/slim-4.0.1/lib/slim/filter.rb +30 -0
  816. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/slim-4.0.1/lib/slim/grammar.rb +23 -0
  817. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/slim-4.0.1/lib/slim/include.rb +57 -0
  818. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/slim-4.0.1/lib/slim/interpolation.rb +35 -0
  819. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/slim-4.0.1/lib/slim/logic_less.rb +5 -0
  820. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/slim-4.0.1/lib/slim/logic_less/context.rb +127 -0
  821. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/slim-4.0.1/lib/slim/logic_less/filter.rb +80 -0
  822. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/slim-4.0.1/lib/slim/parser.rb +548 -0
  823. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/slim-4.0.1/lib/slim/smart.rb +8 -0
  824. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/slim-4.0.1/lib/slim/smart/escaper.rb +42 -0
  825. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/slim-4.0.1/lib/slim/smart/filter.rb +96 -0
  826. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/slim-4.0.1/lib/slim/smart/parser.rb +34 -0
  827. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/slim-4.0.1/lib/slim/splat/builder.rb +107 -0
  828. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/slim-4.0.1/lib/slim/splat/filter.rb +91 -0
  829. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/slim-4.0.1/lib/slim/template.rb +19 -0
  830. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/slim-4.0.1/lib/slim/translator.rb +118 -0
  831. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/slim-4.0.1/lib/slim/version.rb +5 -0
  832. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/slim-4.0.1/slim.gemspec +24 -0
  833. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/temple-0.8.2/CHANGES +260 -0
  834. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/temple-0.8.2/EXPRESSIONS.md +262 -0
  835. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/temple-0.8.2/Gemfile +3 -0
  836. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/temple-0.8.2/LICENSE +20 -0
  837. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/temple-0.8.2/README.md +267 -0
  838. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple.rb +67 -0
  839. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/engine.rb +67 -0
  840. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/erb/engine.rb +15 -0
  841. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/erb/parser.rb +40 -0
  842. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/erb/template.rb +11 -0
  843. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/erb/trimming.rb +23 -0
  844. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/exceptions.rb +13 -0
  845. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/filter.rb +9 -0
  846. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/filters/code_merger.rb +30 -0
  847. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/filters/control_flow.rb +42 -0
  848. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/filters/dynamic_inliner.rb +71 -0
  849. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/filters/encoding.rb +24 -0
  850. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/filters/eraser.rb +22 -0
  851. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/filters/escapable.rb +40 -0
  852. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/filters/multi_flattener.rb +25 -0
  853. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/filters/remove_bom.rb +13 -0
  854. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/filters/static_analyzer.rb +30 -0
  855. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/filters/static_merger.rb +37 -0
  856. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/filters/string_splitter.rb +130 -0
  857. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/filters/validator.rb +15 -0
  858. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/generator.rb +88 -0
  859. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/generators/array.rb +21 -0
  860. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/generators/array_buffer.rb +29 -0
  861. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/generators/erb.rb +32 -0
  862. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/generators/rails_output_buffer.rb +35 -0
  863. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/generators/string_buffer.rb +25 -0
  864. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/grammar.rb +57 -0
  865. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/html/attribute_merger.rb +42 -0
  866. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/html/attribute_remover.rb +35 -0
  867. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/html/attribute_sorter.rb +21 -0
  868. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/html/dispatcher.rb +31 -0
  869. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/html/fast.rb +130 -0
  870. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/html/filter.rb +21 -0
  871. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/html/pretty.rb +103 -0
  872. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/html/safe.rb +23 -0
  873. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/map.rb +105 -0
  874. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/mixins/dispatcher.rb +161 -0
  875. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/mixins/engine_dsl.rb +145 -0
  876. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/mixins/grammar_dsl.rb +170 -0
  877. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/mixins/options.rb +87 -0
  878. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/mixins/template.rb +28 -0
  879. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/parser.rb +8 -0
  880. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/static_analyzer.rb +77 -0
  881. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/templates.rb +11 -0
  882. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/templates/rails.rb +26 -0
  883. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/templates/tilt.rb +46 -0
  884. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/utils.rb +101 -0
  885. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/version.rb +3 -0
  886. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/temple-0.8.2/temple.gemspec +29 -0
  887. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/terminal-table-1.8.0/Gemfile +6 -0
  888. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/terminal-table-1.8.0/History.rdoc +85 -0
  889. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/terminal-table-1.8.0/LICENSE.txt +21 -0
  890. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/terminal-table-1.8.0/Manifest +27 -0
  891. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/terminal-table-1.8.0/README.rdoc +247 -0
  892. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/terminal-table-1.8.0/Todo.rdoc +14 -0
  893. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/terminal-table-1.8.0/lib/terminal-table.rb +26 -0
  894. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/terminal-table-1.8.0/lib/terminal-table/cell.rb +94 -0
  895. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/terminal-table-1.8.0/lib/terminal-table/import.rb +3 -0
  896. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/terminal-table-1.8.0/lib/terminal-table/row.rb +52 -0
  897. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/terminal-table-1.8.0/lib/terminal-table/separator.rb +14 -0
  898. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/terminal-table-1.8.0/lib/terminal-table/style.rb +79 -0
  899. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/terminal-table-1.8.0/lib/terminal-table/table.rb +343 -0
  900. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/terminal-table-1.8.0/lib/terminal-table/table_helper.rb +9 -0
  901. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/terminal-table-1.8.0/lib/terminal-table/version.rb +5 -0
  902. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/terminal-table-1.8.0/terminal-table.gemspec +26 -0
  903. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/tilt-2.0.10/COPYING +18 -0
  904. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt.rb +166 -0
  905. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/asciidoc.rb +27 -0
  906. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/babel.rb +16 -0
  907. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/bluecloth.rb +24 -0
  908. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/builder.rb +37 -0
  909. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/coffee.rb +58 -0
  910. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/commonmarker.rb +78 -0
  911. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/creole.rb +25 -0
  912. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/csv.rb +65 -0
  913. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/dummy.rb +3 -0
  914. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/erb.rb +63 -0
  915. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/erubi.rb +32 -0
  916. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/erubis.rb +43 -0
  917. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/etanni.rb +27 -0
  918. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/haml.rb +86 -0
  919. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/kramdown.rb +25 -0
  920. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/less.rb +30 -0
  921. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/liquid.rb +44 -0
  922. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/livescript.rb +23 -0
  923. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/mapping.rb +293 -0
  924. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/markaby.rb +45 -0
  925. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/maruku.rb +22 -0
  926. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/nokogiri.rb +36 -0
  927. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/pandoc.rb +49 -0
  928. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/plain.rb +16 -0
  929. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/prawn.rb +43 -0
  930. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/radius.rb +48 -0
  931. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/rdiscount.rb +39 -0
  932. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/rdoc.rb +40 -0
  933. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/redcarpet.rb +83 -0
  934. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/redcloth.rb +23 -0
  935. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/rst-pandoc.rb +18 -0
  936. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/sass.rb +52 -0
  937. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/sigil.rb +34 -0
  938. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/string.rb +21 -0
  939. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/template.rb +297 -0
  940. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/typescript.rb +26 -0
  941. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/wikicloth.rb +22 -0
  942. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/yajl.rb +87 -0
  943. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/unicode-display_width-1.6.0/CHANGELOG.md +125 -0
  944. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/unicode-display_width-1.6.0/MIT-LICENSE.txt +22 -0
  945. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/unicode-display_width-1.6.0/README.md +124 -0
  946. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/unicode-display_width-1.6.0/data/display_width.marshal.gz +0 -0
  947. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/unicode-display_width-1.6.0/lib/unicode/display_width.rb +51 -0
  948. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/unicode-display_width-1.6.0/lib/unicode/display_width/constants.rb +8 -0
  949. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/unicode-display_width-1.6.0/lib/unicode/display_width/index.rb +12 -0
  950. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/unicode-display_width-1.6.0/lib/unicode/display_width/no_string_ext.rb +7 -0
  951. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/bundle/ruby/2.6.0/gems/unicode-display_width-1.6.0/lib/unicode/display_width/string_ext.rb +17 -0
  952. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman.rb +553 -0
  953. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/app_tree.rb +217 -0
  954. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/call_index.rb +261 -0
  955. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks.rb +217 -0
  956. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/base_check.rb +507 -0
  957. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_basic_auth.rb +88 -0
  958. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_basic_auth_timing_attack.rb +33 -0
  959. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_content_tag.rb +212 -0
  960. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_cookie_serialization.rb +22 -0
  961. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_create_with.rb +74 -0
  962. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_cross_site_scripting.rb +386 -0
  963. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_default_routes.rb +91 -0
  964. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_deserialize.rb +105 -0
  965. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_detailed_exceptions.rb +55 -0
  966. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_digest_dos.rb +38 -0
  967. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_divide_by_zero.rb +42 -0
  968. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_dynamic_finders.rb +48 -0
  969. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_escape_function.rb +21 -0
  970. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_evaluation.rb +34 -0
  971. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_execute.rb +233 -0
  972. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_file_access.rb +87 -0
  973. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_file_disclosure.rb +35 -0
  974. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_filter_skipping.rb +31 -0
  975. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_force_ssl.rb +27 -0
  976. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_forgery_setting.rb +81 -0
  977. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_header_dos.rb +31 -0
  978. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_i18n_xss.rb +48 -0
  979. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_jruby_xml.rb +36 -0
  980. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_json_encoding.rb +47 -0
  981. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_json_parsing.rb +109 -0
  982. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_link_to.rb +132 -0
  983. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_link_to_href.rb +151 -0
  984. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_mail_to.rb +49 -0
  985. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_mass_assignment.rb +196 -0
  986. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_mime_type_dos.rb +39 -0
  987. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_model_attr_accessible.rb +55 -0
  988. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_model_attributes.rb +81 -0
  989. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_model_serialize.rb +67 -0
  990. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_nested_attributes.rb +38 -0
  991. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_nested_attributes_bypass.rb +58 -0
  992. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_number_to_currency.rb +74 -0
  993. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_permit_attributes.rb +43 -0
  994. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_quote_table_name.rb +40 -0
  995. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_redirect.rb +256 -0
  996. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_regex_dos.rb +68 -0
  997. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_render.rb +97 -0
  998. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_render_dos.rb +37 -0
  999. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_render_inline.rb +53 -0
  1000. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_response_splitting.rb +21 -0
  1001. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_reverse_tabnabbing.rb +58 -0
  1002. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_route_dos.rb +42 -0
  1003. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_safe_buffer_manipulation.rb +31 -0
  1004. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_sanitize_methods.rb +112 -0
  1005. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_secrets.rb +40 -0
  1006. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_select_tag.rb +59 -0
  1007. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_select_vulnerability.rb +60 -0
  1008. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_send.rb +46 -0
  1009. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_send_file.rb +19 -0
  1010. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_session_manipulation.rb +34 -0
  1011. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_session_settings.rb +179 -0
  1012. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_simple_format.rb +63 -0
  1013. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_single_quotes.rb +105 -0
  1014. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_skip_before_filter.rb +60 -0
  1015. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_sprockets_path_traversal.rb +39 -0
  1016. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_sql.rb +707 -0
  1017. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_sql_cves.rb +106 -0
  1018. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_ssl_verify.rb +48 -0
  1019. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_strip_tags.rb +91 -0
  1020. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_symbol_dos.rb +71 -0
  1021. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_symbol_dos_cve.rb +30 -0
  1022. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_translate_bug.rb +45 -0
  1023. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_unsafe_reflection.rb +50 -0
  1024. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_unscoped_find.rb +57 -0
  1025. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_validation_regex.rb +116 -0
  1026. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_weak_hash.rb +147 -0
  1027. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_without_protection.rb +80 -0
  1028. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_xml_dos.rb +45 -0
  1029. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/checks/check_yaml_parsing.rb +113 -0
  1030. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/codeclimate/engine_configuration.rb +97 -0
  1031. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/commandline.rb +179 -0
  1032. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/differ.rb +54 -0
  1033. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/file_parser.rb +52 -0
  1034. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/file_path.rb +85 -0
  1035. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/format/style.css +141 -0
  1036. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/messages.rb +220 -0
  1037. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/options.rb +359 -0
  1038. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/parsers/haml_embedded.rb +44 -0
  1039. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/parsers/rails2_erubis.rb +6 -0
  1040. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/parsers/rails2_xss_plugin_erubis.rb +48 -0
  1041. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/parsers/rails3_erubis.rb +81 -0
  1042. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/parsers/slim_embedded.rb +44 -0
  1043. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/parsers/template_parser.rb +108 -0
  1044. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/processor.rb +101 -0
  1045. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/processors/alias_processor.rb +1278 -0
  1046. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/processors/base_processor.rb +298 -0
  1047. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/processors/config_processor.rb +17 -0
  1048. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/processors/controller_alias_processor.rb +281 -0
  1049. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/processors/controller_processor.rb +245 -0
  1050. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/processors/erb_template_processor.rb +77 -0
  1051. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/processors/erubis_template_processor.rb +92 -0
  1052. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/processors/gem_processor.rb +100 -0
  1053. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/processors/haml_template_processor.rb +160 -0
  1054. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/processors/lib/basic_processor.rb +37 -0
  1055. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/processors/lib/call_conversion_helper.rb +96 -0
  1056. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/processors/lib/find_all_calls.rb +247 -0
  1057. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/processors/lib/find_call.rb +122 -0
  1058. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/processors/lib/find_return_value.rb +166 -0
  1059. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/processors/lib/module_helper.rb +111 -0
  1060. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/processors/lib/processor_helper.rb +88 -0
  1061. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/processors/lib/rails2_config_processor.rb +145 -0
  1062. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/processors/lib/rails2_route_processor.rb +313 -0
  1063. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/processors/lib/rails3_config_processor.rb +132 -0
  1064. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/processors/lib/rails3_route_processor.rb +306 -0
  1065. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/processors/lib/rails4_config_processor.rb +18 -0
  1066. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/processors/lib/render_helper.rb +186 -0
  1067. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/processors/lib/render_path.rb +139 -0
  1068. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/processors/lib/route_helper.rb +68 -0
  1069. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/processors/lib/safe_call_helper.rb +16 -0
  1070. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/processors/library_processor.rb +74 -0
  1071. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/processors/model_processor.rb +90 -0
  1072. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/processors/output_processor.rb +149 -0
  1073. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/processors/route_processor.rb +17 -0
  1074. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/processors/slim_template_processor.rb +127 -0
  1075. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/processors/template_alias_processor.rb +145 -0
  1076. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/processors/template_processor.rb +89 -0
  1077. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/report.rb +88 -0
  1078. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/report/config/remediation.yml +71 -0
  1079. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/report/ignore/config.rb +152 -0
  1080. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/report/ignore/interactive.rb +362 -0
  1081. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/report/pager.rb +113 -0
  1082. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/report/renderer.rb +24 -0
  1083. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/report/report_base.rb +193 -0
  1084. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/report/report_codeclimate.rb +79 -0
  1085. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/report/report_csv.rb +72 -0
  1086. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/report/report_hash.rb +23 -0
  1087. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/report/report_html.rb +219 -0
  1088. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/report/report_json.rb +43 -0
  1089. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/report/report_markdown.rb +114 -0
  1090. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/report/report_table.rb +290 -0
  1091. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/report/report_tabs.rb +19 -0
  1092. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/report/report_text.rb +213 -0
  1093. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/report/templates/controller_overview.html.erb +22 -0
  1094. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/report/templates/controller_warnings.html.erb +21 -0
  1095. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/report/templates/error_overview.html.erb +29 -0
  1096. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/report/templates/header.html.erb +58 -0
  1097. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/report/templates/ignored_warnings.html.erb +25 -0
  1098. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/report/templates/model_warnings.html.erb +21 -0
  1099. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/report/templates/overview.html.erb +38 -0
  1100. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/report/templates/security_warnings.html.erb +23 -0
  1101. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/report/templates/template_overview.html.erb +21 -0
  1102. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/report/templates/view_warnings.html.erb +34 -0
  1103. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/report/templates/warning_overview.html.erb +17 -0
  1104. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/rescanner.rb +484 -0
  1105. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/scanner.rb +331 -0
  1106. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/tracker.rb +390 -0
  1107. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/tracker/collection.rb +94 -0
  1108. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/tracker/config.rb +150 -0
  1109. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/tracker/constants.rb +172 -0
  1110. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/tracker/controller.rb +161 -0
  1111. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/tracker/library.rb +17 -0
  1112. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/tracker/model.rb +90 -0
  1113. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/tracker/template.rb +33 -0
  1114. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/util.rb +357 -0
  1115. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/version.rb +3 -0
  1116. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/warning.rb +313 -0
  1117. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/brakeman/warning_codes.rb +122 -0
  1118. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/ruby_parser/bm_sexp.rb +631 -0
  1119. data/vendor/ruby/2.6.0/gems/brakeman-4.7.1/lib/ruby_parser/bm_sexp_processor.rb +117 -0
  1120. data/vendor/ruby/2.6.0/gems/jaro_winkler-1.5.4/LICENSE.txt +22 -0
  1121. data/vendor/ruby/2.6.0/gems/jaro_winkler-1.5.4/ext/jaro_winkler/Makefile +266 -0
  1122. data/vendor/ruby/2.6.0/gems/jaro_winkler-1.5.4/ext/jaro_winkler/adj_matrix.c +97 -0
  1123. data/vendor/ruby/2.6.0/gems/jaro_winkler-1.5.4/ext/jaro_winkler/adj_matrix.h +22 -0
  1124. data/vendor/ruby/2.6.0/gems/jaro_winkler-1.5.4/ext/jaro_winkler/adj_matrix.o +0 -0
  1125. data/vendor/ruby/2.6.0/gems/jaro_winkler-1.5.4/ext/jaro_winkler/codepoints.c +61 -0
  1126. data/vendor/ruby/2.6.0/gems/jaro_winkler-1.5.4/ext/jaro_winkler/codepoints.h +13 -0
  1127. data/vendor/ruby/2.6.0/gems/jaro_winkler-1.5.4/ext/jaro_winkler/codepoints.o +0 -0
  1128. data/vendor/ruby/2.6.0/gems/jaro_winkler-1.5.4/ext/jaro_winkler/extconf.rb +5 -0
  1129. data/vendor/ruby/2.6.0/gems/jaro_winkler-1.5.4/ext/jaro_winkler/jaro.c +121 -0
  1130. data/vendor/ruby/2.6.0/gems/jaro_winkler-1.5.4/ext/jaro_winkler/jaro.h +17 -0
  1131. data/vendor/ruby/2.6.0/gems/jaro_winkler-1.5.4/ext/jaro_winkler/jaro.o +0 -0
  1132. data/vendor/ruby/2.6.0/gems/jaro_winkler-1.5.4/ext/jaro_winkler/jaro_winkler.c +72 -0
  1133. data/vendor/ruby/2.6.0/gems/jaro_winkler-1.5.4/ext/jaro_winkler/jaro_winkler.o +0 -0
  1134. data/vendor/ruby/2.6.0/gems/jaro_winkler-1.5.4/ext/jaro_winkler/jaro_winkler_ext.so +0 -0
  1135. data/vendor/ruby/2.6.0/gems/jaro_winkler-1.5.4/lib/jaro_winkler.rb +15 -0
  1136. data/vendor/ruby/2.6.0/gems/jaro_winkler-1.5.4/lib/jaro_winkler/adjusting_table.rb +14 -0
  1137. data/vendor/ruby/2.6.0/gems/jaro_winkler-1.5.4/lib/jaro_winkler/jaro_winkler_ext.so +0 -0
  1138. data/vendor/ruby/2.6.0/gems/jaro_winkler-1.5.4/lib/jaro_winkler/jaro_winkler_pure.rb +135 -0
  1139. data/vendor/ruby/2.6.0/gems/jaro_winkler-1.5.4/lib/jaro_winkler/version.rb +5 -0
  1140. data/vendor/ruby/2.6.0/gems/minitest-5.13.0/History.rdoc +1367 -0
  1141. data/vendor/ruby/2.6.0/gems/minitest-5.13.0/Manifest.txt +27 -0
  1142. data/vendor/ruby/2.6.0/gems/minitest-5.13.0/README.rdoc +763 -0
  1143. data/vendor/ruby/2.6.0/gems/minitest-5.13.0/Rakefile +72 -0
  1144. data/vendor/ruby/2.6.0/gems/minitest-5.13.0/design_rationale.rb +52 -0
  1145. data/vendor/ruby/2.6.0/gems/minitest-5.13.0/lib/hoe/minitest.rb +32 -0
  1146. data/vendor/ruby/2.6.0/gems/minitest-5.13.0/lib/minitest.rb +1056 -0
  1147. data/vendor/ruby/2.6.0/gems/minitest-5.13.0/lib/minitest/assertions.rb +794 -0
  1148. data/vendor/ruby/2.6.0/gems/minitest-5.13.0/lib/minitest/autorun.rb +13 -0
  1149. data/vendor/ruby/2.6.0/gems/minitest-5.13.0/lib/minitest/benchmark.rb +455 -0
  1150. data/vendor/ruby/2.6.0/gems/minitest-5.13.0/lib/minitest/expectations.rb +302 -0
  1151. data/vendor/ruby/2.6.0/gems/minitest-5.13.0/lib/minitest/hell.rb +11 -0
  1152. data/vendor/ruby/2.6.0/gems/minitest-5.13.0/lib/minitest/mock.rb +240 -0
  1153. data/vendor/ruby/2.6.0/gems/minitest-5.13.0/lib/minitest/parallel.rb +70 -0
  1154. data/vendor/ruby/2.6.0/gems/minitest-5.13.0/lib/minitest/pride.rb +4 -0
  1155. data/vendor/ruby/2.6.0/gems/minitest-5.13.0/lib/minitest/pride_plugin.rb +142 -0
  1156. data/vendor/ruby/2.6.0/gems/minitest-5.13.0/lib/minitest/spec.rb +342 -0
  1157. data/vendor/ruby/2.6.0/gems/minitest-5.13.0/lib/minitest/test.rb +220 -0
  1158. data/vendor/ruby/2.6.0/gems/minitest-5.13.0/lib/minitest/unit.rb +45 -0
  1159. data/vendor/ruby/2.6.0/gems/minitest-5.13.0/test/minitest/metametameta.rb +117 -0
  1160. data/vendor/ruby/2.6.0/gems/minitest-5.13.0/test/minitest/test_minitest_assertions.rb +1437 -0
  1161. data/vendor/ruby/2.6.0/gems/minitest-5.13.0/test/minitest/test_minitest_benchmark.rb +137 -0
  1162. data/vendor/ruby/2.6.0/gems/minitest-5.13.0/test/minitest/test_minitest_mock.rb +872 -0
  1163. data/vendor/ruby/2.6.0/gems/minitest-5.13.0/test/minitest/test_minitest_reporter.rb +299 -0
  1164. data/vendor/ruby/2.6.0/gems/minitest-5.13.0/test/minitest/test_minitest_spec.rb +1041 -0
  1165. data/vendor/ruby/2.6.0/gems/minitest-5.13.0/test/minitest/test_minitest_test.rb +1080 -0
  1166. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/LICENSE-DEPENDENCIES.md +1614 -0
  1167. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/LICENSE.md +9 -0
  1168. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/README.md +198 -0
  1169. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/bin/nokogiri +118 -0
  1170. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/dependencies.yml +74 -0
  1171. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/Makefile +628 -0
  1172. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/depend +358 -0
  1173. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/extconf.rb +686 -0
  1174. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/html_document.c +170 -0
  1175. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/html_document.h +10 -0
  1176. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/html_document.o +0 -0
  1177. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/html_element_description.c +279 -0
  1178. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/html_element_description.h +10 -0
  1179. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/html_element_description.o +0 -0
  1180. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/html_entity_lookup.c +32 -0
  1181. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/html_entity_lookup.h +8 -0
  1182. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/html_entity_lookup.o +0 -0
  1183. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/html_sax_parser_context.c +116 -0
  1184. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/html_sax_parser_context.h +11 -0
  1185. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/html_sax_parser_context.o +0 -0
  1186. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/html_sax_push_parser.c +87 -0
  1187. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/html_sax_push_parser.h +9 -0
  1188. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/html_sax_push_parser.o +0 -0
  1189. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/nokogiri.c +141 -0
  1190. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/nokogiri.h +121 -0
  1191. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/nokogiri.o +0 -0
  1192. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/nokogiri.so +0 -0
  1193. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_attr.c +103 -0
  1194. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_attr.h +9 -0
  1195. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_attr.o +0 -0
  1196. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_attribute_decl.c +70 -0
  1197. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_attribute_decl.h +9 -0
  1198. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_attribute_decl.o +0 -0
  1199. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_cdata.c +62 -0
  1200. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_cdata.h +9 -0
  1201. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_cdata.o +0 -0
  1202. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_comment.c +69 -0
  1203. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_comment.h +9 -0
  1204. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_comment.o +0 -0
  1205. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_document.c +608 -0
  1206. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_document.h +23 -0
  1207. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_document.o +0 -0
  1208. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_document_fragment.c +48 -0
  1209. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_document_fragment.h +10 -0
  1210. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_document_fragment.o +0 -0
  1211. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_dtd.c +202 -0
  1212. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_dtd.h +10 -0
  1213. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_dtd.o +0 -0
  1214. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_element_content.c +123 -0
  1215. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_element_content.h +10 -0
  1216. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_element_content.o +0 -0
  1217. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_element_decl.c +69 -0
  1218. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_element_decl.h +9 -0
  1219. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_element_decl.o +0 -0
  1220. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_encoding_handler.c +79 -0
  1221. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_encoding_handler.h +8 -0
  1222. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_encoding_handler.o +0 -0
  1223. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_entity_decl.c +110 -0
  1224. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_entity_decl.h +10 -0
  1225. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_entity_decl.o +0 -0
  1226. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_entity_reference.c +52 -0
  1227. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_entity_reference.h +9 -0
  1228. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_entity_reference.o +0 -0
  1229. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_io.c +61 -0
  1230. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_io.h +11 -0
  1231. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_io.o +0 -0
  1232. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_libxml2_hacks.c +112 -0
  1233. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_libxml2_hacks.h +12 -0
  1234. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_libxml2_hacks.o +0 -0
  1235. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_namespace.c +111 -0
  1236. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_namespace.h +14 -0
  1237. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_namespace.o +0 -0
  1238. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_node.c +1753 -0
  1239. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_node.h +13 -0
  1240. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_node.o +0 -0
  1241. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_node_set.c +486 -0
  1242. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_node_set.h +12 -0
  1243. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_node_set.o +0 -0
  1244. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_processing_instruction.c +56 -0
  1245. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_processing_instruction.h +9 -0
  1246. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_processing_instruction.o +0 -0
  1247. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_reader.c +668 -0
  1248. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_reader.h +10 -0
  1249. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_reader.o +0 -0
  1250. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_relax_ng.c +161 -0
  1251. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_relax_ng.h +9 -0
  1252. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_relax_ng.o +0 -0
  1253. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_sax_parser.c +310 -0
  1254. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_sax_parser.h +39 -0
  1255. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_sax_parser.o +0 -0
  1256. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_sax_parser_context.c +262 -0
  1257. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_sax_parser_context.h +10 -0
  1258. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_sax_parser_context.o +0 -0
  1259. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_sax_push_parser.c +159 -0
  1260. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_sax_push_parser.h +9 -0
  1261. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_sax_push_parser.o +0 -0
  1262. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_schema.c +205 -0
  1263. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_schema.h +9 -0
  1264. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_schema.o +0 -0
  1265. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_syntax_error.c +64 -0
  1266. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_syntax_error.h +13 -0
  1267. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_syntax_error.o +0 -0
  1268. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_text.c +52 -0
  1269. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_text.h +9 -0
  1270. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_text.o +0 -0
  1271. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_xpath_context.c +298 -0
  1272. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_xpath_context.h +10 -0
  1273. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xml_xpath_context.o +0 -0
  1274. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xslt_stylesheet.c +270 -0
  1275. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xslt_stylesheet.h +14 -0
  1276. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/ext/nokogiri/xslt_stylesheet.o +0 -0
  1277. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/lib/nokogiri.rb +144 -0
  1278. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/lib/nokogiri/css.rb +27 -0
  1279. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/lib/nokogiri/css/node.rb +52 -0
  1280. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/lib/nokogiri/css/parser.rb +750 -0
  1281. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/lib/nokogiri/css/parser.y +272 -0
  1282. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/lib/nokogiri/css/parser_extras.rb +91 -0
  1283. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/lib/nokogiri/css/syntax_error.rb +7 -0
  1284. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/lib/nokogiri/css/tokenizer.rb +153 -0
  1285. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/lib/nokogiri/css/tokenizer.rex +55 -0
  1286. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/lib/nokogiri/css/xpath_visitor.rb +230 -0
  1287. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/lib/nokogiri/decorators/slop.rb +42 -0
  1288. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/lib/nokogiri/html.rb +37 -0
  1289. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/lib/nokogiri/html/builder.rb +35 -0
  1290. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/lib/nokogiri/html/document.rb +335 -0
  1291. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/lib/nokogiri/html/document_fragment.rb +49 -0
  1292. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/lib/nokogiri/html/element_description.rb +23 -0
  1293. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/lib/nokogiri/html/element_description_defaults.rb +671 -0
  1294. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/lib/nokogiri/html/entity_lookup.rb +13 -0
  1295. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/lib/nokogiri/html/sax/parser.rb +62 -0
  1296. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/lib/nokogiri/html/sax/parser_context.rb +16 -0
  1297. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/lib/nokogiri/html/sax/push_parser.rb +36 -0
  1298. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/lib/nokogiri/nokogiri.so +0 -0
  1299. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/lib/nokogiri/syntax_error.rb +4 -0
  1300. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/lib/nokogiri/version.rb +109 -0
  1301. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/lib/nokogiri/xml.rb +75 -0
  1302. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/lib/nokogiri/xml/attr.rb +14 -0
  1303. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/lib/nokogiri/xml/attribute_decl.rb +18 -0
  1304. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/lib/nokogiri/xml/builder.rb +446 -0
  1305. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/lib/nokogiri/xml/cdata.rb +11 -0
  1306. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/lib/nokogiri/xml/character_data.rb +7 -0
  1307. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/lib/nokogiri/xml/document.rb +285 -0
  1308. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/lib/nokogiri/xml/document_fragment.rb +160 -0
  1309. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/lib/nokogiri/xml/dtd.rb +32 -0
  1310. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/lib/nokogiri/xml/element_content.rb +36 -0
  1311. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/lib/nokogiri/xml/element_decl.rb +13 -0
  1312. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/lib/nokogiri/xml/entity_decl.rb +19 -0
  1313. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/lib/nokogiri/xml/entity_reference.rb +18 -0
  1314. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/lib/nokogiri/xml/namespace.rb +13 -0
  1315. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/lib/nokogiri/xml/node.rb +902 -0
  1316. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/lib/nokogiri/xml/node/save_options.rb +61 -0
  1317. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/lib/nokogiri/xml/node_set.rb +371 -0
  1318. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/lib/nokogiri/xml/notation.rb +6 -0
  1319. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/lib/nokogiri/xml/parse_options.rb +120 -0
  1320. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/lib/nokogiri/xml/pp.rb +2 -0
  1321. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/lib/nokogiri/xml/pp/character_data.rb +18 -0
  1322. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/lib/nokogiri/xml/pp/node.rb +56 -0
  1323. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/lib/nokogiri/xml/processing_instruction.rb +8 -0
  1324. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/lib/nokogiri/xml/reader.rb +112 -0
  1325. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/lib/nokogiri/xml/relax_ng.rb +32 -0
  1326. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/lib/nokogiri/xml/sax.rb +4 -0
  1327. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/lib/nokogiri/xml/sax/document.rb +171 -0
  1328. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/lib/nokogiri/xml/sax/parser.rb +122 -0
  1329. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/lib/nokogiri/xml/sax/parser_context.rb +16 -0
  1330. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/lib/nokogiri/xml/sax/push_parser.rb +60 -0
  1331. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/lib/nokogiri/xml/schema.rb +63 -0
  1332. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/lib/nokogiri/xml/searchable.rb +230 -0
  1333. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/lib/nokogiri/xml/syntax_error.rb +70 -0
  1334. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/lib/nokogiri/xml/text.rb +9 -0
  1335. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/lib/nokogiri/xml/xpath.rb +10 -0
  1336. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/lib/nokogiri/xml/xpath/syntax_error.rb +11 -0
  1337. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/lib/nokogiri/xml/xpath_context.rb +16 -0
  1338. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/lib/nokogiri/xslt.rb +56 -0
  1339. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/lib/nokogiri/xslt/stylesheet.rb +25 -0
  1340. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/lib/xsd/xmlparser/nokogiri.rb +102 -0
  1341. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/patches/libxml2/0001-Revert-Do-not-URI-escape-in-server-side-includes.patch +78 -0
  1342. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/patches/libxml2/0002-Remove-script-macro-support.patch +40 -0
  1343. data/vendor/ruby/2.6.0/gems/nokogiri-1.10.5/patches/libxml2/0003-Update-entities-to-remove-handling-of-ssi.patch +44 -0
  1344. data/vendor/ruby/2.6.0/gems/railties-6.0.1/CHANGELOG.md +451 -0
  1345. data/vendor/ruby/2.6.0/gems/railties-6.0.1/MIT-LICENSE +20 -0
  1346. data/vendor/ruby/2.6.0/gems/railties-6.0.1/RDOC_MAIN.rdoc +98 -0
  1347. data/vendor/ruby/2.6.0/gems/railties-6.0.1/README.rdoc +40 -0
  1348. data/vendor/ruby/2.6.0/gems/railties-6.0.1/exe/rails +10 -0
  1349. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/minitest/rails_plugin.rb +59 -0
  1350. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails.rb +119 -0
  1351. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/all.rb +24 -0
  1352. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/api/generator.rb +38 -0
  1353. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/api/task.rb +202 -0
  1354. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/app_loader.rb +77 -0
  1355. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/app_updater.rb +37 -0
  1356. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/application.rb +660 -0
  1357. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/application/bootstrap.rb +81 -0
  1358. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/application/configuration.rb +370 -0
  1359. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/application/default_middleware_stack.rb +110 -0
  1360. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/application/dummy_erb_compiler.rb +18 -0
  1361. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/application/finisher.rb +250 -0
  1362. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/application/routes_reloader.rb +55 -0
  1363. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/application_controller.rb +29 -0
  1364. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/autoloaders.rb +48 -0
  1365. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/backtrace_cleaner.rb +22 -0
  1366. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/cli.rb +19 -0
  1367. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/code_statistics.rb +115 -0
  1368. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/code_statistics_calculator.rb +88 -0
  1369. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/command.rb +114 -0
  1370. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/command/actions.rb +54 -0
  1371. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/command/base.rb +165 -0
  1372. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/command/behavior.rb +84 -0
  1373. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/command/environment_argument.rb +40 -0
  1374. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/command/helpers/editor.rb +35 -0
  1375. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/command/spellchecker.rb +58 -0
  1376. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/commands.rb +18 -0
  1377. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/commands/application/application_command.rb +31 -0
  1378. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/commands/console/console_command.rb +106 -0
  1379. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/commands/credentials/USAGE +58 -0
  1380. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/commands/credentials/credentials_command.rb +112 -0
  1381. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/commands/db/system/change/change_command.rb +20 -0
  1382. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/commands/dbconsole/dbconsole_command.rb +182 -0
  1383. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/commands/destroy/destroy_command.rb +28 -0
  1384. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/commands/dev/dev_command.rb +19 -0
  1385. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/commands/encrypted/USAGE +28 -0
  1386. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/commands/encrypted/encrypted_command.rb +87 -0
  1387. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/commands/generate/generate_command.rb +30 -0
  1388. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/commands/help/USAGE +16 -0
  1389. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/commands/help/help_command.rb +15 -0
  1390. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/commands/initializers/initializers_command.rb +23 -0
  1391. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/commands/new/new_command.rb +19 -0
  1392. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/commands/notes/notes_command.rb +39 -0
  1393. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/commands/plugin/plugin_command.rb +45 -0
  1394. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/commands/rake/rake_command.rb +51 -0
  1395. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/commands/routes/routes_command.rb +37 -0
  1396. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/commands/runner/USAGE +20 -0
  1397. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/commands/runner/runner_command.rb +57 -0
  1398. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/commands/secrets/USAGE +60 -0
  1399. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/commands/secrets/secrets_command.rb +65 -0
  1400. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/commands/server/server_command.rb +312 -0
  1401. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/commands/test/test_command.rb +37 -0
  1402. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/commands/version/version_command.rb +11 -0
  1403. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/configuration.rb +131 -0
  1404. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/console/app.rb +38 -0
  1405. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/console/helpers.rb +19 -0
  1406. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/dev_caching.rb +44 -0
  1407. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/engine.rb +731 -0
  1408. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/engine/commands.rb +9 -0
  1409. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/engine/configuration.rb +91 -0
  1410. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/engine/railties.rb +23 -0
  1411. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/engine/updater.rb +21 -0
  1412. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/gem_version.rb +17 -0
  1413. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators.rb +325 -0
  1414. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/actions.rb +350 -0
  1415. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/actions/create_migration.rb +71 -0
  1416. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/active_model.rb +80 -0
  1417. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/app_base.rb +440 -0
  1418. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/app_name.rb +50 -0
  1419. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/base.rb +417 -0
  1420. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/css/assets/assets_generator.rb +15 -0
  1421. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/css/assets/templates/stylesheet.css +4 -0
  1422. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/css/scaffold/scaffold_generator.rb +18 -0
  1423. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/database.rb +58 -0
  1424. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/erb.rb +27 -0
  1425. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/erb/controller/controller_generator.rb +24 -0
  1426. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/erb/controller/templates/view.html.erb.tt +2 -0
  1427. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/erb/mailer/mailer_generator.rb +42 -0
  1428. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/erb/mailer/templates/layout.html.erb.tt +13 -0
  1429. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/erb/mailer/templates/layout.text.erb.tt +1 -0
  1430. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/erb/mailer/templates/view.html.erb.tt +5 -0
  1431. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/erb/mailer/templates/view.text.erb.tt +3 -0
  1432. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/erb/scaffold/scaffold_generator.rb +33 -0
  1433. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/erb/scaffold/templates/_form.html.erb.tt +37 -0
  1434. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/erb/scaffold/templates/edit.html.erb.tt +6 -0
  1435. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/erb/scaffold/templates/index.html.erb.tt +31 -0
  1436. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/erb/scaffold/templates/new.html.erb.tt +5 -0
  1437. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/erb/scaffold/templates/show.html.erb.tt +19 -0
  1438. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/generated_attribute.rb +203 -0
  1439. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/migration.rb +75 -0
  1440. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/model_helpers.rb +37 -0
  1441. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/named_base.rb +227 -0
  1442. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/USAGE +14 -0
  1443. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/app_generator.rb +589 -0
  1444. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/Gemfile.tt +78 -0
  1445. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/README.md.tt +24 -0
  1446. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/Rakefile.tt +6 -0
  1447. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/app/assets/config/manifest.js.tt +2 -0
  1448. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/app/assets/stylesheets/application.css.tt +15 -0
  1449. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/app/channels/application_cable/channel.rb.tt +4 -0
  1450. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/app/channels/application_cable/connection.rb.tt +4 -0
  1451. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/app/controllers/application_controller.rb.tt +2 -0
  1452. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/app/helpers/application_helper.rb.tt +2 -0
  1453. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/app/javascript/channels/consumer.js +6 -0
  1454. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/app/javascript/channels/index.js +5 -0
  1455. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/app/javascript/packs/application.js.tt +23 -0
  1456. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/app/jobs/application_job.rb.tt +7 -0
  1457. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/app/mailers/application_mailer.rb.tt +4 -0
  1458. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/app/models/application_record.rb.tt +3 -0
  1459. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/app/views/layouts/application.html.erb.tt +24 -0
  1460. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/app/views/layouts/mailer.html.erb.tt +13 -0
  1461. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/app/views/layouts/mailer.text.erb.tt +1 -0
  1462. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/bin/rails.tt +3 -0
  1463. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/bin/rake.tt +3 -0
  1464. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/bin/setup.tt +39 -0
  1465. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/bin/yarn.tt +10 -0
  1466. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/config.ru.tt +5 -0
  1467. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/config/application.rb.tt +47 -0
  1468. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/config/boot.rb.tt +6 -0
  1469. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/config/cable.yml.tt +10 -0
  1470. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/config/databases/frontbase.yml.tt +50 -0
  1471. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/config/databases/ibm_db.yml.tt +86 -0
  1472. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/config/databases/jdbc.yml.tt +69 -0
  1473. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/config/databases/jdbcmysql.yml.tt +53 -0
  1474. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/config/databases/jdbcpostgresql.yml.tt +69 -0
  1475. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/config/databases/jdbcsqlite3.yml.tt +24 -0
  1476. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/config/databases/mysql.yml.tt +58 -0
  1477. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/config/databases/oracle.yml.tt +61 -0
  1478. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/config/databases/postgresql.yml.tt +85 -0
  1479. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/config/databases/sqlite3.yml.tt +25 -0
  1480. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/config/databases/sqlserver.yml.tt +52 -0
  1481. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/config/environment.rb.tt +5 -0
  1482. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/config/environments/development.rb.tt +72 -0
  1483. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/config/environments/production.rb.tt +124 -0
  1484. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/config/environments/test.rb.tt +57 -0
  1485. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/config/initializers/application_controller_renderer.rb.tt +8 -0
  1486. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/config/initializers/assets.rb.tt +16 -0
  1487. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/config/initializers/backtrace_silencers.rb.tt +7 -0
  1488. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/config/initializers/content_security_policy.rb.tt +32 -0
  1489. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/config/initializers/cookies_serializer.rb.tt +5 -0
  1490. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/config/initializers/cors.rb.tt +16 -0
  1491. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/config/initializers/filter_parameter_logging.rb.tt +4 -0
  1492. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/config/initializers/inflections.rb.tt +16 -0
  1493. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/config/initializers/mime_types.rb.tt +4 -0
  1494. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/config/initializers/new_framework_defaults_6_0.rb.tt +45 -0
  1495. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/config/initializers/wrap_parameters.rb.tt +16 -0
  1496. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/config/locales/en.yml +33 -0
  1497. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/config/puma.rb.tt +38 -0
  1498. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/config/routes.rb.tt +3 -0
  1499. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/config/spring.rb.tt +6 -0
  1500. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/config/storage.yml.tt +34 -0
  1501. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/db/seeds.rb.tt +7 -0
  1502. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/gitignore.tt +36 -0
  1503. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/package.json.tt +11 -0
  1504. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/public/404.html +67 -0
  1505. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/public/422.html +67 -0
  1506. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/public/500.html +66 -0
  1507. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/public/apple-touch-icon-precomposed.png +0 -0
  1508. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/public/apple-touch-icon.png +0 -0
  1509. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/public/favicon.ico +0 -0
  1510. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/public/robots.txt +1 -0
  1511. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/ruby-version.tt +1 -0
  1512. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/test/application_system_test_case.rb.tt +5 -0
  1513. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/test/channels/application_cable/connection_test.rb.tt +11 -0
  1514. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/app/templates/test/test_helper.rb.tt +19 -0
  1515. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/application_record/application_record_generator.rb +9 -0
  1516. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/assets/USAGE +17 -0
  1517. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/assets/assets_generator.rb +26 -0
  1518. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/assets/templates/stylesheet.css +4 -0
  1519. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/controller/USAGE +18 -0
  1520. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/controller/controller_generator.rb +77 -0
  1521. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/controller/templates/controller.rb.tt +13 -0
  1522. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/credentials/credentials_generator.rb +56 -0
  1523. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/db/system/change/change_generator.rb +65 -0
  1524. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/encrypted_file/encrypted_file_generator.rb +27 -0
  1525. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/encryption_key_file/encryption_key_file_generator.rb +58 -0
  1526. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/generator/USAGE +13 -0
  1527. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/generator/generator_generator.rb +28 -0
  1528. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/generator/templates/%file_name%_generator.rb.tt +3 -0
  1529. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/generator/templates/USAGE.tt +8 -0
  1530. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/helper/USAGE +13 -0
  1531. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/helper/helper_generator.rb +20 -0
  1532. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/helper/templates/helper.rb.tt +4 -0
  1533. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/integration_test/USAGE +10 -0
  1534. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/integration_test/integration_test_generator.rb +9 -0
  1535. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/master_key/master_key_generator.rb +53 -0
  1536. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/migration/USAGE +35 -0
  1537. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/migration/migration_generator.rb +10 -0
  1538. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/model/USAGE +114 -0
  1539. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/model/model_generator.rb +14 -0
  1540. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/plugin/USAGE +10 -0
  1541. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/plugin/plugin_generator.rb +430 -0
  1542. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/plugin/templates/%name%.gemspec.tt +33 -0
  1543. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/plugin/templates/Gemfile.tt +48 -0
  1544. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/plugin/templates/MIT-LICENSE.tt +20 -0
  1545. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/plugin/templates/README.md.tt +28 -0
  1546. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/plugin/templates/Rakefile.tt +28 -0
  1547. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/plugin/templates/app/controllers/%namespaced_name%/application_controller.rb.tt +6 -0
  1548. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/plugin/templates/app/helpers/%namespaced_name%/application_helper.rb.tt +5 -0
  1549. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/plugin/templates/app/jobs/%namespaced_name%/application_job.rb.tt +5 -0
  1550. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/plugin/templates/app/mailers/%namespaced_name%/application_mailer.rb.tt +7 -0
  1551. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/plugin/templates/app/models/%namespaced_name%/application_record.rb.tt +6 -0
  1552. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/plugin/templates/app/views/layouts/%namespaced_name%/application.html.erb.tt +18 -0
  1553. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/plugin/templates/bin/rails.tt +30 -0
  1554. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/plugin/templates/bin/test.tt +4 -0
  1555. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/plugin/templates/config/routes.rb.tt +6 -0
  1556. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/plugin/templates/gitignore.tt +19 -0
  1557. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/plugin/templates/lib/%namespaced_name%.rb.tt +7 -0
  1558. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/plugin/templates/lib/%namespaced_name%/engine.rb.tt +7 -0
  1559. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/plugin/templates/lib/%namespaced_name%/railtie.rb.tt +5 -0
  1560. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/plugin/templates/lib/%namespaced_name%/version.rb.tt +1 -0
  1561. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/plugin/templates/lib/tasks/%namespaced_name%_tasks.rake.tt +4 -0
  1562. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/plugin/templates/rails/application.rb.tt +23 -0
  1563. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/plugin/templates/rails/boot.rb.tt +5 -0
  1564. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/plugin/templates/rails/dummy_manifest.js.tt +10 -0
  1565. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/plugin/templates/rails/engine_manifest.js.tt +6 -0
  1566. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/plugin/templates/rails/javascripts.js.tt +17 -0
  1567. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/plugin/templates/rails/routes.rb.tt +3 -0
  1568. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/plugin/templates/rails/stylesheets.css +15 -0
  1569. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/plugin/templates/test/%namespaced_name%_test.rb.tt +7 -0
  1570. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/plugin/templates/test/application_system_test_case.rb.tt +5 -0
  1571. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/plugin/templates/test/integration/navigation_test.rb.tt +7 -0
  1572. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/plugin/templates/test/test_helper.rb.tt +29 -0
  1573. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/resource/USAGE +23 -0
  1574. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/resource/resource_generator.rb +21 -0
  1575. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/resource_route/resource_route_generator.rb +48 -0
  1576. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/scaffold/USAGE +41 -0
  1577. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/scaffold/scaffold_generator.rb +36 -0
  1578. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/scaffold/templates/scaffold.css +80 -0
  1579. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/scaffold_controller/USAGE +19 -0
  1580. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/scaffold_controller/scaffold_controller_generator.rb +51 -0
  1581. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/scaffold_controller/templates/api_controller.rb.tt +61 -0
  1582. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/scaffold_controller/templates/controller.rb.tt +68 -0
  1583. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/system_test/USAGE +10 -0
  1584. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/system_test/system_test_generator.rb +9 -0
  1585. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/task/USAGE +9 -0
  1586. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/task/task_generator.rb +13 -0
  1587. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/rails/task/templates/task.rb.tt +8 -0
  1588. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/resource_helpers.rb +82 -0
  1589. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/test_case.rb +37 -0
  1590. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/test_unit.rb +10 -0
  1591. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/test_unit/controller/controller_generator.rb +17 -0
  1592. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/test_unit/controller/templates/functional_test.rb.tt +23 -0
  1593. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/test_unit/generator/generator_generator.rb +28 -0
  1594. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/test_unit/generator/templates/generator_test.rb.tt +16 -0
  1595. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/test_unit/helper/helper_generator.rb +11 -0
  1596. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/test_unit/integration/integration_generator.rb +21 -0
  1597. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/test_unit/integration/templates/integration_test.rb.tt +9 -0
  1598. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/test_unit/job/job_generator.rb +20 -0
  1599. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/test_unit/job/templates/unit_test.rb.tt +9 -0
  1600. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/test_unit/mailer/mailer_generator.rb +28 -0
  1601. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/test_unit/mailer/templates/functional_test.rb.tt +21 -0
  1602. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/test_unit/mailer/templates/preview.rb.tt +13 -0
  1603. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/test_unit/model/model_generator.rb +37 -0
  1604. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/test_unit/model/templates/fixtures.yml.tt +29 -0
  1605. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/test_unit/model/templates/unit_test.rb.tt +9 -0
  1606. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/test_unit/plugin/plugin_generator.rb +15 -0
  1607. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/test_unit/plugin/templates/%file_name%_test.rb.tt +7 -0
  1608. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/test_unit/plugin/templates/test_helper.rb +2 -0
  1609. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/test_unit/scaffold/scaffold_generator.rb +69 -0
  1610. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/test_unit/scaffold/templates/api_functional_test.rb.tt +44 -0
  1611. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/test_unit/scaffold/templates/functional_test.rb.tt +54 -0
  1612. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/test_unit/scaffold/templates/system_test.rb.tt +57 -0
  1613. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/test_unit/system/system_generator.rb +24 -0
  1614. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/test_unit/system/templates/application_system_test_case.rb.tt +5 -0
  1615. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/test_unit/system/templates/system_test.rb.tt +9 -0
  1616. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/testing/assertions.rb +127 -0
  1617. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/testing/behaviour.rb +114 -0
  1618. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/generators/testing/setup_and_teardown.rb +20 -0
  1619. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/info.rb +105 -0
  1620. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/info_controller.rb +46 -0
  1621. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/initializable.rb +95 -0
  1622. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/mailers_controller.rb +100 -0
  1623. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/paths.rb +237 -0
  1624. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/plugin/test.rb +9 -0
  1625. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/rack.rb +7 -0
  1626. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/rack/logger.rb +80 -0
  1627. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/railtie.rb +260 -0
  1628. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/railtie/configurable.rb +37 -0
  1629. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/railtie/configuration.rb +102 -0
  1630. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/ruby_version_check.rb +15 -0
  1631. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/secrets.rb +105 -0
  1632. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/source_annotation_extractor.rb +162 -0
  1633. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/tasks.rb +23 -0
  1634. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/tasks/annotations.rake +22 -0
  1635. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/tasks/dev.rake +11 -0
  1636. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/tasks/engine.rake +88 -0
  1637. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/tasks/framework.rake +62 -0
  1638. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/tasks/initializers.rake +9 -0
  1639. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/tasks/log.rake +41 -0
  1640. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/tasks/middleware.rake +9 -0
  1641. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/tasks/misc.rake +79 -0
  1642. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/tasks/restart.rake +9 -0
  1643. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/tasks/routes.rake +9 -0
  1644. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/tasks/statistics.rake +35 -0
  1645. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/tasks/tmp.rake +44 -0
  1646. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/tasks/yarn.rake +18 -0
  1647. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/tasks/zeitwerk.rake +66 -0
  1648. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/templates/layouts/application.html.erb +36 -0
  1649. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/templates/rails/info/properties.html.erb +1 -0
  1650. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/templates/rails/info/routes.html.erb +9 -0
  1651. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/templates/rails/mailers/email.html.erb +162 -0
  1652. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/templates/rails/mailers/index.html.erb +8 -0
  1653. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/templates/rails/mailers/mailer.html.erb +6 -0
  1654. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/templates/rails/welcome/index.html.erb +74 -0
  1655. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/test_help.rb +50 -0
  1656. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/test_unit/line_filtering.rb +13 -0
  1657. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/test_unit/railtie.rb +29 -0
  1658. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/test_unit/reporter.rb +110 -0
  1659. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/test_unit/runner.rb +143 -0
  1660. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/test_unit/testing.rake +58 -0
  1661. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/version.rb +10 -0
  1662. data/vendor/ruby/2.6.0/gems/railties-6.0.1/lib/rails/welcome_controller.rb +10 -0
  1663. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/LICENSE.txt +20 -0
  1664. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/README.md +217 -0
  1665. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/assets/logo.png +0 -0
  1666. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/assets/output.html.erb +261 -0
  1667. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/bin/console +10 -0
  1668. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/bin/setup +7 -0
  1669. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/config/default.yml +3938 -0
  1670. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/exe/rubocop +17 -0
  1671. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop.rb +609 -0
  1672. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/ast/builder.rb +82 -0
  1673. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/ast/node.rb +644 -0
  1674. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/ast/node/alias_node.rb +24 -0
  1675. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/ast/node/and_node.rb +29 -0
  1676. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/ast/node/args_node.rb +29 -0
  1677. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/ast/node/array_node.rb +57 -0
  1678. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/ast/node/block_node.rb +115 -0
  1679. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/ast/node/break_node.rb +17 -0
  1680. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/ast/node/case_node.rb +56 -0
  1681. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/ast/node/class_node.rb +31 -0
  1682. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/ast/node/def_node.rb +71 -0
  1683. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/ast/node/defined_node.rb +17 -0
  1684. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/ast/node/ensure_node.rb +17 -0
  1685. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/ast/node/float_node.rb +12 -0
  1686. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/ast/node/for_node.rb +53 -0
  1687. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/ast/node/hash_node.rb +109 -0
  1688. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/ast/node/if_node.rb +175 -0
  1689. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/ast/node/int_node.rb +12 -0
  1690. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/ast/node/keyword_splat_node.rb +45 -0
  1691. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/ast/node/mixin/basic_literal_node.rb +16 -0
  1692. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/ast/node/mixin/binary_operator_node.rb +43 -0
  1693. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/ast/node/mixin/collection_node.rb +15 -0
  1694. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/ast/node/mixin/conditional_node.rb +45 -0
  1695. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/ast/node/mixin/hash_element_node.rb +125 -0
  1696. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/ast/node/mixin/method_dispatch_node.rb +261 -0
  1697. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/ast/node/mixin/method_identifier_predicates.rb +114 -0
  1698. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/ast/node/mixin/modifier_node.rb +17 -0
  1699. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/ast/node/mixin/numeric_node.rb +21 -0
  1700. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/ast/node/mixin/parameterized_node.rb +61 -0
  1701. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/ast/node/mixin/predicate_operator_node.rb +35 -0
  1702. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/ast/node/module_node.rb +24 -0
  1703. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/ast/node/or_node.rb +29 -0
  1704. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/ast/node/pair_node.rb +63 -0
  1705. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/ast/node/range_node.rb +18 -0
  1706. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/ast/node/regexp_node.rb +35 -0
  1707. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/ast/node/resbody_node.rb +24 -0
  1708. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/ast/node/retry_node.rb +17 -0
  1709. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/ast/node/return_node.rb +24 -0
  1710. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/ast/node/self_class_node.rb +24 -0
  1711. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/ast/node/send_node.rb +13 -0
  1712. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/ast/node/str_node.rb +16 -0
  1713. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/ast/node/super_node.rb +21 -0
  1714. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/ast/node/symbol_node.rb +12 -0
  1715. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/ast/node/until_node.rb +35 -0
  1716. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/ast/node/when_node.rb +53 -0
  1717. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/ast/node/while_node.rb +35 -0
  1718. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/ast/node/yield_node.rb +21 -0
  1719. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/ast/sexp.rb +16 -0
  1720. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/ast/traversal.rb +183 -0
  1721. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cached_data.rb +58 -0
  1722. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cli.rb +346 -0
  1723. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/comment_config.rb +201 -0
  1724. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/config.rb +251 -0
  1725. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/config_loader.rb +273 -0
  1726. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/config_loader_resolver.rb +195 -0
  1727. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/config_obsoletion.rb +222 -0
  1728. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/config_store.rb +48 -0
  1729. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/config_validator.rb +248 -0
  1730. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/autocorrect_logic.rb +103 -0
  1731. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/badge.rb +73 -0
  1732. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/bundler/duplicated_gem.rb +73 -0
  1733. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/bundler/gem_comment.rb +64 -0
  1734. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/bundler/insecure_protocol_source.rb +69 -0
  1735. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/bundler/ordered_gems.rb +73 -0
  1736. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/commissioner.rb +145 -0
  1737. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/cop.rb +275 -0
  1738. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/corrector.rb +172 -0
  1739. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/correctors/alignment_corrector.rb +146 -0
  1740. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/correctors/condition_corrector.rb +28 -0
  1741. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/correctors/each_to_for_corrector.rb +53 -0
  1742. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/correctors/empty_line_corrector.rb +26 -0
  1743. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/correctors/for_to_each_corrector.rb +73 -0
  1744. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/correctors/lambda_literal_to_method_corrector.rb +136 -0
  1745. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/correctors/line_break_corrector.rb +61 -0
  1746. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/correctors/multiline_literal_brace_corrector.rb +68 -0
  1747. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/correctors/ordered_gem_corrector.rb +44 -0
  1748. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/correctors/parentheses_corrector.rb +31 -0
  1749. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/correctors/percent_literal_corrector.rb +117 -0
  1750. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/correctors/punctuation_corrector.rb +29 -0
  1751. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/correctors/space_corrector.rb +49 -0
  1752. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/correctors/string_literal_corrector.rb +25 -0
  1753. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/correctors/unused_arg_corrector.rb +43 -0
  1754. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/force.rb +42 -0
  1755. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/gemspec/duplicated_assignment.rb +104 -0
  1756. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/gemspec/ordered_dependencies.rb +106 -0
  1757. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/gemspec/required_ruby_version.rb +85 -0
  1758. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/gemspec/ruby_version_globals_usage.rb +55 -0
  1759. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/generator.rb +223 -0
  1760. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/generator/configuration_injector.rb +66 -0
  1761. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/generator/require_file_injector.rb +78 -0
  1762. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/ignored_node.rb +38 -0
  1763. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/internal_affairs.rb +8 -0
  1764. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/internal_affairs/node_destructuring.rb +44 -0
  1765. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/internal_affairs/node_type_predicate.rb +44 -0
  1766. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/internal_affairs/offense_location_keyword.rb +54 -0
  1767. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/internal_affairs/redundant_location_argument.rb +48 -0
  1768. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/internal_affairs/redundant_message_argument.rb +73 -0
  1769. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/internal_affairs/useless_message_assertion.rb +52 -0
  1770. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/access_modifier_indentation.rb +98 -0
  1771. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/align_arguments.rb +93 -0
  1772. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/align_array.rb +39 -0
  1773. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/align_hash.rb +362 -0
  1774. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/align_parameters.rb +118 -0
  1775. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/block_alignment.rb +244 -0
  1776. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/block_end_newline.rb +62 -0
  1777. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/case_indentation.rb +161 -0
  1778. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/class_structure.rb +340 -0
  1779. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/closing_heredoc_indentation.rb +126 -0
  1780. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/closing_parenthesis_indentation.rb +203 -0
  1781. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/comment_indentation.rb +141 -0
  1782. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/condition_position.rb +56 -0
  1783. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/def_end_alignment.rb +74 -0
  1784. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/dot_position.rb +105 -0
  1785. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/else_alignment.rb +134 -0
  1786. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/empty_comment.rb +151 -0
  1787. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/empty_line_after_guard_clause.rb +157 -0
  1788. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/empty_line_after_magic_comment.rb +64 -0
  1789. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/empty_line_between_defs.rb +151 -0
  1790. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/empty_lines.rb +76 -0
  1791. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/empty_lines_around_access_modifier.rb +215 -0
  1792. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/empty_lines_around_arguments.rb +99 -0
  1793. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/empty_lines_around_begin_body.rb +45 -0
  1794. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/empty_lines_around_block_body.rb +41 -0
  1795. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/empty_lines_around_class_body.rb +88 -0
  1796. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/empty_lines_around_exception_handling_keywords.rb +136 -0
  1797. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/empty_lines_around_method_body.rb +45 -0
  1798. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/empty_lines_around_module_body.rb +62 -0
  1799. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/end_alignment.rb +189 -0
  1800. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/end_of_line.rb +92 -0
  1801. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/extra_spacing.rb +201 -0
  1802. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/first_array_element_line_break.rb +45 -0
  1803. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/first_hash_element_line_break.rb +37 -0
  1804. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/first_method_argument_line_break.rb +55 -0
  1805. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/first_method_parameter_line_break.rb +46 -0
  1806. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/heredoc_argument_closing_parenthesis.rb +289 -0
  1807. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/indent_assignment.rb +55 -0
  1808. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/indent_first_argument.rb +249 -0
  1809. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/indent_first_array_element.rb +167 -0
  1810. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/indent_first_hash_element.rb +184 -0
  1811. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/indent_first_parameter.rb +100 -0
  1812. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/indent_heredoc.rb +256 -0
  1813. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/indentation_consistency.rb +202 -0
  1814. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/indentation_width.rb +364 -0
  1815. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/initial_indentation.rb +59 -0
  1816. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/leading_blank_lines.rb +53 -0
  1817. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/leading_comment_space.rb +88 -0
  1818. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/multiline_array_brace_layout.rb +118 -0
  1819. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/multiline_array_line_breaks.rb +39 -0
  1820. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/multiline_assignment_layout.rb +95 -0
  1821. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/multiline_block_layout.rb +146 -0
  1822. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/multiline_hash_brace_layout.rb +122 -0
  1823. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb +50 -0
  1824. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/multiline_method_argument_line_breaks.rb +54 -0
  1825. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/multiline_method_call_brace_layout.rb +134 -0
  1826. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/multiline_method_call_indentation.rb +220 -0
  1827. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/multiline_method_definition_brace_layout.rb +131 -0
  1828. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/multiline_operation_indentation.rb +114 -0
  1829. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/rescue_ensure_alignment.rb +191 -0
  1830. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/space_after_colon.rb +47 -0
  1831. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/space_after_comma.rb +35 -0
  1832. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/space_after_method_name.rb +42 -0
  1833. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/space_after_not.rb +40 -0
  1834. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/space_after_semicolon.rb +32 -0
  1835. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/space_around_block_parameters.rb +169 -0
  1836. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/space_around_equals_in_parameter_default.rb +92 -0
  1837. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/space_around_keyword.rb +232 -0
  1838. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/space_around_operators.rb +182 -0
  1839. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/space_before_block_braces.rb +119 -0
  1840. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/space_before_comma.rb +31 -0
  1841. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/space_before_comment.rb +35 -0
  1842. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/space_before_first_arg.rb +67 -0
  1843. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/space_before_semicolon.rb +27 -0
  1844. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/space_in_lambda_literal.rb +82 -0
  1845. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/space_inside_array_literal_brackets.rb +231 -0
  1846. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/space_inside_array_percent_literal.rb +53 -0
  1847. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/space_inside_block_braces.rb +248 -0
  1848. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/space_inside_hash_literal_braces.rb +207 -0
  1849. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/space_inside_parens.rb +113 -0
  1850. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/space_inside_percent_literal_delimiters.rb +65 -0
  1851. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/space_inside_range_literal.rb +63 -0
  1852. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/space_inside_reference_brackets.rb +150 -0
  1853. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/space_inside_string_interpolation.rb +65 -0
  1854. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/tab.rb +75 -0
  1855. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/trailing_blank_lines.rb +113 -0
  1856. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/layout/trailing_whitespace.rb +77 -0
  1857. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/ambiguous_block_association.rb +62 -0
  1858. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/ambiguous_operator.rb +55 -0
  1859. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/ambiguous_regexp_literal.rb +43 -0
  1860. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/assignment_in_condition.rb +97 -0
  1861. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/big_decimal_new.rb +44 -0
  1862. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/boolean_symbol.rb +38 -0
  1863. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/circular_argument_reference.rb +72 -0
  1864. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/debugger.rb +77 -0
  1865. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/deprecated_class_methods.rb +111 -0
  1866. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/disjunctive_assignment_in_constructor.rb +81 -0
  1867. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/duplicate_case_condition.rb +53 -0
  1868. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/duplicate_methods.rb +239 -0
  1869. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/duplicated_key.rb +38 -0
  1870. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/each_with_object_argument.rb +42 -0
  1871. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/else_layout.rb +66 -0
  1872. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/empty_ensure.rb +60 -0
  1873. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/empty_expression.rb +42 -0
  1874. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/empty_interpolation.rb +36 -0
  1875. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/empty_when.rb +38 -0
  1876. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/end_in_method.rb +40 -0
  1877. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/ensure_return.rb +46 -0
  1878. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/erb_new_arguments.rb +164 -0
  1879. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/flip_flop.rb +32 -0
  1880. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/float_out_of_range.rb +35 -0
  1881. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/format_parameter_mismatch.rb +159 -0
  1882. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/handle_exceptions.rb +95 -0
  1883. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/heredoc_method_call_position.rb +156 -0
  1884. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/implicit_string_concatenation.rb +101 -0
  1885. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/ineffective_access_modifier.rb +127 -0
  1886. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/inherit_exception.rb +100 -0
  1887. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/interpolation_check.rb +40 -0
  1888. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/literal_as_condition.rb +138 -0
  1889. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/literal_in_interpolation.rb +98 -0
  1890. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/loop.rb +63 -0
  1891. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/missing_cop_enable_directive.rb +84 -0
  1892. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/multiple_compare.rb +48 -0
  1893. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/nested_method_definition.rb +104 -0
  1894. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/nested_percent_literal.rb +51 -0
  1895. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/next_without_accumulator.rb +50 -0
  1896. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/non_local_exit_from_iterator.rb +83 -0
  1897. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/number_conversion.rb +81 -0
  1898. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/ordered_magic_comments.rb +86 -0
  1899. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/parentheses_as_grouped_expression.rb +64 -0
  1900. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/percent_string_array.rb +73 -0
  1901. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/percent_symbol_array.rb +69 -0
  1902. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/rand_one.rb +45 -0
  1903. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/redundant_cop_disable_directive.rb +263 -0
  1904. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/redundant_cop_enable_directive.rb +114 -0
  1905. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/redundant_require_statement.rb +50 -0
  1906. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/redundant_splat_expansion.rb +172 -0
  1907. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/redundant_with_index.rb +82 -0
  1908. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/redundant_with_object.rb +83 -0
  1909. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/regexp_as_condition.rb +29 -0
  1910. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/require_parentheses.rb +66 -0
  1911. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/rescue_exception.rb +46 -0
  1912. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/rescue_type.rb +94 -0
  1913. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/return_in_void_context.rb +74 -0
  1914. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/safe_navigation_chain.rb +65 -0
  1915. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/safe_navigation_consistency.rb +94 -0
  1916. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/safe_navigation_with_empty.rb +38 -0
  1917. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/script_permission.rb +70 -0
  1918. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/send_with_mixin_argument.rb +91 -0
  1919. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/shadowed_argument.rb +182 -0
  1920. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/shadowed_exception.rb +178 -0
  1921. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/shadowing_outer_local_variable.rb +53 -0
  1922. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/string_conversion_in_interpolation.rb +59 -0
  1923. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/syntax.rb +59 -0
  1924. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/to_json.rb +41 -0
  1925. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/underscore_prefixed_variable_name.rb +82 -0
  1926. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/unified_integer.rb +45 -0
  1927. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/unreachable_code.rb +99 -0
  1928. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/unused_block_argument.rb +165 -0
  1929. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/unused_method_argument.rb +86 -0
  1930. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/uri_escape_unescape.rb +76 -0
  1931. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/uri_regexp.rb +73 -0
  1932. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/useless_access_modifier.rb +240 -0
  1933. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/useless_assignment.rb +129 -0
  1934. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/useless_comparison.rb +28 -0
  1935. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/useless_else_without_rescue.rb +49 -0
  1936. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/useless_setter_call.rb +164 -0
  1937. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/lint/void.rb +151 -0
  1938. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/message_annotator.rb +129 -0
  1939. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/metrics/abc_size.rb +24 -0
  1940. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/metrics/block_length.rb +50 -0
  1941. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/metrics/block_nesting.rb +65 -0
  1942. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/metrics/class_length.rb +36 -0
  1943. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/metrics/cyclomatic_complexity.rb +32 -0
  1944. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/metrics/line_length.rb +318 -0
  1945. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/metrics/method_length.rb +36 -0
  1946. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/metrics/module_length.rb +36 -0
  1947. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/metrics/parameter_lists.rb +54 -0
  1948. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/metrics/perceived_complexity.rb +61 -0
  1949. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/metrics/utils/abc_size_calculator.rb +84 -0
  1950. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/migration/department_name.rb +44 -0
  1951. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/mixin/alignment.rb +74 -0
  1952. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/mixin/annotation_comment.rb +37 -0
  1953. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/mixin/array_min_size.rb +59 -0
  1954. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/mixin/array_syntax.rb +17 -0
  1955. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/mixin/check_assignment.rb +44 -0
  1956. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/mixin/check_line_breakable.rb +190 -0
  1957. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/mixin/classish_length.rb +37 -0
  1958. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/mixin/code_length.rb +38 -0
  1959. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/mixin/configurable_enforced_style.rb +98 -0
  1960. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/mixin/configurable_formatting.rb +47 -0
  1961. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/mixin/configurable_max.rb +23 -0
  1962. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/mixin/configurable_naming.rb +16 -0
  1963. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/mixin/configurable_numbering.rb +17 -0
  1964. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/mixin/def_node.rb +33 -0
  1965. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/mixin/documentation_comment.rb +52 -0
  1966. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/mixin/duplication.rb +46 -0
  1967. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/mixin/empty_lines_around_body.rb +172 -0
  1968. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/mixin/empty_parameter.rb +24 -0
  1969. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/mixin/end_keyword_alignment.rb +67 -0
  1970. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/mixin/enforce_superclass.rb +30 -0
  1971. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/mixin/first_element_line_break.rb +46 -0
  1972. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/mixin/frozen_string_literal.rb +53 -0
  1973. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/mixin/hash_alignment.rb +147 -0
  1974. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/mixin/heredoc.rb +32 -0
  1975. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/mixin/ignored_methods.rb +19 -0
  1976. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/mixin/ignored_pattern.rb +29 -0
  1977. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/mixin/integer_node.rb +14 -0
  1978. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/mixin/interpolation.rb +27 -0
  1979. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/mixin/match_range.rb +26 -0
  1980. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/mixin/method_complexity.rb +57 -0
  1981. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/mixin/method_preference.rb +31 -0
  1982. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/mixin/min_body_length.rb +21 -0
  1983. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/mixin/multiline_element_indentation.rb +86 -0
  1984. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/mixin/multiline_element_line_breaks.rb +33 -0
  1985. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/mixin/multiline_expression_indentation.rb +255 -0
  1986. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/mixin/multiline_literal_brace_layout.rb +141 -0
  1987. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/mixin/negative_conditional.rb +32 -0
  1988. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/mixin/nil_methods.rb +25 -0
  1989. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/mixin/on_normal_if_unless.rb +14 -0
  1990. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/mixin/ordered_gem_node.rb +56 -0
  1991. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/mixin/parentheses.rb +17 -0
  1992. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/mixin/parser_diagnostic.rb +37 -0
  1993. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/mixin/percent_array.rb +52 -0
  1994. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/mixin/percent_literal.rb +38 -0
  1995. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/mixin/preceding_following_alignment.rb +181 -0
  1996. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/mixin/preferred_delimiters.rb +53 -0
  1997. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/mixin/range_help.rb +117 -0
  1998. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/mixin/rescue_node.rb +22 -0
  1999. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/mixin/safe_assignment.rb +23 -0
  2000. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/mixin/safe_mode.rb +24 -0
  2001. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/mixin/space_after_punctuation.rb +55 -0
  2002. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/mixin/space_before_punctuation.rb +49 -0
  2003. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/mixin/statement_modifier.rb +71 -0
  2004. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/mixin/string_help.rb +35 -0
  2005. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/mixin/string_literals_help.rb +23 -0
  2006. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/mixin/surrounding_space.rb +146 -0
  2007. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/mixin/target_ruby_version.rb +16 -0
  2008. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/mixin/too_many_lines.rb +35 -0
  2009. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/mixin/trailing_body.rb +26 -0
  2010. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/mixin/trailing_comma.rb +218 -0
  2011. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/mixin/uncommunicative_name.rb +111 -0
  2012. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/mixin/unused_argument.rb +33 -0
  2013. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/naming/accessor_method_name.rb +55 -0
  2014. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/naming/ascii_identifiers.rb +72 -0
  2015. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/naming/binary_operator_parameter_name.rb +43 -0
  2016. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/naming/class_and_module_camel_case.rb +33 -0
  2017. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/naming/constant_name.rb +81 -0
  2018. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/naming/file_name.rb +212 -0
  2019. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/naming/heredoc_delimiter_case.rb +62 -0
  2020. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/naming/heredoc_delimiter_naming.rb +55 -0
  2021. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/naming/memoized_instance_variable_name.rb +171 -0
  2022. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/naming/method_name.rb +53 -0
  2023. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/naming/predicate_name.rb +108 -0
  2024. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/naming/rescued_exceptions_variable_name.rb +112 -0
  2025. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/naming/uncommunicative_block_param_name.rb +49 -0
  2026. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/naming/uncommunicative_method_param_name.rb +58 -0
  2027. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/naming/variable_name.rb +52 -0
  2028. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/naming/variable_number.rb +61 -0
  2029. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/offense.rb +205 -0
  2030. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/registry.rb +211 -0
  2031. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/security/eval.rb +31 -0
  2032. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/security/json_load.rb +46 -0
  2033. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/security/marshal_load.rb +39 -0
  2034. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/security/open.rb +71 -0
  2035. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/security/yaml_load.rb +37 -0
  2036. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/severity.rb +77 -0
  2037. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/access_modifier_declarations.rb +112 -0
  2038. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/alias.rb +147 -0
  2039. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/and_or.rb +146 -0
  2040. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/array_join.rb +39 -0
  2041. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/ascii_comments.rb +61 -0
  2042. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/attr.rb +62 -0
  2043. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/auto_resource_cleanup.rb +51 -0
  2044. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/bare_percent_literals.rb +78 -0
  2045. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/begin_block.rb +22 -0
  2046. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/block_comments.rb +70 -0
  2047. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/block_delimiters.rb +331 -0
  2048. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/braces_around_hash_parameters.rb +209 -0
  2049. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/case_equality.rb +30 -0
  2050. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/character_literal.rb +53 -0
  2051. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/class_and_module_children.rb +151 -0
  2052. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/class_check.rb +59 -0
  2053. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/class_methods.rb +60 -0
  2054. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/class_vars.rb +48 -0
  2055. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/collection_methods.rb +77 -0
  2056. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/colon_method_call.rb +48 -0
  2057. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/colon_method_definition.rb +37 -0
  2058. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/command_literal.rb +187 -0
  2059. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/comment_annotation.rb +97 -0
  2060. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/commented_keyword.rb +73 -0
  2061. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/conditional_assignment.rb +668 -0
  2062. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/constant_visibility.rb +77 -0
  2063. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/copyright.rb +99 -0
  2064. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/date_time.rb +77 -0
  2065. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/def_with_parentheses.rb +57 -0
  2066. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/dir.rb +48 -0
  2067. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/documentation.rb +97 -0
  2068. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/documentation_method.rb +125 -0
  2069. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/double_cop_disable_directive.rb +55 -0
  2070. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/double_negation.rb +35 -0
  2071. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/each_for_simple_loop.rb +58 -0
  2072. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/each_with_object.rb +110 -0
  2073. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/empty_block_parameter.rb +48 -0
  2074. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/empty_case_condition.rb +107 -0
  2075. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/empty_else.rb +175 -0
  2076. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/empty_lambda_parameter.rb +45 -0
  2077. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/empty_literal.rb +123 -0
  2078. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/empty_method.rb +115 -0
  2079. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/encoding.rb +56 -0
  2080. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/end_block.rb +25 -0
  2081. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/eval_with_location.rb +148 -0
  2082. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/even_odd.rb +58 -0
  2083. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/expand_path_arguments.rb +194 -0
  2084. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/float_division.rb +94 -0
  2085. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/for.rb +88 -0
  2086. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/format_string.rb +127 -0
  2087. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/format_string_token.rb +121 -0
  2088. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/frozen_string_literal_comment.rb +159 -0
  2089. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/global_vars.rb +80 -0
  2090. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/guard_clause.rb +121 -0
  2091. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/hash_syntax.rb +214 -0
  2092. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/identical_conditional_branches.rb +130 -0
  2093. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/if_inside_else.rb +87 -0
  2094. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/if_unless_modifier.rb +134 -0
  2095. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/if_unless_modifier_of_if_unless.rb +39 -0
  2096. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/if_with_semicolon.rb +30 -0
  2097. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/implicit_runtime_error.rb +32 -0
  2098. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/infinite_loop.rb +128 -0
  2099. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/inline_comment.rb +34 -0
  2100. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/inverse_methods.rb +193 -0
  2101. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/ip_addresses.rb +76 -0
  2102. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/lambda.rb +131 -0
  2103. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/lambda_call.rb +93 -0
  2104. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/line_end_concatenation.rb +125 -0
  2105. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/method_call_with_args_parentheses.rb +388 -0
  2106. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/method_call_without_args_parentheses.rb +77 -0
  2107. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/method_called_on_do_end_block.rb +46 -0
  2108. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/method_def_parentheses.rb +166 -0
  2109. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/method_missing_super.rb +34 -0
  2110. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/min_max.rb +68 -0
  2111. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/missing_else.rb +180 -0
  2112. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/missing_respond_to_missing.rb +46 -0
  2113. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/mixin_grouping.rb +148 -0
  2114. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/mixin_usage.rb +90 -0
  2115. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/module_function.rb +104 -0
  2116. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/multiline_block_chain.rb +40 -0
  2117. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/multiline_if_modifier.rb +67 -0
  2118. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/multiline_if_then.rb +50 -0
  2119. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/multiline_memoization.rb +94 -0
  2120. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/multiline_method_signature.rb +61 -0
  2121. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/multiline_ternary_operator.rb +38 -0
  2122. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/multiline_when_then.rb +55 -0
  2123. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/multiple_comparison.rb +92 -0
  2124. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/mutable_constant.rb +174 -0
  2125. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/negated_if.rb +99 -0
  2126. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/negated_unless.rb +89 -0
  2127. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/negated_while.rb +48 -0
  2128. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/nested_modifier.rb +107 -0
  2129. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/nested_parenthesized_calls.rb +67 -0
  2130. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/nested_ternary_operator.rb +32 -0
  2131. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/next.rb +244 -0
  2132. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/nil_comparison.rb +75 -0
  2133. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/non_nil_check.rb +136 -0
  2134. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/not.rb +82 -0
  2135. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/numeric_literal_prefix.rb +124 -0
  2136. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/numeric_literals.rb +110 -0
  2137. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/numeric_predicate.rb +137 -0
  2138. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/one_line_conditional.rb +101 -0
  2139. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/option_hash.rb +55 -0
  2140. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/optional_arguments.rb +58 -0
  2141. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/or_assignment.rb +95 -0
  2142. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/parallel_assignment.rb +287 -0
  2143. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/parentheses_around_condition.rb +117 -0
  2144. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/percent_literal_delimiters.rb +127 -0
  2145. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/percent_q_literals.rb +73 -0
  2146. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/perl_backrefs.rb +38 -0
  2147. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/preferred_hash_methods.rb +75 -0
  2148. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/proc.rb +34 -0
  2149. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/raise_args.rb +145 -0
  2150. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/random_with_offset.rb +158 -0
  2151. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/redundant_begin.rb +91 -0
  2152. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/redundant_capital_w.rb +51 -0
  2153. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/redundant_condition.rb +112 -0
  2154. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/redundant_conditional.rb +97 -0
  2155. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/redundant_exception.rb +60 -0
  2156. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/redundant_freeze.rb +67 -0
  2157. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/redundant_interpolation.rb +98 -0
  2158. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/redundant_parentheses.rb +231 -0
  2159. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/redundant_percent_q.rb +112 -0
  2160. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/redundant_return.rb +177 -0
  2161. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/redundant_self.rb +171 -0
  2162. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/redundant_sort.rb +165 -0
  2163. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/redundant_sort_by.rb +50 -0
  2164. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/regexp_literal.rb +228 -0
  2165. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/rescue_modifier.rb +73 -0
  2166. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/rescue_standard_error.rb +124 -0
  2167. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/return_nil.rb +89 -0
  2168. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/safe_navigation.rb +275 -0
  2169. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/sample.rb +144 -0
  2170. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/self_assignment.rb +97 -0
  2171. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/semicolon.rb +101 -0
  2172. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/send.rb +31 -0
  2173. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/signal_exception.rb +211 -0
  2174. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/single_line_block_params.rb +95 -0
  2175. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/single_line_methods.rb +83 -0
  2176. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/special_global_vars.rb +211 -0
  2177. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/stabby_lambda_parentheses.rb +86 -0
  2178. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/stderr_puts.rb +61 -0
  2179. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/string_hash_keys.rb +50 -0
  2180. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/string_literals.rb +129 -0
  2181. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/string_literals_in_interpolation.rb +49 -0
  2182. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/string_methods.rb +46 -0
  2183. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/strip.rb +46 -0
  2184. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/struct_inheritance.rb +39 -0
  2185. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/symbol_array.rb +119 -0
  2186. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/symbol_literal.rb +32 -0
  2187. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/symbol_proc.rb +110 -0
  2188. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/ternary_parentheses.rb +223 -0
  2189. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/trailing_body_on_class.rb +43 -0
  2190. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/trailing_body_on_method_definition.rb +54 -0
  2191. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/trailing_body_on_module.rb +43 -0
  2192. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/trailing_comma_in_arguments.rb +96 -0
  2193. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/trailing_comma_in_array_literal.rb +58 -0
  2194. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/trailing_comma_in_hash_literal.rb +56 -0
  2195. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/trailing_method_end_statement.rb +91 -0
  2196. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/trailing_underscore_variable.rb +161 -0
  2197. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/trivial_accessors.rb +191 -0
  2198. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/unless_else.rb +55 -0
  2199. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/unpack_first.rb +65 -0
  2200. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/variable_interpolation.rb +48 -0
  2201. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/when_then.rb +37 -0
  2202. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/while_until_do.rb +59 -0
  2203. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/while_until_modifier.rb +61 -0
  2204. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/word_array.rb +102 -0
  2205. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/yoda_condition.rb +141 -0
  2206. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/style/zero_length_predicate.rb +117 -0
  2207. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/team.rb +191 -0
  2208. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/util.rb +127 -0
  2209. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/utils/format_string.rb +120 -0
  2210. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/variable_force.rb +466 -0
  2211. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/variable_force/assignment.rb +96 -0
  2212. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/variable_force/branch.rb +322 -0
  2213. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/variable_force/branchable.rb +23 -0
  2214. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/variable_force/reference.rb +49 -0
  2215. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/variable_force/scope.rb +109 -0
  2216. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/variable_force/variable.rb +117 -0
  2217. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/cop/variable_force/variable_table.rb +129 -0
  2218. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/core_ext/string.rb +23 -0
  2219. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/error.rb +34 -0
  2220. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/file_finder.rb +42 -0
  2221. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/formatter/auto_gen_config_formatter.rb +16 -0
  2222. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/formatter/base_formatter.rb +123 -0
  2223. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/formatter/clang_style_formatter.rb +59 -0
  2224. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/formatter/colorizable.rb +41 -0
  2225. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/formatter/disabled_config_formatter.rb +224 -0
  2226. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/formatter/disabled_lines_formatter.rb +57 -0
  2227. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/formatter/emacs_style_formatter.rb +37 -0
  2228. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/formatter/file_list_formatter.rb +20 -0
  2229. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/formatter/formatter_set.rb +106 -0
  2230. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/formatter/fuubar_style_formatter.rb +80 -0
  2231. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/formatter/html_formatter.rb +141 -0
  2232. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/formatter/json_formatter.rb +80 -0
  2233. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/formatter/offense_count_formatter.rb +74 -0
  2234. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/formatter/pacman_formatter.rb +80 -0
  2235. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/formatter/progress_formatter.rb +63 -0
  2236. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/formatter/quiet_formatter.rb +13 -0
  2237. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/formatter/simple_text_formatter.rb +138 -0
  2238. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/formatter/tap_formatter.rb +84 -0
  2239. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/formatter/text_util.rb +20 -0
  2240. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/formatter/worst_offenders_formatter.rb +62 -0
  2241. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/magic_comment.rb +214 -0
  2242. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/name_similarity.rb +21 -0
  2243. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/node_pattern.rb +801 -0
  2244. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/options.rb +460 -0
  2245. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/path_util.rb +85 -0
  2246. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/platform.rb +11 -0
  2247. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/processed_source.rb +216 -0
  2248. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/rake_task.rb +79 -0
  2249. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/remote_config.rb +106 -0
  2250. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/result_cache.rb +191 -0
  2251. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/rspec/cop_helper.rb +94 -0
  2252. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/rspec/expect_offense.rb +240 -0
  2253. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/rspec/host_environment_simulation_helper.rb +28 -0
  2254. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/rspec/shared_contexts.rb +90 -0
  2255. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/rspec/support.rb +13 -0
  2256. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/runner.rb +363 -0
  2257. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/string_interpreter.rb +57 -0
  2258. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/string_util.rb +14 -0
  2259. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/target_finder.rb +196 -0
  2260. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/token.rb +114 -0
  2261. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/version.rb +21 -0
  2262. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/warning.rb +11 -0
  2263. data/vendor/ruby/2.6.0/gems/rubocop-0.76.0/lib/rubocop/yaml_duplication_checker.rb +39 -0
  2264. data/vendor/ruby/2.6.0/gems/zeitwerk-2.2.1/MIT-LICENSE +20 -0
  2265. data/vendor/ruby/2.6.0/gems/zeitwerk-2.2.1/README.md +650 -0
  2266. data/vendor/ruby/2.6.0/gems/zeitwerk-2.2.1/lib/zeitwerk.rb +12 -0
  2267. data/vendor/ruby/2.6.0/gems/zeitwerk-2.2.1/lib/zeitwerk/error.rb +10 -0
  2268. data/vendor/ruby/2.6.0/gems/zeitwerk-2.2.1/lib/zeitwerk/explicit_namespace.rb +80 -0
  2269. data/vendor/ruby/2.6.0/gems/zeitwerk-2.2.1/lib/zeitwerk/gem_inflector.rb +19 -0
  2270. data/vendor/ruby/2.6.0/gems/zeitwerk-2.2.1/lib/zeitwerk/inflector.rb +49 -0
  2271. data/vendor/ruby/2.6.0/gems/zeitwerk-2.2.1/lib/zeitwerk/kernel.rb +33 -0
  2272. data/vendor/ruby/2.6.0/gems/zeitwerk-2.2.1/lib/zeitwerk/loader.rb +765 -0
  2273. data/vendor/ruby/2.6.0/gems/zeitwerk-2.2.1/lib/zeitwerk/loader/callbacks.rb +71 -0
  2274. data/vendor/ruby/2.6.0/gems/zeitwerk-2.2.1/lib/zeitwerk/real_mod_name.rb +21 -0
  2275. data/vendor/ruby/2.6.0/gems/zeitwerk-2.2.1/lib/zeitwerk/registry.rb +147 -0
  2276. data/vendor/ruby/2.6.0/gems/zeitwerk-2.2.1/lib/zeitwerk/version.rb +5 -0
  2277. data/vendor/ruby/2.6.0/specifications/actionpack-6.0.1.gemspec +53 -0
  2278. data/vendor/ruby/2.6.0/specifications/actionview-6.0.1.gemspec +53 -0
  2279. data/vendor/ruby/2.6.0/specifications/activesupport-6.0.1.gemspec +47 -0
  2280. data/vendor/ruby/2.6.0/specifications/autoprefixer-rails-9.7.1.gemspec +47 -0
  2281. data/vendor/ruby/2.6.0/specifications/brakeman-4.7.1.gemspec +23 -0
  2282. data/vendor/ruby/2.6.0/specifications/jaro_winkler-1.5.4.gemspec +44 -0
  2283. data/vendor/ruby/2.6.0/specifications/minitest-5.13.0.gemspec +40 -0
  2284. data/vendor/ruby/2.6.0/specifications/nokogiri-1.10.5.gemspec +83 -0
  2285. data/vendor/ruby/2.6.0/specifications/railties-6.0.1.gemspec +53 -0
  2286. data/vendor/ruby/2.6.0/specifications/rubocop-0.76.0.gemspec +56 -0
  2287. data/vendor/ruby/2.6.0/specifications/zeitwerk-2.2.1.gemspec +21 -0
  2288. metadata +2281 -2
@@ -0,0 +1,2603 @@
1
+ # -*- racc -*-
2
+
3
+ class Ruby22Parser
4
+
5
+ token kCLASS kMODULE kDEF kUNDEF kBEGIN kRESCUE kENSURE kEND kIF kUNLESS
6
+ kTHEN kELSIF kELSE kCASE kWHEN kWHILE kUNTIL kFOR kBREAK kNEXT
7
+ kREDO kRETRY kIN kDO kDO_COND kDO_BLOCK kDO_LAMBDA kRETURN kYIELD kSUPER
8
+ kSELF kNIL kTRUE kFALSE kAND kOR kNOT kIF_MOD kUNLESS_MOD kWHILE_MOD
9
+ kUNTIL_MOD kRESCUE_MOD kALIAS kDEFINED klBEGIN klEND k__LINE__
10
+ k__FILE__ k__ENCODING__ tIDENTIFIER tFID tGVAR tIVAR tCONSTANT
11
+ tLABEL tCVAR tNTH_REF tBACK_REF tSTRING_CONTENT tINTEGER tFLOAT
12
+ tREGEXP_END tUPLUS tUMINUS tUMINUS_NUM tPOW tCMP tEQ tEQQ tNEQ
13
+ tGEQ tLEQ tANDOP tOROP tMATCH tNMATCH tDOT tDOT2 tDOT3 tAREF
14
+ tASET tLSHFT tRSHFT tCOLON2 tCOLON3 tOP_ASGN tASSOC tLPAREN
15
+ tLPAREN2 tRPAREN tLPAREN_ARG tLBRACK tLBRACK2 tRBRACK tLBRACE
16
+ tLBRACE_ARG tSTAR tSTAR2 tAMPER tAMPER2 tTILDE tPERCENT tDIVIDE
17
+ tPLUS tMINUS tLT tGT tPIPE tBANG tCARET tLCURLY tRCURLY
18
+ tBACK_REF2 tSYMBEG tSTRING_BEG tXSTRING_BEG tREGEXP_BEG
19
+ tWORDS_BEG tQWORDS_BEG tSTRING_DBEG tSTRING_DVAR tSTRING_END
20
+ tSTRING tSYMBOL tNL tEH tCOLON tCOMMA tSPACE tSEMI tLAMBDA
21
+ tLAMBEG tDSTAR tCHAR tSYMBOLS_BEG tQSYMBOLS_BEG tSTRING_DEND tUBANG
22
+ tRATIONAL tIMAGINARY
23
+ tLABEL_END
24
+
25
+ preclow
26
+ nonassoc tLOWEST
27
+ nonassoc tLBRACE_ARG
28
+ nonassoc kIF_MOD kUNLESS_MOD kWHILE_MOD kUNTIL_MOD
29
+ left kOR kAND
30
+ right kNOT
31
+ nonassoc kDEFINED
32
+ right tEQL tOP_ASGN
33
+ left kRESCUE_MOD
34
+ right tEH tCOLON
35
+ nonassoc tDOT2 tDOT3
36
+ left tOROP
37
+ left tANDOP
38
+ nonassoc tCMP tEQ tEQQ tNEQ tMATCH tNMATCH
39
+ left tGT tGEQ tLT tLEQ
40
+ left tPIPE tCARET
41
+ left tAMPER2
42
+ left tLSHFT tRSHFT
43
+ left tPLUS tMINUS
44
+ left tSTAR2 tDIVIDE tPERCENT # TODO: tSTAR2 -> tMULT
45
+ right tUMINUS_NUM tUMINUS
46
+ right tPOW
47
+ right tBANG tTILDE tUPLUS
48
+ prechigh
49
+
50
+ rule
51
+
52
+ program: {
53
+ self.lexer.lex_state = EXPR_BEG
54
+ }
55
+ top_compstmt
56
+ {
57
+ result = new_compstmt val
58
+ }
59
+
60
+ top_compstmt: top_stmts opt_terms
61
+ {
62
+ stmt, _ = val
63
+ result = stmt
64
+ }
65
+
66
+ top_stmts: none
67
+ | top_stmt
68
+ | top_stmts terms top_stmt
69
+ {
70
+ result = self.block_append val[0], val[2]
71
+ }
72
+ | error top_stmt
73
+
74
+ top_stmt: stmt
75
+ | klBEGIN
76
+ {
77
+ if (self.in_def || self.in_single > 0) then
78
+ debug20 1
79
+ yyerror "BEGIN in method"
80
+ end
81
+ self.env.extend
82
+ }
83
+ begin_block
84
+ {
85
+ (_, lineno), _, iter = val
86
+ iter.line lineno
87
+
88
+ (_, preexe,) = iter
89
+ preexe.line lineno
90
+
91
+ result = iter
92
+ }
93
+
94
+ begin_block: tLCURLY { result = lexer.lineno } top_compstmt tRCURLY
95
+ {
96
+ _, line, stmt, _ = val
97
+ result = new_iter s(:preexe).line(line), 0, stmt
98
+ }
99
+
100
+ bodystmt: compstmt opt_rescue k_else
101
+ {
102
+ res = _values[-2]
103
+ yyerror "else without rescue is useless" unless res
104
+ }
105
+ compstmt
106
+ opt_ensure
107
+ {
108
+ body, resc, _, _, els, ens = val
109
+
110
+ result = new_body [body, resc, els, ens]
111
+ }
112
+ | compstmt opt_rescue opt_ensure
113
+ {
114
+ body, resc, ens = val
115
+
116
+ result = new_body [body, resc, nil, ens]
117
+ }
118
+
119
+ compstmt: stmts opt_terms
120
+ {
121
+ result = new_compstmt val
122
+ }
123
+
124
+ stmts: none
125
+ | stmt_or_begin # TODO: newline_node ?
126
+ | stmts terms stmt_or_begin
127
+ {
128
+ result = self.block_append val[0], val[2]
129
+ }
130
+ | error stmt
131
+ {
132
+ result = val[1]
133
+ debug20 2, val, result
134
+ }
135
+
136
+ stmt_or_begin: stmt
137
+ | klBEGIN
138
+ {
139
+ yyerror "BEGIN is permitted only at toplevel"
140
+ }
141
+
142
+ stmt: kALIAS fitem
143
+ {
144
+ lexer.lex_state = EXPR_FNAME
145
+ }
146
+ fitem
147
+ {
148
+ (_, line), lhs, _, rhs = val
149
+ result = s(:alias, lhs, rhs).line(line).line line
150
+ }
151
+ | kALIAS tGVAR tGVAR
152
+ {
153
+ (_, line), lhs, rhs = val
154
+ result = s(:valias, lhs.to_sym, rhs.to_sym).line line
155
+ }
156
+ | kALIAS tGVAR tBACK_REF
157
+ {
158
+ (_, line), lhs, rhs = val
159
+ result = s(:valias, lhs.to_sym, :"$#{rhs}").line line
160
+ }
161
+ | kALIAS tGVAR tNTH_REF
162
+ {
163
+ yyerror "can't make alias for the number variables"
164
+ }
165
+ | kUNDEF undef_list
166
+ {
167
+ result = val[1]
168
+ }
169
+ | stmt kIF_MOD expr_value
170
+ {
171
+ t, _, c = val
172
+ result = new_if c, t, nil
173
+ }
174
+ | stmt kUNLESS_MOD expr_value
175
+ {
176
+ f, _, c = val
177
+ result = new_if c, nil, f
178
+ }
179
+ | stmt kWHILE_MOD expr_value
180
+ {
181
+ e, _, c = val
182
+ result = new_while e, c, true
183
+ }
184
+ | stmt kUNTIL_MOD expr_value
185
+ {
186
+ e, _, c = val
187
+ result = new_until e, c, true
188
+ }
189
+ | stmt kRESCUE_MOD stmt
190
+ {
191
+ body, _, resbody = val
192
+
193
+ resbody = new_resbody s(:array).line(resbody.line), resbody
194
+ result = new_rescue body, resbody
195
+ }
196
+ | klEND tLCURLY compstmt tRCURLY
197
+ {
198
+ (_, line), _, stmt, _ = val
199
+
200
+ if (self.in_def || self.in_single > 0) then
201
+ debug20 3
202
+ yyerror "END in method; use at_exit"
203
+ end
204
+
205
+ result = new_iter s(:postexe).line(line), 0, stmt
206
+ }
207
+ | command_asgn
208
+ | mlhs tEQL command_call
209
+ {
210
+ result = new_masgn val[0], val[2], :wrap
211
+ }
212
+ | lhs tEQL mrhs
213
+ {
214
+ lhs, _, rhs = val
215
+ result = new_assign lhs, s(:svalue, rhs).line(rhs.line)
216
+ }
217
+ | mlhs tEQL mrhs_arg
218
+ {
219
+ result = new_masgn val[0], val[2]
220
+ }
221
+ | expr
222
+
223
+ command_asgn: lhs tEQL command_rhs
224
+ {
225
+ result = new_assign val[0], val[2]
226
+ }
227
+ # | lhs tEQL command_asgn
228
+ # {
229
+ # result = new_assign val[0], val[2]
230
+ # }
231
+ | var_lhs tOP_ASGN command_rhs
232
+ {
233
+ result = new_op_asgn val
234
+ }
235
+ | primary_value tLBRACK2 opt_call_args rbracket tOP_ASGN command_rhs
236
+ {
237
+ result = new_op_asgn1 val
238
+ }
239
+ | primary_value call_op tIDENTIFIER tOP_ASGN command_rhs
240
+ {
241
+ prim, _, id, opasgn, rhs = val
242
+ result = s(:op_asgn, prim, rhs, id.to_sym, opasgn.to_sym)
243
+ if val[1] == '&.'
244
+ result.sexp_type = :safe_op_asgn
245
+ end
246
+ result.line = val[0].line
247
+ }
248
+ | primary_value call_op tCONSTANT tOP_ASGN command_rhs
249
+ {
250
+ result = s(:op_asgn, val[0], val[4], val[2].to_sym, val[3].to_sym)
251
+ if val[1] == '&.'
252
+ result.sexp_type = :safe_op_asgn
253
+ end
254
+ result.line = val[0].line
255
+ }
256
+ | primary_value tCOLON2 tCONSTANT tOP_ASGN command_rhs
257
+ {
258
+ result = s(:op_asgn, val[0], val[4], val[2], val[3])
259
+ debug20 4, val, result
260
+ }
261
+ | primary_value tCOLON2 tIDENTIFIER tOP_ASGN command_rhs
262
+ {
263
+ result = s(:op_asgn, val[0], val[4], val[2], val[3])
264
+ debug20 5, val, result
265
+ }
266
+ | backref tOP_ASGN command_rhs
267
+ {
268
+ self.backref_assign_error val[0]
269
+ }
270
+
271
+ command_rhs: command_call =tOP_ASGN
272
+ {
273
+ expr, = val
274
+ result = value_expr expr
275
+ }
276
+ | command_asgn
277
+
278
+ expr: command_call
279
+ | expr kAND expr
280
+ {
281
+ lhs, _, rhs = val
282
+ result = logical_op :and, lhs, rhs
283
+ }
284
+ | expr kOR expr
285
+ {
286
+ lhs, _, rhs = val
287
+ result = logical_op :or, lhs, rhs
288
+ }
289
+ | kNOT opt_nl expr
290
+ {
291
+ (_, line), _, expr = val
292
+ result = new_call(expr, :"!").line line
293
+ # REFACTOR: call_uni_op
294
+ }
295
+ | tBANG command_call
296
+ {
297
+ _, cmd = val
298
+ result = new_call(cmd, :"!").line cmd.line
299
+ # TODO: fix line number to tBANG... but causes BAD shift/reduce conflict
300
+ # REFACTOR: call_uni_op -- see parse26.y
301
+ }
302
+ | arg
303
+
304
+ expr_value: expr
305
+ {
306
+ result = value_expr(val[0])
307
+ }
308
+
309
+ expr_value_do: {
310
+ lexer.cond.push true
311
+ }
312
+ expr_value do
313
+ {
314
+ lexer.cond.pop
315
+ }
316
+ {
317
+ _, expr, _, _ = val
318
+ result = expr
319
+ }
320
+
321
+ command_call: command
322
+ | block_command
323
+
324
+ block_command: block_call
325
+ | block_call call_op2 operation2 command_args
326
+ {
327
+ blk, _, msg, args = val
328
+ result = new_call(blk, msg.to_sym, args).line blk.line
329
+ }
330
+
331
+ cmd_brace_block: tLBRACE_ARG
332
+ {
333
+ # self.env.extend(:dynamic)
334
+ result = self.lexer.lineno
335
+ }
336
+ brace_body tRCURLY
337
+ {
338
+ _, line, body, _ = val
339
+
340
+ result = body
341
+ result.line = line
342
+
343
+ # self.env.unextend
344
+ }
345
+
346
+ fcall: operation
347
+ {
348
+ msg, = val
349
+ result = new_call(nil, msg.to_sym).line lexer.lineno
350
+ }
351
+
352
+ command: fcall command_args =tLOWEST
353
+ {
354
+ call, args = val
355
+ result = call.concat args.sexp_body
356
+ }
357
+ | fcall command_args cmd_brace_block
358
+ {
359
+ call, args, block = val
360
+
361
+ result = call.concat args.sexp_body
362
+
363
+ if block then
364
+ block_dup_check result, block
365
+
366
+ result, operation = block, result
367
+ result.insert 1, operation
368
+ end
369
+ }
370
+ | primary_value call_op operation2 command_args =tLOWEST
371
+ {
372
+ lhs, callop, op, args = val
373
+ result = new_call lhs, op.to_sym, args, callop
374
+ }
375
+ | primary_value call_op operation2 command_args cmd_brace_block
376
+ {
377
+ recv, _, msg, args, block = val
378
+ call = new_call recv, msg.to_sym, args, val[1]
379
+
380
+ block_dup_check call, block
381
+
382
+ block.insert 1, call
383
+ result = block
384
+ }
385
+ | primary_value tCOLON2 operation2 command_args =tLOWEST
386
+ {
387
+ result = new_call val[0], val[2].to_sym, val[3]
388
+ }
389
+ | primary_value tCOLON2 operation2 command_args cmd_brace_block
390
+ {
391
+ recv, _, msg, args, block = val
392
+ call = new_call recv, msg.to_sym, args
393
+
394
+ block_dup_check call, block
395
+
396
+ block.insert 1, call
397
+ result = block
398
+ }
399
+ | kSUPER command_args
400
+ {
401
+ result = new_super val[1]
402
+ }
403
+ | kYIELD command_args
404
+ {
405
+ (_, line), args = val
406
+ result = new_yield args
407
+ result.line line # TODO: push to new_yield
408
+ }
409
+ | k_return call_args
410
+ {
411
+ line = val[0].last
412
+ result = s(:return, ret_args(val[1])).line(line)
413
+ }
414
+ | kBREAK call_args
415
+ {
416
+ (_, line), args = val
417
+ result = s(:break, ret_args(args)).line line
418
+ }
419
+ | kNEXT call_args
420
+ {
421
+ line = val[0].last
422
+ result = s(:next, ret_args(val[1])).line(line)
423
+ }
424
+
425
+ mlhs: mlhs_basic
426
+ | tLPAREN mlhs_inner rparen
427
+ {
428
+ result = val[1]
429
+ }
430
+
431
+ mlhs_inner: mlhs_basic
432
+ | tLPAREN mlhs_inner rparen
433
+ {
434
+ _, arg, _ = val
435
+ l = arg.line
436
+
437
+ result = s(:masgn, s(:array, arg).line(l)).line l
438
+ }
439
+
440
+ mlhs_basic: mlhs_head
441
+ {
442
+ head, = val
443
+ result = s(:masgn, head).line head.line
444
+ }
445
+ | mlhs_head mlhs_item
446
+ {
447
+ lhs, rhs = val
448
+ result = s(:masgn, lhs << rhs.compact).line lhs.line
449
+ }
450
+ | mlhs_head tSTAR mlhs_node
451
+ {
452
+ head, _, tail = val
453
+ head << s(:splat, tail).line(tail.line)
454
+ result = s(:masgn, head).line head.line
455
+ }
456
+ | mlhs_head tSTAR mlhs_node tCOMMA mlhs_post
457
+ {
458
+ ary1, _, splat, _, ary2 = val
459
+
460
+ result = list_append ary1, s(:splat, splat).line(splat.line)
461
+ result.concat ary2.sexp_body
462
+ result = s(:masgn, result).line result.line
463
+ }
464
+ | mlhs_head tSTAR
465
+ {
466
+ head, _ = val
467
+ l = head.line
468
+ result = s(:masgn, head << s(:splat).line(l)).line l
469
+ }
470
+ | mlhs_head tSTAR tCOMMA mlhs_post
471
+ {
472
+ head, _, _, post = val
473
+ ary = list_append head, s(:splat).line(head.line)
474
+ ary.concat post.sexp_body
475
+ result = s(:masgn, ary).line ary.line
476
+ }
477
+ | tSTAR mlhs_node
478
+ {
479
+ _, node = val
480
+ l = node.line
481
+ splat = s(:splat, node).line l
482
+ ary = s(:array, splat).line l
483
+ result = s(:masgn, ary).line l
484
+ }
485
+ | tSTAR mlhs_node tCOMMA mlhs_post
486
+ {
487
+ _, node, _, post = val
488
+
489
+ splat = s(:splat, node).line node.line
490
+ ary = s(:array, splat).line splat.line
491
+ ary.concat post.sexp_body
492
+ result = s(:masgn, ary).line ary.line
493
+ }
494
+ | tSTAR
495
+ {
496
+ l = lexer.lineno
497
+ result = s(:masgn, s(:array, s(:splat).line(l)).line(l)).line l
498
+ }
499
+ | tSTAR tCOMMA mlhs_post
500
+ {
501
+ _, _, post = val
502
+ l = post.line
503
+
504
+ splat = s(:splat).line l
505
+ ary = s(:array, splat, *post.sexp_body).line l
506
+ result = s(:masgn, ary).line l
507
+ }
508
+
509
+ mlhs_item: mlhs_node
510
+ | tLPAREN mlhs_inner rparen
511
+ {
512
+ result = val[1]
513
+ }
514
+
515
+ mlhs_head: mlhs_item tCOMMA
516
+ {
517
+ lhs, _ = val
518
+ result = s(:array, lhs).line lhs.line
519
+ }
520
+ | mlhs_head mlhs_item tCOMMA
521
+ {
522
+ result = val[0] << val[1].compact
523
+ }
524
+
525
+ mlhs_post: mlhs_item
526
+ {
527
+ item, = val
528
+ result = s(:array, item).line item.line
529
+ }
530
+ | mlhs_post tCOMMA mlhs_item
531
+ {
532
+ result = list_append val[0], val[2]
533
+ }
534
+
535
+ mlhs_node: user_variable
536
+ {
537
+ result = self.assignable val[0]
538
+ }
539
+ | keyword_variable
540
+ {
541
+ result = self.assignable val[0]
542
+ }
543
+ | primary_value tLBRACK2 opt_call_args rbracket
544
+ {
545
+ result = self.aryset val[0], val[2]
546
+ }
547
+ | primary_value call_op tIDENTIFIER
548
+ {
549
+ result = new_attrasgn val[0], val[2], val[1]
550
+ }
551
+ | primary_value tCOLON2 tIDENTIFIER
552
+ {
553
+ recv, _, id = val
554
+ result = new_attrasgn recv, id
555
+ }
556
+ | primary_value call_op tCONSTANT
557
+ {
558
+ result = new_attrasgn val[0], val[2], val[1]
559
+ }
560
+ | primary_value tCOLON2 tCONSTANT
561
+ {
562
+ if (self.in_def || self.in_single > 0) then
563
+ debug20 7
564
+ yyerror "dynamic constant assignment"
565
+ end
566
+
567
+ expr, _, id = val
568
+ l = expr.line
569
+
570
+ result = s(:const, s(:colon2, expr, id.to_sym).line(l), nil).line l
571
+ }
572
+ | tCOLON3 tCONSTANT
573
+ {
574
+ if (self.in_def || self.in_single > 0) then
575
+ debug20 8
576
+ yyerror "dynamic constant assignment"
577
+ end
578
+
579
+ _, id = val
580
+ l = lexer.lineno
581
+
582
+ result = s(:const, nil, s(:colon3, id.to_sym).line(l)).line l
583
+ }
584
+ | backref
585
+ {
586
+ self.backref_assign_error val[0]
587
+ }
588
+
589
+ lhs: user_variable
590
+ {
591
+ line = lexer.lineno
592
+ result = self.assignable val[0]
593
+ result.line = line
594
+ }
595
+ | keyword_variable
596
+ {
597
+ line = lexer.lineno
598
+ result = self.assignable val[0]
599
+ result.line = line
600
+ debug20 9, val, result
601
+ }
602
+ | primary_value tLBRACK2 opt_call_args rbracket
603
+ {
604
+ lhs, _, args, _ = val
605
+ result = self.aryset lhs, args
606
+ }
607
+ | primary_value call_op tIDENTIFIER # REFACTOR
608
+ {
609
+ lhs, op, id = val
610
+ result = new_attrasgn lhs, id, op
611
+ }
612
+ | primary_value tCOLON2 tIDENTIFIER
613
+ {
614
+ lhs, _, id = val
615
+ result = new_attrasgn lhs, id
616
+ }
617
+ | primary_value call_op tCONSTANT # REFACTOR?
618
+ {
619
+ result = new_attrasgn val[0], val[2], val[1]
620
+ }
621
+ | primary_value tCOLON2 tCONSTANT
622
+ {
623
+ expr, _, id = val
624
+
625
+ if (self.in_def || self.in_single > 0) then
626
+ debug20 10
627
+ yyerror "dynamic constant assignment"
628
+ end
629
+
630
+ l = expr.line
631
+ result = s(:const, s(:colon2, expr, id.to_sym).line(l)).line l
632
+ }
633
+ | tCOLON3 tCONSTANT
634
+ {
635
+ _, id = val
636
+
637
+ if (self.in_def || self.in_single > 0) then
638
+ debug20 11
639
+ yyerror "dynamic constant assignment"
640
+ end
641
+
642
+ l = lexer.lineno
643
+ result = s(:const, s(:colon3, id.to_sym).line(l)).line l
644
+ }
645
+ | backref
646
+ {
647
+ self.backref_assign_error val[0]
648
+ }
649
+
650
+ cname: tIDENTIFIER
651
+ {
652
+ yyerror "class/module name must be CONSTANT"
653
+ }
654
+ | tCONSTANT
655
+
656
+ cpath: tCOLON3 cname
657
+ {
658
+ _, name = val
659
+ result = s(:colon3, name.to_sym).line lexer.lineno
660
+ }
661
+ | cname
662
+ {
663
+ result = val[0].to_sym
664
+ }
665
+ | primary_value tCOLON2 cname
666
+ {
667
+ pval, _, name = val
668
+
669
+ result = s(:colon2, pval, name.to_sym)
670
+ result.line pval.line
671
+ }
672
+
673
+ fname: tIDENTIFIER | tCONSTANT | tFID
674
+ | op
675
+ {
676
+ lexer.lex_state = EXPR_END
677
+ result = val[0]
678
+ }
679
+
680
+ | reswords
681
+ {
682
+ (sym, _line), = val
683
+ lexer.lex_state = EXPR_END
684
+ result = sym
685
+ }
686
+
687
+ fsym: fname | symbol
688
+
689
+ fitem: fsym
690
+ {
691
+ id, = val
692
+ result = s(:lit, id.to_sym).line lexer.lineno
693
+ }
694
+ | dsym
695
+
696
+ undef_list: fitem
697
+ {
698
+ result = new_undef val[0]
699
+ }
700
+ |
701
+ undef_list tCOMMA
702
+ {
703
+ lexer.lex_state = EXPR_FNAME
704
+ }
705
+ fitem
706
+ {
707
+ result = new_undef val[0], val[3]
708
+ }
709
+
710
+ op: tPIPE | tCARET | tAMPER2 | tCMP | tEQ | tEQQ
711
+ | tMATCH | tNMATCH | tGT | tGEQ | tLT | tLEQ
712
+ | tNEQ | tLSHFT | tRSHFT | tPLUS | tMINUS | tSTAR2
713
+ | tSTAR | tDIVIDE | tPERCENT | tPOW | tDSTAR | tBANG | tTILDE
714
+ | tUPLUS | tUMINUS | tAREF | tASET | tBACK_REF2
715
+ # TODO: tUBANG dead?
716
+ | tUBANG
717
+
718
+ reswords: k__LINE__ | k__FILE__ | k__ENCODING__ | klBEGIN | klEND
719
+ | kALIAS | kAND | kBEGIN | kBREAK | kCASE
720
+ | kCLASS | kDEF | kDEFINED | kDO | kELSE
721
+ | kELSIF | kEND | kENSURE | kFALSE | kFOR
722
+ | kIN | kMODULE | kNEXT | kNIL | kNOT
723
+ | kOR | kREDO | kRESCUE | kRETRY | kRETURN
724
+ | kSELF | kSUPER | kTHEN | kTRUE | kUNDEF
725
+ | kWHEN | kYIELD | kIF | kUNLESS | kWHILE
726
+ | kUNTIL
727
+
728
+ arg: lhs tEQL arg_rhs
729
+ {
730
+ result = new_assign val[0], val[2]
731
+ }
732
+ | var_lhs tOP_ASGN arg_rhs
733
+ {
734
+ result = new_op_asgn val
735
+ }
736
+ | primary_value tLBRACK2 opt_call_args rbracket tOP_ASGN arg_rhs
737
+ {
738
+ result = new_op_asgn1 val
739
+ }
740
+ | primary_value call_op tIDENTIFIER tOP_ASGN arg_rhs
741
+ {
742
+ result = new_op_asgn2 val
743
+ }
744
+ | primary_value call_op tCONSTANT tOP_ASGN arg_rhs
745
+ {
746
+ result = new_op_asgn2 val
747
+ }
748
+ | primary_value tCOLON2 tIDENTIFIER tOP_ASGN arg_rhs
749
+ {
750
+ lhs, _, id, op, rhs = val
751
+
752
+ result = s(:op_asgn, lhs, rhs, id.to_sym, op.to_sym).line lhs.line
753
+ }
754
+ | primary_value tCOLON2 tCONSTANT tOP_ASGN arg_rhs
755
+ {
756
+ lhs1, _, lhs2, op, rhs = val
757
+
758
+ lhs = s(:colon2, lhs1, lhs2.to_sym).line lhs1.line
759
+ result = new_const_op_asgn [lhs, op, rhs]
760
+ }
761
+ | tCOLON3 tCONSTANT
762
+ {
763
+ result = self.lexer.lineno
764
+ }
765
+ tOP_ASGN arg_rhs
766
+ {
767
+ _, lhs, line, op, rhs = val
768
+
769
+ lhs = s(:colon3, lhs.to_sym).line line
770
+ result = new_const_op_asgn [lhs, op, rhs]
771
+ }
772
+ | backref tOP_ASGN arg_rhs
773
+ {
774
+ # TODO: lhs = var_field val[0]
775
+ asgn = new_op_asgn val
776
+ result = self.backref_assign_error asgn
777
+ }
778
+ | arg tDOT2 arg
779
+ {
780
+ v1, v2 = val[0], val[2]
781
+ if v1.node_type == :lit and v2.node_type == :lit and Integer === v1.last and Integer === v2.last then
782
+ result = s(:lit, (v1.last)..(v2.last)).line v1.line
783
+ else
784
+ result = s(:dot2, v1, v2).line v1.line
785
+ end
786
+ }
787
+ | arg tDOT3 arg
788
+ {
789
+ v1, v2 = val[0], val[2]
790
+ if v1.node_type == :lit and v2.node_type == :lit and Integer === v1.last and Integer === v2.last then
791
+ result = s(:lit, (v1.last)...(v2.last)).line v1.line
792
+ else
793
+ result = s(:dot3, v1, v2).line v1.line
794
+ end
795
+ }
796
+ | arg tPLUS arg
797
+ {
798
+ result = new_call val[0], :+, argl(val[2])
799
+ }
800
+ | arg tMINUS arg
801
+ {
802
+ result = new_call val[0], :-, argl(val[2])
803
+ }
804
+ | arg tSTAR2 arg # TODO: rename
805
+ {
806
+ result = new_call val[0], :*, argl(val[2])
807
+ }
808
+ | arg tDIVIDE arg
809
+ {
810
+ result = new_call val[0], :"/", argl(val[2])
811
+ }
812
+ | arg tPERCENT arg
813
+ {
814
+ result = new_call val[0], :"%", argl(val[2])
815
+ }
816
+ | arg tPOW arg
817
+ {
818
+ result = new_call val[0], :**, argl(val[2])
819
+ }
820
+ | tUMINUS_NUM simple_numeric tPOW arg
821
+ {
822
+ lit = s(:lit, val[1]).line lexer.lineno
823
+ result = new_call(new_call(lit, :"**", argl(val[3])), :"-@")
824
+
825
+ }
826
+ | tUPLUS arg
827
+ {
828
+ result = new_call val[1], :"+@"
829
+ }
830
+ | tUMINUS arg
831
+ {
832
+ result = new_call val[1], :"-@"
833
+ }
834
+ | arg tPIPE arg
835
+ {
836
+ result = new_call val[0], :"|", argl(val[2])
837
+ }
838
+ | arg tCARET arg
839
+ {
840
+ result = new_call val[0], :"^", argl(val[2])
841
+ }
842
+ | arg tAMPER2 arg
843
+ {
844
+ result = new_call val[0], :"&", argl(val[2])
845
+ }
846
+ | arg tCMP arg
847
+ {
848
+ result = new_call val[0], :"<=>", argl(val[2])
849
+ }
850
+ | rel_expr =tCMP
851
+ | arg tEQ arg
852
+ {
853
+ result = new_call val[0], :"==", argl(val[2])
854
+ }
855
+ | arg tEQQ arg
856
+ {
857
+ result = new_call val[0], :"===", argl(val[2])
858
+ }
859
+ | arg tNEQ arg
860
+ {
861
+ result = new_call val[0], :"!=", argl(val[2])
862
+ }
863
+ | arg tMATCH arg
864
+ {
865
+ lhs, _, rhs = val
866
+ result = new_match lhs, rhs
867
+ }
868
+ | arg tNMATCH arg
869
+ {
870
+ lhs, _, rhs = val
871
+ result = s(:not, new_match(lhs, rhs)).line lhs.line
872
+ }
873
+ | tBANG arg
874
+ {
875
+ _, arg = val
876
+ result = new_call arg, :"!"
877
+ result.line arg.line
878
+ }
879
+ | tTILDE arg
880
+ {
881
+ result = new_call value_expr(val[1]), :"~"
882
+ }
883
+ | arg tLSHFT arg
884
+ {
885
+ val[0] = value_expr val[0]
886
+ val[2] = value_expr val[2]
887
+ result = new_call val[0], :"\<\<", argl(val[2])
888
+ }
889
+ | arg tRSHFT arg
890
+ {
891
+ val[0] = value_expr val[0]
892
+ val[2] = value_expr val[2]
893
+ result = new_call val[0], :">>", argl(val[2])
894
+ }
895
+ | arg tANDOP arg
896
+ {
897
+ result = logical_op :and, val[0], val[2]
898
+ }
899
+ | arg tOROP arg
900
+ {
901
+ result = logical_op :or, val[0], val[2]
902
+ }
903
+ | kDEFINED opt_nl arg
904
+ {
905
+ (_, line), _, arg = val
906
+ result = s(:defined, arg).line line
907
+ }
908
+ | arg tEH arg opt_nl tCOLON arg
909
+ {
910
+ c, _, t, _, _, f = val
911
+ result = s(:if, c, t, f).line c.line
912
+ }
913
+ | primary
914
+
915
+ relop: tGT
916
+ | tLT
917
+ | tGEQ
918
+ | tLEQ
919
+
920
+ rel_expr: arg relop arg =tGT
921
+ {
922
+ lhs, op, rhs = val
923
+ result = new_call lhs, op.to_sym, argl(rhs)
924
+ }
925
+ | rel_expr relop arg =tGT
926
+ {
927
+ lhs, op, rhs = val
928
+ warn "comparison '%s' after comparison", op
929
+ result = new_call lhs, op.to_sym, argl(rhs)
930
+ }
931
+
932
+ arg_value: arg
933
+ {
934
+ result = value_expr(val[0])
935
+ }
936
+
937
+ aref_args: none
938
+ | args trailer
939
+ {
940
+ result = args [val[0]]
941
+ }
942
+ | args tCOMMA assocs trailer
943
+ {
944
+ result = args [val[0], array_to_hash(val[2])]
945
+ }
946
+ | assocs trailer
947
+ {
948
+ result = args [array_to_hash(val[0])]
949
+ }
950
+
951
+ arg_rhs: arg =tOP_ASGN
952
+ | arg kRESCUE_MOD arg
953
+ {
954
+ body, (_, line), resbody = val
955
+ body = value_expr body
956
+ resbody = remove_begin resbody
957
+
958
+ ary = s(:array).line line
959
+ result = new_rescue(body, new_resbody(ary, resbody))
960
+ }
961
+
962
+ paren_args: tLPAREN2 opt_call_args rparen
963
+ {
964
+ _, args, _ = val
965
+ result = args
966
+ }
967
+
968
+ opt_paren_args: none
969
+ | paren_args
970
+
971
+ opt_call_args: none
972
+ | call_args
973
+ | args tCOMMA
974
+ {
975
+ result = args val
976
+ }
977
+ | args tCOMMA assocs tCOMMA
978
+ {
979
+ result = args [val[0], array_to_hash(val[2])]
980
+ }
981
+ | assocs tCOMMA
982
+ {
983
+ result = args [array_to_hash(val[0])]
984
+ }
985
+
986
+ call_args: command
987
+ {
988
+ warning "parenthesize argument(s) for future version"
989
+ result = call_args val
990
+ }
991
+ | args opt_block_arg
992
+ {
993
+ result = call_args val
994
+ result = self.arg_blk_pass val[0], val[1]
995
+ }
996
+ | assocs opt_block_arg
997
+ {
998
+ result = call_args [array_to_hash(val[0])]
999
+ result = self.arg_blk_pass result, val[1]
1000
+ }
1001
+ | args tCOMMA assocs opt_block_arg
1002
+ {
1003
+ result = call_args [val[0], array_to_hash(val[2])]
1004
+ result = self.arg_blk_pass result, val[3]
1005
+ }
1006
+ | block_arg
1007
+ {
1008
+ result = call_args val
1009
+ }
1010
+
1011
+ command_args: {
1012
+ result = lexer.cmdarg.store true
1013
+ }
1014
+ call_args
1015
+ {
1016
+ lexer.cmdarg.restore val[0]
1017
+ result = val[1]
1018
+ }
1019
+
1020
+ block_arg: tAMPER arg_value
1021
+ {
1022
+ _, arg = val
1023
+ result = s(:block_pass, arg).line arg.line
1024
+ }
1025
+
1026
+ opt_block_arg: tCOMMA block_arg
1027
+ {
1028
+ result = val[1]
1029
+ }
1030
+ | none
1031
+
1032
+ args: arg_value
1033
+ {
1034
+ arg, = val
1035
+
1036
+ result = s(:array, arg).line arg.line
1037
+ }
1038
+ | tSTAR arg_value
1039
+ {
1040
+ _, arg = val
1041
+ result = s(:array, s(:splat, arg).line(arg.line)).line arg.line
1042
+ }
1043
+ | args tCOMMA arg_value
1044
+ {
1045
+ args, _, id = val
1046
+ result = self.list_append args, id
1047
+ }
1048
+ | args tCOMMA tSTAR { result = lexer.lineno } arg_value
1049
+ {
1050
+ args, _, _, line, id = val
1051
+ result = self.list_append args, s(:splat, id).line(line)
1052
+ }
1053
+
1054
+ mrhs_arg: mrhs
1055
+ {
1056
+ result = new_masgn_arg val[0]
1057
+ }
1058
+ | arg_value
1059
+ {
1060
+ result = new_masgn_arg val[0], :wrap
1061
+ }
1062
+
1063
+ mrhs: args tCOMMA arg_value
1064
+ {
1065
+ result = val[0] << val[2]
1066
+ }
1067
+ | args tCOMMA tSTAR arg_value
1068
+ {
1069
+ # FIX: bad shift/reduce conflict with rhs' comma star prod
1070
+ # TODO: make all tXXXX terminals include lexer.lineno
1071
+ arg, _, _, splat = val
1072
+ result = self.arg_concat arg, splat
1073
+ }
1074
+ | tSTAR arg_value
1075
+ {
1076
+ _, arg = val
1077
+ result = s(:splat, arg).line arg.line
1078
+ }
1079
+
1080
+ primary: literal
1081
+ | strings
1082
+ | xstring
1083
+ | regexp
1084
+ | words
1085
+ | qwords
1086
+ | symbols
1087
+ | qsymbols
1088
+ | var_ref
1089
+ | backref
1090
+ | tFID
1091
+ {
1092
+ msg, = val
1093
+ result = new_call nil, msg.to_sym
1094
+ }
1095
+ | k_begin
1096
+ {
1097
+ result = self.lexer.lineno
1098
+ # TODO:
1099
+ # $<val>1 = cmdarg_stack;
1100
+ # CMDARG_SET(0);
1101
+ }
1102
+ bodystmt k_end
1103
+ {
1104
+ # TODO: CMDARG_SET($<val>1);
1105
+ unless val[2] then
1106
+ result = s(:nil)
1107
+ else
1108
+ result = s(:begin, val[2])
1109
+ end
1110
+
1111
+ result.line = val[1]
1112
+ }
1113
+ | tLPAREN_ARG
1114
+ {
1115
+ lexer.lex_state = EXPR_ENDARG
1116
+ result = lexer.lineno
1117
+ }
1118
+ rparen
1119
+ {
1120
+ _, line, _ = val
1121
+ result = s(:begin).line line
1122
+ }
1123
+ | tLPAREN_ARG
1124
+ {
1125
+ result = lexer.cmdarg.store false
1126
+ }
1127
+ stmt
1128
+ {
1129
+ lexer.lex_state = EXPR_ENDARG
1130
+ }
1131
+ rparen
1132
+ {
1133
+ _, cmdarg, stmt, _, _, = val
1134
+ warning "(...) interpreted as grouped expression"
1135
+ lexer.cmdarg.restore cmdarg
1136
+ result = stmt
1137
+ }
1138
+ | tLPAREN compstmt tRPAREN
1139
+ {
1140
+ _, stmt, _ = val
1141
+ result = stmt
1142
+ result ||= s(:nil).line lexer.lineno
1143
+ result.paren = true
1144
+ }
1145
+ | primary_value tCOLON2 tCONSTANT
1146
+ {
1147
+ expr, _, id = val
1148
+
1149
+ result = s(:colon2, expr, id.to_sym).line expr.line
1150
+ }
1151
+ | tCOLON3 tCONSTANT
1152
+ {
1153
+ _, id = val
1154
+
1155
+ result = s(:colon3, id.to_sym).line lexer.lineno
1156
+ }
1157
+ | tLBRACK { result = lexer.lineno } aref_args tRBRACK
1158
+ {
1159
+ _, line, args, _ = val
1160
+ result = args || s(:array)
1161
+ result.sexp_type = :array # aref_args is :args
1162
+ result.line line
1163
+ }
1164
+ | tLBRACE
1165
+ {
1166
+ result = self.lexer.lineno
1167
+ }
1168
+ assoc_list tRCURLY
1169
+ {
1170
+ result = new_hash val
1171
+ }
1172
+ | k_return
1173
+ {
1174
+ (_, line), = val
1175
+ result = s(:return).line line
1176
+ }
1177
+ | kYIELD tLPAREN2 call_args rparen
1178
+ {
1179
+ result = new_yield val[2]
1180
+ }
1181
+ | kYIELD tLPAREN2 rparen
1182
+ {
1183
+ result = new_yield
1184
+ }
1185
+ | kYIELD
1186
+ {
1187
+ result = new_yield
1188
+ }
1189
+ | kDEFINED opt_nl tLPAREN2 expr rparen
1190
+ {
1191
+ (_, line), _, _, arg, _ = val
1192
+
1193
+ result = s(:defined, arg).line line
1194
+ }
1195
+ | kNOT tLPAREN2 expr rparen
1196
+ {
1197
+ _, _, lhs, _ = val
1198
+ result = new_call lhs, :"!"
1199
+ }
1200
+ | kNOT tLPAREN2 rparen
1201
+ {
1202
+ debug20 14, val, result
1203
+ }
1204
+ | fcall brace_block
1205
+ {
1206
+ call, iter = val
1207
+
1208
+ iter.insert 1, call
1209
+ result = iter
1210
+ # FIX: probably not: call.line = iter.line
1211
+ }
1212
+ | method_call
1213
+ | method_call brace_block
1214
+ {
1215
+ call, iter = val[0], val[1]
1216
+ block_dup_check call, iter
1217
+ iter.insert 1, call # FIX
1218
+ result = iter
1219
+ }
1220
+ | tLAMBDA lambda
1221
+ {
1222
+ result = val[1] # TODO: fix lineno
1223
+ }
1224
+ | k_if expr_value then compstmt if_tail k_end
1225
+ {
1226
+ _, c, _, t, f, _ = val
1227
+ result = new_if c, t, f
1228
+ }
1229
+ | k_unless expr_value then compstmt opt_else k_end
1230
+ {
1231
+ _, c, _, t, f, _ = val
1232
+ result = new_if c, f, t
1233
+ }
1234
+ | k_while expr_value_do compstmt k_end
1235
+ {
1236
+ _, cond, body, _ = val
1237
+ result = new_while body, cond, true
1238
+ }
1239
+ | k_until expr_value_do compstmt k_end
1240
+ {
1241
+ _, cond, body, _ = val
1242
+ result = new_until body, cond, true
1243
+ }
1244
+ | k_case expr_value opt_terms case_body k_end
1245
+ {
1246
+ (_, line), expr, _, body, _ = val
1247
+ result = new_case expr, body, line
1248
+ }
1249
+ | k_case opt_terms case_body k_end
1250
+ {
1251
+ (_, line), _, body, _ = val
1252
+ result = new_case nil, body, line
1253
+ }
1254
+ | k_for for_var kIN expr_value_do compstmt k_end
1255
+ {
1256
+ _, var, _, iter, body, _ = val
1257
+ result = new_for iter, var, body
1258
+ }
1259
+ | k_class
1260
+ {
1261
+ result = self.lexer.lineno
1262
+ }
1263
+ cpath superclass
1264
+ {
1265
+ self.comments.push self.lexer.comments
1266
+ if (self.in_def || self.in_single > 0) then
1267
+ yyerror "class definition in method body"
1268
+ end
1269
+ self.env.extend
1270
+ }
1271
+ bodystmt k_end
1272
+ {
1273
+ result = new_class val
1274
+ self.env.unextend
1275
+ self.lexer.comments # we don't care about comments in the body
1276
+ }
1277
+ | k_class tLSHFT
1278
+ {
1279
+ result = self.lexer.lineno
1280
+ }
1281
+ expr
1282
+ {
1283
+ result = self.in_def
1284
+ self.in_def = false
1285
+ }
1286
+ term
1287
+ {
1288
+ result = self.in_single
1289
+ self.in_single = 0
1290
+ self.env.extend
1291
+ }
1292
+ bodystmt k_end
1293
+ {
1294
+ result = new_sclass val
1295
+ self.env.unextend
1296
+ self.lexer.comments # we don't care about comments in the body
1297
+ }
1298
+ | k_module
1299
+ {
1300
+ result = self.lexer.lineno
1301
+ }
1302
+ cpath
1303
+ {
1304
+ self.comments.push self.lexer.comments
1305
+ yyerror "module definition in method body" if
1306
+ self.in_def or self.in_single > 0
1307
+
1308
+ self.env.extend
1309
+ }
1310
+ bodystmt k_end
1311
+ {
1312
+ result = new_module val
1313
+ self.env.unextend
1314
+ self.lexer.comments # we don't care about comments in the body
1315
+ }
1316
+ | k_def fname
1317
+ {
1318
+ result = [self.in_def, self.lexer.cmdarg.stack.dup]
1319
+
1320
+ self.comments.push self.lexer.comments
1321
+ self.in_def = true
1322
+ self.env.extend
1323
+ # TODO: local->cmdargs = cmdarg_stack;
1324
+ # TODO: port local_push_gen and local_pop_gen
1325
+ lexer.cmdarg.stack.replace [false]
1326
+ }
1327
+ f_arglist bodystmt { result = lexer.lineno } k_end
1328
+ {
1329
+ in_def, cmdarg = val[2]
1330
+
1331
+ result = new_defn val
1332
+
1333
+ lexer.cmdarg.stack.replace cmdarg
1334
+ self.env.unextend
1335
+ self.in_def = in_def
1336
+ self.lexer.comments # we don't care about comments in the body
1337
+ }
1338
+ | k_def singleton dot_or_colon
1339
+ {
1340
+ self.comments.push self.lexer.comments
1341
+ lexer.lex_state = EXPR_FNAME
1342
+ }
1343
+ fname
1344
+ {
1345
+ self.in_single += 1
1346
+ self.env.extend
1347
+ lexer.lex_state = EXPR_ENDFN # force for args
1348
+ result = [lexer.lineno, self.lexer.cmdarg.stack.dup]
1349
+ lexer.cmdarg.stack.replace [false]
1350
+ }
1351
+ f_arglist bodystmt k_end
1352
+ {
1353
+ _, cmdarg = val[5]
1354
+ result = new_defs val
1355
+
1356
+ lexer.cmdarg.stack.replace cmdarg
1357
+
1358
+ self.env.unextend
1359
+ self.in_single -= 1
1360
+ self.lexer.comments # we don't care about comments in the body
1361
+ }
1362
+ | kBREAK
1363
+ {
1364
+ (_, line), = val
1365
+ result = s(:break).line line
1366
+ }
1367
+ | kNEXT
1368
+ {
1369
+ (_, line), = val
1370
+ result = s(:next).line line
1371
+ }
1372
+ | kREDO
1373
+ {
1374
+ (_, line), = val
1375
+ result = s(:redo).line line
1376
+ }
1377
+ | kRETRY
1378
+ {
1379
+ (_, line), = val
1380
+ result = s(:retry).line line
1381
+ }
1382
+
1383
+ primary_value: primary
1384
+ {
1385
+ result = value_expr(val[0])
1386
+ }
1387
+
1388
+ # These are really stupid
1389
+ k_begin: kBEGIN
1390
+ k_if: kIF
1391
+ k_unless: kUNLESS
1392
+ k_while: kWHILE
1393
+ k_until: kUNTIL
1394
+ k_case: kCASE
1395
+ k_for: kFOR
1396
+ k_class: kCLASS
1397
+ k_module: kMODULE
1398
+ k_def: kDEF
1399
+ k_do: kDO
1400
+ k_do_block: kDO_BLOCK
1401
+ k_rescue: kRESCUE
1402
+ k_ensure: kENSURE
1403
+ k_when: kWHEN
1404
+ k_else: kELSE
1405
+ k_elsif: kELSIF
1406
+ k_end: kEND
1407
+ k_return: kRETURN
1408
+
1409
+ then: term
1410
+ | kTHEN
1411
+ | term kTHEN
1412
+
1413
+ do: term
1414
+ | kDO_COND
1415
+
1416
+ if_tail: opt_else
1417
+ | k_elsif expr_value then compstmt if_tail
1418
+ {
1419
+ (_, line), c, _, t, rest = val
1420
+
1421
+ result = s(:if, c, t, rest).line line
1422
+ }
1423
+
1424
+ opt_else: none
1425
+ | kELSE compstmt
1426
+ {
1427
+ result = val[1]
1428
+ }
1429
+
1430
+ for_var: lhs
1431
+ | mlhs
1432
+ {
1433
+ val[0].delete_at 1 if val[0][1].nil? # HACK
1434
+ }
1435
+
1436
+ f_marg: f_norm_arg
1437
+ | tLPAREN f_margs rparen
1438
+ {
1439
+ result = val[1]
1440
+ }
1441
+
1442
+ f_marg_list: f_marg
1443
+ {
1444
+ sym, = val
1445
+
1446
+ result = s(:array, sym).line lexer.lineno
1447
+ }
1448
+ | f_marg_list tCOMMA f_marg
1449
+ {
1450
+ result = list_append val[0], val[2]
1451
+ }
1452
+
1453
+ f_margs: f_marg_list
1454
+ {
1455
+ args, = val
1456
+
1457
+ result = block_var args
1458
+ }
1459
+ | f_marg_list tCOMMA tSTAR f_norm_arg
1460
+ {
1461
+ args, _, _, splat = val
1462
+
1463
+ result = block_var args, "*#{splat}".to_sym
1464
+ }
1465
+ | f_marg_list tCOMMA tSTAR f_norm_arg tCOMMA f_marg_list
1466
+ {
1467
+ args, _, _, splat, _, args2 = val
1468
+
1469
+ result = block_var args, "*#{splat}".to_sym, args2
1470
+ }
1471
+ | f_marg_list tCOMMA tSTAR
1472
+ {
1473
+ args, _, _ = val
1474
+
1475
+ result = block_var args, :*
1476
+ }
1477
+ | f_marg_list tCOMMA tSTAR tCOMMA f_marg_list
1478
+ {
1479
+ args, _, _, _, args2 = val
1480
+
1481
+ result = block_var args, :*, args2
1482
+ }
1483
+ | tSTAR f_norm_arg
1484
+ {
1485
+ _, splat = val
1486
+
1487
+ result = block_var :"*#{splat}"
1488
+ }
1489
+ | tSTAR f_norm_arg tCOMMA f_marg_list
1490
+ {
1491
+ _, splat, _, args = val
1492
+
1493
+ result = block_var :"*#{splat}", args
1494
+ }
1495
+ | tSTAR
1496
+ {
1497
+ result = block_var :*
1498
+ }
1499
+ | tSTAR tCOMMA f_marg_list
1500
+ {
1501
+ _, _, args = val
1502
+
1503
+ result = block_var :*, args
1504
+ }
1505
+
1506
+ block_args_tail: f_block_kwarg tCOMMA f_kwrest opt_f_block_arg
1507
+ {
1508
+ result = call_args val
1509
+ }
1510
+ | f_block_kwarg opt_f_block_arg
1511
+ {
1512
+ result = call_args val
1513
+ }
1514
+ | f_kwrest opt_f_block_arg
1515
+ {
1516
+ result = call_args val
1517
+ }
1518
+ | f_block_arg
1519
+ {
1520
+ line = lexer.lineno
1521
+ result = call_args val # TODO: push line down
1522
+ result.line line
1523
+ }
1524
+
1525
+ opt_block_args_tail: tCOMMA block_args_tail
1526
+ {
1527
+ result = args val
1528
+ }
1529
+ | none
1530
+
1531
+ block_param: f_arg tCOMMA f_block_optarg tCOMMA f_rest_arg opt_block_args_tail
1532
+ {
1533
+ result = args val
1534
+ }
1535
+ | f_arg tCOMMA f_block_optarg tCOMMA f_rest_arg tCOMMA f_arg opt_block_args_tail
1536
+ {
1537
+ result = args val
1538
+ }
1539
+ | f_arg tCOMMA f_block_optarg opt_block_args_tail
1540
+ {
1541
+ result = args val
1542
+ }
1543
+ | f_arg tCOMMA f_block_optarg tCOMMA f_arg opt_block_args_tail
1544
+ {
1545
+ result = args val
1546
+ }
1547
+ | f_arg tCOMMA f_rest_arg opt_block_args_tail
1548
+ {
1549
+ result = args val
1550
+ }
1551
+ | f_arg tCOMMA
1552
+ {
1553
+ result = args(val) << nil
1554
+ }
1555
+ | f_arg tCOMMA f_rest_arg tCOMMA f_arg opt_block_args_tail
1556
+ {
1557
+ result = args val
1558
+ }
1559
+ | f_arg opt_block_args_tail
1560
+ {
1561
+ result = args val
1562
+ }
1563
+ | f_block_optarg tCOMMA f_rest_arg opt_block_args_tail
1564
+ {
1565
+ result = args val
1566
+ }
1567
+ | f_block_optarg tCOMMA f_rest_arg tCOMMA f_arg opt_block_args_tail
1568
+ {
1569
+ result = args val
1570
+ }
1571
+ | f_block_optarg opt_block_args_tail
1572
+ {
1573
+ result = args val
1574
+ }
1575
+ | f_block_optarg tCOMMA f_arg opt_block_args_tail
1576
+ {
1577
+ result = args val
1578
+ }
1579
+ | f_rest_arg opt_block_args_tail
1580
+ {
1581
+ result = args val
1582
+ }
1583
+ | f_rest_arg tCOMMA f_arg opt_block_args_tail
1584
+ {
1585
+ result = args val
1586
+ }
1587
+ | block_args_tail
1588
+ {
1589
+ result = args val
1590
+ }
1591
+
1592
+ opt_block_param: none { result = 0 }
1593
+ | block_param_def
1594
+ {
1595
+ self.lexer.command_start = true
1596
+ }
1597
+
1598
+ block_param_def: tPIPE opt_bv_decl tPIPE
1599
+ {
1600
+ # TODO: current_arg = 0
1601
+ result = args val
1602
+ }
1603
+ | tOROP
1604
+ {
1605
+ result = s(:args).line lexer.lineno
1606
+ }
1607
+ | tPIPE block_param opt_bv_decl tPIPE
1608
+ {
1609
+ # TODO: current_arg = 0
1610
+ result = args val
1611
+ }
1612
+
1613
+ opt_bv_decl: opt_nl
1614
+ | opt_nl tSEMI bv_decls opt_nl
1615
+ {
1616
+ result = args val
1617
+ }
1618
+
1619
+ bv_decls: bvar
1620
+ {
1621
+ result = args val
1622
+ }
1623
+ | bv_decls tCOMMA bvar
1624
+ {
1625
+ result = args val
1626
+ }
1627
+
1628
+ bvar: tIDENTIFIER
1629
+ {
1630
+ id, = val
1631
+ line = lexer.lineno
1632
+ result = s(:shadow, id.to_sym).line line
1633
+ }
1634
+ | f_bad_arg
1635
+
1636
+ lambda: {
1637
+ self.env.extend :dynamic
1638
+ result = [lexer.lineno, lexer.lpar_beg]
1639
+ lexer.paren_nest += 1
1640
+ lexer.lpar_beg = lexer.paren_nest
1641
+ }
1642
+ f_larglist
1643
+ {
1644
+ result = lexer.cmdarg.store(false)
1645
+ }
1646
+ lambda_body
1647
+ {
1648
+ (line, lpar), args, cmdarg, body = val
1649
+ lexer.lpar_beg = lpar
1650
+
1651
+ lexer.cmdarg.restore cmdarg
1652
+ lexer.cmdarg.lexpop
1653
+
1654
+ call = s(:lambda).line line
1655
+ result = new_iter call, args, body
1656
+ result.line = line
1657
+ self.env.unextend
1658
+ }
1659
+
1660
+ f_larglist: tLPAREN2 f_args opt_bv_decl rparen
1661
+ {
1662
+ result = args val
1663
+ }
1664
+ | f_args
1665
+ {
1666
+ result = val[0]
1667
+ result = 0 if result == s(:args)
1668
+ }
1669
+
1670
+ lambda_body: tLAMBEG compstmt tRCURLY
1671
+ {
1672
+ result = val[1]
1673
+ }
1674
+ | kDO_LAMBDA bodystmt kEND
1675
+ {
1676
+ result = val[1]
1677
+ }
1678
+
1679
+ do_block: k_do_block do_body kEND
1680
+ {
1681
+ (_, line), iter, _ = val
1682
+ result = iter.line line
1683
+ }
1684
+
1685
+ block_call: command do_block
1686
+ {
1687
+ # TODO:
1688
+ ## if (nd_type($1) == NODE_YIELD) {
1689
+ ## compile_error(PARSER_ARG "block given to yield");
1690
+
1691
+ syntax_error "Both block arg and actual block given." if
1692
+ val[0].block_pass?
1693
+
1694
+ val = invert_block_call val if inverted? val
1695
+
1696
+ cmd, blk = val
1697
+
1698
+ result = blk
1699
+ result.insert 1, cmd
1700
+ }
1701
+ | block_call call_op2 operation2 opt_paren_args
1702
+ {
1703
+ result = new_call val[0], val[2].to_sym, val[3]
1704
+ }
1705
+ | block_call call_op2 operation2 opt_paren_args brace_block
1706
+ {
1707
+ iter1, _, name, args, iter2 = val
1708
+
1709
+ call = new_call iter1, name.to_sym, args
1710
+ iter2.insert 1, call
1711
+
1712
+ result = iter2
1713
+ }
1714
+ | block_call call_op2 operation2 command_args do_block
1715
+ {
1716
+ iter1, _, name, args, iter2 = val
1717
+
1718
+ call = new_call iter1, name.to_sym, args
1719
+ iter2.insert 1, call
1720
+
1721
+ result = iter2
1722
+ }
1723
+
1724
+ method_call: fcall
1725
+ {
1726
+ result = self.lexer.lineno
1727
+ }
1728
+ paren_args
1729
+ {
1730
+ call, lineno, args = val
1731
+
1732
+ result = call.concat args.sexp_body if args
1733
+ result.line lineno
1734
+ }
1735
+ | primary_value call_op operation2 opt_paren_args
1736
+ {
1737
+ result = new_call val[0], val[2].to_sym, val[3], val[1]
1738
+ }
1739
+ | primary_value tCOLON2 operation2 paren_args
1740
+ {
1741
+ result = new_call val[0], val[2].to_sym, val[3]
1742
+ }
1743
+ | primary_value tCOLON2 operation3
1744
+ {
1745
+ result = new_call val[0], val[2].to_sym
1746
+ }
1747
+ | primary_value call_op paren_args
1748
+ {
1749
+ result = new_call val[0], :call, val[2], val[1]
1750
+ }
1751
+ | primary_value tCOLON2 paren_args
1752
+ {
1753
+ result = new_call val[0], :call, val[2]
1754
+ }
1755
+ | kSUPER paren_args
1756
+ {
1757
+ result = new_super val[1]
1758
+ }
1759
+ | kSUPER
1760
+ {
1761
+ result = s(:zsuper).line lexer.lineno
1762
+ }
1763
+ | primary_value tLBRACK2 opt_call_args rbracket
1764
+ {
1765
+ result = new_aref val
1766
+ }
1767
+
1768
+ brace_block: tLCURLY
1769
+ {
1770
+ self.env.extend :dynamic
1771
+ result = self.lexer.lineno
1772
+ }
1773
+ brace_body tRCURLY
1774
+ {
1775
+ _, line, body, _ = val
1776
+
1777
+ result = body
1778
+ result.line = line
1779
+
1780
+ self.env.unextend
1781
+ }
1782
+ | k_do
1783
+ {
1784
+ self.env.extend :dynamic
1785
+ result = self.lexer.lineno
1786
+ }
1787
+ do_body kEND
1788
+ {
1789
+ _, line, body, _ = val
1790
+
1791
+ result = body
1792
+ result.line = line
1793
+
1794
+ self.env.unextend
1795
+ }
1796
+
1797
+ brace_body: { self.env.extend :dynamic; result = self.lexer.lineno }
1798
+ { result = lexer.cmdarg.store(false) }
1799
+ opt_block_param compstmt
1800
+ {
1801
+ line, cmdarg, param, cmpstmt = val
1802
+
1803
+ result = new_brace_body param, cmpstmt, line
1804
+ self.env.unextend
1805
+ lexer.cmdarg.restore cmdarg
1806
+ lexer.cmdarg.pop # because of: cmdarg_stack >> 1 ?
1807
+ }
1808
+
1809
+ do_body: { self.env.extend :dynamic; result = self.lexer.lineno }
1810
+ { result = lexer.cmdarg.store(false) }
1811
+ opt_block_param
1812
+ compstmt
1813
+ {
1814
+ line, cmdarg, param, cmpstmt = val
1815
+
1816
+ result = new_do_body param, cmpstmt, line
1817
+ self.env.unextend
1818
+ lexer.cmdarg.restore cmdarg
1819
+ }
1820
+
1821
+ case_body: k_when
1822
+ {
1823
+ result = self.lexer.lineno
1824
+ }
1825
+ args then compstmt cases
1826
+ {
1827
+ result = new_when(val[2], val[4])
1828
+ result.line = val[1]
1829
+ result << val[5] if val[5]
1830
+ }
1831
+
1832
+ cases: opt_else | case_body
1833
+
1834
+ opt_rescue: k_rescue exc_list exc_var then compstmt opt_rescue
1835
+ {
1836
+ (_, line), klasses, var, _, body, rest = val
1837
+
1838
+ klasses ||= s(:array)
1839
+ klasses << new_assign(var, s(:gvar, :"$!").line(var.line)) if var
1840
+ klasses.line line
1841
+
1842
+ result = new_resbody(klasses, body)
1843
+ result << rest if rest # UGH, rewritten above
1844
+ }
1845
+ |
1846
+ {
1847
+ result = nil
1848
+ }
1849
+
1850
+ exc_list: arg_value
1851
+ {
1852
+ arg, = val
1853
+ result = s(:array, arg).line arg.line
1854
+ }
1855
+ | mrhs
1856
+ | none
1857
+
1858
+ exc_var: tASSOC lhs
1859
+ {
1860
+ result = val[1]
1861
+ }
1862
+ | none
1863
+
1864
+ opt_ensure: k_ensure compstmt
1865
+ {
1866
+ (_, line), body = val
1867
+
1868
+ result = body || s(:nil).line(line)
1869
+ }
1870
+ | none
1871
+
1872
+ literal: numeric
1873
+ {
1874
+ line = lexer.lineno
1875
+ result = s(:lit, val[0])
1876
+ result.line = line
1877
+ }
1878
+ | symbol
1879
+ {
1880
+ line = lexer.lineno
1881
+ result = s(:lit, val[0])
1882
+ result.line = line
1883
+ }
1884
+ | dsym
1885
+
1886
+ strings: string
1887
+ {
1888
+ str, = val
1889
+ str = s(:dstr, str.value) if str.sexp_type == :evstr
1890
+ result = str
1891
+ }
1892
+
1893
+ string: tCHAR
1894
+ {
1895
+ debug20 23, val, result
1896
+ }
1897
+ | string1
1898
+ | string string1
1899
+ {
1900
+ result = self.literal_concat val[0], val[1]
1901
+ }
1902
+
1903
+ string1: tSTRING_BEG string_contents tSTRING_END
1904
+ {
1905
+ _, str, (_, func) = val
1906
+
1907
+ str = dedent str if func =~ RubyLexer::STR_FUNC_ICNTNT
1908
+
1909
+ result = str
1910
+ }
1911
+ | tSTRING
1912
+ {
1913
+ result = new_string val
1914
+ }
1915
+
1916
+ xstring: tXSTRING_BEG xstring_contents tSTRING_END
1917
+ {
1918
+ result = new_xstring val[1]
1919
+ # TODO: dedent?!?! SERIOUSLY?!?
1920
+ }
1921
+
1922
+ regexp: tREGEXP_BEG regexp_contents tREGEXP_END
1923
+ {
1924
+ result = new_regexp val
1925
+ }
1926
+
1927
+ words: tWORDS_BEG tSPACE tSTRING_END
1928
+ {
1929
+ result = s(:array).line lexer.lineno
1930
+ }
1931
+ | tWORDS_BEG word_list tSTRING_END
1932
+ {
1933
+ result = val[1]
1934
+ }
1935
+
1936
+ word_list: none
1937
+ {
1938
+ result = new_word_list
1939
+ }
1940
+ | word_list word tSPACE
1941
+ {
1942
+ result = val[0].dup << new_word_list_entry(val)
1943
+ }
1944
+
1945
+ word: string_content
1946
+ | word string_content
1947
+ {
1948
+ result = self.literal_concat val[0], val[1]
1949
+ }
1950
+
1951
+ symbols: tSYMBOLS_BEG tSPACE tSTRING_END
1952
+ {
1953
+ result = s(:array).line lexer.lineno
1954
+ }
1955
+ | tSYMBOLS_BEG { result = lexer.lineno } symbol_list tSTRING_END
1956
+ {
1957
+ _, line, list, _, = val
1958
+ list.line = line
1959
+ result = list
1960
+ }
1961
+
1962
+ symbol_list: none
1963
+ {
1964
+ result = new_symbol_list.line lexer.lineno
1965
+ }
1966
+ | symbol_list word tSPACE
1967
+ {
1968
+ list, * = val
1969
+ result = list.dup << new_symbol_list_entry(val)
1970
+ }
1971
+
1972
+ qwords: tQWORDS_BEG tSPACE tSTRING_END
1973
+ {
1974
+ result = s(:array).line lexer.lineno
1975
+ }
1976
+ | tQWORDS_BEG qword_list tSTRING_END
1977
+ {
1978
+ result = val[1]
1979
+ }
1980
+
1981
+ qsymbols: tQSYMBOLS_BEG tSPACE tSTRING_END
1982
+ {
1983
+ result = s(:array).line lexer.lineno # FIX
1984
+ }
1985
+ | tQSYMBOLS_BEG qsym_list tSTRING_END
1986
+ {
1987
+ result = val[1]
1988
+ }
1989
+
1990
+ qword_list: none
1991
+ {
1992
+ result = new_qword_list
1993
+ }
1994
+ | qword_list tSTRING_CONTENT tSPACE
1995
+ {
1996
+ result = val[0].dup << new_qword_list_entry(val)
1997
+ }
1998
+
1999
+ qsym_list: none
2000
+ {
2001
+ result = new_qsym_list
2002
+ }
2003
+ | qsym_list tSTRING_CONTENT tSPACE
2004
+ {
2005
+ result = val[0].dup << new_qsym_list_entry(val)
2006
+ }
2007
+
2008
+ string_contents: none
2009
+ {
2010
+ result = s(:str, "").line lexer.lineno
2011
+ }
2012
+ | string_contents string_content
2013
+ {
2014
+ v1, v2 = val
2015
+ result = literal_concat v1, v2
2016
+ }
2017
+
2018
+ xstring_contents: none
2019
+ {
2020
+ result = nil
2021
+ }
2022
+ | xstring_contents string_content
2023
+ {
2024
+ v1, v2 = val
2025
+ result = literal_concat v1, v2
2026
+ }
2027
+
2028
+ regexp_contents: none
2029
+ {
2030
+ result = nil
2031
+ }
2032
+ | regexp_contents string_content
2033
+ {
2034
+ v1, v2 = val
2035
+ result = literal_concat v1, v2
2036
+ }
2037
+
2038
+ string_content: tSTRING_CONTENT
2039
+ {
2040
+ result = new_string val
2041
+ }
2042
+ | tSTRING_DVAR
2043
+ {
2044
+ result = lexer.lex_strterm
2045
+
2046
+ lexer.lex_strterm = nil
2047
+ lexer.lex_state = EXPR_BEG
2048
+ }
2049
+ string_dvar
2050
+ {
2051
+ _, strterm, str = val
2052
+ lexer.lex_strterm = strterm
2053
+ result = s(:evstr, str).line str.line
2054
+ }
2055
+ | tSTRING_DBEG
2056
+ {
2057
+ result = [lexer.lex_strterm,
2058
+ lexer.brace_nest,
2059
+ lexer.string_nest, # TODO: remove
2060
+ lexer.cond.store,
2061
+ lexer.cmdarg.store,
2062
+ lexer.lex_state,
2063
+ lexer.lineno,
2064
+ ]
2065
+
2066
+ lexer.lex_strterm = nil
2067
+ lexer.brace_nest = 0
2068
+ lexer.string_nest = 0
2069
+
2070
+ lexer.lex_state = EXPR_BEG
2071
+ }
2072
+ compstmt
2073
+ tSTRING_DEND
2074
+ {
2075
+ _, memo, stmt, _ = val
2076
+
2077
+ lex_strterm, brace_nest, string_nest, oldcond, oldcmdarg, oldlex_state, line = memo
2078
+
2079
+ lexer.lex_strterm = lex_strterm
2080
+ lexer.brace_nest = brace_nest
2081
+ lexer.string_nest = string_nest
2082
+
2083
+ lexer.cond.restore oldcond
2084
+ lexer.cmdarg.restore oldcmdarg
2085
+
2086
+ lexer.lex_state = oldlex_state
2087
+
2088
+ case stmt
2089
+ when Sexp then
2090
+ case stmt.sexp_type
2091
+ when :str, :dstr, :evstr then
2092
+ result = stmt
2093
+ else
2094
+ result = s(:evstr, stmt).line line
2095
+ end
2096
+ when nil then
2097
+ result = s(:evstr).line line
2098
+ else
2099
+ debug20 25
2100
+ raise "unknown string body: #{stmt.inspect}"
2101
+ end
2102
+ }
2103
+
2104
+ string_dvar: tGVAR { result = s(:gvar, val[0].to_sym).line lexer.lineno }
2105
+ | tIVAR { result = s(:ivar, val[0].to_sym).line lexer.lineno }
2106
+ | tCVAR { result = s(:cvar, val[0].to_sym).line lexer.lineno }
2107
+ | backref
2108
+
2109
+ symbol: tSYMBEG sym
2110
+ {
2111
+ lexer.lex_state = EXPR_END
2112
+ result = val[1].to_sym
2113
+ }
2114
+ | tSYMBOL
2115
+ {
2116
+ result = val[0].to_sym
2117
+ }
2118
+
2119
+ sym: fname | tIVAR | tGVAR | tCVAR
2120
+
2121
+ dsym: tSYMBEG xstring_contents tSTRING_END
2122
+ {
2123
+ _, result, _ = val
2124
+
2125
+ lexer.lex_state = EXPR_END
2126
+
2127
+ result ||= s(:str, "").line lexer.lineno
2128
+
2129
+ case result.sexp_type
2130
+ when :dstr then
2131
+ result.sexp_type = :dsym
2132
+ when :str then
2133
+ result = s(:lit, result.last.to_sym).line result.line
2134
+ when :evstr then
2135
+ result = s(:dsym, "", result).line result.line
2136
+ else
2137
+ debug20 26, val, result
2138
+ end
2139
+ }
2140
+
2141
+ numeric: simple_numeric
2142
+ | tUMINUS_NUM simple_numeric
2143
+ {
2144
+ result = -val[1] # TODO: pt_testcase
2145
+ }
2146
+
2147
+ simple_numeric: tINTEGER
2148
+ | tFLOAT
2149
+ | tRATIONAL
2150
+ | tIMAGINARY
2151
+
2152
+ user_variable: tIDENTIFIER
2153
+ | tIVAR
2154
+ | tGVAR
2155
+ | tCONSTANT
2156
+ | tCVAR
2157
+
2158
+ keyword_variable: kNIL { result = s(:nil).line lexer.lineno }
2159
+ | kSELF { result = s(:self).line lexer.lineno }
2160
+ | kTRUE { result = s(:true).line lexer.lineno }
2161
+ | kFALSE { result = s(:false).line lexer.lineno }
2162
+ | k__FILE__ { result = s(:str, self.file).line lexer.lineno }
2163
+ | k__LINE__ { result = s(:lit, lexer.lineno).line lexer.lineno }
2164
+ | k__ENCODING__
2165
+ {
2166
+ l = lexer.lineno
2167
+ result =
2168
+ if defined? Encoding then
2169
+ s(:colon2, s(:const, :Encoding).line(l), :UTF_8).line l
2170
+ else
2171
+ s(:str, "Unsupported!").line l
2172
+ end
2173
+ }
2174
+
2175
+ var_ref: user_variable
2176
+ {
2177
+ var = val[0]
2178
+ result = Sexp === var ? var : self.gettable(var)
2179
+ }
2180
+ | keyword_variable
2181
+ {
2182
+ var = val[0]
2183
+ result = Sexp === var ? var : self.gettable(var)
2184
+ }
2185
+
2186
+ var_lhs: user_variable
2187
+ {
2188
+ result = self.assignable val[0]
2189
+ }
2190
+ | keyword_variable
2191
+ {
2192
+ result = self.assignable val[0]
2193
+ debug20 29, val, result
2194
+ }
2195
+
2196
+ backref: tNTH_REF { result = s(:nth_ref, val[0]).line lexer.lineno }
2197
+ | tBACK_REF { result = s(:back_ref, val[0]).line lexer.lineno }
2198
+
2199
+ superclass: tLT
2200
+ {
2201
+ lexer.lex_state = EXPR_BEG
2202
+ lexer.command_start = true
2203
+ }
2204
+ expr_value term
2205
+ {
2206
+ result = val[2]
2207
+ }
2208
+ | none
2209
+ {
2210
+ result = nil
2211
+ }
2212
+
2213
+ f_arglist: tLPAREN2 f_args rparen
2214
+ {
2215
+ result = val[1]
2216
+ self.lexer.lex_state = EXPR_BEG
2217
+ self.lexer.command_start = true
2218
+ }
2219
+ | {
2220
+ result = self.in_kwarg
2221
+ self.in_kwarg = true
2222
+ self.lexer.lex_state |= EXPR_LABEL
2223
+ }
2224
+ f_args term
2225
+ {
2226
+ kwarg, args, _ = val
2227
+
2228
+ self.in_kwarg = kwarg
2229
+ result = args
2230
+ lexer.lex_state = EXPR_BEG
2231
+ lexer.command_start = true
2232
+ }
2233
+
2234
+ args_tail: f_kwarg tCOMMA f_kwrest opt_f_block_arg
2235
+ {
2236
+ result = args val
2237
+ }
2238
+ | f_kwarg opt_f_block_arg
2239
+ {
2240
+ result = args val
2241
+ }
2242
+ | f_kwrest opt_f_block_arg
2243
+ {
2244
+ result = args val
2245
+ }
2246
+ | f_block_arg
2247
+
2248
+ opt_args_tail: tCOMMA args_tail
2249
+ {
2250
+ result = val[1]
2251
+ }
2252
+ |
2253
+ {
2254
+ result = nil
2255
+ }
2256
+
2257
+ f_args: f_arg tCOMMA f_optarg tCOMMA f_rest_arg opt_args_tail
2258
+ {
2259
+ result = args val
2260
+ }
2261
+ | f_arg tCOMMA f_optarg tCOMMA f_rest_arg tCOMMA f_arg opt_args_tail
2262
+ {
2263
+ result = args val
2264
+ }
2265
+ | f_arg tCOMMA f_optarg opt_args_tail
2266
+ {
2267
+ result = args val
2268
+ }
2269
+ | f_arg tCOMMA f_optarg tCOMMA f_arg opt_args_tail
2270
+ {
2271
+ result = args val
2272
+ }
2273
+ | f_arg tCOMMA f_rest_arg opt_args_tail
2274
+ {
2275
+ result = args val
2276
+ }
2277
+ | f_arg tCOMMA f_rest_arg tCOMMA f_arg opt_args_tail
2278
+ {
2279
+ result = args val
2280
+ }
2281
+ | f_arg opt_args_tail
2282
+ {
2283
+ result = args val
2284
+ }
2285
+ | f_optarg tCOMMA f_rest_arg opt_args_tail
2286
+ {
2287
+ result = args val
2288
+ }
2289
+ | f_optarg tCOMMA f_rest_arg tCOMMA f_arg opt_args_tail
2290
+ {
2291
+ result = args val
2292
+ }
2293
+ | f_optarg opt_args_tail
2294
+ {
2295
+ result = args val
2296
+ }
2297
+ | f_optarg tCOMMA f_arg opt_args_tail
2298
+ {
2299
+ result = args val
2300
+ }
2301
+ | f_rest_arg opt_args_tail
2302
+ {
2303
+ result = args val
2304
+ }
2305
+ | f_rest_arg tCOMMA f_arg opt_args_tail
2306
+ {
2307
+ result = args val
2308
+ }
2309
+ | args_tail
2310
+ {
2311
+ result = args val
2312
+ }
2313
+ |
2314
+ {
2315
+ result = args val
2316
+ }
2317
+
2318
+ f_bad_arg: tCONSTANT
2319
+ {
2320
+ yyerror "formal argument cannot be a constant"
2321
+ }
2322
+ | tIVAR
2323
+ {
2324
+ yyerror "formal argument cannot be an instance variable"
2325
+ }
2326
+ | tGVAR
2327
+ {
2328
+ yyerror "formal argument cannot be a global variable"
2329
+ }
2330
+ | tCVAR
2331
+ {
2332
+ yyerror "formal argument cannot be a class variable"
2333
+ }
2334
+
2335
+ f_norm_arg: f_bad_arg
2336
+ | tIDENTIFIER
2337
+ {
2338
+ identifier = val[0].to_sym
2339
+ self.env[identifier] = :lvar
2340
+
2341
+ result = identifier
2342
+ }
2343
+
2344
+ f_arg_asgn: f_norm_arg
2345
+
2346
+ f_arg_item: f_arg_asgn
2347
+ | tLPAREN f_margs rparen
2348
+ {
2349
+ result = val[1]
2350
+ }
2351
+
2352
+ f_arg: f_arg_item
2353
+ {
2354
+ arg, = val
2355
+
2356
+ case arg
2357
+ when Symbol then
2358
+ result = s(:args, arg).line lexer.lineno
2359
+ when Sexp then
2360
+ result = arg
2361
+ else
2362
+ debug20 32
2363
+ raise "Unknown f_arg type: #{val.inspect}"
2364
+ end
2365
+ }
2366
+ | f_arg tCOMMA f_arg_item
2367
+ {
2368
+ list, _, item = val
2369
+
2370
+ if list.sexp_type == :args then
2371
+ result = list
2372
+ else
2373
+ result = s(:args, list).line list.line
2374
+ end
2375
+
2376
+ result << item
2377
+ }
2378
+
2379
+ f_label: tLABEL
2380
+
2381
+ f_kw: f_label arg_value
2382
+ {
2383
+ # TODO: new_kw_arg
2384
+ (label, line), arg = val
2385
+
2386
+ identifier = label.to_sym
2387
+ self.env[identifier] = :lvar
2388
+
2389
+ kwarg = s(:kwarg, identifier, arg).line line
2390
+ result = s(:array, kwarg).line line
2391
+ }
2392
+ | f_label
2393
+ {
2394
+ (label, line), = val
2395
+
2396
+ id = label.to_sym
2397
+ self.env[id] = :lvar
2398
+
2399
+ result = s(:array, s(:kwarg, id).line(line)).line line
2400
+ }
2401
+
2402
+ f_block_kw: f_label primary_value
2403
+ {
2404
+ # TODO: new_kw_arg
2405
+ (label, line), expr = val
2406
+ id = label.to_sym
2407
+ self.env[id] = :lvar
2408
+
2409
+ result = s(:array, s(:kwarg, id, expr).line(line)).line line
2410
+ }
2411
+ | f_label
2412
+ {
2413
+ # TODO: new_kw_arg
2414
+ (label, line), = val
2415
+ id = label.to_sym
2416
+ self.env[id] = :lvar
2417
+
2418
+ result = s(:array, s(:kwarg, id).line(line)).line line
2419
+ }
2420
+
2421
+ f_block_kwarg: f_block_kw
2422
+ | f_block_kwarg tCOMMA f_block_kw
2423
+ {
2424
+ list, _, item = val
2425
+ result = list << item.last
2426
+ }
2427
+
2428
+ f_kwarg: f_kw
2429
+ | f_kwarg tCOMMA f_kw
2430
+ {
2431
+ result = args val
2432
+ }
2433
+
2434
+ kwrest_mark: tPOW
2435
+ | tDSTAR
2436
+
2437
+ f_kwrest: kwrest_mark tIDENTIFIER
2438
+ {
2439
+ name = val[1].to_sym
2440
+ self.assignable name
2441
+ result = :"**#{name}"
2442
+ }
2443
+ | kwrest_mark
2444
+ {
2445
+ result = :"**"
2446
+ }
2447
+
2448
+ f_opt: f_arg_asgn tEQL arg_value
2449
+ {
2450
+ result = self.assignable val[0], val[2]
2451
+ # TODO: detect duplicate names
2452
+ }
2453
+
2454
+ f_block_opt: f_arg_asgn tEQL primary_value
2455
+ {
2456
+ result = self.assignable val[0], val[2]
2457
+ }
2458
+
2459
+ f_block_optarg: f_block_opt
2460
+ {
2461
+ optblk, = val
2462
+ result = s(:block, optblk).line optblk.line
2463
+ }
2464
+ | f_block_optarg tCOMMA f_block_opt
2465
+ {
2466
+ optarg, _, optblk = val
2467
+ result = optarg
2468
+ result << optblk
2469
+ }
2470
+
2471
+ f_optarg: f_opt
2472
+ {
2473
+ opt, = val
2474
+ result = s(:block, opt).line opt.line
2475
+ }
2476
+ | f_optarg tCOMMA f_opt
2477
+ {
2478
+ result = self.block_append val[0], val[2]
2479
+ }
2480
+
2481
+ restarg_mark: tSTAR2 | tSTAR
2482
+
2483
+ f_rest_arg: restarg_mark tIDENTIFIER
2484
+ {
2485
+ # TODO: differs from parse.y - needs tests
2486
+ name = val[1].to_sym
2487
+ self.assignable name
2488
+ result = :"*#{name}"
2489
+ }
2490
+ | restarg_mark
2491
+ {
2492
+ name = :"*"
2493
+ self.env[name] = :lvar
2494
+ result = name
2495
+ }
2496
+
2497
+ blkarg_mark: tAMPER2 | tAMPER
2498
+
2499
+ f_block_arg: blkarg_mark tIDENTIFIER
2500
+ {
2501
+ identifier = val[1].to_sym
2502
+
2503
+ self.env[identifier] = :lvar
2504
+ result = "&#{identifier}".to_sym
2505
+ }
2506
+
2507
+ opt_f_block_arg: tCOMMA f_block_arg
2508
+ {
2509
+ result = val[1]
2510
+ }
2511
+ |
2512
+ {
2513
+ result = nil
2514
+ }
2515
+
2516
+ singleton: var_ref
2517
+ | tLPAREN2
2518
+ {
2519
+ lexer.lex_state = EXPR_BEG
2520
+ }
2521
+ expr rparen
2522
+ {
2523
+ result = val[2]
2524
+ yyerror "Can't define single method for literals." if
2525
+ result.sexp_type == :lit
2526
+ }
2527
+
2528
+ assoc_list: none
2529
+ {
2530
+ result = s(:array).line lexer.lineno
2531
+ }
2532
+ | assocs trailer
2533
+
2534
+ assocs: assoc
2535
+ | assocs tCOMMA assoc
2536
+ {
2537
+ list = val[0].dup
2538
+ more = val[2].sexp_body
2539
+ list.push(*more) unless more.empty?
2540
+ result = list
2541
+ result.sexp_type = :hash
2542
+ }
2543
+
2544
+ assoc: arg_value tASSOC arg_value
2545
+ {
2546
+ v1, _, v2 = val
2547
+ result = s(:array, v1, v2).line v1.line
2548
+ }
2549
+ | tLABEL arg_value
2550
+ {
2551
+ (label, line), arg = val
2552
+
2553
+ lit = s(:lit, label.to_sym).line line
2554
+ result = s(:array, lit, arg).line line
2555
+ }
2556
+ | tSTRING_BEG string_contents tLABEL_END arg_value
2557
+ {
2558
+ _, sym, _, value = val
2559
+ sym.sexp_type = :dsym
2560
+ result = s(:array, sym, value).line sym.line
2561
+ }
2562
+ | tDSTAR arg_value
2563
+ {
2564
+ _, arg = val
2565
+ line = arg.line
2566
+ result = s(:array, s(:kwsplat, arg).line(line)).line line
2567
+ }
2568
+
2569
+ operation: tIDENTIFIER | tCONSTANT | tFID
2570
+ operation2: tIDENTIFIER | tCONSTANT | tFID | op
2571
+ operation3: tIDENTIFIER | tFID | op
2572
+ dot_or_colon: tDOT | tCOLON2
2573
+ call_op: tDOT
2574
+
2575
+ call_op2: call_op
2576
+ | tCOLON2
2577
+
2578
+ opt_terms: | terms
2579
+ opt_nl: | tNL
2580
+ rparen: opt_nl tRPAREN
2581
+ rbracket: opt_nl tRBRACK
2582
+ trailer: | tNL | tCOMMA
2583
+
2584
+ term: tSEMI { yyerrok }
2585
+ | tNL
2586
+
2587
+ terms: term
2588
+ | terms tSEMI { yyerrok }
2589
+
2590
+ none: { result = nil; }
2591
+ end
2592
+
2593
+ ---- inner
2594
+
2595
+ require "ruby_lexer"
2596
+ require "ruby_parser_extras"
2597
+ include RubyLexer::State::Values
2598
+
2599
+ # :stopdoc:
2600
+
2601
+ # Local Variables: **
2602
+ # racc-token-length-max:14 **
2603
+ # End: **