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,261 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset='UTF-8' />
5
+ <title>RuboCop Inspection Report</title>
6
+ <%# TODO: Clean up the messy markup and style definitions. %>
7
+ <style>
8
+ * {
9
+ -webkit-box-sizing: border-box;
10
+ -moz-box-sizing: border-box;
11
+ box-sizing: border-box;
12
+ }
13
+
14
+ body, html {
15
+ font-size: 62.5%;
16
+ }
17
+ body {
18
+ background-color: #ecedf0;
19
+ font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
20
+ margin: 0;
21
+ }
22
+ code {
23
+ font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
24
+ font-size: 85%;
25
+ }
26
+ #header {
27
+ background: #f9f9f9;
28
+ color: #333;
29
+ border-bottom: 3px solid #ccc;
30
+ height: 50px;
31
+ padding: 0;
32
+ }
33
+ #header .logo {
34
+ float: left;
35
+ margin: 5px 12px 7px 20px;
36
+ width: 38px;
37
+ height: 38px;
38
+ }
39
+ #header .title {
40
+ display: inline-block;
41
+ float: left;
42
+ height: 50px;
43
+ font-size: 2.4rem;
44
+ letter-spacing: normal;
45
+ line-height: 50px;
46
+ margin: 0;
47
+ }
48
+
49
+ .information, #offenses {
50
+ width: 100%;
51
+ padding: 20px;
52
+ color: #333;
53
+ }
54
+ #offenses {
55
+ padding: 0 20px;
56
+ }
57
+
58
+ .information .infobox {
59
+ border-left: 3px solid;
60
+ border-radius: 4px;
61
+ background-color: #fff;
62
+ -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
63
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
64
+ padding: 15px;
65
+ border-color: #0088cc;
66
+ font-size: 1.4rem;
67
+ }
68
+ .information .infobox .info-title {
69
+ font-size: 1.8rem;
70
+ line-height: 2.2rem;
71
+ margin: 0 0 0.5em;
72
+ }
73
+ .information .offenses-list li {
74
+ line-height: 1.8rem
75
+ }
76
+ .information .offenses-list {
77
+ padding-left: 20px;
78
+ margin-bottom: 0;
79
+ }
80
+
81
+ #offenses .offense-box {
82
+ border-radius: 4px;
83
+ margin-bottom: 20px;
84
+ background-color: #fff;
85
+ -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
86
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
87
+ }
88
+ .fixed .box-title {
89
+ position: fixed;
90
+ top: 0;
91
+ z-index: 10;
92
+ width: 100%;
93
+ }
94
+ .box-title-placeholder {
95
+ display: none;
96
+ }
97
+ .fixed .box-title-placeholder {
98
+ display: block;
99
+ }
100
+ #offenses .offense-box .box-title h3, #offenses .offense-box .box-title-placeholder h3 {
101
+ color: #33353f;
102
+ background-color: #f6f6f6;
103
+ font-size: 2rem;
104
+ line-height: 2rem;
105
+ display: block;
106
+ padding: 15px;
107
+ border-radius: 5px;
108
+ margin: 0;
109
+ }
110
+ #offenses .offense-box .offense-reports {
111
+ padding: 0 15px;
112
+ }
113
+ #offenses .offense-box .offense-reports .report {
114
+ border-bottom: 1px dotted #ddd;
115
+ padding: 15px 0px;
116
+ position: relative;
117
+ font-size: 1.3rem;
118
+ }
119
+ #offenses .offense-box .offense-reports .report:last-child {
120
+ border-bottom: none;
121
+ }
122
+ #offenses .offense-box .offense-reports .report pre code {
123
+ display: block;
124
+ background: #000;
125
+ color: #fff;
126
+ padding: 10px 15px;
127
+ border-radius: 5px;
128
+ line-height: 1.6rem;
129
+ }
130
+ #offenses .offense-box .offense-reports .report .location {
131
+ font-weight: bold;
132
+ }
133
+ #offenses .offense-box .offense-reports .report .message code {
134
+ padding: 0.3em;
135
+ background-color: rgba(0,0,0,0.07);
136
+ border-radius: 3px;
137
+ }
138
+ .severity {
139
+ text-transform: capitalize;
140
+ font-weight: bold;
141
+ }
142
+ .highlight {
143
+ padding: 2px;
144
+ border-radius: 2px;
145
+ font-weight: bold;
146
+ }
147
+ <%- SEVERITY_COLORS.each do |severity, color| %>
148
+ .severity.<%= severity %> {
149
+ color: <%= color %>;
150
+ }
151
+ .highlight.<%= severity %> {
152
+ background-color: <%= color.fade_out(0.4) %>;
153
+ border: 1px solid <%= color.fade_out(0.6) %>;
154
+ }
155
+ <%- end %>
156
+ footer {
157
+ margin-bottom: 20px;
158
+ margin-right: 20px;
159
+ font-size: 1.3rem;
160
+ color: #777;
161
+ text-align: right;
162
+ }
163
+ .extra-code {
164
+ color: #ED9C28
165
+ }
166
+ </style>
167
+
168
+ <script>
169
+ (function() {
170
+ // floating headers. requires classList support.
171
+ if (!('classList' in document.createElement("_"))) return;
172
+
173
+ var loaded = false,
174
+ boxes,
175
+ boxPositions;
176
+
177
+ window.onload = function() {
178
+ var scrollY = window.scrollY;
179
+ boxes = document.querySelectorAll('.offense-box');
180
+ boxPositions = [];
181
+ for (var i = 0; i < boxes.length; i++)
182
+ // need to add scrollY because the page might be somewhere other than the top when loaded.
183
+ boxPositions[i] = boxes[i].getBoundingClientRect().top + scrollY;
184
+ loaded = true;
185
+ };
186
+
187
+ window.onscroll = function() {
188
+ if (!loaded) return;
189
+ var i,
190
+ idx,
191
+ scrollY = window.scrollY;
192
+ for (i = 0; i < boxPositions.length; i++) {
193
+ if (scrollY <= boxPositions[i] - 1) {
194
+ idx = i;
195
+ break;
196
+ }
197
+ }
198
+ if (typeof idx == 'undefined') idx = boxes.length;
199
+ if (idx > 0)
200
+ boxes[idx - 1].classList.add('fixed');
201
+ for (i = 0; i < boxes.length; i++) {
202
+ if (i < idx) continue;
203
+ boxes[i].classList.remove('fixed');
204
+ }
205
+ };
206
+ })();
207
+ </script>
208
+ </head>
209
+ <body>
210
+ <div id="header">
211
+ <img class="logo" src="data:image/png;base64,<%= base64_encoded_logo_image %>" alt="">
212
+ <h1 class="title">RuboCop Inspection Report</h1>
213
+ </div>
214
+ <div class="information">
215
+ <div class="infobox">
216
+ <div class="total">
217
+ <%= pluralize(files.count, 'file') %> inspected,
218
+ <%= pluralize(summary.offense_count, 'offense', no_for_zero: true) %> detected:
219
+ </div>
220
+ <ul class="offenses-list">
221
+ <% files.each do |file| %>
222
+ <% next if file.offenses.none? %>
223
+ <li>
224
+ <a href="#offense_<%= relative_path(file.path) %>">
225
+ <%= relative_path(file.path) %> - <%= pluralize(file.offenses.count, 'offense') %>
226
+ </a>
227
+ </li>
228
+ <% end %>
229
+ </ul>
230
+ </div>
231
+ </div>
232
+ <div id="offenses">
233
+ <% files.each do |file| %>
234
+ <% if file.offenses.any? %>
235
+ <div class="offense-box" id="offense_<%= relative_path(file.path) %>">
236
+ <div class="box-title-placeholder"><h3>&nbsp;</h3></div>
237
+ <div class="box-title"><h3><%= relative_path(file.path) %> - <%= pluralize(file.offenses.count, 'offense') %></h3></div>
238
+ <div class="offense-reports">
239
+ <% file.offenses.each do |offense| %>
240
+ <div class="report">
241
+ <div class="meta">
242
+ <span class="location">Line #<%= offense.location.line %></span> –
243
+ <span class="severity <%= offense.severity %>"><%= offense.severity %>:</span>
244
+ <span class="message"><%= decorated_message(offense) %></span>
245
+ </div>
246
+ <% unless offense.location.source_line.strip.empty? %>
247
+ <pre><code><%= highlighted_source_line(offense) %></code></pre>
248
+ <% end %>
249
+ </div>
250
+ <% end %>
251
+ </div>
252
+ </div>
253
+ <% end %>
254
+ <% end %>
255
+ </div>
256
+ <footer>
257
+ Generated by <a href="https://github.com/rubocop-hq/rubocop">RuboCop</a>
258
+ <span class="version"><%= RuboCop::Version::STRING %></span>
259
+ </footer>
260
+ </body>
261
+ </html>
@@ -0,0 +1,10 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ require 'bundler/setup'
5
+ require 'pry'
6
+ require 'rubocop'
7
+
8
+ ARGV.clear
9
+
10
+ RuboCop.pry
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env bash
2
+
3
+ set -euo pipefail
4
+ IFS=$'\n\t'
5
+ set -vx
6
+
7
+ bundle install
@@ -0,0 +1,3938 @@
1
+ # Common configuration.
2
+
3
+ AllCops:
4
+ RubyInterpreters:
5
+ - ruby
6
+ - macruby
7
+ - rake
8
+ - jruby
9
+ - rbx
10
+ # Include common Ruby source files.
11
+ Include:
12
+ - '**/*.rb'
13
+ - '**/*.arb'
14
+ - '**/*.axlsx'
15
+ - '**/*.builder'
16
+ - '**/*.fcgi'
17
+ - '**/*.gemfile'
18
+ - '**/*.gemspec'
19
+ - '**/*.god'
20
+ - '**/*.jb'
21
+ - '**/*.jbuilder'
22
+ - '**/*.mspec'
23
+ - '**/*.opal'
24
+ - '**/*.pluginspec'
25
+ - '**/*.podspec'
26
+ - '**/*.rabl'
27
+ - '**/*.rake'
28
+ - '**/*.rbuild'
29
+ - '**/*.rbw'
30
+ - '**/*.rbx'
31
+ - '**/*.ru'
32
+ - '**/*.ruby'
33
+ - '**/*.spec'
34
+ - '**/*.thor'
35
+ - '**/*.watchr'
36
+ - '**/.irbrc'
37
+ - '**/.pryrc'
38
+ - '**/buildfile'
39
+ - '**/Appraisals'
40
+ - '**/Berksfile'
41
+ - '**/Brewfile'
42
+ - '**/Buildfile'
43
+ - '**/Capfile'
44
+ - '**/Cheffile'
45
+ - '**/Dangerfile'
46
+ - '**/Deliverfile'
47
+ - '**/Fastfile'
48
+ - '**/*Fastfile'
49
+ - '**/Gemfile'
50
+ - '**/Guardfile'
51
+ - '**/Jarfile'
52
+ - '**/Mavenfile'
53
+ - '**/Podfile'
54
+ - '**/Puppetfile'
55
+ - '**/Rakefile'
56
+ - '**/Snapfile'
57
+ - '**/Thorfile'
58
+ - '**/Vagabondfile'
59
+ - '**/Vagrantfile'
60
+ Exclude:
61
+ - 'node_modules/**/*'
62
+ - 'vendor/**/*'
63
+ - '.git/**/*'
64
+ # Default formatter will be used if no `-f/--format` option is given.
65
+ DefaultFormatter: progress
66
+ # Cop names are displayed in offense messages by default. Change behavior
67
+ # by overriding DisplayCopNames, or by giving the `--no-display-cop-names`
68
+ # option.
69
+ DisplayCopNames: true
70
+ # Style guide URLs are not displayed in offense messages by default. Change
71
+ # behavior by overriding `DisplayStyleGuide`, or by giving the
72
+ # `-S/--display-style-guide` option.
73
+ DisplayStyleGuide: false
74
+ # When specifying style guide URLs, any paths and/or fragments will be
75
+ # evaluated relative to the base URL.
76
+ StyleGuideBaseURL: https://rubystyle.guide
77
+ # Extra details are not displayed in offense messages by default. Change
78
+ # behavior by overriding ExtraDetails, or by giving the
79
+ # `-E/--extra-details` option.
80
+ ExtraDetails: false
81
+ # Additional cops that do not reference a style guide rule may be enabled by
82
+ # default. Change behavior by overriding `StyleGuideCopsOnly`, or by giving
83
+ # the `--only-guide-cops` option.
84
+ StyleGuideCopsOnly: false
85
+ # All cops except the ones configured `Enabled: false` in this file are enabled by default.
86
+ # Change this behavior by overriding either `DisabledByDefault` or `EnabledByDefault`.
87
+ # When `DisabledByDefault` is `true`, all cops in the default configuration
88
+ # are disabled, and only cops in user configuration are enabled. This makes
89
+ # cops opt-in instead of opt-out. Note that when `DisabledByDefault` is `true`,
90
+ # cops in user configuration will be enabled even if they don't set the
91
+ # Enabled parameter.
92
+ # When `EnabledByDefault` is `true`, all cops, even those configured `Enabled: false`
93
+ # in this file are enabled by default. Cops can still be disabled in user configuration.
94
+ # Note that it is invalid to set both EnabledByDefault and DisabledByDefault
95
+ # to true in the same configuration.
96
+ EnabledByDefault: false
97
+ DisabledByDefault: false
98
+ # Enables the result cache if `true`. Can be overridden by the `--cache` command
99
+ # line option.
100
+ UseCache: true
101
+ # Threshold for how many files can be stored in the result cache before some
102
+ # of the files are automatically removed.
103
+ MaxFilesInCache: 20000
104
+ # The cache will be stored in "rubocop_cache" under this directory. If
105
+ # CacheRootDirectory is ~ (nil), which it is by default, the root will be
106
+ # taken from the environment variable `$XDG_CACHE_HOME` if it is set, or if
107
+ # `$XDG_CACHE_HOME` is not set, it will be `$HOME/.cache/`.
108
+ CacheRootDirectory: ~
109
+ # It is possible for a malicious user to know the location of RuboCop's cache
110
+ # directory by looking at CacheRootDirectory, and create a symlink in its
111
+ # place that could cause RuboCop to overwrite unintended files, or read
112
+ # malicious input. If you are certain that your cache location is secure from
113
+ # this kind of attack, and wish to use a symlinked cache location, set this
114
+ # value to "true".
115
+ AllowSymlinksInCacheRootDirectory: false
116
+ # What MRI version of the Ruby interpreter is the inspected code intended to
117
+ # run on? (If there is more than one, set this to the lowest version.)
118
+ # If a value is specified for TargetRubyVersion then it is used. Acceptable
119
+ # values are specificed as a float (i.e. 2.5); the teeny version of Ruby
120
+ # should not be included. If the project specifies a Ruby version in the
121
+ # .ruby-version file, Gemfile or gems.rb file, RuboCop will try to determine
122
+ # the desired version of Ruby by inspecting the .ruby-version file first,
123
+ # followed by the Gemfile.lock or gems.locked file. (Although the Ruby version
124
+ # is specified in the Gemfile or gems.rb file, RuboCop reads the final value
125
+ # from the lock file.) If the Ruby version is still unresolved, RuboCop will
126
+ # use the oldest officially supported Ruby version (currently Ruby 2.3).
127
+ TargetRubyVersion: ~
128
+
129
+ #################### Bundler ###############################
130
+
131
+ Bundler/DuplicatedGem:
132
+ Description: 'Checks for duplicate gem entries in Gemfile.'
133
+ Enabled: true
134
+ VersionAdded: '0.46'
135
+ Include:
136
+ - '**/*.gemfile'
137
+ - '**/Gemfile'
138
+ - '**/gems.rb'
139
+
140
+ Bundler/GemComment:
141
+ Description: 'Add a comment describing each gem.'
142
+ Enabled: false
143
+ VersionAdded: '0.59'
144
+ Include:
145
+ - '**/*.gemfile'
146
+ - '**/Gemfile'
147
+ - '**/gems.rb'
148
+ Whitelist: []
149
+
150
+ Bundler/InsecureProtocolSource:
151
+ Description: >-
152
+ The source `:gemcutter`, `:rubygems` and `:rubyforge` are deprecated
153
+ because HTTP requests are insecure. Please change your source to
154
+ 'https://rubygems.org' if possible, or 'http://rubygems.org' if not.
155
+ Enabled: true
156
+ VersionAdded: '0.50'
157
+ Include:
158
+ - '**/*.gemfile'
159
+ - '**/Gemfile'
160
+ - '**/gems.rb'
161
+
162
+ Bundler/OrderedGems:
163
+ Description: >-
164
+ Gems within groups in the Gemfile should be alphabetically sorted.
165
+ Enabled: true
166
+ VersionAdded: '0.46'
167
+ VersionChanged: '0.47'
168
+ TreatCommentsAsGroupSeparators: true
169
+ Include:
170
+ - '**/*.gemfile'
171
+ - '**/Gemfile'
172
+ - '**/gems.rb'
173
+
174
+ #################### Gemspec ###############################
175
+
176
+ Gemspec/DuplicatedAssignment:
177
+ Description: 'An attribute assignment method calls should be listed only once in a gemspec.'
178
+ Enabled: true
179
+ VersionAdded: '0.52'
180
+ Include:
181
+ - '**/*.gemspec'
182
+
183
+ Gemspec/OrderedDependencies:
184
+ Description: >-
185
+ Dependencies in the gemspec should be alphabetically sorted.
186
+ Enabled: true
187
+ VersionAdded: '0.51'
188
+ TreatCommentsAsGroupSeparators: true
189
+ Include:
190
+ - '**/*.gemspec'
191
+
192
+ Gemspec/RequiredRubyVersion:
193
+ Description: 'Checks that `required_ruby_version` of gemspec and `TargetRubyVersion` of .rubocop.yml are equal.'
194
+ Enabled: true
195
+ VersionAdded: '0.52'
196
+ Include:
197
+ - '**/*.gemspec'
198
+ -
199
+ Gemspec/RubyVersionGlobalsUsage:
200
+ Description: Checks usage of RUBY_VERSION in gemspec.
201
+ Enabled: true
202
+ VersionAdded: '0.72'
203
+ Include:
204
+ - '**/*.gemspec'
205
+
206
+ #################### Layout ###########################
207
+
208
+ Layout/AccessModifierIndentation:
209
+ Description: Check indentation of private/protected visibility modifiers.
210
+ StyleGuide: '#indent-public-private-protected'
211
+ Enabled: true
212
+ VersionAdded: '0.49'
213
+ EnforcedStyle: indent
214
+ SupportedStyles:
215
+ - outdent
216
+ - indent
217
+ # By default, the indentation width from Layout/IndentationWidth is used
218
+ # But it can be overridden by setting this parameter
219
+ IndentationWidth: ~
220
+
221
+ Layout/AlignArguments:
222
+ Description: >-
223
+ Align the arguments of a method call if they span more
224
+ than one line.
225
+ StyleGuide: '#no-double-indent'
226
+ Enabled: true
227
+ VersionAdded: '0.68'
228
+ # Alignment of arguments in multi-line method calls.
229
+ #
230
+ # The `with_first_argument` style aligns the following lines along the same
231
+ # column as the first parameter.
232
+ #
233
+ # method_call(a,
234
+ # b)
235
+ #
236
+ # The `with_fixed_indentation` style aligns the following lines with one
237
+ # level of indentation relative to the start of the line with the method call.
238
+ #
239
+ # method_call(a,
240
+ # b)
241
+ EnforcedStyle: with_first_argument
242
+ SupportedStyles:
243
+ - with_first_argument
244
+ - with_fixed_indentation
245
+ # By default, the indentation width from Layout/IndentationWidth is used
246
+ # But it can be overridden by setting this parameter
247
+ IndentationWidth: ~
248
+
249
+ Layout/AlignArray:
250
+ Description: >-
251
+ Align the elements of an array literal if they span more than
252
+ one line.
253
+ StyleGuide: '#align-multiline-arrays'
254
+ Enabled: true
255
+ VersionAdded: '0.49'
256
+
257
+ Layout/AlignHash:
258
+ Description: >-
259
+ Align the elements of a hash literal if they span more than
260
+ one line.
261
+ Enabled: true
262
+ AllowMultipleStyles: true
263
+ VersionAdded: '0.49'
264
+ # Alignment of entries using hash rocket as separator. Valid values are:
265
+ #
266
+ # key - left alignment of keys
267
+ # 'a' => 2
268
+ # 'bb' => 3
269
+ # separator - alignment of hash rockets, keys are right aligned
270
+ # 'a' => 2
271
+ # 'bb' => 3
272
+ # table - left alignment of keys, hash rockets, and values
273
+ # 'a' => 2
274
+ # 'bb' => 3
275
+ EnforcedHashRocketStyle: key
276
+ SupportedHashRocketStyles:
277
+ - key
278
+ - separator
279
+ - table
280
+ # Alignment of entries using colon as separator. Valid values are:
281
+ #
282
+ # key - left alignment of keys
283
+ # a: 0
284
+ # bb: 1
285
+ # separator - alignment of colons, keys are right aligned
286
+ # a: 0
287
+ # bb: 1
288
+ # table - left alignment of keys and values
289
+ # a: 0
290
+ # bb: 1
291
+ EnforcedColonStyle: key
292
+ SupportedColonStyles:
293
+ - key
294
+ - separator
295
+ - table
296
+ # Select whether hashes that are the last argument in a method call should be
297
+ # inspected? Valid values are:
298
+ #
299
+ # always_inspect - Inspect both implicit and explicit hashes.
300
+ # Registers an offense for:
301
+ # function(a: 1,
302
+ # b: 2)
303
+ # Registers an offense for:
304
+ # function({a: 1,
305
+ # b: 2})
306
+ # always_ignore - Ignore both implicit and explicit hashes.
307
+ # Accepts:
308
+ # function(a: 1,
309
+ # b: 2)
310
+ # Accepts:
311
+ # function({a: 1,
312
+ # b: 2})
313
+ # ignore_implicit - Ignore only implicit hashes.
314
+ # Accepts:
315
+ # function(a: 1,
316
+ # b: 2)
317
+ # Registers an offense for:
318
+ # function({a: 1,
319
+ # b: 2})
320
+ # ignore_explicit - Ignore only explicit hashes.
321
+ # Accepts:
322
+ # function({a: 1,
323
+ # b: 2})
324
+ # Registers an offense for:
325
+ # function(a: 1,
326
+ # b: 2)
327
+ EnforcedLastArgumentHashStyle: always_inspect
328
+ SupportedLastArgumentHashStyles:
329
+ - always_inspect
330
+ - always_ignore
331
+ - ignore_implicit
332
+ - ignore_explicit
333
+
334
+ Layout/AlignParameters:
335
+ Description: >-
336
+ Align the parameters of a method definition if they span more
337
+ than one line.
338
+ StyleGuide: '#no-double-indent'
339
+ Enabled: true
340
+ VersionAdded: '0.49'
341
+ VersionChanged: '0.68'
342
+ # Alignment of parameters in multi-line method calls.
343
+ #
344
+ # The `with_first_parameter` style aligns the following lines along the same
345
+ # column as the first parameter.
346
+ #
347
+ # def method_foo(a,
348
+ # b)
349
+ #
350
+ # The `with_fixed_indentation` style aligns the following lines with one
351
+ # level of indentation relative to the start of the line with the method call.
352
+ #
353
+ # def method_foo(a,
354
+ # b)
355
+ EnforcedStyle: with_first_parameter
356
+ SupportedStyles:
357
+ - with_first_parameter
358
+ - with_fixed_indentation
359
+ # By default, the indentation width from Layout/IndentationWidth is used
360
+ # But it can be overridden by setting this parameter
361
+ IndentationWidth: ~
362
+
363
+ Layout/BlockAlignment:
364
+ Description: 'Align block ends correctly.'
365
+ Enabled: true
366
+ VersionAdded: '0.53'
367
+ # The value `start_of_block` means that the `end` should be aligned with line
368
+ # where the `do` keyword appears.
369
+ # The value `start_of_line` means it should be aligned with the whole
370
+ # expression's starting line.
371
+ # The value `either` means both are allowed.
372
+ EnforcedStyleAlignWith: either
373
+ SupportedStylesAlignWith:
374
+ - either
375
+ - start_of_block
376
+ - start_of_line
377
+
378
+ Layout/BlockEndNewline:
379
+ Description: 'Put end statement of multiline block on its own line.'
380
+ Enabled: true
381
+ VersionAdded: '0.49'
382
+
383
+ Layout/CaseIndentation:
384
+ Description: 'Indentation of when in a case/when/[else/]end.'
385
+ StyleGuide: '#indent-when-to-case'
386
+ Enabled: true
387
+ VersionAdded: '0.49'
388
+ EnforcedStyle: case
389
+ SupportedStyles:
390
+ - case
391
+ - end
392
+ IndentOneStep: false
393
+ # By default, the indentation width from `Layout/IndentationWidth` is used.
394
+ # But it can be overridden by setting this parameter.
395
+ # This only matters if `IndentOneStep` is `true`
396
+ IndentationWidth: ~
397
+
398
+ Layout/ClassStructure:
399
+ Description: 'Enforces a configured order of definitions within a class body.'
400
+ StyleGuide: '#consistent-classes'
401
+ Enabled: false
402
+ VersionAdded: '0.52'
403
+ Categories:
404
+ module_inclusion:
405
+ - include
406
+ - prepend
407
+ - extend
408
+ ExpectedOrder:
409
+ - module_inclusion
410
+ - constants
411
+ - public_class_methods
412
+ - initializer
413
+ - public_methods
414
+ - protected_methods
415
+ - private_methods
416
+
417
+ Layout/ClosingHeredocIndentation:
418
+ Description: 'Checks the indentation of here document closings.'
419
+ Enabled: true
420
+ VersionAdded: '0.57'
421
+
422
+ Layout/ClosingParenthesisIndentation:
423
+ Description: 'Checks the indentation of hanging closing parentheses.'
424
+ Enabled: true
425
+ VersionAdded: '0.49'
426
+
427
+ Layout/CommentIndentation:
428
+ Description: 'Indentation of comments.'
429
+ Enabled: true
430
+ VersionAdded: '0.49'
431
+
432
+ Layout/ConditionPosition:
433
+ Description: >-
434
+ Checks for condition placed in a confusing position relative to
435
+ the keyword.
436
+ StyleGuide: '#same-line-condition'
437
+ Enabled: true
438
+ VersionAdded: '0.53'
439
+
440
+ Layout/DefEndAlignment:
441
+ Description: 'Align ends corresponding to defs correctly.'
442
+ Enabled: true
443
+ VersionAdded: '0.53'
444
+ # The value `def` means that `end` should be aligned with the def keyword.
445
+ # The value `start_of_line` means that `end` should be aligned with method
446
+ # calls like `private`, `public`, etc, if present in front of the `def`
447
+ # keyword on the same line.
448
+ EnforcedStyleAlignWith: start_of_line
449
+ SupportedStylesAlignWith:
450
+ - start_of_line
451
+ - def
452
+ AutoCorrect: false
453
+ Severity: warning
454
+
455
+ Layout/DotPosition:
456
+ Description: 'Checks the position of the dot in multi-line method calls.'
457
+ StyleGuide: '#consistent-multi-line-chains'
458
+ Enabled: true
459
+ VersionAdded: '0.49'
460
+ EnforcedStyle: leading
461
+ SupportedStyles:
462
+ - leading
463
+ - trailing
464
+
465
+ Layout/ElseAlignment:
466
+ Description: 'Align elses and elsifs correctly.'
467
+ Enabled: true
468
+ VersionAdded: '0.49'
469
+
470
+ Layout/EmptyComment:
471
+ Description: 'Checks empty comment.'
472
+ Enabled: true
473
+ VersionAdded: '0.53'
474
+ AllowBorderComment: true
475
+ AllowMarginComment: true
476
+
477
+ Layout/EmptyLineAfterGuardClause:
478
+ Description: 'Add empty line after guard clause.'
479
+ Enabled: true
480
+ VersionAdded: '0.56'
481
+ VersionChanged: '0.59'
482
+
483
+ Layout/EmptyLineAfterMagicComment:
484
+ Description: 'Add an empty line after magic comments to separate them from code.'
485
+ StyleGuide: '#separate-magic-comments-from-code'
486
+ Enabled: true
487
+ VersionAdded: '0.49'
488
+
489
+ Layout/EmptyLineBetweenDefs:
490
+ Description: 'Use empty lines between defs.'
491
+ StyleGuide: '#empty-lines-between-methods'
492
+ Enabled: true
493
+ VersionAdded: '0.49'
494
+ # If `true`, this parameter means that single line method definitions don't
495
+ # need an empty line between them.
496
+ AllowAdjacentOneLineDefs: false
497
+ # Can be array to specify minimum and maximum number of empty lines, e.g. [1, 2]
498
+ NumberOfEmptyLines: 1
499
+
500
+ Layout/EmptyLines:
501
+ Description: "Don't use several empty lines in a row."
502
+ StyleGuide: '#two-or-more-empty-lines'
503
+ Enabled: true
504
+ VersionAdded: '0.49'
505
+
506
+ Layout/EmptyLinesAroundAccessModifier:
507
+ Description: "Keep blank lines around access modifiers."
508
+ StyleGuide: '#empty-lines-around-access-modifier'
509
+ Enabled: true
510
+ VersionAdded: '0.49'
511
+ EnforcedStyle: around
512
+ SupportedStyles:
513
+ - around
514
+ - only_before
515
+ Reference:
516
+ # A reference to `EnforcedStyle: only_before`.
517
+ - https://edgeguides.rubyonrails.org/contributing_to_ruby_on_rails.html#follow-the-coding-conventions
518
+
519
+ Layout/EmptyLinesAroundArguments:
520
+ Description: "Keeps track of empty lines around method arguments."
521
+ Enabled: true
522
+ VersionAdded: '0.52'
523
+
524
+ Layout/EmptyLinesAroundBeginBody:
525
+ Description: "Keeps track of empty lines around begin-end bodies."
526
+ StyleGuide: '#empty-lines-around-bodies'
527
+ Enabled: true
528
+ VersionAdded: '0.49'
529
+
530
+ Layout/EmptyLinesAroundBlockBody:
531
+ Description: "Keeps track of empty lines around block bodies."
532
+ StyleGuide: '#empty-lines-around-bodies'
533
+ Enabled: true
534
+ VersionAdded: '0.49'
535
+ EnforcedStyle: no_empty_lines
536
+ SupportedStyles:
537
+ - empty_lines
538
+ - no_empty_lines
539
+
540
+ Layout/EmptyLinesAroundClassBody:
541
+ Description: "Keeps track of empty lines around class bodies."
542
+ StyleGuide: '#empty-lines-around-bodies'
543
+ Enabled: true
544
+ VersionAdded: '0.49'
545
+ VersionChanged: '0.53'
546
+ EnforcedStyle: no_empty_lines
547
+ SupportedStyles:
548
+ - empty_lines
549
+ - empty_lines_except_namespace
550
+ - empty_lines_special
551
+ - no_empty_lines
552
+ - beginning_only
553
+ - ending_only
554
+
555
+ Layout/EmptyLinesAroundExceptionHandlingKeywords:
556
+ Description: "Keeps track of empty lines around exception handling keywords."
557
+ StyleGuide: '#empty-lines-around-bodies'
558
+ Enabled: true
559
+ VersionAdded: '0.49'
560
+
561
+ Layout/EmptyLinesAroundMethodBody:
562
+ Description: "Keeps track of empty lines around method bodies."
563
+ StyleGuide: '#empty-lines-around-bodies'
564
+ Enabled: true
565
+ VersionAdded: '0.49'
566
+
567
+ Layout/EmptyLinesAroundModuleBody:
568
+ Description: "Keeps track of empty lines around module bodies."
569
+ StyleGuide: '#empty-lines-around-bodies'
570
+ Enabled: true
571
+ VersionAdded: '0.49'
572
+ EnforcedStyle: no_empty_lines
573
+ SupportedStyles:
574
+ - empty_lines
575
+ - empty_lines_except_namespace
576
+ - empty_lines_special
577
+ - no_empty_lines
578
+
579
+ Layout/EndAlignment:
580
+ Description: 'Align ends correctly.'
581
+ Enabled: true
582
+ VersionAdded: '0.53'
583
+ # The value `keyword` means that `end` should be aligned with the matching
584
+ # keyword (`if`, `while`, etc.).
585
+ # The value `variable` means that in assignments, `end` should be aligned
586
+ # with the start of the variable on the left hand side of `=`. In all other
587
+ # situations, `end` should still be aligned with the keyword.
588
+ # The value `start_of_line` means that `end` should be aligned with the start
589
+ # of the line which the matching keyword appears on.
590
+ EnforcedStyleAlignWith: keyword
591
+ SupportedStylesAlignWith:
592
+ - keyword
593
+ - variable
594
+ - start_of_line
595
+ AutoCorrect: false
596
+ Severity: warning
597
+
598
+ Layout/EndOfLine:
599
+ Description: 'Use Unix-style line endings.'
600
+ StyleGuide: '#crlf'
601
+ Enabled: true
602
+ VersionAdded: '0.49'
603
+ # The `native` style means that CR+LF (Carriage Return + Line Feed) is
604
+ # enforced on Windows, and LF is enforced on other platforms. The other styles
605
+ # mean LF and CR+LF, respectively.
606
+ EnforcedStyle: native
607
+ SupportedStyles:
608
+ - native
609
+ - lf
610
+ - crlf
611
+
612
+ Layout/ExtraSpacing:
613
+ Description: 'Do not use unnecessary spacing.'
614
+ Enabled: true
615
+ VersionAdded: '0.49'
616
+ # When true, allows most uses of extra spacing if the intent is to align
617
+ # things with the previous or next line, not counting empty lines or comment
618
+ # lines.
619
+ AllowForAlignment: true
620
+ # When true, allows things like 'obj.meth(arg) # comment',
621
+ # rather than insisting on 'obj.meth(arg) # comment'.
622
+ # If done for alignment, either this OR AllowForAlignment will allow it.
623
+ AllowBeforeTrailingComments: false
624
+ # When true, forces the alignment of `=` in assignments on consecutive lines.
625
+ ForceEqualSignAlignment: false
626
+
627
+ Layout/FirstArrayElementLineBreak:
628
+ Description: >-
629
+ Checks for a line break before the first element in a
630
+ multi-line array.
631
+ Enabled: false
632
+ VersionAdded: '0.49'
633
+
634
+ Layout/FirstHashElementLineBreak:
635
+ Description: >-
636
+ Checks for a line break before the first element in a
637
+ multi-line hash.
638
+ Enabled: false
639
+ VersionAdded: '0.49'
640
+
641
+ Layout/FirstMethodArgumentLineBreak:
642
+ Description: >-
643
+ Checks for a line break before the first argument in a
644
+ multi-line method call.
645
+ Enabled: false
646
+ VersionAdded: '0.49'
647
+
648
+ Layout/FirstMethodParameterLineBreak:
649
+ Description: >-
650
+ Checks for a line break before the first parameter in a
651
+ multi-line method parameter definition.
652
+ Enabled: false
653
+ VersionAdded: '0.49'
654
+
655
+ Layout/HeredocArgumentClosingParenthesis:
656
+ Description: >-
657
+ Checks for the placement of the closing parenthesis in a
658
+ method call that passes a HEREDOC string as an argument.
659
+ Enabled: false
660
+ StyleGuide: '#heredoc-argument-closing-parentheses'
661
+ VersionAdded: '0.68'
662
+
663
+ Layout/IndentAssignment:
664
+ Description: >-
665
+ Checks the indentation of the first line of the
666
+ right-hand-side of a multi-line assignment.
667
+ Enabled: true
668
+ VersionAdded: '0.49'
669
+ # By default, the indentation width from `Layout/IndentationWidth` is used
670
+ # But it can be overridden by setting this parameter
671
+ IndentationWidth: ~
672
+
673
+ Layout/IndentFirstArgument:
674
+ Description: 'Checks the indentation of the first argument in a method call.'
675
+ Enabled: true
676
+ VersionAdded: '0.68'
677
+ EnforcedStyle: special_for_inner_method_call_in_parentheses
678
+ SupportedStyles:
679
+ # The first parameter should always be indented one step more than the
680
+ # preceding line.
681
+ - consistent
682
+ # The first parameter should always be indented one level relative to the
683
+ # parent that is receiving the parameter
684
+ - consistent_relative_to_receiver
685
+ # The first parameter should normally be indented one step more than the
686
+ # preceding line, but if it's a parameter for a method call that is itself
687
+ # a parameter in a method call, then the inner parameter should be indented
688
+ # relative to the inner method.
689
+ - special_for_inner_method_call
690
+ # Same as `special_for_inner_method_call` except that the special rule only
691
+ # applies if the outer method call encloses its arguments in parentheses.
692
+ - special_for_inner_method_call_in_parentheses
693
+ # By default, the indentation width from `Layout/IndentationWidth` is used
694
+ # But it can be overridden by setting this parameter
695
+ IndentationWidth: ~
696
+
697
+ Layout/IndentFirstArrayElement:
698
+ Description: >-
699
+ Checks the indentation of the first element in an array
700
+ literal.
701
+ Enabled: true
702
+ VersionAdded: '0.68'
703
+ # The value `special_inside_parentheses` means that array literals with
704
+ # brackets that have their opening bracket on the same line as a surrounding
705
+ # opening round parenthesis, shall have their first element indented relative
706
+ # to the first position inside the parenthesis.
707
+ #
708
+ # The value `consistent` means that the indentation of the first element shall
709
+ # always be relative to the first position of the line where the opening
710
+ # bracket is.
711
+ #
712
+ # The value `align_brackets` means that the indentation of the first element
713
+ # shall always be relative to the position of the opening bracket.
714
+ EnforcedStyle: special_inside_parentheses
715
+ SupportedStyles:
716
+ - special_inside_parentheses
717
+ - consistent
718
+ - align_brackets
719
+ # By default, the indentation width from `Layout/IndentationWidth` is used
720
+ # But it can be overridden by setting this parameter
721
+ IndentationWidth: ~
722
+
723
+ Layout/IndentFirstHashElement:
724
+ Description: 'Checks the indentation of the first key in a hash literal.'
725
+ Enabled: true
726
+ VersionAdded: '0.68'
727
+ # The value `special_inside_parentheses` means that hash literals with braces
728
+ # that have their opening brace on the same line as a surrounding opening
729
+ # round parenthesis, shall have their first key indented relative to the
730
+ # first position inside the parenthesis.
731
+ #
732
+ # The value `consistent` means that the indentation of the first key shall
733
+ # always be relative to the first position of the line where the opening
734
+ # brace is.
735
+ #
736
+ # The value `align_braces` means that the indentation of the first key shall
737
+ # always be relative to the position of the opening brace.
738
+ EnforcedStyle: special_inside_parentheses
739
+ SupportedStyles:
740
+ - special_inside_parentheses
741
+ - consistent
742
+ - align_braces
743
+ # By default, the indentation width from `Layout/IndentationWidth` is used
744
+ # But it can be overridden by setting this parameter
745
+ IndentationWidth: ~
746
+
747
+ Layout/IndentFirstParameter:
748
+ Description: >-
749
+ Checks the indentation of the first parameter in a
750
+ method definition.
751
+ Enabled: true
752
+ VersionAdded: '0.49'
753
+ VersionChanged: '0.68'
754
+ EnforcedStyle: consistent
755
+ SupportedStyles:
756
+ - consistent
757
+ - align_parentheses
758
+ # By default, the indentation width from `Layout/IndentationWidth` is used
759
+ # But it can be overridden by setting this parameter
760
+ IndentationWidth: ~
761
+
762
+ Layout/IndentHeredoc:
763
+ Description: 'This cop checks the indentation of the here document bodies.'
764
+ StyleGuide: '#squiggly-heredocs'
765
+ Enabled: true
766
+ VersionAdded: '0.49'
767
+ VersionChanged: '0.69'
768
+ EnforcedStyle: squiggly
769
+ SupportedStyles:
770
+ - squiggly
771
+ - active_support
772
+ - powerpack
773
+ - unindent
774
+
775
+ Layout/IndentationConsistency:
776
+ Description: 'Keep indentation straight.'
777
+ StyleGuide: '#spaces-indentation'
778
+ Enabled: true
779
+ VersionAdded: '0.49'
780
+ # The difference between `indented` and `normal` is that the `indented_internal_methods`
781
+ # style prescribes that in classes and modules the `protected` and `private`
782
+ # modifier keywords shall be indented the same as public methods and that
783
+ # protected and private members shall be indented one step more than the
784
+ # modifiers. Other than that, both styles mean that entities on the same
785
+ # logical depth shall have the same indentation.
786
+ EnforcedStyle: normal
787
+ SupportedStyles:
788
+ - normal
789
+ - indented_internal_methods
790
+ Reference:
791
+ # A reference to `EnforcedStyle: indented_internal_methods`.
792
+ - https://edgeguides.rubyonrails.org/contributing_to_ruby_on_rails.html#follow-the-coding-conventions
793
+
794
+ Layout/IndentationWidth:
795
+ Description: 'Use 2 spaces for indentation.'
796
+ StyleGuide: '#spaces-indentation'
797
+ Enabled: true
798
+ VersionAdded: '0.49'
799
+ # Number of spaces for each indentation level.
800
+ Width: 2
801
+ IgnoredPatterns: []
802
+
803
+ Layout/InitialIndentation:
804
+ Description: >-
805
+ Checks the indentation of the first non-blank non-comment line in a file.
806
+ Enabled: true
807
+ VersionAdded: '0.49'
808
+
809
+ Layout/LeadingBlankLines:
810
+ Description: Check for unnecessary blank lines at the beginning of a file.
811
+ Enabled: true
812
+ VersionAdded: '0.57'
813
+
814
+ Layout/LeadingCommentSpace:
815
+ Description: 'Comments should start with a space.'
816
+ StyleGuide: '#hash-space'
817
+ Enabled: true
818
+ VersionAdded: '0.49'
819
+ VersionChanged: '0.73'
820
+ AllowDoxygenCommentStyle: false
821
+
822
+ Layout/MultilineArrayBraceLayout:
823
+ Description: >-
824
+ Checks that the closing brace in an array literal is
825
+ either on the same line as the last array element, or
826
+ a new line.
827
+ Enabled: true
828
+ VersionAdded: '0.49'
829
+ EnforcedStyle: symmetrical
830
+ SupportedStyles:
831
+ # symmetrical: closing brace is positioned in same way as opening brace
832
+ # new_line: closing brace is always on a new line
833
+ # same_line: closing brace is always on the same line as last element
834
+ - symmetrical
835
+ - new_line
836
+ - same_line
837
+
838
+ Layout/MultilineArrayLineBreaks:
839
+ Description: >-
840
+ Checks that each item in a multi-line array literal
841
+ starts on a separate line.
842
+ Enabled: false
843
+ VersionAdded: '0.67'
844
+
845
+ Layout/MultilineAssignmentLayout:
846
+ Description: 'Check for a newline after the assignment operator in multi-line assignments.'
847
+ StyleGuide: '#indent-conditional-assignment'
848
+ Enabled: false
849
+ VersionAdded: '0.49'
850
+ # The types of assignments which are subject to this rule.
851
+ SupportedTypes:
852
+ - block
853
+ - case
854
+ - class
855
+ - if
856
+ - kwbegin
857
+ - module
858
+ EnforcedStyle: new_line
859
+ SupportedStyles:
860
+ # Ensures that the assignment operator and the rhs are on the same line for
861
+ # the set of supported types.
862
+ - same_line
863
+ # Ensures that the assignment operator and the rhs are on separate lines
864
+ # for the set of supported types.
865
+ - new_line
866
+
867
+ Layout/MultilineBlockLayout:
868
+ Description: 'Ensures newlines after multiline block do statements.'
869
+ Enabled: true
870
+ VersionAdded: '0.49'
871
+
872
+ Layout/MultilineHashBraceLayout:
873
+ Description: >-
874
+ Checks that the closing brace in a hash literal is
875
+ either on the same line as the last hash element, or
876
+ a new line.
877
+ Enabled: true
878
+ VersionAdded: '0.49'
879
+ EnforcedStyle: symmetrical
880
+ SupportedStyles:
881
+ # symmetrical: closing brace is positioned in same way as opening brace
882
+ # new_line: closing brace is always on a new line
883
+ # same_line: closing brace is always on same line as last element
884
+ - symmetrical
885
+ - new_line
886
+ - same_line
887
+
888
+ Layout/MultilineHashKeyLineBreaks:
889
+ Description: >-
890
+ Checks that each item in a multi-line hash literal
891
+ starts on a separate line.
892
+ Enabled: false
893
+ VersionAdded: '0.67'
894
+
895
+ Layout/MultilineMethodArgumentLineBreaks:
896
+ Description: >-
897
+ Checks that each argument in a multi-line method call
898
+ starts on a separate line.
899
+ Enabled: false
900
+ VersionAdded: '0.67'
901
+
902
+ Layout/MultilineMethodCallBraceLayout:
903
+ Description: >-
904
+ Checks that the closing brace in a method call is
905
+ either on the same line as the last method argument, or
906
+ a new line.
907
+ Enabled: true
908
+ VersionAdded: '0.49'
909
+ EnforcedStyle: symmetrical
910
+ SupportedStyles:
911
+ # symmetrical: closing brace is positioned in same way as opening brace
912
+ # new_line: closing brace is always on a new line
913
+ # same_line: closing brace is always on the same line as last argument
914
+ - symmetrical
915
+ - new_line
916
+ - same_line
917
+
918
+ Layout/MultilineMethodCallIndentation:
919
+ Description: >-
920
+ Checks indentation of method calls with the dot operator
921
+ that span more than one line.
922
+ Enabled: true
923
+ VersionAdded: '0.49'
924
+ EnforcedStyle: aligned
925
+ SupportedStyles:
926
+ - aligned
927
+ - indented
928
+ - indented_relative_to_receiver
929
+ # By default, the indentation width from Layout/IndentationWidth is used
930
+ # But it can be overridden by setting this parameter
931
+ IndentationWidth: ~
932
+
933
+ Layout/MultilineMethodDefinitionBraceLayout:
934
+ Description: >-
935
+ Checks that the closing brace in a method definition is
936
+ either on the same line as the last method parameter, or
937
+ a new line.
938
+ Enabled: true
939
+ VersionAdded: '0.49'
940
+ EnforcedStyle: symmetrical
941
+ SupportedStyles:
942
+ # symmetrical: closing brace is positioned in same way as opening brace
943
+ # new_line: closing brace is always on a new line
944
+ # same_line: closing brace is always on the same line as last parameter
945
+ - symmetrical
946
+ - new_line
947
+ - same_line
948
+
949
+ Layout/MultilineOperationIndentation:
950
+ Description: >-
951
+ Checks indentation of binary operations that span more than
952
+ one line.
953
+ Enabled: true
954
+ VersionAdded: '0.49'
955
+ EnforcedStyle: aligned
956
+ SupportedStyles:
957
+ - aligned
958
+ - indented
959
+ # By default, the indentation width from `Layout/IndentationWidth` is used
960
+ # But it can be overridden by setting this parameter
961
+ IndentationWidth: ~
962
+
963
+ Layout/RescueEnsureAlignment:
964
+ Description: 'Align rescues and ensures correctly.'
965
+ Enabled: true
966
+ VersionAdded: '0.49'
967
+
968
+ Layout/SpaceAfterColon:
969
+ Description: 'Use spaces after colons.'
970
+ StyleGuide: '#spaces-operators'
971
+ Enabled: true
972
+ VersionAdded: '0.49'
973
+
974
+ Layout/SpaceAfterComma:
975
+ Description: 'Use spaces after commas.'
976
+ StyleGuide: '#spaces-operators'
977
+ Enabled: true
978
+ VersionAdded: '0.49'
979
+
980
+ Layout/SpaceAfterMethodName:
981
+ Description: >-
982
+ Do not put a space between a method name and the opening
983
+ parenthesis in a method definition.
984
+ StyleGuide: '#parens-no-spaces'
985
+ Enabled: true
986
+ VersionAdded: '0.49'
987
+
988
+ Layout/SpaceAfterNot:
989
+ Description: Tracks redundant space after the ! operator.
990
+ StyleGuide: '#no-space-bang'
991
+ Enabled: true
992
+ VersionAdded: '0.49'
993
+
994
+ Layout/SpaceAfterSemicolon:
995
+ Description: 'Use spaces after semicolons.'
996
+ StyleGuide: '#spaces-operators'
997
+ Enabled: true
998
+ VersionAdded: '0.49'
999
+
1000
+ Layout/SpaceAroundBlockParameters:
1001
+ Description: 'Checks the spacing inside and after block parameters pipes.'
1002
+ Enabled: true
1003
+ VersionAdded: '0.49'
1004
+ EnforcedStyleInsidePipes: no_space
1005
+ SupportedStylesInsidePipes:
1006
+ - space
1007
+ - no_space
1008
+
1009
+ Layout/SpaceAroundEqualsInParameterDefault:
1010
+ Description: >-
1011
+ Checks that the equals signs in parameter default assignments
1012
+ have or don't have surrounding space depending on
1013
+ configuration.
1014
+ StyleGuide: '#spaces-around-equals'
1015
+ Enabled: true
1016
+ VersionAdded: '0.49'
1017
+ EnforcedStyle: space
1018
+ SupportedStyles:
1019
+ - space
1020
+ - no_space
1021
+
1022
+ Layout/SpaceAroundKeyword:
1023
+ Description: 'Use a space around keywords if appropriate.'
1024
+ Enabled: true
1025
+ VersionAdded: '0.49'
1026
+
1027
+ Layout/SpaceAroundOperators:
1028
+ Description: 'Use a single space around operators.'
1029
+ StyleGuide: '#spaces-operators'
1030
+ Enabled: true
1031
+ VersionAdded: '0.49'
1032
+ # When `true`, allows most uses of extra spacing if the intent is to align
1033
+ # with an operator on the previous or next line, not counting empty lines
1034
+ # or comment lines.
1035
+ AllowForAlignment: true
1036
+
1037
+ Layout/SpaceBeforeBlockBraces:
1038
+ Description: >-
1039
+ Checks that the left block brace has or doesn't have space
1040
+ before it.
1041
+ Enabled: true
1042
+ VersionAdded: '0.49'
1043
+ EnforcedStyle: space
1044
+ SupportedStyles:
1045
+ - space
1046
+ - no_space
1047
+ EnforcedStyleForEmptyBraces: space
1048
+ SupportedStylesForEmptyBraces:
1049
+ - space
1050
+ - no_space
1051
+ VersionChanged: '0.52.1'
1052
+
1053
+ Layout/SpaceBeforeComma:
1054
+ Description: 'No spaces before commas.'
1055
+ Enabled: true
1056
+ VersionAdded: '0.49'
1057
+
1058
+ Layout/SpaceBeforeComment:
1059
+ Description: >-
1060
+ Checks for missing space between code and a comment on the
1061
+ same line.
1062
+ Enabled: true
1063
+ VersionAdded: '0.49'
1064
+
1065
+ Layout/SpaceBeforeFirstArg:
1066
+ Description: >-
1067
+ Checks that exactly one space is used between a method name
1068
+ and the first argument for method calls without parentheses.
1069
+ Enabled: true
1070
+ VersionAdded: '0.49'
1071
+ # When `true`, allows most uses of extra spacing if the intent is to align
1072
+ # things with the previous or next line, not counting empty lines or comment
1073
+ # lines.
1074
+ AllowForAlignment: true
1075
+
1076
+ Layout/SpaceBeforeSemicolon:
1077
+ Description: 'No spaces before semicolons.'
1078
+ Enabled: true
1079
+ VersionAdded: '0.49'
1080
+
1081
+ Layout/SpaceInLambdaLiteral:
1082
+ Description: 'Checks for spaces in lambda literals.'
1083
+ Enabled: true
1084
+ VersionAdded: '0.49'
1085
+ EnforcedStyle: require_no_space
1086
+ SupportedStyles:
1087
+ - require_no_space
1088
+ - require_space
1089
+
1090
+ Layout/SpaceInsideArrayLiteralBrackets:
1091
+ Description: 'Checks the spacing inside array literal brackets.'
1092
+ Enabled: true
1093
+ VersionAdded: '0.52'
1094
+ EnforcedStyle: no_space
1095
+ SupportedStyles:
1096
+ - space
1097
+ - no_space
1098
+ # 'compact' normally requires a space inside the brackets, with the exception
1099
+ # that successive left brackets or right brackets are collapsed together
1100
+ - compact
1101
+ EnforcedStyleForEmptyBrackets: no_space
1102
+ SupportedStylesForEmptyBrackets:
1103
+ - space
1104
+ - no_space
1105
+
1106
+ Layout/SpaceInsideArrayPercentLiteral:
1107
+ Description: 'No unnecessary additional spaces between elements in %i/%w literals.'
1108
+ Enabled: true
1109
+ VersionAdded: '0.49'
1110
+
1111
+ Layout/SpaceInsideBlockBraces:
1112
+ Description: >-
1113
+ Checks that block braces have or don't have surrounding space.
1114
+ For blocks taking parameters, checks that the left brace has
1115
+ or doesn't have trailing space.
1116
+ Enabled: true
1117
+ VersionAdded: '0.49'
1118
+ EnforcedStyle: space
1119
+ SupportedStyles:
1120
+ - space
1121
+ - no_space
1122
+ EnforcedStyleForEmptyBraces: no_space
1123
+ SupportedStylesForEmptyBraces:
1124
+ - space
1125
+ - no_space
1126
+ # Space between `{` and `|`. Overrides `EnforcedStyle` if there is a conflict.
1127
+ SpaceBeforeBlockParameters: true
1128
+
1129
+ Layout/SpaceInsideHashLiteralBraces:
1130
+ Description: "Use spaces inside hash literal braces - or don't."
1131
+ StyleGuide: '#spaces-operators'
1132
+ Enabled: true
1133
+ VersionAdded: '0.49'
1134
+ EnforcedStyle: space
1135
+ SupportedStyles:
1136
+ - space
1137
+ - no_space
1138
+ # 'compact' normally requires a space inside hash braces, with the exception
1139
+ # that successive left braces or right braces are collapsed together
1140
+ - compact
1141
+ EnforcedStyleForEmptyBraces: no_space
1142
+ SupportedStylesForEmptyBraces:
1143
+ - space
1144
+ - no_space
1145
+
1146
+
1147
+ Layout/SpaceInsideParens:
1148
+ Description: 'No spaces after ( or before ).'
1149
+ StyleGuide: '#spaces-braces'
1150
+ Enabled: true
1151
+ VersionAdded: '0.49'
1152
+ VersionChanged: '0.55'
1153
+ EnforcedStyle: no_space
1154
+ SupportedStyles:
1155
+ - space
1156
+ - no_space
1157
+
1158
+ Layout/SpaceInsidePercentLiteralDelimiters:
1159
+ Description: 'No unnecessary spaces inside delimiters of %i/%w/%x literals.'
1160
+ Enabled: true
1161
+ VersionAdded: '0.49'
1162
+
1163
+ Layout/SpaceInsideRangeLiteral:
1164
+ Description: 'No spaces inside range literals.'
1165
+ StyleGuide: '#no-space-inside-range-literals'
1166
+ Enabled: true
1167
+ VersionAdded: '0.49'
1168
+
1169
+ Layout/SpaceInsideReferenceBrackets:
1170
+ Description: 'Checks the spacing inside referential brackets.'
1171
+ Enabled: true
1172
+ VersionAdded: '0.52'
1173
+ VersionChanged: '0.53'
1174
+ EnforcedStyle: no_space
1175
+ SupportedStyles:
1176
+ - space
1177
+ - no_space
1178
+ EnforcedStyleForEmptyBrackets: no_space
1179
+ SupportedStylesForEmptyBrackets:
1180
+ - space
1181
+ - no_space
1182
+
1183
+ Layout/SpaceInsideStringInterpolation:
1184
+ Description: 'Checks for padding/surrounding spaces inside string interpolation.'
1185
+ StyleGuide: '#string-interpolation'
1186
+ Enabled: true
1187
+ VersionAdded: '0.49'
1188
+ EnforcedStyle: no_space
1189
+ SupportedStyles:
1190
+ - space
1191
+ - no_space
1192
+
1193
+ Layout/Tab:
1194
+ Description: 'No hard tabs.'
1195
+ StyleGuide: '#spaces-indentation'
1196
+ Enabled: true
1197
+ VersionAdded: '0.49'
1198
+ VersionChanged: '0.51'
1199
+ # By default, the indentation width from Layout/IndentationWidth is used
1200
+ # But it can be overridden by setting this parameter
1201
+ # It is used during auto-correction to determine how many spaces should
1202
+ # replace each tab.
1203
+ IndentationWidth: ~
1204
+
1205
+ Layout/TrailingBlankLines:
1206
+ Description: 'Checks trailing blank lines and final newline.'
1207
+ StyleGuide: '#newline-eof'
1208
+ Enabled: true
1209
+ VersionAdded: '0.49'
1210
+ EnforcedStyle: final_newline
1211
+ SupportedStyles:
1212
+ - final_newline
1213
+ - final_blank_line
1214
+
1215
+ Layout/TrailingWhitespace:
1216
+ Description: 'Avoid trailing whitespace.'
1217
+ StyleGuide: '#no-trailing-whitespace'
1218
+ Enabled: true
1219
+ VersionAdded: '0.49'
1220
+ VersionChanged: '0.55'
1221
+ AllowInHeredoc: false
1222
+
1223
+ #################### Lint ##################################
1224
+ ### Warnings
1225
+
1226
+ Lint/AmbiguousBlockAssociation:
1227
+ Description: >-
1228
+ Checks for ambiguous block association with method when param passed without
1229
+ parentheses.
1230
+ StyleGuide: '#syntax'
1231
+ Enabled: true
1232
+ VersionAdded: '0.48'
1233
+
1234
+ Lint/AmbiguousOperator:
1235
+ Description: >-
1236
+ Checks for ambiguous operators in the first argument of a
1237
+ method invocation without parentheses.
1238
+ StyleGuide: '#method-invocation-parens'
1239
+ Enabled: true
1240
+ VersionAdded: '0.17'
1241
+
1242
+ Lint/AmbiguousRegexpLiteral:
1243
+ Description: >-
1244
+ Checks for ambiguous regexp literals in the first argument of
1245
+ a method invocation without parentheses.
1246
+ Enabled: true
1247
+ VersionAdded: '0.17'
1248
+
1249
+ Lint/AssignmentInCondition:
1250
+ Description: "Don't use assignment in conditions."
1251
+ StyleGuide: '#safe-assignment-in-condition'
1252
+ Enabled: true
1253
+ VersionAdded: '0.9'
1254
+ AllowSafeAssignment: true
1255
+
1256
+ Lint/BigDecimalNew:
1257
+ Description: '`BigDecimal.new()` is deprecated. Use `BigDecimal()` instead.'
1258
+ Enabled: true
1259
+ VersionAdded: '0.53'
1260
+
1261
+ Lint/BooleanSymbol:
1262
+ Description: 'Check for `:true` and `:false` symbols.'
1263
+ Enabled: true
1264
+ VersionAdded: '0.50'
1265
+
1266
+ Lint/CircularArgumentReference:
1267
+ Description: "Default values in optional keyword arguments and optional ordinal arguments should not refer back to the name of the argument."
1268
+ Enabled: true
1269
+ VersionAdded: '0.33'
1270
+
1271
+ Lint/Debugger:
1272
+ Description: 'Check for debugger calls.'
1273
+ Enabled: true
1274
+ VersionAdded: '0.14'
1275
+ VersionChanged: '0.49'
1276
+
1277
+ Lint/DeprecatedClassMethods:
1278
+ Description: 'Check for deprecated class method calls.'
1279
+ Enabled: true
1280
+ VersionAdded: '0.19'
1281
+
1282
+ Lint/DisjunctiveAssignmentInConstructor:
1283
+ Description: 'In constructor, plain assignment is preferred over disjunctive.'
1284
+ Enabled: true
1285
+ Safe: false
1286
+ VersionAdded: '0.62'
1287
+
1288
+ Lint/DuplicateCaseCondition:
1289
+ Description: 'Do not repeat values in case conditionals.'
1290
+ Enabled: true
1291
+ VersionAdded: '0.45'
1292
+
1293
+ Lint/DuplicateMethods:
1294
+ Description: 'Check for duplicate method definitions.'
1295
+ Enabled: true
1296
+ VersionAdded: '0.29'
1297
+
1298
+ Lint/DuplicatedKey:
1299
+ Description: 'Check for duplicate keys in hash literals.'
1300
+ Enabled: true
1301
+ VersionAdded: '0.34'
1302
+
1303
+ Lint/EachWithObjectArgument:
1304
+ Description: 'Check for immutable argument given to each_with_object.'
1305
+ Enabled: true
1306
+ VersionAdded: '0.31'
1307
+
1308
+ Lint/ElseLayout:
1309
+ Description: 'Check for odd code arrangement in an else block.'
1310
+ Enabled: true
1311
+ VersionAdded: '0.17'
1312
+
1313
+ Lint/EmptyEnsure:
1314
+ Description: 'Checks for empty ensure block.'
1315
+ Enabled: true
1316
+ VersionAdded: '0.10'
1317
+ VersionChanged: '0.48'
1318
+ AutoCorrect: false
1319
+
1320
+ Lint/EmptyExpression:
1321
+ Description: 'Checks for empty expressions.'
1322
+ Enabled: true
1323
+ VersionAdded: '0.45'
1324
+
1325
+ Lint/EmptyInterpolation:
1326
+ Description: 'Checks for empty string interpolation.'
1327
+ Enabled: true
1328
+ VersionAdded: '0.20'
1329
+ VersionChanged: '0.45'
1330
+
1331
+ Lint/EmptyWhen:
1332
+ Description: 'Checks for `when` branches with empty bodies.'
1333
+ Enabled: true
1334
+ VersionAdded: '0.45'
1335
+
1336
+ Lint/EndInMethod:
1337
+ Description: 'END blocks should not be placed inside method definitions.'
1338
+ Enabled: true
1339
+ VersionAdded: '0.9'
1340
+
1341
+ Lint/EnsureReturn:
1342
+ Description: 'Do not use return in an ensure block.'
1343
+ StyleGuide: '#no-return-ensure'
1344
+ Enabled: true
1345
+ VersionAdded: '0.9'
1346
+
1347
+ Lint/ErbNewArguments:
1348
+ Description: 'Use `:trim_mode` and `:eoutvar` keyword arguments to `ERB.new`.'
1349
+ Enabled: true
1350
+ VersionAdded: '0.56'
1351
+
1352
+ Lint/FlipFlop:
1353
+ Description: 'Checks for flip-flops.'
1354
+ StyleGuide: '#no-flip-flops'
1355
+ Enabled: true
1356
+ VersionAdded: '0.16'
1357
+
1358
+ Lint/FloatOutOfRange:
1359
+ Description: >-
1360
+ Catches floating-point literals too large or small for Ruby to
1361
+ represent.
1362
+ Enabled: true
1363
+ VersionAdded: '0.36'
1364
+
1365
+ Lint/FormatParameterMismatch:
1366
+ Description: 'The number of parameters to format/sprint must match the fields.'
1367
+ Enabled: true
1368
+ VersionAdded: '0.33'
1369
+
1370
+ Lint/HandleExceptions:
1371
+ Description: "Don't suppress exception."
1372
+ StyleGuide: '#dont-hide-exceptions'
1373
+ Enabled: true
1374
+ AllowComments: false
1375
+ VersionAdded: '0.9'
1376
+ VersionChanged: '0.70'
1377
+
1378
+ Lint/HeredocMethodCallPosition:
1379
+ Description: >-
1380
+ Checks for the ordering of a method call where
1381
+ the receiver of the call is a HEREDOC.
1382
+ Enabled: false
1383
+ StyleGuide: '#heredoc-method-calls'
1384
+ VersionAdded: '0.68'
1385
+
1386
+ Lint/ImplicitStringConcatenation:
1387
+ Description: >-
1388
+ Checks for adjacent string literals on the same line, which
1389
+ could better be represented as a single string literal.
1390
+ Enabled: true
1391
+ VersionAdded: '0.36'
1392
+
1393
+ Lint/IneffectiveAccessModifier:
1394
+ Description: >-
1395
+ Checks for attempts to use `private` or `protected` to set
1396
+ the visibility of a class method, which does not work.
1397
+ Enabled: true
1398
+ VersionAdded: '0.36'
1399
+
1400
+ Lint/InheritException:
1401
+ Description: 'Avoid inheriting from the `Exception` class.'
1402
+ Enabled: true
1403
+ VersionAdded: '0.41'
1404
+ # The default base class in favour of `Exception`.
1405
+ EnforcedStyle: runtime_error
1406
+ SupportedStyles:
1407
+ - runtime_error
1408
+ - standard_error
1409
+
1410
+ Lint/InterpolationCheck:
1411
+ Description: 'Raise warning for interpolation in single q strs.'
1412
+ Enabled: true
1413
+ VersionAdded: '0.50'
1414
+
1415
+ Lint/LiteralAsCondition:
1416
+ Description: 'Checks of literals used in conditions.'
1417
+ Enabled: true
1418
+ VersionAdded: '0.51'
1419
+
1420
+ Lint/LiteralInInterpolation:
1421
+ Description: 'Checks for literals used in interpolation.'
1422
+ Enabled: true
1423
+ VersionAdded: '0.19'
1424
+ VersionChanged: '0.32'
1425
+
1426
+ Lint/Loop:
1427
+ Description: >-
1428
+ Use Kernel#loop with break rather than begin/end/until or
1429
+ begin/end/while for post-loop tests.
1430
+ StyleGuide: '#loop-with-break'
1431
+ Enabled: true
1432
+ VersionAdded: '0.9'
1433
+
1434
+ Lint/MissingCopEnableDirective:
1435
+ Description: 'Checks for a `# rubocop:enable` after `# rubocop:disable`.'
1436
+ Enabled: true
1437
+ VersionAdded: '0.52'
1438
+ # Maximum number of consecutive lines the cop can be disabled for.
1439
+ # 0 allows only single-line disables
1440
+ # 1 would mean the maximum allowed is the following:
1441
+ # # rubocop:disable SomeCop
1442
+ # a = 1
1443
+ # # rubocop:enable SomeCop
1444
+ # .inf for any size
1445
+ MaximumRangeSize: .inf
1446
+
1447
+ Lint/MultipleCompare:
1448
+ Description: "Use `&&` operator to compare multiple value."
1449
+ Enabled: true
1450
+ VersionAdded: '0.47'
1451
+
1452
+ Lint/NestedMethodDefinition:
1453
+ Description: 'Do not use nested method definitions.'
1454
+ StyleGuide: '#no-nested-methods'
1455
+ Enabled: true
1456
+ VersionAdded: '0.32'
1457
+
1458
+ Lint/NestedPercentLiteral:
1459
+ Description: 'Checks for nested percent literals.'
1460
+ Enabled: true
1461
+ VersionAdded: '0.52'
1462
+
1463
+ Lint/NextWithoutAccumulator:
1464
+ Description: >-
1465
+ Do not omit the accumulator when calling `next`
1466
+ in a `reduce`/`inject` block.
1467
+ Enabled: true
1468
+ VersionAdded: '0.36'
1469
+
1470
+ Lint/NonLocalExitFromIterator:
1471
+ Description: 'Do not use return in iterator to cause non-local exit.'
1472
+ Enabled: true
1473
+ VersionAdded: '0.30'
1474
+
1475
+ Lint/NumberConversion:
1476
+ Description: 'Checks unsafe usage of number conversion methods.'
1477
+ Enabled: false
1478
+ VersionAdded: '0.53'
1479
+ VersionChanged: '0.70'
1480
+ SafeAutoCorrect: false
1481
+
1482
+ Lint/OrderedMagicComments:
1483
+ Description: 'Checks the proper ordering of magic comments and whether a magic comment is not placed before a shebang.'
1484
+ Enabled: true
1485
+ VersionAdded: '0.53'
1486
+
1487
+ Lint/ParenthesesAsGroupedExpression:
1488
+ Description: >-
1489
+ Checks for method calls with a space before the opening
1490
+ parenthesis.
1491
+ StyleGuide: '#parens-no-spaces'
1492
+ Enabled: true
1493
+ VersionAdded: '0.12'
1494
+
1495
+ Lint/PercentStringArray:
1496
+ Description: >-
1497
+ Checks for unwanted commas and quotes in %w/%W literals.
1498
+ Enabled: true
1499
+ Safe: false
1500
+ VersionAdded: '0.41'
1501
+
1502
+ Lint/PercentSymbolArray:
1503
+ Description: >-
1504
+ Checks for unwanted commas and colons in %i/%I literals.
1505
+ Enabled: true
1506
+ VersionAdded: '0.41'
1507
+
1508
+ Lint/RandOne:
1509
+ Description: >-
1510
+ Checks for `rand(1)` calls. Such calls always return `0`
1511
+ and most likely a mistake.
1512
+ Enabled: true
1513
+ VersionAdded: '0.36'
1514
+
1515
+ Lint/RedundantCopDisableDirective:
1516
+ Description: >-
1517
+ Checks for rubocop:disable comments that can be removed.
1518
+ Note: this cop is not disabled when disabling all cops.
1519
+ It must be explicitly disabled.
1520
+ Enabled: true
1521
+ VersionAdded: '0.76'
1522
+
1523
+ Lint/RedundantCopEnableDirective:
1524
+ Description: Checks for rubocop:enable comments that can be removed.
1525
+ Enabled: true
1526
+ VersionAdded: '0.76'
1527
+
1528
+ Lint/RedundantRequireStatement:
1529
+ Description: 'Checks for unnecessary `require` statement.'
1530
+ Enabled: true
1531
+ VersionAdded: '0.76'
1532
+
1533
+ Lint/RedundantSplatExpansion:
1534
+ Description: 'Checks for splat unnecessarily being called on literals.'
1535
+ Enabled: true
1536
+ VersionChanged: '0.76'
1537
+
1538
+ Lint/RedundantWithIndex:
1539
+ Description: 'Checks for redundant `with_index`.'
1540
+ Enabled: true
1541
+ VersionAdded: '0.50'
1542
+
1543
+ Lint/RedundantWithObject:
1544
+ Description: 'Checks for redundant `with_object`.'
1545
+ Enabled: true
1546
+ VersionAdded: '0.51'
1547
+
1548
+ Lint/RegexpAsCondition:
1549
+ Description: >-
1550
+ Do not use regexp literal as a condition.
1551
+ The regexp literal matches `$_` implicitly.
1552
+ Enabled: true
1553
+ VersionAdded: '0.51'
1554
+
1555
+ Lint/RequireParentheses:
1556
+ Description: >-
1557
+ Use parentheses in the method call to avoid confusion
1558
+ about precedence.
1559
+ Enabled: true
1560
+ VersionAdded: '0.18'
1561
+
1562
+ Lint/RescueException:
1563
+ Description: 'Avoid rescuing the Exception class.'
1564
+ StyleGuide: '#no-blind-rescues'
1565
+ Enabled: true
1566
+ VersionAdded: '0.9'
1567
+ VersionChanged: '0.27.1'
1568
+
1569
+ Lint/RescueType:
1570
+ Description: 'Avoid rescuing from non constants that could result in a `TypeError`.'
1571
+ Enabled: true
1572
+ VersionAdded: '0.49'
1573
+
1574
+ Lint/ReturnInVoidContext:
1575
+ Description: 'Checks for return in void context.'
1576
+ Enabled: true
1577
+ VersionAdded: '0.50'
1578
+
1579
+ Lint/SafeNavigationChain:
1580
+ Description: 'Do not chain ordinary method call after safe navigation operator.'
1581
+ Enabled: true
1582
+ VersionAdded: '0.47'
1583
+ VersionChanged: '0.56'
1584
+ Whitelist:
1585
+ - present?
1586
+ - blank?
1587
+ - presence
1588
+ - try
1589
+ - try!
1590
+
1591
+ Lint/SafeNavigationConsistency:
1592
+ Description: >-
1593
+ Check to make sure that if safe navigation is used for a method
1594
+ call in an `&&` or `||` condition that safe navigation is used
1595
+ for all method calls on that same object.
1596
+ Enabled: true
1597
+ VersionAdded: '0.55'
1598
+ Whitelist:
1599
+ - present?
1600
+ - blank?
1601
+ - presence
1602
+ - try
1603
+ - try!
1604
+
1605
+
1606
+ Lint/SafeNavigationWithEmpty:
1607
+ Description: 'Avoid `foo&.empty?` in conditionals.'
1608
+ Enabled: true
1609
+ VersionAdded: '0.62'
1610
+
1611
+ Lint/ScriptPermission:
1612
+ Description: 'Grant script file execute permission.'
1613
+ Enabled: true
1614
+ VersionAdded: '0.49'
1615
+ VersionChanged: '0.50'
1616
+
1617
+ Lint/SendWithMixinArgument:
1618
+ Description: 'Checks for `send` method when using mixin.'
1619
+ Enabled: true
1620
+ VersionAdded: '0.75'
1621
+
1622
+ Lint/ShadowedArgument:
1623
+ Description: 'Avoid reassigning arguments before they were used.'
1624
+ Enabled: true
1625
+ VersionAdded: '0.52'
1626
+ IgnoreImplicitReferences: false
1627
+
1628
+
1629
+ Lint/ShadowedException:
1630
+ Description: >-
1631
+ Avoid rescuing a higher level exception
1632
+ before a lower level exception.
1633
+ Enabled: true
1634
+ VersionAdded: '0.41'
1635
+
1636
+ Lint/ShadowingOuterLocalVariable:
1637
+ Description: >-
1638
+ Do not use the same name as outer local variable
1639
+ for block arguments or block local variables.
1640
+ Enabled: true
1641
+ VersionAdded: '0.9'
1642
+
1643
+ Lint/StringConversionInInterpolation:
1644
+ Description: 'Checks for Object#to_s usage in string interpolation.'
1645
+ StyleGuide: '#no-to-s'
1646
+ Enabled: true
1647
+ VersionAdded: '0.19'
1648
+ VersionChanged: '0.20'
1649
+
1650
+ Lint/Syntax:
1651
+ Description: 'Checks syntax error.'
1652
+ Enabled: true
1653
+ VersionAdded: '0.9'
1654
+
1655
+
1656
+ Lint/ToJSON:
1657
+ Description: 'Ensure #to_json includes an optional argument.'
1658
+ Enabled: true
1659
+
1660
+ Lint/UnderscorePrefixedVariableName:
1661
+ Description: 'Do not use prefix `_` for a variable that is used.'
1662
+ Enabled: true
1663
+ VersionAdded: '0.21'
1664
+ AllowKeywordBlockArguments: false
1665
+
1666
+ Lint/UnifiedInteger:
1667
+ Description: 'Use Integer instead of Fixnum or Bignum.'
1668
+ Enabled: true
1669
+ VersionAdded: '0.43'
1670
+
1671
+ Lint/UnreachableCode:
1672
+ Description: 'Unreachable code.'
1673
+ Enabled: true
1674
+ VersionAdded: '0.9'
1675
+
1676
+ Lint/UnusedBlockArgument:
1677
+ Description: 'Checks for unused block arguments.'
1678
+ StyleGuide: '#underscore-unused-vars'
1679
+ Enabled: true
1680
+ VersionAdded: '0.21'
1681
+ VersionChanged: '0.22'
1682
+ IgnoreEmptyBlocks: true
1683
+ AllowUnusedKeywordArguments: false
1684
+
1685
+ Lint/UnusedMethodArgument:
1686
+ Description: 'Checks for unused method arguments.'
1687
+ StyleGuide: '#underscore-unused-vars'
1688
+ Enabled: true
1689
+ VersionAdded: '0.21'
1690
+ VersionChanged: '0.35'
1691
+ AllowUnusedKeywordArguments: false
1692
+ IgnoreEmptyMethods: true
1693
+
1694
+ Lint/UriEscapeUnescape:
1695
+ Description: >-
1696
+ `URI.escape` method is obsolete and should not be used. Instead, use
1697
+ `CGI.escape`, `URI.encode_www_form` or `URI.encode_www_form_component`
1698
+ depending on your specific use case.
1699
+ Also `URI.unescape` method is obsolete and should not be used. Instead, use
1700
+ `CGI.unescape`, `URI.decode_www_form` or `URI.decode_www_form_component`
1701
+ depending on your specific use case.
1702
+ Enabled: true
1703
+ VersionAdded: '0.50'
1704
+
1705
+ Lint/UriRegexp:
1706
+ Description: 'Use `URI::DEFAULT_PARSER.make_regexp` instead of `URI.regexp`.'
1707
+ Enabled: true
1708
+ VersionAdded: '0.50'
1709
+
1710
+ Lint/UselessAccessModifier:
1711
+ Description: 'Checks for useless access modifiers.'
1712
+ Enabled: true
1713
+ VersionAdded: '0.20'
1714
+ VersionChanged: '0.47'
1715
+ ContextCreatingMethods: []
1716
+ MethodCreatingMethods: []
1717
+
1718
+ Lint/UselessAssignment:
1719
+ Description: 'Checks for useless assignment to a local variable.'
1720
+ StyleGuide: '#underscore-unused-vars'
1721
+ Enabled: true
1722
+ VersionAdded: '0.11'
1723
+
1724
+ Lint/UselessComparison:
1725
+ Description: 'Checks for comparison of something with itself.'
1726
+ Enabled: true
1727
+ VersionAdded: '0.11'
1728
+
1729
+ Lint/UselessElseWithoutRescue:
1730
+ Description: 'Checks for useless `else` in `begin..end` without `rescue`.'
1731
+ Enabled: true
1732
+ VersionAdded: '0.17'
1733
+
1734
+ Lint/UselessSetterCall:
1735
+ Description: 'Checks for useless setter call to a local variable.'
1736
+ Enabled: true
1737
+ VersionAdded: '0.13'
1738
+
1739
+ Lint/Void:
1740
+ Description: 'Possible use of operator/literal/variable in void context.'
1741
+ Enabled: true
1742
+ VersionAdded: '0.9'
1743
+ CheckForMethodsWithNoSideEffects: false
1744
+
1745
+ #################### Metrics ###############################
1746
+
1747
+ Metrics/AbcSize:
1748
+ Description: >-
1749
+ A calculated magnitude based on number of assignments,
1750
+ branches, and conditions.
1751
+ Reference:
1752
+ - http://c2.com/cgi/wiki?AbcMetric
1753
+ - https://en.wikipedia.org/wiki/ABC_Software_Metric
1754
+ Enabled: true
1755
+ VersionAdded: '0.27'
1756
+ VersionChanged: '0.66'
1757
+ # The ABC size is a calculated magnitude, so this number can be an Integer or
1758
+ # a Float.
1759
+ Max: 15
1760
+
1761
+ Metrics/BlockLength:
1762
+ Description: 'Avoid long blocks with many lines.'
1763
+ Enabled: true
1764
+ VersionAdded: '0.44'
1765
+ VersionChanged: '0.66'
1766
+ CountComments: false # count full line comments?
1767
+ Max: 25
1768
+ ExcludedMethods:
1769
+ # By default, exclude the `#refine` method, as it tends to have larger
1770
+ # associated blocks.
1771
+ - refine
1772
+ Exclude:
1773
+ - '**/*.gemspec'
1774
+
1775
+ Metrics/BlockNesting:
1776
+ Description: 'Avoid excessive block nesting.'
1777
+ StyleGuide: '#three-is-the-number-thou-shalt-count'
1778
+ Enabled: true
1779
+ VersionAdded: '0.25'
1780
+ VersionChanged: '0.47'
1781
+ CountBlocks: false
1782
+ Max: 3
1783
+
1784
+ Metrics/ClassLength:
1785
+ Description: 'Avoid classes longer than 100 lines of code.'
1786
+ Enabled: true
1787
+ VersionAdded: '0.25'
1788
+ CountComments: false # count full line comments?
1789
+ Max: 100
1790
+
1791
+ # Avoid complex methods.
1792
+ Metrics/CyclomaticComplexity:
1793
+ Description: >-
1794
+ A complexity metric that is strongly correlated to the number
1795
+ of test cases needed to validate a method.
1796
+ Enabled: true
1797
+ VersionAdded: '0.25'
1798
+ Max: 6
1799
+
1800
+ Metrics/LineLength:
1801
+ Description: 'Limit lines to 80 characters.'
1802
+ StyleGuide: '#80-character-limits'
1803
+ Enabled: true
1804
+ VersionAdded: '0.25'
1805
+ VersionChanged: '0.68'
1806
+ AutoCorrect: false
1807
+ Max: 80
1808
+ # To make it possible to copy or click on URIs in the code, we allow lines
1809
+ # containing a URI to be longer than Max.
1810
+ AllowHeredoc: true
1811
+ AllowURI: true
1812
+ URISchemes:
1813
+ - http
1814
+ - https
1815
+ # The IgnoreCopDirectives option causes the LineLength rule to ignore cop
1816
+ # directives like '# rubocop: enable ...' when calculating a line's length.
1817
+ IgnoreCopDirectives: true
1818
+ # The IgnoredPatterns option is a list of !ruby/regexp and/or string
1819
+ # elements. Strings will be converted to Regexp objects. A line that matches
1820
+ # any regular expression listed in this option will be ignored by LineLength.
1821
+ IgnoredPatterns: []
1822
+
1823
+ Metrics/MethodLength:
1824
+ Description: 'Avoid methods longer than 10 lines of code.'
1825
+ StyleGuide: '#short-methods'
1826
+ Enabled: true
1827
+ VersionAdded: '0.25'
1828
+ VersionChanged: '0.59.2'
1829
+ CountComments: false # count full line comments?
1830
+ Max: 10
1831
+ ExcludedMethods: []
1832
+
1833
+ Metrics/ModuleLength:
1834
+ Description: 'Avoid modules longer than 100 lines of code.'
1835
+ Enabled: true
1836
+ VersionAdded: '0.31'
1837
+ CountComments: false # count full line comments?
1838
+ Max: 100
1839
+
1840
+ Metrics/ParameterLists:
1841
+ Description: 'Avoid parameter lists longer than three or four parameters.'
1842
+ StyleGuide: '#too-many-params'
1843
+ Enabled: true
1844
+ VersionAdded: '0.25'
1845
+ Max: 5
1846
+ CountKeywordArgs: true
1847
+
1848
+ Metrics/PerceivedComplexity:
1849
+ Description: >-
1850
+ A complexity metric geared towards measuring complexity for a
1851
+ human reader.
1852
+ Enabled: true
1853
+ VersionAdded: '0.25'
1854
+ Max: 7
1855
+
1856
+ ################## Migration #############################
1857
+
1858
+ Migration/DepartmentName:
1859
+ Description: >-
1860
+ Check that cop names in rubocop:disable (etc) comments are
1861
+ given with department name.
1862
+ Enabled: false
1863
+
1864
+ #################### Naming ##############################
1865
+
1866
+ Naming/AccessorMethodName:
1867
+ Description: Check the naming of accessor methods for get_/set_.
1868
+ StyleGuide: '#accessor_mutator_method_names'
1869
+ Enabled: true
1870
+ VersionAdded: '0.50'
1871
+
1872
+ Naming/AsciiIdentifiers:
1873
+ Description: 'Use only ascii symbols in identifiers.'
1874
+ StyleGuide: '#english-identifiers'
1875
+ Enabled: true
1876
+ VersionAdded: '0.50'
1877
+
1878
+ Naming/BinaryOperatorParameterName:
1879
+ Description: 'When defining binary operators, name the argument other.'
1880
+ StyleGuide: '#other-arg'
1881
+ Enabled: true
1882
+ VersionAdded: '0.50'
1883
+
1884
+ Naming/ClassAndModuleCamelCase:
1885
+ Description: 'Use CamelCase for classes and modules.'
1886
+ StyleGuide: '#camelcase-classes'
1887
+ Enabled: true
1888
+ VersionAdded: '0.50'
1889
+
1890
+ Naming/ConstantName:
1891
+ Description: 'Constants should use SCREAMING_SNAKE_CASE.'
1892
+ StyleGuide: '#screaming-snake-case'
1893
+ Enabled: true
1894
+ VersionAdded: '0.50'
1895
+
1896
+ Naming/FileName:
1897
+ Description: 'Use snake_case for source file names.'
1898
+ StyleGuide: '#snake-case-files'
1899
+ Enabled: true
1900
+ VersionAdded: '0.50'
1901
+ # Camel case file names listed in `AllCops:Include` and all file names listed
1902
+ # in `AllCops:Exclude` are excluded by default. Add extra excludes here.
1903
+ Exclude: []
1904
+ # When `true`, requires that each source file should define a class or module
1905
+ # with a name which matches the file name (converted to ... case).
1906
+ # It further expects it to be nested inside modules which match the names
1907
+ # of subdirectories in its path.
1908
+ ExpectMatchingDefinition: false
1909
+ # If non-`nil`, expect all source file names to match the following regex.
1910
+ # Only the file name itself is matched, not the entire file path.
1911
+ # Use anchors as necessary if you want to match the entire name rather than
1912
+ # just a part of it.
1913
+ Regex: ~
1914
+ # With `IgnoreExecutableScripts` set to `true`, this cop does not
1915
+ # report offending filenames for executable scripts (i.e. source
1916
+ # files with a shebang in the first line).
1917
+ IgnoreExecutableScripts: true
1918
+ AllowedAcronyms:
1919
+ - CLI
1920
+ - DSL
1921
+ - ACL
1922
+ - API
1923
+ - ASCII
1924
+ - CPU
1925
+ - CSS
1926
+ - DNS
1927
+ - EOF
1928
+ - GUID
1929
+ - HTML
1930
+ - HTTP
1931
+ - HTTPS
1932
+ - ID
1933
+ - IP
1934
+ - JSON
1935
+ - LHS
1936
+ - QPS
1937
+ - RAM
1938
+ - RHS
1939
+ - RPC
1940
+ - SLA
1941
+ - SMTP
1942
+ - SQL
1943
+ - SSH
1944
+ - TCP
1945
+ - TLS
1946
+ - TTL
1947
+ - UDP
1948
+ - UI
1949
+ - UID
1950
+ - UUID
1951
+ - URI
1952
+ - URL
1953
+ - UTF8
1954
+ - VM
1955
+ - XML
1956
+ - XMPP
1957
+ - XSRF
1958
+ - XSS
1959
+
1960
+ Naming/HeredocDelimiterCase:
1961
+ Description: 'Use configured case for heredoc delimiters.'
1962
+ StyleGuide: '#heredoc-delimiters'
1963
+ Enabled: true
1964
+ VersionAdded: '0.50'
1965
+ EnforcedStyle: uppercase
1966
+ SupportedStyles:
1967
+ - lowercase
1968
+ - uppercase
1969
+
1970
+ Naming/HeredocDelimiterNaming:
1971
+ Description: 'Use descriptive heredoc delimiters.'
1972
+ StyleGuide: '#heredoc-delimiters'
1973
+ Enabled: true
1974
+ VersionAdded: '0.50'
1975
+ Blacklist:
1976
+ - !ruby/regexp '/(^|\s)(EO[A-Z]{1}|END)(\s|$)/'
1977
+
1978
+ Naming/MemoizedInstanceVariableName:
1979
+ Description: >-
1980
+ Memoized method name should match memo instance variable name.
1981
+ Enabled: true
1982
+ VersionAdded: '0.53'
1983
+ VersionChanged: '0.58'
1984
+ EnforcedStyleForLeadingUnderscores: disallowed
1985
+ SupportedStylesForLeadingUnderscores:
1986
+ - disallowed
1987
+ - required
1988
+ - optional
1989
+
1990
+ Naming/MethodName:
1991
+ Description: 'Use the configured style when naming methods.'
1992
+ StyleGuide: '#snake-case-symbols-methods-vars'
1993
+ Enabled: true
1994
+ VersionAdded: '0.50'
1995
+ EnforcedStyle: snake_case
1996
+ SupportedStyles:
1997
+ - snake_case
1998
+ - camelCase
1999
+ # Method names matching patterns are always allowed.
2000
+ #
2001
+ # IgnoredPatterns:
2002
+ # - '\A\s*onSelectionBulkChange\s*'
2003
+ # - '\A\s*onSelectionCleared\s*'
2004
+ #
2005
+ IgnoredPatterns: []
2006
+
2007
+ Naming/PredicateName:
2008
+ Description: 'Check the names of predicate methods.'
2009
+ StyleGuide: '#bool-methods-qmark'
2010
+ Enabled: true
2011
+ VersionAdded: '0.50'
2012
+ VersionChanged: '0.51'
2013
+ # Predicate name prefixes.
2014
+ NamePrefix:
2015
+ - is_
2016
+ - has_
2017
+ - have_
2018
+ # Predicate name prefixes that should be removed.
2019
+ NamePrefixBlacklist:
2020
+ - is_
2021
+ - has_
2022
+ - have_
2023
+ # Predicate names which, despite having a blacklisted prefix, or no `?`,
2024
+ # should still be accepted
2025
+ NameWhitelist:
2026
+ - is_a?
2027
+ # Method definition macros for dynamically generated methods.
2028
+ MethodDefinitionMacros:
2029
+ - define_method
2030
+ - define_singleton_method
2031
+ # Exclude Rspec specs because there is a strong convention to write spec
2032
+ # helpers in the form of `have_something` or `be_something`.
2033
+ Exclude:
2034
+ - 'spec/**/*'
2035
+
2036
+ Naming/RescuedExceptionsVariableName:
2037
+ Description: 'Use consistent rescued exceptions variables naming.'
2038
+ Enabled: true
2039
+ VersionAdded: '0.67'
2040
+ VersionChanged: '0.68'
2041
+ PreferredName: e
2042
+
2043
+ Naming/UncommunicativeBlockParamName:
2044
+ Description: >-
2045
+ Checks for block parameter names that contain capital letters,
2046
+ end in numbers, or do not meet a minimal length.
2047
+ Enabled: true
2048
+ VersionAdded: '0.53'
2049
+ # Parameter names may be equal to or greater than this value
2050
+ MinNameLength: 1
2051
+ AllowNamesEndingInNumbers: true
2052
+ # Whitelisted names that will not register an offense
2053
+ AllowedNames: []
2054
+ # Blacklisted names that will register an offense
2055
+ ForbiddenNames: []
2056
+
2057
+ Naming/UncommunicativeMethodParamName:
2058
+ Description: >-
2059
+ Checks for method parameter names that contain capital letters,
2060
+ end in numbers, or do not meet a minimal length.
2061
+ Enabled: true
2062
+ VersionAdded: '0.53'
2063
+ VersionChanged: '0.59'
2064
+ # Parameter names may be equal to or greater than this value
2065
+ MinNameLength: 3
2066
+ AllowNamesEndingInNumbers: true
2067
+ # Whitelisted names that will not register an offense
2068
+ AllowedNames:
2069
+ - io
2070
+ - id
2071
+ - to
2072
+ - by
2073
+ - 'on'
2074
+ - in
2075
+ - at
2076
+ - ip
2077
+ - db
2078
+ - os
2079
+ # Blacklisted names that will register an offense
2080
+ ForbiddenNames: []
2081
+
2082
+
2083
+ Naming/VariableName:
2084
+ Description: 'Use the configured style when naming variables.'
2085
+ StyleGuide: '#snake-case-symbols-methods-vars'
2086
+ Enabled: true
2087
+ VersionAdded: '0.50'
2088
+ EnforcedStyle: snake_case
2089
+ SupportedStyles:
2090
+ - snake_case
2091
+ - camelCase
2092
+
2093
+ Naming/VariableNumber:
2094
+ Description: 'Use the configured style when numbering variables.'
2095
+ Enabled: true
2096
+ VersionAdded: '0.50'
2097
+ EnforcedStyle: normalcase
2098
+ SupportedStyles:
2099
+ - snake_case
2100
+ - normalcase
2101
+ - non_integer
2102
+
2103
+ #################### Security ##############################
2104
+
2105
+ Security/Eval:
2106
+ Description: 'The use of eval represents a serious security risk.'
2107
+ Enabled: true
2108
+ VersionAdded: '0.47'
2109
+
2110
+ Security/JSONLoad:
2111
+ Description: >-
2112
+ Prefer usage of `JSON.parse` over `JSON.load` due to potential
2113
+ security issues. See reference for more information.
2114
+ Reference: 'https://ruby-doc.org/stdlib-2.3.0/libdoc/json/rdoc/JSON.html#method-i-load'
2115
+ Enabled: true
2116
+ VersionAdded: '0.43'
2117
+ VersionChanged: '0.44'
2118
+ # Autocorrect here will change to a method that may cause crashes depending
2119
+ # on the value of the argument.
2120
+ AutoCorrect: false
2121
+ SafeAutoCorrect: false
2122
+
2123
+ Security/MarshalLoad:
2124
+ Description: >-
2125
+ Avoid using of `Marshal.load` or `Marshal.restore` due to potential
2126
+ security issues. See reference for more information.
2127
+ Reference: 'https://ruby-doc.org/core-2.3.3/Marshal.html#module-Marshal-label-Security+considerations'
2128
+ Enabled: true
2129
+ VersionAdded: '0.47'
2130
+
2131
+ Security/Open:
2132
+ Description: 'The use of Kernel#open represents a serious security risk.'
2133
+ Enabled: true
2134
+ VersionAdded: '0.53'
2135
+ Safe: false
2136
+
2137
+ Security/YAMLLoad:
2138
+ Description: >-
2139
+ Prefer usage of `YAML.safe_load` over `YAML.load` due to potential
2140
+ security issues. See reference for more information.
2141
+ Reference: 'https://ruby-doc.org/stdlib-2.3.3/libdoc/yaml/rdoc/YAML.html#module-YAML-label-Security'
2142
+ Enabled: true
2143
+ VersionAdded: '0.47'
2144
+ SafeAutoCorrect: false
2145
+
2146
+ #################### Style ###############################
2147
+
2148
+ Style/AccessModifierDeclarations:
2149
+ Description: 'Checks style of how access modifiers are used.'
2150
+ Enabled: true
2151
+ VersionAdded: '0.57'
2152
+ EnforcedStyle: group
2153
+ SupportedStyles:
2154
+ - inline
2155
+ - group
2156
+
2157
+ Style/Alias:
2158
+ Description: 'Use alias instead of alias_method.'
2159
+ StyleGuide: '#alias-method-lexically'
2160
+ Enabled: true
2161
+ VersionAdded: '0.9'
2162
+ VersionChanged: '0.36'
2163
+ EnforcedStyle: prefer_alias
2164
+ SupportedStyles:
2165
+ - prefer_alias
2166
+ - prefer_alias_method
2167
+
2168
+ Style/AndOr:
2169
+ Description: 'Use &&/|| instead of and/or.'
2170
+ StyleGuide: '#no-and-or-or'
2171
+ Enabled: true
2172
+ VersionAdded: '0.9'
2173
+ VersionChanged: '0.25'
2174
+ # Whether `and` and `or` are banned only in conditionals (conditionals)
2175
+ # or completely (always).
2176
+ EnforcedStyle: always
2177
+ SupportedStyles:
2178
+ - always
2179
+ - conditionals
2180
+
2181
+ Style/ArrayJoin:
2182
+ Description: 'Use Array#join instead of Array#*.'
2183
+ StyleGuide: '#array-join'
2184
+ Enabled: true
2185
+ VersionAdded: '0.20'
2186
+ VersionChanged: '0.31'
2187
+
2188
+ Style/AsciiComments:
2189
+ Description: 'Use only ascii symbols in comments.'
2190
+ StyleGuide: '#english-comments'
2191
+ Enabled: true
2192
+ VersionAdded: '0.9'
2193
+ VersionChanged: '0.52'
2194
+ AllowedChars: []
2195
+
2196
+ Style/Attr:
2197
+ Description: 'Checks for uses of Module#attr.'
2198
+ StyleGuide: '#attr'
2199
+ Enabled: true
2200
+ VersionAdded: '0.9'
2201
+ VersionChanged: '0.12'
2202
+
2203
+ Style/AutoResourceCleanup:
2204
+ Description: 'Suggests the usage of an auto resource cleanup version of a method (if available).'
2205
+ Enabled: false
2206
+ VersionAdded: '0.30'
2207
+
2208
+ Style/BarePercentLiterals:
2209
+ Description: 'Checks if usage of %() or %Q() matches configuration.'
2210
+ StyleGuide: '#percent-q-shorthand'
2211
+ Enabled: true
2212
+ VersionAdded: '0.25'
2213
+ EnforcedStyle: bare_percent
2214
+ SupportedStyles:
2215
+ - percent_q
2216
+ - bare_percent
2217
+
2218
+ Style/BeginBlock:
2219
+ Description: 'Avoid the use of BEGIN blocks.'
2220
+ StyleGuide: '#no-BEGIN-blocks'
2221
+ Enabled: true
2222
+ VersionAdded: '0.9'
2223
+
2224
+ Style/BlockComments:
2225
+ Description: 'Do not use block comments.'
2226
+ StyleGuide: '#no-block-comments'
2227
+ Enabled: true
2228
+ VersionAdded: '0.9'
2229
+ VersionChanged: '0.23'
2230
+
2231
+ Style/BlockDelimiters:
2232
+ Description: >-
2233
+ Avoid using {...} for multi-line blocks (multiline chaining is
2234
+ always ugly).
2235
+ Prefer {...} over do...end for single-line blocks.
2236
+ StyleGuide: '#single-line-blocks'
2237
+ Enabled: true
2238
+ VersionAdded: '0.30'
2239
+ VersionChanged: '0.35'
2240
+ EnforcedStyle: line_count_based
2241
+ SupportedStyles:
2242
+ # The `line_count_based` style enforces braces around single line blocks and
2243
+ # do..end around multi-line blocks.
2244
+ - line_count_based
2245
+ # The `semantic` style enforces braces around functional blocks, where the
2246
+ # primary purpose of the block is to return a value and do..end for
2247
+ # multi-line procedural blocks, where the primary purpose of the block is
2248
+ # its side-effects. Single-line procedural blocks may only use do-end,
2249
+ # unless AllowBracesOnProceduralOneLiners has a truthy value (see below).
2250
+ #
2251
+ # This looks at the usage of a block's method to determine its type (e.g. is
2252
+ # the result of a `map` assigned to a variable or passed to another
2253
+ # method) but exceptions are permitted in the `ProceduralMethods`,
2254
+ # `FunctionalMethods` and `IgnoredMethods` sections below.
2255
+ - semantic
2256
+ # The `braces_for_chaining` style enforces braces around single line blocks
2257
+ # and do..end around multi-line blocks, except for multi-line blocks whose
2258
+ # return value is being chained with another method (in which case braces
2259
+ # are enforced).
2260
+ - braces_for_chaining
2261
+ # The `always_braces` style always enforces braces.
2262
+ - always_braces
2263
+ ProceduralMethods:
2264
+ # Methods that are known to be procedural in nature but look functional from
2265
+ # their usage, e.g.
2266
+ #
2267
+ # time = Benchmark.realtime do
2268
+ # foo.bar
2269
+ # end
2270
+ #
2271
+ # Here, the return value of the block is discarded but the return value of
2272
+ # `Benchmark.realtime` is used.
2273
+ - benchmark
2274
+ - bm
2275
+ - bmbm
2276
+ - create
2277
+ - each_with_object
2278
+ - measure
2279
+ - new
2280
+ - realtime
2281
+ - tap
2282
+ - with_object
2283
+ FunctionalMethods:
2284
+ # Methods that are known to be functional in nature but look procedural from
2285
+ # their usage, e.g.
2286
+ #
2287
+ # let(:foo) { Foo.new }
2288
+ #
2289
+ # Here, the return value of `Foo.new` is used to define a `foo` helper but
2290
+ # doesn't appear to be used from the return value of `let`.
2291
+ - let
2292
+ - let!
2293
+ - subject
2294
+ - watch
2295
+ IgnoredMethods:
2296
+ # Methods that can be either procedural or functional and cannot be
2297
+ # categorised from their usage alone, e.g.
2298
+ #
2299
+ # foo = lambda do |x|
2300
+ # puts "Hello, #{x}"
2301
+ # end
2302
+ #
2303
+ # foo = lambda do |x|
2304
+ # x * 100
2305
+ # end
2306
+ #
2307
+ # Here, it is impossible to tell from the return value of `lambda` whether
2308
+ # the inner block's return value is significant.
2309
+ - lambda
2310
+ - proc
2311
+ - it
2312
+ # The AllowBracesOnProceduralOneLiners option is ignored unless the
2313
+ # EnforcedStyle is set to `semantic`. If so:
2314
+ #
2315
+ # If AllowBracesOnProceduralOneLiners is unspecified, or set to any
2316
+ # falsey value, then semantic purity is maintained, so one-line
2317
+ # procedural blocks must use do-end, not braces.
2318
+ #
2319
+ # # bad
2320
+ # collection.each { |element| puts element }
2321
+ #
2322
+ # # good
2323
+ # collection.each do |element| puts element end
2324
+ #
2325
+ # If AllowBracesOnProceduralOneLiners is set to any truthy value,
2326
+ # then one-line procedural blocks may use either style.
2327
+ #
2328
+ # # good
2329
+ # collection.each { |element| puts element }
2330
+ #
2331
+ # # also good
2332
+ # collection.each do |element| puts element end
2333
+ AllowBracesOnProceduralOneLiners: false
2334
+
2335
+ Style/BracesAroundHashParameters:
2336
+ Description: 'Enforce braces style around hash parameters.'
2337
+ Enabled: true
2338
+ VersionAdded: '0.14.1'
2339
+ VersionChanged: '0.28'
2340
+ EnforcedStyle: no_braces
2341
+ SupportedStyles:
2342
+ # The `braces` style enforces braces around all method parameters that are
2343
+ # hashes.
2344
+ - braces
2345
+ # The `no_braces` style checks that the last parameter doesn't have braces
2346
+ # around it.
2347
+ - no_braces
2348
+ # The `context_dependent` style checks that the last parameter doesn't have
2349
+ # braces around it, but requires braces if the second to last parameter is
2350
+ # also a hash literal.
2351
+ - context_dependent
2352
+
2353
+ Style/CaseEquality:
2354
+ Description: 'Avoid explicit use of the case equality operator(===).'
2355
+ StyleGuide: '#no-case-equality'
2356
+ Enabled: true
2357
+ VersionAdded: '0.9'
2358
+
2359
+ Style/CharacterLiteral:
2360
+ Description: 'Checks for uses of character literals.'
2361
+ StyleGuide: '#no-character-literals'
2362
+ Enabled: true
2363
+ VersionAdded: '0.9'
2364
+
2365
+ Style/ClassAndModuleChildren:
2366
+ Description: 'Checks style of children classes and modules.'
2367
+ StyleGuide: '#namespace-definition'
2368
+ # Moving from compact to nested children requires knowledge of whether the
2369
+ # outer parent is a module or a class. Moving from nested to compact requires
2370
+ # verification that the outer parent is defined elsewhere. Rubocop does not
2371
+ # have the knowledge to perform either operation safely and thus requires
2372
+ # manual oversight.
2373
+ SafeAutoCorrect: false
2374
+ AutoCorrect: false
2375
+ Enabled: true
2376
+ VersionAdded: '0.19'
2377
+ #
2378
+ # Basically there are two different styles:
2379
+ #
2380
+ # `nested` - have each child on a separate line
2381
+ # class Foo
2382
+ # class Bar
2383
+ # end
2384
+ # end
2385
+ #
2386
+ # `compact` - combine definitions as much as possible
2387
+ # class Foo::Bar
2388
+ # end
2389
+ #
2390
+ # The compact style is only forced, for classes or modules with one child.
2391
+ EnforcedStyle: nested
2392
+ SupportedStyles:
2393
+ - nested
2394
+ - compact
2395
+
2396
+ Style/ClassCheck:
2397
+ Description: 'Enforces consistent use of `Object#is_a?` or `Object#kind_of?`.'
2398
+ Enabled: true
2399
+ VersionAdded: '0.24'
2400
+ EnforcedStyle: is_a?
2401
+ SupportedStyles:
2402
+ - is_a?
2403
+ - kind_of?
2404
+
2405
+ Style/ClassMethods:
2406
+ Description: 'Use self when defining module/class methods.'
2407
+ StyleGuide: '#def-self-class-methods'
2408
+ Enabled: true
2409
+ VersionAdded: '0.9'
2410
+ VersionChanged: '0.20'
2411
+
2412
+ Style/ClassVars:
2413
+ Description: 'Avoid the use of class variables.'
2414
+ StyleGuide: '#no-class-vars'
2415
+ Enabled: true
2416
+ VersionAdded: '0.13'
2417
+
2418
+ # Align with the style guide.
2419
+ Style/CollectionMethods:
2420
+ Description: 'Preferred collection methods.'
2421
+ StyleGuide: '#map-find-select-reduce-size'
2422
+ Enabled: false
2423
+ VersionAdded: '0.9'
2424
+ VersionChanged: '0.27'
2425
+ Safe: false
2426
+ # Mapping from undesired method to desired method
2427
+ # e.g. to use `detect` over `find`:
2428
+ #
2429
+ # Style/CollectionMethods:
2430
+ # PreferredMethods:
2431
+ # find: detect
2432
+ PreferredMethods:
2433
+ collect: 'map'
2434
+ collect!: 'map!'
2435
+ inject: 'reduce'
2436
+ detect: 'find'
2437
+ find_all: 'select'
2438
+
2439
+ Style/ColonMethodCall:
2440
+ Description: 'Do not use :: for method call.'
2441
+ StyleGuide: '#double-colons'
2442
+ Enabled: true
2443
+ VersionAdded: '0.9'
2444
+
2445
+ Style/ColonMethodDefinition:
2446
+ Description: 'Do not use :: for defining class methods.'
2447
+ StyleGuide: '#colon-method-definition'
2448
+ Enabled: true
2449
+ VersionAdded: '0.52'
2450
+
2451
+ Style/CommandLiteral:
2452
+ Description: 'Use `` or %x around command literals.'
2453
+ StyleGuide: '#percent-x'
2454
+ Enabled: true
2455
+ VersionAdded: '0.30'
2456
+ EnforcedStyle: backticks
2457
+ # backticks: Always use backticks.
2458
+ # percent_x: Always use `%x`.
2459
+ # mixed: Use backticks on single-line commands, and `%x` on multi-line commands.
2460
+ SupportedStyles:
2461
+ - backticks
2462
+ - percent_x
2463
+ - mixed
2464
+ # If `false`, the cop will always recommend using `%x` if one or more backticks
2465
+ # are found in the command string.
2466
+ AllowInnerBackticks: false
2467
+
2468
+ # Checks formatting of special comments
2469
+ Style/CommentAnnotation:
2470
+ Description: >-
2471
+ Checks formatting of special comments
2472
+ (TODO, FIXME, OPTIMIZE, HACK, REVIEW).
2473
+ StyleGuide: '#annotate-keywords'
2474
+ Enabled: true
2475
+ VersionAdded: '0.10'
2476
+ VersionChanged: '0.31'
2477
+ Keywords:
2478
+ - TODO
2479
+ - FIXME
2480
+ - OPTIMIZE
2481
+ - HACK
2482
+ - REVIEW
2483
+
2484
+ Style/CommentedKeyword:
2485
+ Description: 'Do not place comments on the same line as certain keywords.'
2486
+ Enabled: true
2487
+ VersionAdded: '0.51'
2488
+
2489
+ Style/ConditionalAssignment:
2490
+ Description: >-
2491
+ Use the return value of `if` and `case` statements for
2492
+ assignment to a variable and variable comparison instead
2493
+ of assigning that variable inside of each branch.
2494
+ Enabled: true
2495
+ VersionAdded: '0.36'
2496
+ VersionChanged: '0.47'
2497
+ EnforcedStyle: assign_to_condition
2498
+ SupportedStyles:
2499
+ - assign_to_condition
2500
+ - assign_inside_condition
2501
+ # When configured to `assign_to_condition`, `SingleLineConditionsOnly`
2502
+ # will only register an offense when all branches of a condition are
2503
+ # a single line.
2504
+ # When configured to `assign_inside_condition`, `SingleLineConditionsOnly`
2505
+ # will only register an offense for assignment to a condition that has
2506
+ # at least one multiline branch.
2507
+ SingleLineConditionsOnly: true
2508
+ IncludeTernaryExpressions: true
2509
+
2510
+ Style/ConstantVisibility:
2511
+ Description: >-
2512
+ Check that class- and module constants have
2513
+ visibility declarations.
2514
+ Enabled: false
2515
+ VersionAdded: '0.66'
2516
+
2517
+ # Checks that you have put a copyright in a comment before any code.
2518
+ #
2519
+ # You can override the default Notice in your .rubocop.yml file.
2520
+ #
2521
+ # In order to use autocorrect, you must supply a value for the
2522
+ # `AutocorrectNotice` key that matches the regexp Notice. A blank
2523
+ # `AutocorrectNotice` will cause an error during autocorrect.
2524
+ #
2525
+ # Autocorrect will add a copyright notice in a comment at the top
2526
+ # of the file immediately after any shebang or encoding comments.
2527
+ #
2528
+ # Example rubocop.yml:
2529
+ #
2530
+ # Style/Copyright:
2531
+ # Enabled: true
2532
+ # Notice: 'Copyright (\(c\) )?2015 Yahoo! Inc'
2533
+ # AutocorrectNotice: '# Copyright (c) 2015 Yahoo! Inc.'
2534
+ #
2535
+ Style/Copyright:
2536
+ Description: 'Include a copyright notice in each file before any code.'
2537
+ Enabled: false
2538
+ VersionAdded: '0.30'
2539
+ Notice: '^Copyright (\(c\) )?2[0-9]{3} .+'
2540
+ AutocorrectNotice: ''
2541
+
2542
+ Style/DateTime:
2543
+ Description: 'Use Time over DateTime.'
2544
+ StyleGuide: '#date--time'
2545
+ Enabled: false
2546
+ VersionAdded: '0.51'
2547
+ VersionChanged: '0.59'
2548
+ AllowCoercion: false
2549
+
2550
+ Style/DefWithParentheses:
2551
+ Description: 'Use def with parentheses when there are arguments.'
2552
+ StyleGuide: '#method-parens'
2553
+ Enabled: true
2554
+ VersionAdded: '0.9'
2555
+ VersionChanged: '0.12'
2556
+
2557
+ Style/Dir:
2558
+ Description: >-
2559
+ Use the `__dir__` method to retrieve the canonicalized
2560
+ absolute path to the current file.
2561
+ Enabled: true
2562
+ VersionAdded: '0.50'
2563
+
2564
+ Style/Documentation:
2565
+ Description: 'Document classes and non-namespace modules.'
2566
+ Enabled: true
2567
+ VersionAdded: '0.9'
2568
+ Exclude:
2569
+ - 'spec/**/*'
2570
+ - 'test/**/*'
2571
+
2572
+ Style/DocumentationMethod:
2573
+ Description: 'Checks for missing documentation comment for public methods.'
2574
+ Enabled: false
2575
+ VersionAdded: '0.43'
2576
+ Exclude:
2577
+ - 'spec/**/*'
2578
+ - 'test/**/*'
2579
+ RequireForNonPublicMethods: false
2580
+
2581
+ Style/DoubleCopDisableDirective:
2582
+ Description: 'Checks for double rubocop:disable comments on a single line.'
2583
+ Enabled: true
2584
+ VersionAdded: '0.73'
2585
+
2586
+ Style/DoubleNegation:
2587
+ Description: 'Checks for uses of double negation (!!).'
2588
+ StyleGuide: '#no-bang-bang'
2589
+ Enabled: true
2590
+ VersionAdded: '0.19'
2591
+
2592
+ Style/EachForSimpleLoop:
2593
+ Description: >-
2594
+ Use `Integer#times` for a simple loop which iterates a fixed
2595
+ number of times.
2596
+ Enabled: true
2597
+ VersionAdded: '0.41'
2598
+
2599
+ Style/EachWithObject:
2600
+ Description: 'Prefer `each_with_object` over `inject` or `reduce`.'
2601
+ Enabled: true
2602
+ VersionAdded: '0.22'
2603
+ VersionChanged: '0.42'
2604
+
2605
+ Style/EmptyBlockParameter:
2606
+ Description: 'Omit pipes for empty block parameters.'
2607
+ Enabled: true
2608
+ VersionAdded: '0.52'
2609
+
2610
+ Style/EmptyCaseCondition:
2611
+ Description: 'Avoid empty condition in case statements.'
2612
+ Enabled: true
2613
+ VersionAdded: '0.40'
2614
+
2615
+ Style/EmptyElse:
2616
+ Description: 'Avoid empty else-clauses.'
2617
+ Enabled: true
2618
+ VersionAdded: '0.28'
2619
+ VersionChanged: '0.32'
2620
+ EnforcedStyle: both
2621
+ # empty - warn only on empty `else`
2622
+ # nil - warn on `else` with nil in it
2623
+ # both - warn on empty `else` and `else` with `nil` in it
2624
+ SupportedStyles:
2625
+ - empty
2626
+ - nil
2627
+ - both
2628
+
2629
+ Style/EmptyLambdaParameter:
2630
+ Description: 'Omit parens for empty lambda parameters.'
2631
+ Enabled: true
2632
+ VersionAdded: '0.52'
2633
+
2634
+ Style/EmptyLiteral:
2635
+ Description: 'Prefer literals to Array.new/Hash.new/String.new.'
2636
+ StyleGuide: '#literal-array-hash'
2637
+ Enabled: true
2638
+ VersionAdded: '0.9'
2639
+ VersionChanged: '0.12'
2640
+
2641
+ Style/EmptyMethod:
2642
+ Description: 'Checks the formatting of empty method definitions.'
2643
+ StyleGuide: '#no-single-line-methods'
2644
+ Enabled: true
2645
+ VersionAdded: '0.46'
2646
+ EnforcedStyle: compact
2647
+ SupportedStyles:
2648
+ - compact
2649
+ - expanded
2650
+
2651
+ Style/Encoding:
2652
+ Description: 'Use UTF-8 as the source file encoding.'
2653
+ StyleGuide: '#utf-8'
2654
+ Enabled: true
2655
+ VersionAdded: '0.9'
2656
+ VersionChanged: '0.50'
2657
+
2658
+ Style/EndBlock:
2659
+ Description: 'Avoid the use of END blocks.'
2660
+ StyleGuide: '#no-END-blocks'
2661
+ Enabled: true
2662
+ VersionAdded: '0.9'
2663
+
2664
+ Style/EvalWithLocation:
2665
+ Description: 'Pass `__FILE__` and `__LINE__` to `eval` method, as they are used by backtraces.'
2666
+ Enabled: true
2667
+ VersionAdded: '0.52'
2668
+
2669
+ Style/EvenOdd:
2670
+ Description: 'Favor the use of `Integer#even?` && `Integer#odd?`.'
2671
+ StyleGuide: '#predicate-methods'
2672
+ Enabled: true
2673
+ VersionAdded: '0.12'
2674
+ VersionChanged: '0.29'
2675
+
2676
+ Style/ExpandPathArguments:
2677
+ Description: "Use `expand_path(__dir__)` instead of `expand_path('..', __FILE__)`."
2678
+ Enabled: true
2679
+ VersionAdded: '0.53'
2680
+
2681
+ Style/FloatDivision:
2682
+ Description: 'For performing float division, coerce one side only.'
2683
+ StyleGuide: '#float-division'
2684
+ Reference: 'https://github.com/rubocop-hq/ruby-style-guide/issues/628'
2685
+ Enabled: true
2686
+ VersionAdded: '0.72'
2687
+ EnforcedStyle: single_coerce
2688
+ SupportedStyles:
2689
+ - left_coerce
2690
+ - right_coerce
2691
+ - single_coerce
2692
+ - fdiv
2693
+
2694
+ Style/For:
2695
+ Description: 'Checks use of for or each in multiline loops.'
2696
+ StyleGuide: '#no-for-loops'
2697
+ Enabled: true
2698
+ VersionAdded: '0.13'
2699
+ VersionChanged: '0.59'
2700
+ EnforcedStyle: each
2701
+ SupportedStyles:
2702
+ - each
2703
+ - for
2704
+
2705
+ Style/FormatString:
2706
+ Description: 'Enforce the use of Kernel#sprintf, Kernel#format or String#%.'
2707
+ StyleGuide: '#sprintf'
2708
+ Enabled: true
2709
+ VersionAdded: '0.19'
2710
+ VersionChanged: '0.49'
2711
+ EnforcedStyle: format
2712
+ SupportedStyles:
2713
+ - format
2714
+ - sprintf
2715
+ - percent
2716
+
2717
+ Style/FormatStringToken:
2718
+ Description: 'Use a consistent style for format string tokens.'
2719
+ Enabled: true
2720
+ EnforcedStyle: annotated
2721
+ SupportedStyles:
2722
+ # Prefer tokens which contain a sprintf like type annotation like
2723
+ # `%<name>s`, `%<age>d`, `%<score>f`
2724
+ - annotated
2725
+ # Prefer simple looking "template" style tokens like `%{name}`, `%{age}`
2726
+ - template
2727
+ - unannotated
2728
+ VersionAdded: '0.49'
2729
+ VersionChanged: '0.75'
2730
+
2731
+ Style/FrozenStringLiteralComment:
2732
+ Description: >-
2733
+ Add the frozen_string_literal comment to the top of files
2734
+ to help transition to frozen string literals by default.
2735
+ Enabled: true
2736
+ VersionAdded: '0.36'
2737
+ VersionChanged: '0.69'
2738
+ EnforcedStyle: always
2739
+ SupportedStyles:
2740
+ # `always` will always add the frozen string literal comment to a file
2741
+ # regardless of the Ruby version or if `freeze` or `<<` are called on a
2742
+ # string literal. If you run code against multiple versions of Ruby, it is
2743
+ # possible that this will create errors in Ruby 2.3.0+.
2744
+ - always
2745
+ # `never` will enforce that the frozen string literal comment does not
2746
+ # exist in a file.
2747
+ - never
2748
+
2749
+ Style/GlobalVars:
2750
+ Description: 'Do not introduce global variables.'
2751
+ StyleGuide: '#instance-vars'
2752
+ Reference: 'https://www.zenspider.com/ruby/quickref.html'
2753
+ Enabled: true
2754
+ VersionAdded: '0.13'
2755
+ # Built-in global variables are allowed by default.
2756
+ AllowedVariables: []
2757
+
2758
+ Style/GuardClause:
2759
+ Description: 'Check for conditionals that can be replaced with guard clauses.'
2760
+ StyleGuide: '#no-nested-conditionals'
2761
+ Enabled: true
2762
+ VersionAdded: '0.20'
2763
+ VersionChanged: '0.22'
2764
+ # `MinBodyLength` defines the number of lines of the a body of an `if` or `unless`
2765
+ # needs to have to trigger this cop
2766
+ MinBodyLength: 1
2767
+
2768
+ Style/HashSyntax:
2769
+ Description: >-
2770
+ Prefer Ruby 1.9 hash syntax { a: 1, b: 2 } over 1.8 syntax
2771
+ { :a => 1, :b => 2 }.
2772
+ StyleGuide: '#hash-literals'
2773
+ Enabled: true
2774
+ VersionAdded: '0.9'
2775
+ VersionChanged: '0.43'
2776
+ EnforcedStyle: ruby19
2777
+ SupportedStyles:
2778
+ # checks for 1.9 syntax (e.g. {a: 1}) for all symbol keys
2779
+ - ruby19
2780
+ # checks for hash rocket syntax for all hashes
2781
+ - hash_rockets
2782
+ # forbids mixed key syntaxes (e.g. {a: 1, :b => 2})
2783
+ - no_mixed_keys
2784
+ # enforces both ruby19 and no_mixed_keys styles
2785
+ - ruby19_no_mixed_keys
2786
+ # Force hashes that have a symbol value to use hash rockets
2787
+ UseHashRocketsWithSymbolValues: false
2788
+ # Do not suggest { a?: 1 } over { :a? => 1 } in ruby19 style
2789
+ PreferHashRocketsForNonAlnumEndingSymbols: false
2790
+
2791
+ Style/IdenticalConditionalBranches:
2792
+ Description: >-
2793
+ Checks that conditional statements do not have an identical
2794
+ line at the end of each branch, which can validly be moved
2795
+ out of the conditional.
2796
+ Enabled: true
2797
+ VersionAdded: '0.36'
2798
+
2799
+ Style/IfInsideElse:
2800
+ Description: 'Finds if nodes inside else, which can be converted to elsif.'
2801
+ Enabled: true
2802
+ AllowIfModifier: false
2803
+ VersionAdded: '0.36'
2804
+
2805
+ Style/IfUnlessModifier:
2806
+ Description: >-
2807
+ Favor modifier if/unless usage when you have a
2808
+ single-line body.
2809
+ StyleGuide: '#if-as-a-modifier'
2810
+ Enabled: true
2811
+ VersionAdded: '0.9'
2812
+ VersionChanged: '0.30'
2813
+
2814
+ Style/IfUnlessModifierOfIfUnless:
2815
+ Description: >-
2816
+ Avoid modifier if/unless usage on conditionals.
2817
+ Enabled: true
2818
+ VersionAdded: '0.39'
2819
+
2820
+ Style/IfWithSemicolon:
2821
+ Description: 'Do not use if x; .... Use the ternary operator instead.'
2822
+ StyleGuide: '#no-semicolon-ifs'
2823
+ Enabled: true
2824
+ VersionAdded: '0.9'
2825
+
2826
+ Style/ImplicitRuntimeError:
2827
+ Description: >-
2828
+ Use `raise` or `fail` with an explicit exception class and
2829
+ message, rather than just a message.
2830
+ Enabled: false
2831
+ VersionAdded: '0.41'
2832
+
2833
+ Style/InfiniteLoop:
2834
+ Description: 'Use Kernel#loop for infinite loops.'
2835
+ StyleGuide: '#infinite-loop'
2836
+ Enabled: true
2837
+ VersionAdded: '0.26'
2838
+ VersionChanged: '0.61'
2839
+ SafeAutoCorrect: true
2840
+
2841
+ Style/InlineComment:
2842
+ Description: 'Avoid trailing inline comments.'
2843
+ Enabled: false
2844
+ VersionAdded: '0.23'
2845
+
2846
+ Style/InverseMethods:
2847
+ Description: >-
2848
+ Use the inverse method instead of `!.method`
2849
+ if an inverse method is defined.
2850
+ Enabled: true
2851
+ Safe: false
2852
+ VersionAdded: '0.48'
2853
+ # `InverseMethods` are methods that can be inverted by a not (`not` or `!`)
2854
+ # The relationship of inverse methods only needs to be defined in one direction.
2855
+ # Keys and values both need to be defined as symbols.
2856
+ InverseMethods:
2857
+ :any?: :none?
2858
+ :even?: :odd?
2859
+ :==: :!=
2860
+ :=~: :!~
2861
+ :<: :>=
2862
+ :>: :<=
2863
+ # `ActiveSupport` defines some common inverse methods. They are listed below,
2864
+ # and not enabled by default.
2865
+ #:present?: :blank?,
2866
+ #:include?: :exclude?
2867
+ # `InverseBlocks` are methods that are inverted by inverting the return
2868
+ # of the block that is passed to the method
2869
+ InverseBlocks:
2870
+ :select: :reject
2871
+ :select!: :reject!
2872
+
2873
+ Style/IpAddresses:
2874
+ Description: "Don't include literal IP addresses in code."
2875
+ Enabled: false
2876
+ VersionAdded: '0.58'
2877
+ # Allow strings to be whitelisted
2878
+ Whitelist:
2879
+ - "::"
2880
+ # :: is a valid IPv6 address, but could potentially be legitimately in code
2881
+
2882
+ Style/Lambda:
2883
+ Description: 'Use the new lambda literal syntax for single-line blocks.'
2884
+ StyleGuide: '#lambda-multi-line'
2885
+ Enabled: true
2886
+ VersionAdded: '0.9'
2887
+ VersionChanged: '0.40'
2888
+ EnforcedStyle: line_count_dependent
2889
+ SupportedStyles:
2890
+ - line_count_dependent
2891
+ - lambda
2892
+ - literal
2893
+
2894
+ Style/LambdaCall:
2895
+ Description: 'Use lambda.call(...) instead of lambda.(...).'
2896
+ StyleGuide: '#proc-call'
2897
+ Enabled: true
2898
+ VersionAdded: '0.13.1'
2899
+ VersionChanged: '0.14'
2900
+ EnforcedStyle: call
2901
+ SupportedStyles:
2902
+ - call
2903
+ - braces
2904
+
2905
+ Style/LineEndConcatenation:
2906
+ Description: >-
2907
+ Use \ instead of + or << to concatenate two string literals at
2908
+ line end.
2909
+ Enabled: true
2910
+ SafeAutoCorrect: false
2911
+ VersionAdded: '0.18'
2912
+ VersionChanged: '0.64'
2913
+
2914
+ Style/MethodCallWithArgsParentheses:
2915
+ Description: 'Use parentheses for method calls with arguments.'
2916
+ StyleGuide: '#method-invocation-parens'
2917
+ Enabled: false
2918
+ VersionAdded: '0.47'
2919
+ VersionChanged: '0.61'
2920
+ IgnoreMacros: true
2921
+ IgnoredMethods: []
2922
+ IgnoredPatterns: []
2923
+ IncludedMacros: []
2924
+ AllowParenthesesInMultilineCall: false
2925
+ AllowParenthesesInChaining: false
2926
+ AllowParenthesesInCamelCaseMethod: false
2927
+ EnforcedStyle: require_parentheses
2928
+ SupportedStyles:
2929
+ - require_parentheses
2930
+ - omit_parentheses
2931
+
2932
+ Style/MethodCallWithoutArgsParentheses:
2933
+ Description: 'Do not use parentheses for method calls with no arguments.'
2934
+ StyleGuide: '#method-invocation-parens'
2935
+ Enabled: true
2936
+ IgnoredMethods: []
2937
+ VersionAdded: '0.47'
2938
+ VersionChanged: '0.55'
2939
+
2940
+ Style/MethodCalledOnDoEndBlock:
2941
+ Description: 'Avoid chaining a method call on a do...end block.'
2942
+ StyleGuide: '#single-line-blocks'
2943
+ Enabled: false
2944
+ VersionAdded: '0.14'
2945
+
2946
+ Style/MethodDefParentheses:
2947
+ Description: >-
2948
+ Checks if the method definitions have or don't have
2949
+ parentheses.
2950
+ StyleGuide: '#method-parens'
2951
+ Enabled: true
2952
+ VersionAdded: '0.16'
2953
+ VersionChanged: '0.35'
2954
+ EnforcedStyle: require_parentheses
2955
+ SupportedStyles:
2956
+ - require_parentheses
2957
+ - require_no_parentheses
2958
+ - require_no_parentheses_except_multiline
2959
+
2960
+ Style/MethodMissingSuper:
2961
+ Description: Checks for `method_missing` to call `super`.
2962
+ StyleGuide: '#no-method-missing'
2963
+ Enabled: true
2964
+ VersionAdded: '0.56'
2965
+
2966
+ Style/MinMax:
2967
+ Description: >-
2968
+ Use `Enumerable#minmax` instead of `Enumerable#min`
2969
+ and `Enumerable#max` in conjunction.
2970
+ Enabled: true
2971
+ VersionAdded: '0.50'
2972
+
2973
+ Style/MissingElse:
2974
+ Description: >-
2975
+ Require if/case expressions to have an else branches.
2976
+ If enabled, it is recommended that
2977
+ Style/UnlessElse and Style/EmptyElse be enabled.
2978
+ This will conflict with Style/EmptyElse if
2979
+ Style/EmptyElse is configured to style "both".
2980
+ Enabled: false
2981
+ VersionAdded: '0.30'
2982
+ VersionChanged: '0.38'
2983
+ EnforcedStyle: both
2984
+ SupportedStyles:
2985
+ # if - warn when an if expression is missing an else branch
2986
+ # case - warn when a case expression is missing an else branch
2987
+ # both - warn when an if or case expression is missing an else branch
2988
+ - if
2989
+ - case
2990
+ - both
2991
+
2992
+ Style/MissingRespondToMissing:
2993
+ Description: >-
2994
+ Checks if `method_missing` is implemented
2995
+ without implementing `respond_to_missing`.
2996
+ StyleGuide: '#no-method-missing'
2997
+ Enabled: true
2998
+ VersionAdded: '0.56'
2999
+
3000
+ Style/MixinGrouping:
3001
+ Description: 'Checks for grouping of mixins in `class` and `module` bodies.'
3002
+ StyleGuide: '#mixin-grouping'
3003
+ Enabled: true
3004
+ VersionAdded: '0.48'
3005
+ VersionChanged: '0.49'
3006
+ EnforcedStyle: separated
3007
+ SupportedStyles:
3008
+ # separated: each mixed in module goes in a separate statement.
3009
+ # grouped: mixed in modules are grouped into a single statement.
3010
+ - separated
3011
+ - grouped
3012
+
3013
+ Style/MixinUsage:
3014
+ Description: 'Checks that `include`, `extend` and `prepend` exists at the top level.'
3015
+ Enabled: true
3016
+ VersionAdded: '0.51'
3017
+
3018
+ Style/ModuleFunction:
3019
+ Description: 'Checks for usage of `extend self` in modules.'
3020
+ StyleGuide: '#module-function'
3021
+ Enabled: true
3022
+ VersionAdded: '0.11'
3023
+ VersionChanged: '0.65'
3024
+ EnforcedStyle: module_function
3025
+ SupportedStyles:
3026
+ - module_function
3027
+ - extend_self
3028
+ Autocorrect: false
3029
+ SafeAutoCorrect: false
3030
+
3031
+ Style/MultilineBlockChain:
3032
+ Description: 'Avoid multi-line chains of blocks.'
3033
+ StyleGuide: '#single-line-blocks'
3034
+ Enabled: true
3035
+ VersionAdded: '0.13'
3036
+
3037
+ Style/MultilineIfModifier:
3038
+ Description: 'Only use if/unless modifiers on single line statements.'
3039
+ StyleGuide: '#no-multiline-if-modifiers'
3040
+ Enabled: true
3041
+ VersionAdded: '0.45'
3042
+
3043
+ Style/MultilineIfThen:
3044
+ Description: 'Do not use then for multi-line if/unless.'
3045
+ StyleGuide: '#no-then'
3046
+ Enabled: true
3047
+ VersionAdded: '0.9'
3048
+ VersionChanged: '0.26'
3049
+
3050
+ Style/MultilineMemoization:
3051
+ Description: 'Wrap multiline memoizations in a `begin` and `end` block.'
3052
+ Enabled: true
3053
+ VersionAdded: '0.44'
3054
+ VersionChanged: '0.48'
3055
+ EnforcedStyle: keyword
3056
+ SupportedStyles:
3057
+ - keyword
3058
+ - braces
3059
+
3060
+ Style/MultilineMethodSignature:
3061
+ Description: 'Avoid multi-line method signatures.'
3062
+ Enabled: false
3063
+ VersionAdded: '0.59'
3064
+
3065
+ Style/MultilineTernaryOperator:
3066
+ Description: >-
3067
+ Avoid multi-line ?: (the ternary operator);
3068
+ use if/unless instead.
3069
+ StyleGuide: '#no-multiline-ternary'
3070
+ Enabled: true
3071
+ VersionAdded: '0.9'
3072
+
3073
+ Style/MultilineWhenThen:
3074
+ Description: 'Do not use then for multi-line when statement.'
3075
+ StyleGuide: '#no-then'
3076
+ Enabled: true
3077
+ VersionAdded: '0.73'
3078
+
3079
+ Style/MultipleComparison:
3080
+ Description: >-
3081
+ Avoid comparing a variable with multiple items in a conditional,
3082
+ use Array#include? instead.
3083
+ Enabled: true
3084
+ VersionAdded: '0.49'
3085
+
3086
+ Style/MutableConstant:
3087
+ Description: 'Do not assign mutable objects to constants.'
3088
+ Enabled: true
3089
+ VersionAdded: '0.34'
3090
+ VersionChanged: '0.65'
3091
+ EnforcedStyle: literals
3092
+ SupportedStyles:
3093
+ # literals: freeze literals assigned to constants
3094
+ # strict: freeze all constants
3095
+ # Strict mode is considered an experimental feature. It has not been updated
3096
+ # with an exhaustive list of all methods that will produce frozen objects so
3097
+ # there is a decent chance of getting some false positives. Luckily, there is
3098
+ # no harm in freezing an already frozen object.
3099
+ - literals
3100
+ - strict
3101
+
3102
+ Style/NegatedIf:
3103
+ Description: >-
3104
+ Favor unless over if for negative conditions
3105
+ (or control flow or).
3106
+ StyleGuide: '#unless-for-negatives'
3107
+ Enabled: true
3108
+ VersionAdded: '0.20'
3109
+ VersionChanged: '0.48'
3110
+ EnforcedStyle: both
3111
+ SupportedStyles:
3112
+ # both: prefix and postfix negated `if` should both use `unless`
3113
+ # prefix: only use `unless` for negated `if` statements positioned before the body of the statement
3114
+ # postfix: only use `unless` for negated `if` statements positioned after the body of the statement
3115
+ - both
3116
+ - prefix
3117
+ - postfix
3118
+
3119
+ Style/NegatedUnless:
3120
+ Description: 'Favor if over unless for negative conditions.'
3121
+ StyleGuide: '#if-for-negatives'
3122
+ Enabled: true
3123
+ VersionAdded: '0.69'
3124
+ EnforcedStyle: both
3125
+ SupportedStyles:
3126
+ # both: prefix and postfix negated `unless` should both use `if`
3127
+ # prefix: only use `if` for negated `unless` statements positioned before the body of the statement
3128
+ # postfix: only use `if` for negated `unless` statements positioned after the body of the statement
3129
+ - both
3130
+ - prefix
3131
+ - postfix
3132
+
3133
+ Style/NegatedWhile:
3134
+ Description: 'Favor until over while for negative conditions.'
3135
+ StyleGuide: '#until-for-negatives'
3136
+ Enabled: true
3137
+ VersionAdded: '0.20'
3138
+
3139
+ Style/NestedModifier:
3140
+ Description: 'Avoid using nested modifiers.'
3141
+ StyleGuide: '#no-nested-modifiers'
3142
+ Enabled: true
3143
+ VersionAdded: '0.35'
3144
+
3145
+ Style/NestedParenthesizedCalls:
3146
+ Description: >-
3147
+ Parenthesize method calls which are nested inside the
3148
+ argument list of another parenthesized method call.
3149
+ Enabled: true
3150
+ VersionAdded: '0.36'
3151
+ VersionChanged: '0.50'
3152
+ Whitelist:
3153
+ - be
3154
+ - be_a
3155
+ - be_an
3156
+ - be_between
3157
+ - be_falsey
3158
+ - be_kind_of
3159
+ - be_instance_of
3160
+ - be_truthy
3161
+ - be_within
3162
+ - eq
3163
+ - eql
3164
+ - end_with
3165
+ - include
3166
+ - match
3167
+ - raise_error
3168
+ - respond_to
3169
+ - start_with
3170
+
3171
+ Style/NestedTernaryOperator:
3172
+ Description: 'Use one expression per branch in a ternary operator.'
3173
+ StyleGuide: '#no-nested-ternary'
3174
+ Enabled: true
3175
+ VersionAdded: '0.9'
3176
+
3177
+ Style/Next:
3178
+ Description: 'Use `next` to skip iteration instead of a condition at the end.'
3179
+ StyleGuide: '#no-nested-conditionals'
3180
+ Enabled: true
3181
+ VersionAdded: '0.22'
3182
+ VersionChanged: '0.35'
3183
+ # With `always` all conditions at the end of an iteration needs to be
3184
+ # replaced by next - with `skip_modifier_ifs` the modifier if like this one
3185
+ # are ignored: [1, 2].each { |a| return 'yes' if a == 1 }
3186
+ EnforcedStyle: skip_modifier_ifs
3187
+ # `MinBodyLength` defines the number of lines of the a body of an `if` or `unless`
3188
+ # needs to have to trigger this cop
3189
+ MinBodyLength: 3
3190
+ SupportedStyles:
3191
+ - skip_modifier_ifs
3192
+ - always
3193
+
3194
+ Style/NilComparison:
3195
+ Description: 'Prefer x.nil? to x == nil.'
3196
+ StyleGuide: '#predicate-methods'
3197
+ Enabled: true
3198
+ VersionAdded: '0.12'
3199
+ VersionChanged: '0.59'
3200
+ EnforcedStyle: predicate
3201
+ SupportedStyles:
3202
+ - predicate
3203
+ - comparison
3204
+
3205
+ Style/NonNilCheck:
3206
+ Description: 'Checks for redundant nil checks.'
3207
+ StyleGuide: '#no-non-nil-checks'
3208
+ Enabled: true
3209
+ VersionAdded: '0.20'
3210
+ VersionChanged: '0.22'
3211
+ # With `IncludeSemanticChanges` set to `true`, this cop reports offenses for
3212
+ # `!x.nil?` and autocorrects that and `x != nil` to solely `x`, which is
3213
+ # **usually** OK, but might change behavior.
3214
+ #
3215
+ # With `IncludeSemanticChanges` set to `false`, this cop does not report
3216
+ # offenses for `!x.nil?` and does no changes that might change behavior.
3217
+ IncludeSemanticChanges: false
3218
+
3219
+ Style/Not:
3220
+ Description: 'Use ! instead of not.'
3221
+ StyleGuide: '#bang-not-not'
3222
+ Enabled: true
3223
+ VersionAdded: '0.9'
3224
+ VersionChanged: '0.20'
3225
+
3226
+ Style/NumericLiteralPrefix:
3227
+ Description: 'Use smallcase prefixes for numeric literals.'
3228
+ StyleGuide: '#numeric-literal-prefixes'
3229
+ Enabled: true
3230
+ VersionAdded: '0.41'
3231
+ EnforcedOctalStyle: zero_with_o
3232
+ SupportedOctalStyles:
3233
+ - zero_with_o
3234
+ - zero_only
3235
+
3236
+
3237
+ Style/NumericLiterals:
3238
+ Description: >-
3239
+ Add underscores to large numeric literals to improve their
3240
+ readability.
3241
+ StyleGuide: '#underscores-in-numerics'
3242
+ Enabled: true
3243
+ VersionAdded: '0.9'
3244
+ VersionChanged: '0.48'
3245
+ MinDigits: 5
3246
+ Strict: false
3247
+
3248
+ Style/NumericPredicate:
3249
+ Description: >-
3250
+ Checks for the use of predicate- or comparison methods for
3251
+ numeric comparisons.
3252
+ StyleGuide: '#predicate-methods'
3253
+ Safe: false
3254
+ # This will change to a new method call which isn't guaranteed to be on the
3255
+ # object. Switching these methods has to be done with knowledge of the types
3256
+ # of the variables which rubocop doesn't have.
3257
+ SafeAutoCorrect: false
3258
+ AutoCorrect: false
3259
+ Enabled: true
3260
+ VersionAdded: '0.42'
3261
+ VersionChanged: '0.59'
3262
+ EnforcedStyle: predicate
3263
+ SupportedStyles:
3264
+ - predicate
3265
+ - comparison
3266
+ IgnoredMethods: []
3267
+ # Exclude RSpec specs because assertions like `expect(1).to be > 0` cause
3268
+ # false positives.
3269
+ Exclude:
3270
+ - 'spec/**/*'
3271
+
3272
+ Style/OneLineConditional:
3273
+ Description: >-
3274
+ Favor the ternary operator(?:) over
3275
+ if/then/else/end constructs.
3276
+ StyleGuide: '#ternary-operator'
3277
+ Enabled: true
3278
+ VersionAdded: '0.9'
3279
+ VersionChanged: '0.38'
3280
+
3281
+ Style/OptionHash:
3282
+ Description: "Don't use option hashes when you can use keyword arguments."
3283
+ Enabled: false
3284
+ VersionAdded: '0.33'
3285
+ VersionChanged: '0.34'
3286
+ # A list of parameter names that will be flagged by this cop.
3287
+ SuspiciousParamNames:
3288
+ - options
3289
+ - opts
3290
+ - args
3291
+ - params
3292
+ - parameters
3293
+
3294
+ Style/OptionalArguments:
3295
+ Description: >-
3296
+ Checks for optional arguments that do not appear at the end
3297
+ of the argument list.
3298
+ StyleGuide: '#optional-arguments'
3299
+ Enabled: true
3300
+ VersionAdded: '0.33'
3301
+
3302
+ Style/OrAssignment:
3303
+ Description: 'Recommend usage of double pipe equals (||=) where applicable.'
3304
+ StyleGuide: '#double-pipe-for-uninit'
3305
+ Enabled: true
3306
+ VersionAdded: '0.50'
3307
+
3308
+ Style/ParallelAssignment:
3309
+ Description: >-
3310
+ Check for simple usages of parallel assignment.
3311
+ It will only warn when the number of variables
3312
+ matches on both sides of the assignment.
3313
+ StyleGuide: '#parallel-assignment'
3314
+ Enabled: true
3315
+ VersionAdded: '0.32'
3316
+
3317
+ Style/ParenthesesAroundCondition:
3318
+ Description: >-
3319
+ Don't use parentheses around the condition of an
3320
+ if/unless/while.
3321
+ StyleGuide: '#no-parens-around-condition'
3322
+ Enabled: true
3323
+ VersionAdded: '0.9'
3324
+ VersionChanged: '0.56'
3325
+ AllowSafeAssignment: true
3326
+ AllowInMultilineConditions: false
3327
+
3328
+ Style/PercentLiteralDelimiters:
3329
+ Description: 'Use `%`-literal delimiters consistently.'
3330
+ StyleGuide: '#percent-literal-braces'
3331
+ Enabled: true
3332
+ VersionAdded: '0.19'
3333
+ # Specify the default preferred delimiter for all types with the 'default' key
3334
+ # Override individual delimiters (even with default specified) by specifying
3335
+ # an individual key
3336
+ PreferredDelimiters:
3337
+ default: ()
3338
+ '%i': '[]'
3339
+ '%I': '[]'
3340
+ '%r': '{}'
3341
+ '%w': '[]'
3342
+ '%W': '[]'
3343
+ VersionChanged: '0.48.1'
3344
+
3345
+ Style/PercentQLiterals:
3346
+ Description: 'Checks if uses of %Q/%q match the configured preference.'
3347
+ Enabled: true
3348
+ VersionAdded: '0.25'
3349
+ EnforcedStyle: lower_case_q
3350
+ SupportedStyles:
3351
+ - lower_case_q # Use `%q` when possible, `%Q` when necessary
3352
+ - upper_case_q # Always use `%Q`
3353
+
3354
+ Style/PerlBackrefs:
3355
+ Description: 'Avoid Perl-style regex back references.'
3356
+ StyleGuide: '#no-perl-regexp-last-matchers'
3357
+ Enabled: true
3358
+ VersionAdded: '0.13'
3359
+
3360
+ Style/PreferredHashMethods:
3361
+ Description: 'Checks use of `has_key?` and `has_value?` Hash methods.'
3362
+ StyleGuide: '#hash-key'
3363
+ Enabled: true
3364
+ Safe: false
3365
+ VersionAdded: '0.41'
3366
+ VersionChanged: '0.70'
3367
+ EnforcedStyle: short
3368
+ SupportedStyles:
3369
+ - short
3370
+ - verbose
3371
+
3372
+ Style/Proc:
3373
+ Description: 'Use proc instead of Proc.new.'
3374
+ StyleGuide: '#proc'
3375
+ Enabled: true
3376
+ VersionAdded: '0.9'
3377
+ VersionChanged: '0.18'
3378
+
3379
+ Style/RaiseArgs:
3380
+ Description: 'Checks the arguments passed to raise/fail.'
3381
+ StyleGuide: '#exception-class-messages'
3382
+ Enabled: true
3383
+ VersionAdded: '0.14'
3384
+ VersionChanged: '0.40'
3385
+ EnforcedStyle: exploded
3386
+ SupportedStyles:
3387
+ - compact # raise Exception.new(msg)
3388
+ - exploded # raise Exception, msg
3389
+
3390
+ Style/RandomWithOffset:
3391
+ Description: >-
3392
+ Prefer to use ranges when generating random numbers instead of
3393
+ integers with offsets.
3394
+ StyleGuide: '#random-numbers'
3395
+ Enabled: true
3396
+ VersionAdded: '0.52'
3397
+
3398
+ Style/RedundantBegin:
3399
+ Description: "Don't use begin blocks when they are not needed."
3400
+ StyleGuide: '#begin-implicit'
3401
+ Enabled: true
3402
+ VersionAdded: '0.10'
3403
+ VersionChanged: '0.21'
3404
+
3405
+ Style/RedundantCapitalW:
3406
+ Description: 'Checks for %W when interpolation is not needed.'
3407
+ Enabled: true
3408
+ VersionAdded: '0.76'
3409
+
3410
+ Style/RedundantCondition:
3411
+ Description: 'Checks for unnecessary conditional expressions.'
3412
+ Enabled: true
3413
+ VersionAdded: '0.76'
3414
+
3415
+ Style/RedundantConditional:
3416
+ Description: "Don't return true/false from a conditional."
3417
+ Enabled: true
3418
+ VersionAdded: '0.50'
3419
+
3420
+ Style/RedundantException:
3421
+ Description: "Checks for an obsolete RuntimeException argument in raise/fail."
3422
+ StyleGuide: '#no-explicit-runtimeerror'
3423
+ Enabled: true
3424
+ VersionAdded: '0.14'
3425
+ VersionChanged: '0.29'
3426
+
3427
+ Style/RedundantFreeze:
3428
+ Description: "Checks usages of Object#freeze on immutable objects."
3429
+ Enabled: true
3430
+ VersionAdded: '0.34'
3431
+ VersionChanged: '0.66'
3432
+
3433
+ Style/RedundantInterpolation:
3434
+ Description: 'Checks for strings that are just an interpolated expression.'
3435
+ Enabled: true
3436
+ VersionAdded: '0.76'
3437
+
3438
+ Style/RedundantParentheses:
3439
+ Description: "Checks for parentheses that seem not to serve any purpose."
3440
+ Enabled: true
3441
+ VersionAdded: '0.36'
3442
+
3443
+ Style/RedundantPercentQ:
3444
+ Description: 'Checks for %q/%Q when single quotes or double quotes would do.'
3445
+ StyleGuide: '#percent-q'
3446
+ Enabled: true
3447
+ VersionAdded: '0.76'
3448
+
3449
+ Style/RedundantReturn:
3450
+ Description: "Don't use return where it's not required."
3451
+ StyleGuide: '#no-explicit-return'
3452
+ Enabled: true
3453
+ VersionAdded: '0.10'
3454
+ VersionChanged: '0.14'
3455
+ # When `true` allows code like `return x, y`.
3456
+ AllowMultipleReturnValues: false
3457
+
3458
+ Style/RedundantSelf:
3459
+ Description: "Don't use self where it's not needed."
3460
+ StyleGuide: '#no-self-unless-required'
3461
+ Enabled: true
3462
+ VersionAdded: '0.10'
3463
+ VersionChanged: '0.13'
3464
+
3465
+ Style/RedundantSort:
3466
+ Description: >-
3467
+ Use `min` instead of `sort.first`,
3468
+ `max_by` instead of `sort_by...last`, etc.
3469
+ Enabled: true
3470
+ VersionAdded: '0.76'
3471
+
3472
+ Style/RedundantSortBy:
3473
+ Description: 'Use `sort` instead of `sort_by { |x| x }`.'
3474
+ Enabled: true
3475
+ VersionAdded: '0.36'
3476
+
3477
+ Style/RegexpLiteral:
3478
+ Description: 'Use / or %r around regular expressions.'
3479
+ StyleGuide: '#percent-r'
3480
+ Enabled: true
3481
+ VersionAdded: '0.9'
3482
+ VersionChanged: '0.30'
3483
+ EnforcedStyle: slashes
3484
+ # slashes: Always use slashes.
3485
+ # percent_r: Always use `%r`.
3486
+ # mixed: Use slashes on single-line regexes, and `%r` on multi-line regexes.
3487
+ SupportedStyles:
3488
+ - slashes
3489
+ - percent_r
3490
+ - mixed
3491
+ # If `false`, the cop will always recommend using `%r` if one or more slashes
3492
+ # are found in the regexp string.
3493
+ AllowInnerSlashes: false
3494
+
3495
+ Style/RescueModifier:
3496
+ Description: 'Avoid using rescue in its modifier form.'
3497
+ StyleGuide: '#no-rescue-modifiers'
3498
+ Enabled: true
3499
+ VersionAdded: '0.9'
3500
+ VersionChanged: '0.34'
3501
+
3502
+ Style/RescueStandardError:
3503
+ Description: 'Avoid rescuing without specifying an error class.'
3504
+ Enabled: true
3505
+ VersionAdded: '0.52'
3506
+ EnforcedStyle: explicit
3507
+ # implicit: Do not include the error class, `rescue`
3508
+ # explicit: Require an error class `rescue StandardError`
3509
+ SupportedStyles:
3510
+ - implicit
3511
+ - explicit
3512
+
3513
+ Style/ReturnNil:
3514
+ Description: 'Use return instead of return nil.'
3515
+ Enabled: false
3516
+ EnforcedStyle: return
3517
+ SupportedStyles:
3518
+ - return
3519
+ - return_nil
3520
+ VersionAdded: '0.50'
3521
+
3522
+ Style/SafeNavigation:
3523
+ Description: >-
3524
+ This cop transforms usages of a method call safeguarded by
3525
+ a check for the existence of the object to
3526
+ safe navigation (`&.`).
3527
+ Enabled: true
3528
+ VersionAdded: '0.43'
3529
+ VersionChanged: '0.56'
3530
+ # Safe navigation may cause a statement to start returning `nil` in addition
3531
+ # to whatever it used to return.
3532
+ ConvertCodeThatCanStartToReturnNil: false
3533
+ Whitelist:
3534
+ - present?
3535
+ - blank?
3536
+ - presence
3537
+ - try
3538
+ - try!
3539
+
3540
+ Style/Sample:
3541
+ Description: >-
3542
+ Use `sample` instead of `shuffle.first`,
3543
+ `shuffle.last`, and `shuffle[Integer]`.
3544
+ Reference: 'https://github.com/JuanitoFatas/fast-ruby#arrayshufflefirst-vs-arraysample-code'
3545
+ Enabled: true
3546
+ VersionAdded: '0.30'
3547
+
3548
+ Style/SelfAssignment:
3549
+ Description: >-
3550
+ Checks for places where self-assignment shorthand should have
3551
+ been used.
3552
+ StyleGuide: '#self-assignment'
3553
+ Enabled: true
3554
+ VersionAdded: '0.19'
3555
+ VersionChanged: '0.29'
3556
+
3557
+ Style/Semicolon:
3558
+ Description: "Don't use semicolons to terminate expressions."
3559
+ StyleGuide: '#no-semicolon'
3560
+ Enabled: true
3561
+ VersionAdded: '0.9'
3562
+ VersionChanged: '0.19'
3563
+ # Allow `;` to separate several expressions on the same line.
3564
+ AllowAsExpressionSeparator: false
3565
+
3566
+ Style/Send:
3567
+ Description: 'Prefer `Object#__send__` or `Object#public_send` to `send`, as `send` may overlap with existing methods.'
3568
+ StyleGuide: '#prefer-public-send'
3569
+ Enabled: false
3570
+ VersionAdded: '0.33'
3571
+
3572
+ Style/SignalException:
3573
+ Description: 'Checks for proper usage of fail and raise.'
3574
+ StyleGuide: '#prefer-raise-over-fail'
3575
+ Enabled: true
3576
+ VersionAdded: '0.11'
3577
+ VersionChanged: '0.37'
3578
+ EnforcedStyle: only_raise
3579
+ SupportedStyles:
3580
+ - only_raise
3581
+ - only_fail
3582
+ - semantic
3583
+
3584
+ Style/SingleLineBlockParams:
3585
+ Description: 'Enforces the names of some block params.'
3586
+ Enabled: false
3587
+ VersionAdded: '0.16'
3588
+ VersionChanged: '0.47'
3589
+ Methods:
3590
+ - reduce:
3591
+ - acc
3592
+ - elem
3593
+ - inject:
3594
+ - acc
3595
+ - elem
3596
+
3597
+ Style/SingleLineMethods:
3598
+ Description: 'Avoid single-line methods.'
3599
+ StyleGuide: '#no-single-line-methods'
3600
+ Enabled: true
3601
+ VersionAdded: '0.9'
3602
+ VersionChanged: '0.19'
3603
+ AllowIfMethodIsEmpty: true
3604
+
3605
+ Style/SpecialGlobalVars:
3606
+ Description: 'Avoid Perl-style global variables.'
3607
+ StyleGuide: '#no-cryptic-perlisms'
3608
+ Enabled: true
3609
+ VersionAdded: '0.13'
3610
+ VersionChanged: '0.36'
3611
+ SafeAutoCorrect: false
3612
+ EnforcedStyle: use_english_names
3613
+ SupportedStyles:
3614
+ - use_perl_names
3615
+ - use_english_names
3616
+
3617
+ Style/StabbyLambdaParentheses:
3618
+ Description: 'Check for the usage of parentheses around stabby lambda arguments.'
3619
+ StyleGuide: '#stabby-lambda-with-args'
3620
+ Enabled: true
3621
+ VersionAdded: '0.35'
3622
+ EnforcedStyle: require_parentheses
3623
+ SupportedStyles:
3624
+ - require_parentheses
3625
+ - require_no_parentheses
3626
+
3627
+ Style/StderrPuts:
3628
+ Description: 'Use `warn` instead of `$stderr.puts`.'
3629
+ StyleGuide: '#warn'
3630
+ Enabled: true
3631
+ VersionAdded: '0.51'
3632
+
3633
+ Style/StringHashKeys:
3634
+ Description: 'Prefer symbols instead of strings as hash keys.'
3635
+ StyleGuide: '#symbols-as-keys'
3636
+ Enabled: false
3637
+ VersionAdded: '0.52'
3638
+ VersionChanged: '0.75'
3639
+ Safe: false
3640
+
3641
+ Style/StringLiterals:
3642
+ Description: 'Checks if uses of quotes match the configured preference.'
3643
+ StyleGuide: '#consistent-string-literals'
3644
+ Enabled: true
3645
+ VersionAdded: '0.9'
3646
+ VersionChanged: '0.36'
3647
+ EnforcedStyle: single_quotes
3648
+ SupportedStyles:
3649
+ - single_quotes
3650
+ - double_quotes
3651
+ # If `true`, strings which span multiple lines using `\` for continuation must
3652
+ # use the same type of quotes on each line.
3653
+ ConsistentQuotesInMultiline: false
3654
+
3655
+ Style/StringLiteralsInInterpolation:
3656
+ Description: >-
3657
+ Checks if uses of quotes inside expressions in interpolated
3658
+ strings match the configured preference.
3659
+ Enabled: true
3660
+ VersionAdded: '0.27'
3661
+ EnforcedStyle: single_quotes
3662
+ SupportedStyles:
3663
+ - single_quotes
3664
+ - double_quotes
3665
+
3666
+ Style/StringMethods:
3667
+ Description: 'Checks if configured preferred methods are used over non-preferred.'
3668
+ Enabled: false
3669
+ VersionAdded: '0.34'
3670
+ VersionChanged: '0.34.2'
3671
+ # Mapping from undesired method to desired_method
3672
+ # e.g. to use `to_sym` over `intern`:
3673
+ #
3674
+ # StringMethods:
3675
+ # PreferredMethods:
3676
+ # intern: to_sym
3677
+ PreferredMethods:
3678
+ intern: to_sym
3679
+
3680
+ Style/Strip:
3681
+ Description: 'Use `strip` instead of `lstrip.rstrip`.'
3682
+ Enabled: true
3683
+ VersionAdded: '0.36'
3684
+
3685
+ Style/StructInheritance:
3686
+ Description: 'Checks for inheritance from Struct.new.'
3687
+ StyleGuide: '#no-extend-struct-new'
3688
+ Enabled: true
3689
+ VersionAdded: '0.29'
3690
+
3691
+ Style/SymbolArray:
3692
+ Description: 'Use %i or %I for arrays of symbols.'
3693
+ StyleGuide: '#percent-i'
3694
+ Enabled: true
3695
+ VersionAdded: '0.9'
3696
+ VersionChanged: '0.49'
3697
+ EnforcedStyle: percent
3698
+ MinSize: 2
3699
+ SupportedStyles:
3700
+ - percent
3701
+ - brackets
3702
+
3703
+ Style/SymbolLiteral:
3704
+ Description: 'Use plain symbols instead of string symbols when possible.'
3705
+ Enabled: true
3706
+ VersionAdded: '0.30'
3707
+
3708
+ Style/SymbolProc:
3709
+ Description: 'Use symbols as procs instead of blocks when possible.'
3710
+ Enabled: true
3711
+ SafeAutoCorrect: false
3712
+ VersionAdded: '0.26'
3713
+ VersionChanged: '0.64'
3714
+ # A list of method names to be ignored by the check.
3715
+ # The names should be fairly unique, otherwise you'll end up ignoring lots of code.
3716
+ IgnoredMethods:
3717
+ - respond_to
3718
+ - define_method
3719
+
3720
+ Style/TernaryParentheses:
3721
+ Description: 'Checks for use of parentheses around ternary conditions.'
3722
+ Enabled: true
3723
+ VersionAdded: '0.42'
3724
+ VersionChanged: '0.46'
3725
+ EnforcedStyle: require_no_parentheses
3726
+ SupportedStyles:
3727
+ - require_parentheses
3728
+ - require_no_parentheses
3729
+ - require_parentheses_when_complex
3730
+ AllowSafeAssignment: true
3731
+
3732
+ Style/TrailingBodyOnClass:
3733
+ Description: 'Class body goes below class statement.'
3734
+ Enabled: true
3735
+ VersionAdded: '0.53'
3736
+
3737
+ Style/TrailingBodyOnMethodDefinition:
3738
+ Description: 'Method body goes below definition.'
3739
+ Enabled: true
3740
+ VersionAdded: '0.52'
3741
+
3742
+ Style/TrailingBodyOnModule:
3743
+ Description: 'Module body goes below module statement.'
3744
+ Enabled: true
3745
+ VersionAdded: '0.53'
3746
+
3747
+ Style/TrailingCommaInArguments:
3748
+ Description: 'Checks for trailing comma in argument lists.'
3749
+ StyleGuide: '#no-trailing-params-comma'
3750
+ Enabled: true
3751
+ VersionAdded: '0.36'
3752
+ # If `comma`, the cop requires a comma after the last argument, but only for
3753
+ # parenthesized method calls where each argument is on its own line.
3754
+ # If `consistent_comma`, the cop requires a comma after the last argument,
3755
+ # for all parenthesized method calls with arguments.
3756
+ EnforcedStyleForMultiline: no_comma
3757
+ SupportedStylesForMultiline:
3758
+ - comma
3759
+ - consistent_comma
3760
+ - no_comma
3761
+
3762
+ Style/TrailingCommaInArrayLiteral:
3763
+ Description: 'Checks for trailing comma in array literals.'
3764
+ StyleGuide: '#no-trailing-array-commas'
3765
+ Enabled: true
3766
+ VersionAdded: '0.53'
3767
+ # but only when each item is on its own line.
3768
+ # If `consistent_comma`, the cop requires a comma after the last item of all
3769
+ # non-empty array literals.
3770
+ EnforcedStyleForMultiline: no_comma
3771
+ SupportedStylesForMultiline:
3772
+ - comma
3773
+ - consistent_comma
3774
+ - no_comma
3775
+
3776
+ Style/TrailingCommaInHashLiteral:
3777
+ Description: 'Checks for trailing comma in hash literals.'
3778
+ Enabled: true
3779
+ # If `comma`, the cop requires a comma after the last item in a hash,
3780
+ # but only when each item is on its own line.
3781
+ # If `consistent_comma`, the cop requires a comma after the last item of all
3782
+ # non-empty hash literals.
3783
+ EnforcedStyleForMultiline: no_comma
3784
+ SupportedStylesForMultiline:
3785
+ - comma
3786
+ - consistent_comma
3787
+ - no_comma
3788
+ VersionAdded: '0.53'
3789
+
3790
+ Style/TrailingMethodEndStatement:
3791
+ Description: 'Checks for trailing end statement on line of method body.'
3792
+ Enabled: true
3793
+ VersionAdded: '0.52'
3794
+
3795
+ Style/TrailingUnderscoreVariable:
3796
+ Description: >-
3797
+ Checks for the usage of unneeded trailing underscores at the
3798
+ end of parallel variable assignment.
3799
+ AllowNamedUnderscoreVariables: true
3800
+ Enabled: true
3801
+ VersionAdded: '0.31'
3802
+ VersionChanged: '0.35'
3803
+
3804
+ # `TrivialAccessors` requires exact name matches and doesn't allow
3805
+ # predicated methods by default.
3806
+ Style/TrivialAccessors:
3807
+ Description: 'Prefer attr_* methods to trivial readers/writers.'
3808
+ StyleGuide: '#attr_family'
3809
+ Enabled: true
3810
+ VersionAdded: '0.9'
3811
+ VersionChanged: '0.38'
3812
+ # When set to `false` the cop will suggest the use of accessor methods
3813
+ # in situations like:
3814
+ #
3815
+ # def name
3816
+ # @other_name
3817
+ # end
3818
+ #
3819
+ # This way you can uncover "hidden" attributes in your code.
3820
+ ExactNameMatch: true
3821
+ AllowPredicates: true
3822
+ # Allows trivial writers that don't end in an equal sign. e.g.
3823
+ #
3824
+ # def on_exception(action)
3825
+ # @on_exception=action
3826
+ # end
3827
+ # on_exception :restart
3828
+ #
3829
+ # Commonly used in DSLs
3830
+ AllowDSLWriters: false
3831
+ IgnoreClassMethods: false
3832
+ Whitelist:
3833
+ - to_ary
3834
+ - to_a
3835
+ - to_c
3836
+ - to_enum
3837
+ - to_h
3838
+ - to_hash
3839
+ - to_i
3840
+ - to_int
3841
+ - to_io
3842
+ - to_open
3843
+ - to_path
3844
+ - to_proc
3845
+ - to_r
3846
+ - to_regexp
3847
+ - to_str
3848
+ - to_s
3849
+ - to_sym
3850
+
3851
+ Style/UnlessElse:
3852
+ Description: >-
3853
+ Do not use unless with else. Rewrite these with the positive
3854
+ case first.
3855
+ StyleGuide: '#no-else-with-unless'
3856
+ Enabled: true
3857
+ VersionAdded: '0.9'
3858
+
3859
+ Style/UnpackFirst:
3860
+ Description: >-
3861
+ Checks for accessing the first element of `String#unpack`
3862
+ instead of using `unpack1`.
3863
+ Enabled: true
3864
+ VersionAdded: '0.54'
3865
+
3866
+ Style/VariableInterpolation:
3867
+ Description: >-
3868
+ Don't interpolate global, instance and class variables
3869
+ directly in strings.
3870
+ StyleGuide: '#curlies-interpolate'
3871
+ Enabled: true
3872
+ VersionAdded: '0.9'
3873
+ VersionChanged: '0.20'
3874
+
3875
+ Style/WhenThen:
3876
+ Description: 'Use when x then ... for one-line cases.'
3877
+ StyleGuide: '#one-line-cases'
3878
+ Enabled: true
3879
+ VersionAdded: '0.9'
3880
+
3881
+ Style/WhileUntilDo:
3882
+ Description: 'Checks for redundant do after while or until.'
3883
+ StyleGuide: '#no-multiline-while-do'
3884
+ Enabled: true
3885
+ VersionAdded: '0.9'
3886
+
3887
+ Style/WhileUntilModifier:
3888
+ Description: >-
3889
+ Favor modifier while/until usage when you have a
3890
+ single-line body.
3891
+ StyleGuide: '#while-as-a-modifier'
3892
+ Enabled: true
3893
+ VersionAdded: '0.9'
3894
+ VersionChanged: '0.30'
3895
+
3896
+ Style/WordArray:
3897
+ Description: 'Use %w or %W for arrays of words.'
3898
+ StyleGuide: '#percent-w'
3899
+ Enabled: true
3900
+ VersionAdded: '0.9'
3901
+ VersionChanged: '0.36'
3902
+ EnforcedStyle: percent
3903
+ SupportedStyles:
3904
+ # percent style: %w(word1 word2)
3905
+ - percent
3906
+ # bracket style: ['word1', 'word2']
3907
+ - brackets
3908
+ # The `MinSize` option causes the `WordArray` rule to be ignored for arrays
3909
+ # smaller than a certain size. The rule is only applied to arrays
3910
+ # whose element count is greater than or equal to `MinSize`.
3911
+ MinSize: 2
3912
+ # The regular expression `WordRegex` decides what is considered a word.
3913
+ WordRegex: !ruby/regexp '/\A(?:\p{Word}|\p{Word}-\p{Word}|\n|\t)+\z/'
3914
+
3915
+ Style/YodaCondition:
3916
+ Description: 'Forbid or enforce yoda conditions.'
3917
+ Reference: 'https://en.wikipedia.org/wiki/Yoda_conditions'
3918
+ Enabled: true
3919
+ EnforcedStyle: forbid_for_all_comparison_operators
3920
+ SupportedStyles:
3921
+ # check all comparison operators
3922
+ - forbid_for_all_comparison_operators
3923
+ # check only equality operators: `!=` and `==`
3924
+ - forbid_for_equality_operators_only
3925
+ # enforce yoda for all comparison operators
3926
+ - require_for_all_comparison_operators
3927
+ # enforce yoda only for equality operators: `!=` and `==`
3928
+ - require_for_equality_operators_only
3929
+ Safe: false
3930
+ VersionAdded: '0.49'
3931
+ VersionChanged: '0.75'
3932
+
3933
+ Style/ZeroLengthPredicate:
3934
+ Description: 'Use #empty? when testing for objects of length 0.'
3935
+ Enabled: true
3936
+ Safe: false
3937
+ VersionAdded: '0.37'
3938
+ VersionChanged: '0.39'