zuora_connect_ui 0.9.0 → 0.9.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1543) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/stylesheets/zuora_connect_ui/input.scss +2 -2
  3. data/lib/zuora_connect_ui/version.rb +1 -1
  4. data/vendor/ruby/2.6.0/cache/autoprefixer-rails-9.6.5.gem +0 -0
  5. data/vendor/ruby/2.6.0/cache/brakeman-4.7.0.gem +0 -0
  6. data/vendor/ruby/2.6.0/cache/crass-1.0.5.gem +0 -0
  7. data/vendor/ruby/2.6.0/cache/loofah-2.3.1.gem +0 -0
  8. data/vendor/ruby/2.6.0/cache/rspec-3.9.0.gem +0 -0
  9. data/vendor/ruby/2.6.0/cache/rspec-core-3.9.0.gem +0 -0
  10. data/vendor/ruby/2.6.0/cache/rspec-expectations-3.9.0.gem +0 -0
  11. data/vendor/ruby/2.6.0/cache/rspec-mocks-3.9.0.gem +0 -0
  12. data/vendor/ruby/2.6.0/cache/rspec-support-3.9.0.gem +0 -0
  13. data/vendor/ruby/2.6.0/cache/rubocop-0.75.1.gem +0 -0
  14. data/vendor/ruby/2.6.0/cache/sprockets-4.0.0.gem +0 -0
  15. data/vendor/ruby/2.6.0/cache/zeitwerk-2.2.0.gem +0 -0
  16. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.6.5/CHANGELOG.md +1097 -0
  17. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.6.5/Gemfile +10 -0
  18. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.6.5/LICENSE +20 -0
  19. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.6.5/README.md +237 -0
  20. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.6.5/Rakefile +53 -0
  21. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.6.5/autoprefixer-rails.gemspec +32 -0
  22. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.6.5/lib/autoprefixer-rails.rb +41 -0
  23. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.6.5/lib/autoprefixer-rails/processor.rb +194 -0
  24. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.6.5/lib/autoprefixer-rails/railtie.rb +50 -0
  25. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.6.5/lib/autoprefixer-rails/result.rb +24 -0
  26. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.6.5/lib/autoprefixer-rails/sprockets.rb +62 -0
  27. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.6.5/lib/autoprefixer-rails/version.rb +3 -0
  28. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.6.5/lib/rake/autoprefixer_tasks.rb +28 -0
  29. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.6.5/spec/app/Rakefile +2 -0
  30. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.6.5/spec/app/app/assets/config/manifest.js +0 -0
  31. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.6.5/spec/app/app/assets/stylesheets/evaluate.css.erb +1 -0
  32. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.6.5/spec/app/app/assets/stylesheets/loaded.sass +2 -0
  33. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.6.5/spec/app/app/assets/stylesheets/sass.sass +1 -0
  34. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.6.5/spec/app/app/assets/stylesheets/test.css +3 -0
  35. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.6.5/spec/app/app/assets/stylesheets/wrong.css +2 -0
  36. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.6.5/spec/app/app/controllers/application_controller.rb +2 -0
  37. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.6.5/spec/app/app/controllers/css_controller.rb +6 -0
  38. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.6.5/spec/app/config.ru +2 -0
  39. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.6.5/spec/app/config/application.rb +16 -0
  40. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.6.5/spec/app/config/autoprefixer.yml +2 -0
  41. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.6.5/spec/app/config/boot.rb +2 -0
  42. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.6.5/spec/app/config/environment.rb +3 -0
  43. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.6.5/spec/app/config/environments/test.rb +9 -0
  44. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.6.5/spec/app/config/initializers/secret_token.rb +1 -0
  45. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.6.5/spec/app/config/routes.rb +3 -0
  46. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.6.5/spec/autoprefixer_spec.rb +121 -0
  47. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.6.5/spec/processor_spec.rb +25 -0
  48. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.6.5/spec/rails_spec.rb +40 -0
  49. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.6.5/spec/railtie_spec.rb +29 -0
  50. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.6.5/spec/spec_helper.rb +16 -0
  51. data/vendor/ruby/2.6.0/gems/autoprefixer-rails-9.6.5/vendor/autoprefixer.js +67564 -0
  52. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/CHANGES.md +1167 -0
  53. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/FEATURES +16 -0
  54. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/README.md +199 -0
  55. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bin/brakeman +10 -0
  56. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/load.rb +14 -0
  57. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/erubis-2.7.0/CHANGES.txt +828 -0
  58. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/erubis-2.7.0/MIT-LICENSE +20 -0
  59. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/erubis-2.7.0/README.txt +102 -0
  60. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/erubis-2.7.0/contrib/erubis +3468 -0
  61. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/erubis-2.7.0/contrib/erubis-run.rb +132 -0
  62. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/erubis-2.7.0/contrib/inline-require +179 -0
  63. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/erubis-2.7.0/lib/erubis.rb +73 -0
  64. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/erubis-2.7.0/lib/erubis/context.rb +83 -0
  65. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/erubis-2.7.0/lib/erubis/converter.rb +357 -0
  66. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/erubis-2.7.0/lib/erubis/engine.rb +120 -0
  67. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/erubis-2.7.0/lib/erubis/engine/ec.rb +117 -0
  68. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/erubis-2.7.0/lib/erubis/engine/ecpp.rb +113 -0
  69. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/erubis-2.7.0/lib/erubis/engine/ejava.rb +110 -0
  70. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/erubis-2.7.0/lib/erubis/engine/ejavascript.rb +119 -0
  71. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/erubis-2.7.0/lib/erubis/engine/enhanced.rb +126 -0
  72. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/erubis-2.7.0/lib/erubis/engine/eperl.rb +95 -0
  73. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/erubis-2.7.0/lib/erubis/engine/ephp.rb +99 -0
  74. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/erubis-2.7.0/lib/erubis/engine/eruby.rb +125 -0
  75. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/erubis-2.7.0/lib/erubis/engine/escheme.rb +114 -0
  76. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/erubis-2.7.0/lib/erubis/engine/optimized.rb +127 -0
  77. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/erubis-2.7.0/lib/erubis/enhancer.rb +723 -0
  78. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/erubis-2.7.0/lib/erubis/error.rb +23 -0
  79. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/erubis-2.7.0/lib/erubis/evaluator.rb +88 -0
  80. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/erubis-2.7.0/lib/erubis/generator.rb +85 -0
  81. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/erubis-2.7.0/lib/erubis/helper.rb +47 -0
  82. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/erubis-2.7.0/lib/erubis/helpers/rails_form_helper.rb +197 -0
  83. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/erubis-2.7.0/lib/erubis/helpers/rails_helper.rb +353 -0
  84. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/erubis-2.7.0/lib/erubis/local-setting.rb +9 -0
  85. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/erubis-2.7.0/lib/erubis/main.rb +516 -0
  86. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/erubis-2.7.0/lib/erubis/preprocessing.rb +58 -0
  87. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/erubis-2.7.0/lib/erubis/tiny.rb +144 -0
  88. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/erubis-2.7.0/lib/erubis/util.rb +22 -0
  89. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/erubis-2.7.0/setup.rb +1331 -0
  90. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/haml-5.1.2/CHANGELOG.md +1481 -0
  91. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/haml-5.1.2/FAQ.md +147 -0
  92. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/haml-5.1.2/Gemfile +19 -0
  93. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/haml-5.1.2/MIT-LICENSE +20 -0
  94. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/haml-5.1.2/README.md +211 -0
  95. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/haml-5.1.2/REFERENCE.md +1351 -0
  96. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/haml-5.1.2/TODO +24 -0
  97. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/haml-5.1.2/haml.gemspec +44 -0
  98. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/haml-5.1.2/lib/haml.rb +25 -0
  99. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/haml-5.1.2/lib/haml/attribute_builder.rb +164 -0
  100. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/haml-5.1.2/lib/haml/attribute_compiler.rb +224 -0
  101. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/haml-5.1.2/lib/haml/attribute_parser.rb +150 -0
  102. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/haml-5.1.2/lib/haml/buffer.rb +238 -0
  103. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/haml-5.1.2/lib/haml/compiler.rb +330 -0
  104. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/haml-5.1.2/lib/haml/engine.rb +238 -0
  105. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/haml-5.1.2/lib/haml/error.rb +65 -0
  106. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/haml-5.1.2/lib/haml/escapable.rb +50 -0
  107. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/haml-5.1.2/lib/haml/exec.rb +347 -0
  108. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/haml-5.1.2/lib/haml/filters.rb +399 -0
  109. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/haml-5.1.2/lib/haml/generator.rb +42 -0
  110. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/haml-5.1.2/lib/haml/helpers.rb +703 -0
  111. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/haml-5.1.2/lib/haml/helpers/action_view_extensions.rb +60 -0
  112. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/haml-5.1.2/lib/haml/helpers/action_view_mods.rb +132 -0
  113. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/haml-5.1.2/lib/haml/helpers/action_view_xss_mods.rb +60 -0
  114. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/haml-5.1.2/lib/haml/helpers/safe_erubi_template.rb +20 -0
  115. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/haml-5.1.2/lib/haml/helpers/safe_erubis_template.rb +33 -0
  116. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/haml-5.1.2/lib/haml/helpers/xss_mods.rb +111 -0
  117. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/haml-5.1.2/lib/haml/options.rb +273 -0
  118. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/haml-5.1.2/lib/haml/parser.rb +828 -0
  119. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/haml-5.1.2/lib/haml/plugin.rb +37 -0
  120. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/haml-5.1.2/lib/haml/railtie.rb +48 -0
  121. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/haml-5.1.2/lib/haml/sass_rails_filter.rb +47 -0
  122. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/haml-5.1.2/lib/haml/template.rb +39 -0
  123. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/haml-5.1.2/lib/haml/template/options.rb +27 -0
  124. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/haml-5.1.2/lib/haml/temple_engine.rb +123 -0
  125. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/haml-5.1.2/lib/haml/temple_line_counter.rb +30 -0
  126. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/haml-5.1.2/lib/haml/util.rb +258 -0
  127. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/haml-5.1.2/lib/haml/version.rb +5 -0
  128. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/haml-5.1.2/yard/default/fulldoc/html/css/common.sass +15 -0
  129. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/haml-5.1.2/yard/default/layout/html/footer.erb +12 -0
  130. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/highline-2.0.3/AUTHORS +3 -0
  131. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/highline-2.0.3/COPYING +339 -0
  132. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/highline-2.0.3/Changelog.md +620 -0
  133. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/highline-2.0.3/Gemfile +22 -0
  134. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/highline-2.0.3/LICENSE +7 -0
  135. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/highline-2.0.3/README.md +202 -0
  136. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/highline-2.0.3/TODO +6 -0
  137. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/highline-2.0.3/appveyor.yml +37 -0
  138. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/highline-2.0.3/highline.gemspec +35 -0
  139. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/highline-2.0.3/lib/highline.rb +650 -0
  140. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/highline-2.0.3/lib/highline/builtin_styles.rb +129 -0
  141. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/highline-2.0.3/lib/highline/color_scheme.rb +151 -0
  142. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/highline-2.0.3/lib/highline/compatibility.rb +23 -0
  143. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/highline-2.0.3/lib/highline/custom_errors.rb +57 -0
  144. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/highline-2.0.3/lib/highline/import.rb +48 -0
  145. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/highline-2.0.3/lib/highline/io_console_compatible.rb +37 -0
  146. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/highline-2.0.3/lib/highline/list.rb +177 -0
  147. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/highline-2.0.3/lib/highline/list_renderer.rb +261 -0
  148. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/highline-2.0.3/lib/highline/menu.rb +576 -0
  149. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/highline-2.0.3/lib/highline/menu/item.rb +32 -0
  150. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/highline-2.0.3/lib/highline/paginator.rb +52 -0
  151. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/highline-2.0.3/lib/highline/question.rb +630 -0
  152. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/highline-2.0.3/lib/highline/question/answer_converter.rb +103 -0
  153. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/highline-2.0.3/lib/highline/question_asker.rb +150 -0
  154. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/highline-2.0.3/lib/highline/simulate.rb +59 -0
  155. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/highline-2.0.3/lib/highline/statement.rb +88 -0
  156. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/highline-2.0.3/lib/highline/string.rb +36 -0
  157. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/highline-2.0.3/lib/highline/string_extensions.rb +130 -0
  158. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/highline-2.0.3/lib/highline/style.rb +325 -0
  159. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/highline-2.0.3/lib/highline/template_renderer.rb +62 -0
  160. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/highline-2.0.3/lib/highline/terminal.rb +190 -0
  161. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/highline-2.0.3/lib/highline/terminal/io_console.rb +36 -0
  162. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/highline-2.0.3/lib/highline/terminal/ncurses.rb +38 -0
  163. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/highline-2.0.3/lib/highline/terminal/unix_stty.rb +51 -0
  164. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/highline-2.0.3/lib/highline/version.rb +6 -0
  165. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/highline-2.0.3/lib/highline/wrapper.rb +53 -0
  166. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/ruby2ruby-2.4.4/History.rdoc +435 -0
  167. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/ruby2ruby-2.4.4/Manifest.txt +8 -0
  168. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/ruby2ruby-2.4.4/README.rdoc +87 -0
  169. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/ruby2ruby-2.4.4/lib/ruby2ruby.rb +1309 -0
  170. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/ruby_parser-3.14.0/History.rdoc +1103 -0
  171. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/ruby_parser-3.14.0/Manifest.txt +37 -0
  172. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/ruby_parser-3.14.0/README.rdoc +109 -0
  173. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/ruby_parser-3.14.0/compare/normalize.rb +173 -0
  174. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/ruby_parser-3.14.0/debugging.md +18 -0
  175. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/ruby_parser-3.14.0/lib/rp_extensions.rb +74 -0
  176. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/ruby_parser-3.14.0/lib/rp_stringscanner.rb +64 -0
  177. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/ruby_parser-3.14.0/lib/ruby20_parser.rb +7045 -0
  178. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/ruby_parser-3.14.0/lib/ruby20_parser.y +2575 -0
  179. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/ruby_parser-3.14.0/lib/ruby21_parser.rb +7116 -0
  180. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/ruby_parser-3.14.0/lib/ruby21_parser.y +2594 -0
  181. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/ruby_parser-3.14.0/lib/ruby22_parser.rb +7149 -0
  182. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/ruby_parser-3.14.0/lib/ruby22_parser.y +2603 -0
  183. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/ruby_parser-3.14.0/lib/ruby23_parser.rb +7166 -0
  184. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/ruby_parser-3.14.0/lib/ruby23_parser.y +2605 -0
  185. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/ruby_parser-3.14.0/lib/ruby24_parser.rb +7178 -0
  186. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/ruby_parser-3.14.0/lib/ruby24_parser.y +2613 -0
  187. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/ruby_parser-3.14.0/lib/ruby25_parser.rb +7178 -0
  188. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/ruby_parser-3.14.0/lib/ruby25_parser.y +2613 -0
  189. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/ruby_parser-3.14.0/lib/ruby26_parser.rb +7198 -0
  190. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/ruby_parser-3.14.0/lib/ruby26_parser.y +2627 -0
  191. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/ruby_parser-3.14.0/lib/ruby_lexer.rb +1441 -0
  192. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/ruby_parser-3.14.0/lib/ruby_lexer.rex +179 -0
  193. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/ruby_parser-3.14.0/lib/ruby_lexer.rex.rb +365 -0
  194. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/ruby_parser-3.14.0/lib/ruby_parser.rb +92 -0
  195. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/ruby_parser-3.14.0/lib/ruby_parser.yy +2732 -0
  196. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/ruby_parser-3.14.0/lib/ruby_parser_extras.rb +1602 -0
  197. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/ruby_parser-3.14.0/tools/munge.rb +217 -0
  198. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/ruby_parser-3.14.0/tools/ripper.rb +39 -0
  199. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/ruby_parser-legacy-1.0.0/History.rdoc +6 -0
  200. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/ruby_parser-legacy-1.0.0/Manifest.txt +19 -0
  201. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/ruby_parser-legacy-1.0.0/README.rdoc +54 -0
  202. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/ruby_parser-legacy-1.0.0/lib/ruby_parser/legacy.rb +5 -0
  203. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/ruby_parser-legacy-1.0.0/lib/ruby_parser/legacy/ruby18_parser.rb +5794 -0
  204. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/ruby_parser-legacy-1.0.0/lib/ruby_parser/legacy/ruby18_parser.y +1909 -0
  205. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/ruby_parser-legacy-1.0.0/lib/ruby_parser/legacy/ruby19_parser.rb +6186 -0
  206. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/ruby_parser-legacy-1.0.0/lib/ruby_parser/legacy/ruby19_parser.y +2117 -0
  207. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/ruby_parser-legacy-1.0.0/lib/ruby_parser/legacy/ruby_lexer.rb +1412 -0
  208. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/ruby_parser-legacy-1.0.0/lib/ruby_parser/legacy/ruby_lexer.rex +179 -0
  209. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/ruby_parser-legacy-1.0.0/lib/ruby_parser/legacy/ruby_lexer.rex.rb +323 -0
  210. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/ruby_parser-legacy-1.0.0/lib/ruby_parser/legacy/ruby_parser.rb +30 -0
  211. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/ruby_parser-legacy-1.0.0/lib/ruby_parser/legacy/ruby_parser_extras.rb +1388 -0
  212. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/CHANGES.md +154 -0
  213. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/Gemfile +11 -0
  214. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/LICENSE.txt +22 -0
  215. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/README.md +191 -0
  216. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/bundle_install_all_ruby_versions.sh +11 -0
  217. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml.rb +94 -0
  218. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/deep.rb +34 -0
  219. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/libyaml_checker.rb +36 -0
  220. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/load.rb +181 -0
  221. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/parse/date.rb +37 -0
  222. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/parse/hexadecimal.rb +12 -0
  223. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/parse/sexagesimal.rb +26 -0
  224. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/psych_handler.rb +99 -0
  225. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/psych_resolver.rb +52 -0
  226. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/resolver.rb +94 -0
  227. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/safe_to_ruby_visitor.rb +29 -0
  228. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/store.rb +39 -0
  229. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/syck_hack.rb +36 -0
  230. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/syck_node_monkeypatch.rb +43 -0
  231. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/syck_resolver.rb +38 -0
  232. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/transform.rb +41 -0
  233. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/transform/to_boolean.rb +21 -0
  234. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/transform/to_date.rb +13 -0
  235. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/transform/to_float.rb +33 -0
  236. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/transform/to_integer.rb +26 -0
  237. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/transform/to_nil.rb +18 -0
  238. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/transform/to_symbol.rb +17 -0
  239. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/transform/transformation_map.rb +47 -0
  240. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/version.rb +3 -0
  241. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/run_specs_all_ruby_versions.sh +38 -0
  242. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/safe_yaml.gemspec +19 -0
  243. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/sexp_processor-4.13.0/History.rdoc +393 -0
  244. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/sexp_processor-4.13.0/Manifest.txt +15 -0
  245. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/sexp_processor-4.13.0/README.rdoc +93 -0
  246. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/sexp_processor-4.13.0/lib/composite_sexp_processor.rb +49 -0
  247. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/sexp_processor-4.13.0/lib/pt_testcase.rb +3128 -0
  248. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/sexp_processor-4.13.0/lib/sexp.rb +381 -0
  249. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/sexp_processor-4.13.0/lib/sexp_matcher.rb +1063 -0
  250. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/sexp_processor-4.13.0/lib/sexp_processor.rb +754 -0
  251. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/sexp_processor-4.13.0/lib/strict_sexp.rb +126 -0
  252. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/sexp_processor-4.13.0/lib/unique.rb +21 -0
  253. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/slim-4.0.1/CHANGES +456 -0
  254. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/slim-4.0.1/Gemfile +71 -0
  255. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/slim-4.0.1/LICENSE +21 -0
  256. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/slim-4.0.1/README.jp.md +1289 -0
  257. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/slim-4.0.1/README.md +1290 -0
  258. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/slim-4.0.1/lib/slim.rb +14 -0
  259. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/slim-4.0.1/lib/slim/code_attributes.rb +67 -0
  260. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/slim-4.0.1/lib/slim/command.rb +128 -0
  261. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/slim-4.0.1/lib/slim/controls.rb +60 -0
  262. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/slim-4.0.1/lib/slim/do_inserter.rb +33 -0
  263. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/slim-4.0.1/lib/slim/embedded.rb +248 -0
  264. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/slim-4.0.1/lib/slim/end_inserter.rb +62 -0
  265. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/slim-4.0.1/lib/slim/engine.rb +39 -0
  266. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/slim-4.0.1/lib/slim/erb_converter.rb +14 -0
  267. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/slim-4.0.1/lib/slim/filter.rb +30 -0
  268. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/slim-4.0.1/lib/slim/grammar.rb +23 -0
  269. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/slim-4.0.1/lib/slim/include.rb +57 -0
  270. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/slim-4.0.1/lib/slim/interpolation.rb +35 -0
  271. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/slim-4.0.1/lib/slim/logic_less.rb +5 -0
  272. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/slim-4.0.1/lib/slim/logic_less/context.rb +127 -0
  273. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/slim-4.0.1/lib/slim/logic_less/filter.rb +80 -0
  274. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/slim-4.0.1/lib/slim/parser.rb +548 -0
  275. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/slim-4.0.1/lib/slim/smart.rb +8 -0
  276. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/slim-4.0.1/lib/slim/smart/escaper.rb +42 -0
  277. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/slim-4.0.1/lib/slim/smart/filter.rb +96 -0
  278. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/slim-4.0.1/lib/slim/smart/parser.rb +34 -0
  279. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/slim-4.0.1/lib/slim/splat/builder.rb +107 -0
  280. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/slim-4.0.1/lib/slim/splat/filter.rb +91 -0
  281. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/slim-4.0.1/lib/slim/template.rb +19 -0
  282. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/slim-4.0.1/lib/slim/translator.rb +118 -0
  283. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/slim-4.0.1/lib/slim/version.rb +5 -0
  284. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/slim-4.0.1/slim.gemspec +24 -0
  285. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/temple-0.8.2/CHANGES +260 -0
  286. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/temple-0.8.2/EXPRESSIONS.md +262 -0
  287. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/temple-0.8.2/Gemfile +3 -0
  288. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/temple-0.8.2/LICENSE +20 -0
  289. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/temple-0.8.2/README.md +267 -0
  290. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple.rb +67 -0
  291. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/engine.rb +67 -0
  292. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/erb/engine.rb +15 -0
  293. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/erb/parser.rb +40 -0
  294. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/erb/template.rb +11 -0
  295. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/erb/trimming.rb +23 -0
  296. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/exceptions.rb +13 -0
  297. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/filter.rb +9 -0
  298. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/filters/code_merger.rb +30 -0
  299. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/filters/control_flow.rb +42 -0
  300. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/filters/dynamic_inliner.rb +71 -0
  301. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/filters/encoding.rb +24 -0
  302. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/filters/eraser.rb +22 -0
  303. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/filters/escapable.rb +40 -0
  304. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/filters/multi_flattener.rb +25 -0
  305. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/filters/remove_bom.rb +13 -0
  306. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/filters/static_analyzer.rb +30 -0
  307. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/filters/static_merger.rb +37 -0
  308. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/filters/string_splitter.rb +130 -0
  309. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/filters/validator.rb +15 -0
  310. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/generator.rb +88 -0
  311. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/generators/array.rb +21 -0
  312. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/generators/array_buffer.rb +29 -0
  313. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/generators/erb.rb +32 -0
  314. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/generators/rails_output_buffer.rb +35 -0
  315. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/generators/string_buffer.rb +25 -0
  316. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/grammar.rb +57 -0
  317. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/html/attribute_merger.rb +42 -0
  318. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/html/attribute_remover.rb +35 -0
  319. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/html/attribute_sorter.rb +21 -0
  320. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/html/dispatcher.rb +31 -0
  321. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/html/fast.rb +130 -0
  322. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/html/filter.rb +21 -0
  323. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/html/pretty.rb +103 -0
  324. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/html/safe.rb +23 -0
  325. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/map.rb +105 -0
  326. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/mixins/dispatcher.rb +161 -0
  327. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/mixins/engine_dsl.rb +145 -0
  328. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/mixins/grammar_dsl.rb +170 -0
  329. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/mixins/options.rb +87 -0
  330. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/mixins/template.rb +28 -0
  331. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/parser.rb +8 -0
  332. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/static_analyzer.rb +77 -0
  333. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/templates.rb +11 -0
  334. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/templates/rails.rb +26 -0
  335. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/templates/tilt.rb +46 -0
  336. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/utils.rb +101 -0
  337. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/temple-0.8.2/lib/temple/version.rb +3 -0
  338. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/temple-0.8.2/temple.gemspec +29 -0
  339. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/terminal-table-1.8.0/Gemfile +6 -0
  340. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/terminal-table-1.8.0/History.rdoc +85 -0
  341. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/terminal-table-1.8.0/LICENSE.txt +21 -0
  342. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/terminal-table-1.8.0/Manifest +27 -0
  343. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/terminal-table-1.8.0/README.rdoc +247 -0
  344. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/terminal-table-1.8.0/Todo.rdoc +14 -0
  345. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/terminal-table-1.8.0/lib/terminal-table.rb +26 -0
  346. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/terminal-table-1.8.0/lib/terminal-table/cell.rb +94 -0
  347. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/terminal-table-1.8.0/lib/terminal-table/import.rb +3 -0
  348. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/terminal-table-1.8.0/lib/terminal-table/row.rb +52 -0
  349. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/terminal-table-1.8.0/lib/terminal-table/separator.rb +14 -0
  350. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/terminal-table-1.8.0/lib/terminal-table/style.rb +79 -0
  351. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/terminal-table-1.8.0/lib/terminal-table/table.rb +343 -0
  352. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/terminal-table-1.8.0/lib/terminal-table/table_helper.rb +9 -0
  353. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/terminal-table-1.8.0/lib/terminal-table/version.rb +5 -0
  354. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/terminal-table-1.8.0/terminal-table.gemspec +26 -0
  355. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/tilt-2.0.10/COPYING +18 -0
  356. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt.rb +166 -0
  357. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/asciidoc.rb +27 -0
  358. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/babel.rb +16 -0
  359. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/bluecloth.rb +24 -0
  360. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/builder.rb +37 -0
  361. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/coffee.rb +58 -0
  362. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/commonmarker.rb +78 -0
  363. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/creole.rb +25 -0
  364. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/csv.rb +65 -0
  365. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/dummy.rb +3 -0
  366. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/erb.rb +63 -0
  367. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/erubi.rb +32 -0
  368. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/erubis.rb +43 -0
  369. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/etanni.rb +27 -0
  370. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/haml.rb +86 -0
  371. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/kramdown.rb +25 -0
  372. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/less.rb +30 -0
  373. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/liquid.rb +44 -0
  374. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/livescript.rb +23 -0
  375. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/mapping.rb +293 -0
  376. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/markaby.rb +45 -0
  377. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/maruku.rb +22 -0
  378. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/nokogiri.rb +36 -0
  379. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/pandoc.rb +49 -0
  380. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/plain.rb +16 -0
  381. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/prawn.rb +43 -0
  382. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/radius.rb +48 -0
  383. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/rdiscount.rb +39 -0
  384. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/rdoc.rb +40 -0
  385. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/redcarpet.rb +83 -0
  386. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/redcloth.rb +23 -0
  387. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/rst-pandoc.rb +18 -0
  388. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/sass.rb +52 -0
  389. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/sigil.rb +34 -0
  390. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/string.rb +21 -0
  391. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/template.rb +297 -0
  392. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/typescript.rb +26 -0
  393. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/wikicloth.rb +22 -0
  394. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/tilt-2.0.10/lib/tilt/yajl.rb +87 -0
  395. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/unicode-display_width-1.6.0/CHANGELOG.md +125 -0
  396. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/unicode-display_width-1.6.0/MIT-LICENSE.txt +22 -0
  397. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/unicode-display_width-1.6.0/README.md +124 -0
  398. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/unicode-display_width-1.6.0/data/display_width.marshal.gz +0 -0
  399. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/unicode-display_width-1.6.0/lib/unicode/display_width.rb +51 -0
  400. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/unicode-display_width-1.6.0/lib/unicode/display_width/constants.rb +8 -0
  401. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/unicode-display_width-1.6.0/lib/unicode/display_width/index.rb +12 -0
  402. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/unicode-display_width-1.6.0/lib/unicode/display_width/no_string_ext.rb +7 -0
  403. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/bundle/ruby/2.6.0/gems/unicode-display_width-1.6.0/lib/unicode/display_width/string_ext.rb +17 -0
  404. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman.rb +553 -0
  405. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/app_tree.rb +217 -0
  406. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/call_index.rb +261 -0
  407. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks.rb +217 -0
  408. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/base_check.rb +507 -0
  409. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_basic_auth.rb +88 -0
  410. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_basic_auth_timing_attack.rb +33 -0
  411. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_content_tag.rb +212 -0
  412. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_cookie_serialization.rb +22 -0
  413. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_create_with.rb +74 -0
  414. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_cross_site_scripting.rb +386 -0
  415. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_default_routes.rb +91 -0
  416. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_deserialize.rb +105 -0
  417. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_detailed_exceptions.rb +55 -0
  418. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_digest_dos.rb +38 -0
  419. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_divide_by_zero.rb +42 -0
  420. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_dynamic_finders.rb +48 -0
  421. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_escape_function.rb +21 -0
  422. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_evaluation.rb +34 -0
  423. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_execute.rb +233 -0
  424. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_file_access.rb +87 -0
  425. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_file_disclosure.rb +35 -0
  426. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_filter_skipping.rb +31 -0
  427. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_force_ssl.rb +27 -0
  428. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_forgery_setting.rb +81 -0
  429. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_header_dos.rb +31 -0
  430. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_i18n_xss.rb +48 -0
  431. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_jruby_xml.rb +36 -0
  432. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_json_encoding.rb +47 -0
  433. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_json_parsing.rb +109 -0
  434. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_link_to.rb +132 -0
  435. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_link_to_href.rb +151 -0
  436. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_mail_to.rb +49 -0
  437. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_mass_assignment.rb +196 -0
  438. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_mime_type_dos.rb +39 -0
  439. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_model_attr_accessible.rb +55 -0
  440. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_model_attributes.rb +81 -0
  441. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_model_serialize.rb +67 -0
  442. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_nested_attributes.rb +38 -0
  443. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_nested_attributes_bypass.rb +58 -0
  444. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_number_to_currency.rb +74 -0
  445. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_permit_attributes.rb +43 -0
  446. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_quote_table_name.rb +40 -0
  447. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_redirect.rb +256 -0
  448. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_regex_dos.rb +68 -0
  449. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_render.rb +97 -0
  450. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_render_dos.rb +37 -0
  451. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_render_inline.rb +53 -0
  452. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_response_splitting.rb +21 -0
  453. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_reverse_tabnabbing.rb +54 -0
  454. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_route_dos.rb +42 -0
  455. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_safe_buffer_manipulation.rb +31 -0
  456. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_sanitize_methods.rb +112 -0
  457. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_secrets.rb +40 -0
  458. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_select_tag.rb +59 -0
  459. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_select_vulnerability.rb +60 -0
  460. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_send.rb +46 -0
  461. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_send_file.rb +19 -0
  462. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_session_manipulation.rb +34 -0
  463. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_session_settings.rb +179 -0
  464. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_simple_format.rb +63 -0
  465. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_single_quotes.rb +105 -0
  466. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_skip_before_filter.rb +60 -0
  467. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_sprockets_path_traversal.rb +39 -0
  468. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_sql.rb +707 -0
  469. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_sql_cves.rb +106 -0
  470. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_ssl_verify.rb +48 -0
  471. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_strip_tags.rb +91 -0
  472. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_symbol_dos.rb +71 -0
  473. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_symbol_dos_cve.rb +30 -0
  474. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_translate_bug.rb +45 -0
  475. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_unsafe_reflection.rb +50 -0
  476. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_unscoped_find.rb +57 -0
  477. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_validation_regex.rb +116 -0
  478. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_weak_hash.rb +147 -0
  479. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_without_protection.rb +80 -0
  480. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_xml_dos.rb +45 -0
  481. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/checks/check_yaml_parsing.rb +113 -0
  482. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/codeclimate/engine_configuration.rb +97 -0
  483. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/commandline.rb +179 -0
  484. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/differ.rb +54 -0
  485. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/file_parser.rb +52 -0
  486. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/file_path.rb +85 -0
  487. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/format/style.css +141 -0
  488. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/messages.rb +220 -0
  489. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/options.rb +359 -0
  490. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/parsers/haml_embedded.rb +44 -0
  491. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/parsers/rails2_erubis.rb +6 -0
  492. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/parsers/rails2_xss_plugin_erubis.rb +48 -0
  493. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/parsers/rails3_erubis.rb +81 -0
  494. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/parsers/slim_embedded.rb +44 -0
  495. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/parsers/template_parser.rb +108 -0
  496. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/processor.rb +101 -0
  497. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/processors/alias_processor.rb +1278 -0
  498. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/processors/base_processor.rb +298 -0
  499. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/processors/config_processor.rb +17 -0
  500. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/processors/controller_alias_processor.rb +281 -0
  501. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/processors/controller_processor.rb +245 -0
  502. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/processors/erb_template_processor.rb +77 -0
  503. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/processors/erubis_template_processor.rb +92 -0
  504. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/processors/gem_processor.rb +100 -0
  505. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/processors/haml_template_processor.rb +160 -0
  506. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/processors/lib/basic_processor.rb +37 -0
  507. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/processors/lib/call_conversion_helper.rb +95 -0
  508. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/processors/lib/find_all_calls.rb +247 -0
  509. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/processors/lib/find_call.rb +122 -0
  510. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/processors/lib/find_return_value.rb +166 -0
  511. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/processors/lib/module_helper.rb +111 -0
  512. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/processors/lib/processor_helper.rb +88 -0
  513. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/processors/lib/rails2_config_processor.rb +145 -0
  514. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/processors/lib/rails2_route_processor.rb +313 -0
  515. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/processors/lib/rails3_config_processor.rb +132 -0
  516. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/processors/lib/rails3_route_processor.rb +306 -0
  517. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/processors/lib/rails4_config_processor.rb +18 -0
  518. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/processors/lib/render_helper.rb +186 -0
  519. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/processors/lib/render_path.rb +139 -0
  520. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/processors/lib/route_helper.rb +68 -0
  521. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/processors/lib/safe_call_helper.rb +16 -0
  522. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/processors/library_processor.rb +74 -0
  523. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/processors/model_processor.rb +90 -0
  524. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/processors/output_processor.rb +149 -0
  525. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/processors/route_processor.rb +17 -0
  526. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/processors/slim_template_processor.rb +127 -0
  527. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/processors/template_alias_processor.rb +145 -0
  528. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/processors/template_processor.rb +89 -0
  529. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/report.rb +88 -0
  530. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/report/config/remediation.yml +71 -0
  531. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/report/ignore/config.rb +152 -0
  532. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/report/ignore/interactive.rb +362 -0
  533. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/report/pager.rb +113 -0
  534. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/report/renderer.rb +24 -0
  535. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/report/report_base.rb +193 -0
  536. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/report/report_codeclimate.rb +79 -0
  537. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/report/report_csv.rb +72 -0
  538. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/report/report_hash.rb +23 -0
  539. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/report/report_html.rb +219 -0
  540. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/report/report_json.rb +43 -0
  541. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/report/report_markdown.rb +114 -0
  542. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/report/report_table.rb +290 -0
  543. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/report/report_tabs.rb +19 -0
  544. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/report/report_text.rb +214 -0
  545. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/report/templates/controller_overview.html.erb +22 -0
  546. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/report/templates/controller_warnings.html.erb +21 -0
  547. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/report/templates/error_overview.html.erb +29 -0
  548. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/report/templates/header.html.erb +58 -0
  549. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/report/templates/ignored_warnings.html.erb +25 -0
  550. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/report/templates/model_warnings.html.erb +21 -0
  551. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/report/templates/overview.html.erb +38 -0
  552. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/report/templates/security_warnings.html.erb +23 -0
  553. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/report/templates/template_overview.html.erb +21 -0
  554. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/report/templates/view_warnings.html.erb +34 -0
  555. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/report/templates/warning_overview.html.erb +17 -0
  556. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/rescanner.rb +484 -0
  557. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/scanner.rb +331 -0
  558. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/tracker.rb +390 -0
  559. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/tracker/collection.rb +94 -0
  560. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/tracker/config.rb +150 -0
  561. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/tracker/constants.rb +172 -0
  562. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/tracker/controller.rb +161 -0
  563. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/tracker/library.rb +17 -0
  564. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/tracker/model.rb +90 -0
  565. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/tracker/template.rb +33 -0
  566. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/util.rb +357 -0
  567. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/version.rb +3 -0
  568. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/warning.rb +313 -0
  569. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/brakeman/warning_codes.rb +122 -0
  570. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/ruby_parser/bm_sexp.rb +626 -0
  571. data/vendor/ruby/2.6.0/gems/brakeman-4.7.0/lib/ruby_parser/bm_sexp_processor.rb +117 -0
  572. data/vendor/ruby/2.6.0/gems/crass-1.0.5/Gemfile +2 -0
  573. data/vendor/ruby/2.6.0/gems/crass-1.0.5/HISTORY.md +121 -0
  574. data/vendor/ruby/2.6.0/gems/crass-1.0.5/LICENSE +18 -0
  575. data/vendor/ruby/2.6.0/gems/crass-1.0.5/README.md +214 -0
  576. data/vendor/ruby/2.6.0/gems/crass-1.0.5/Rakefile +21 -0
  577. data/vendor/ruby/2.6.0/gems/crass-1.0.5/crass.gemspec +24 -0
  578. data/vendor/ruby/2.6.0/gems/crass-1.0.5/lib/crass.rb +22 -0
  579. data/vendor/ruby/2.6.0/gems/crass-1.0.5/lib/crass/parser.rb +648 -0
  580. data/vendor/ruby/2.6.0/gems/crass-1.0.5/lib/crass/scanner.rb +125 -0
  581. data/vendor/ruby/2.6.0/gems/crass-1.0.5/lib/crass/token-scanner.rb +50 -0
  582. data/vendor/ruby/2.6.0/gems/crass-1.0.5/lib/crass/tokenizer.rb +689 -0
  583. data/vendor/ruby/2.6.0/gems/crass-1.0.5/lib/crass/version.rb +5 -0
  584. data/vendor/ruby/2.6.0/gems/loofah-2.3.1/CHANGELOG.md +336 -0
  585. data/vendor/ruby/2.6.0/gems/loofah-2.3.1/Gemfile +22 -0
  586. data/vendor/ruby/2.6.0/gems/loofah-2.3.1/MIT-LICENSE.txt +23 -0
  587. data/vendor/ruby/2.6.0/gems/loofah-2.3.1/Manifest.txt +41 -0
  588. data/vendor/ruby/2.6.0/gems/loofah-2.3.1/README.md +363 -0
  589. data/vendor/ruby/2.6.0/gems/loofah-2.3.1/Rakefile +81 -0
  590. data/vendor/ruby/2.6.0/gems/loofah-2.3.1/SECURITY.md +18 -0
  591. data/vendor/ruby/2.6.0/gems/loofah-2.3.1/benchmark/benchmark.rb +149 -0
  592. data/vendor/ruby/2.6.0/gems/loofah-2.3.1/benchmark/fragment.html +96 -0
  593. data/vendor/ruby/2.6.0/gems/loofah-2.3.1/benchmark/helper.rb +73 -0
  594. data/vendor/ruby/2.6.0/gems/loofah-2.3.1/benchmark/www.slashdot.com.html +2560 -0
  595. data/vendor/ruby/2.6.0/gems/loofah-2.3.1/lib/loofah.rb +83 -0
  596. data/vendor/ruby/2.6.0/gems/loofah-2.3.1/lib/loofah/elements.rb +92 -0
  597. data/vendor/ruby/2.6.0/gems/loofah-2.3.1/lib/loofah/helpers.rb +103 -0
  598. data/vendor/ruby/2.6.0/gems/loofah-2.3.1/lib/loofah/html/document.rb +18 -0
  599. data/vendor/ruby/2.6.0/gems/loofah-2.3.1/lib/loofah/html/document_fragment.rb +40 -0
  600. data/vendor/ruby/2.6.0/gems/loofah-2.3.1/lib/loofah/html5/libxml2_workarounds.rb +26 -0
  601. data/vendor/ruby/2.6.0/gems/loofah-2.3.1/lib/loofah/html5/safelist.rb +796 -0
  602. data/vendor/ruby/2.6.0/gems/loofah-2.3.1/lib/loofah/html5/scrub.rb +133 -0
  603. data/vendor/ruby/2.6.0/gems/loofah-2.3.1/lib/loofah/instance_methods.rb +127 -0
  604. data/vendor/ruby/2.6.0/gems/loofah-2.3.1/lib/loofah/metahelpers.rb +13 -0
  605. data/vendor/ruby/2.6.0/gems/loofah-2.3.1/lib/loofah/scrubber.rb +133 -0
  606. data/vendor/ruby/2.6.0/gems/loofah-2.3.1/lib/loofah/scrubbers.rb +297 -0
  607. data/vendor/ruby/2.6.0/gems/loofah-2.3.1/lib/loofah/xml/document.rb +13 -0
  608. data/vendor/ruby/2.6.0/gems/loofah-2.3.1/lib/loofah/xml/document_fragment.rb +23 -0
  609. data/vendor/ruby/2.6.0/gems/loofah-2.3.1/test/assets/msword.html +63 -0
  610. data/vendor/ruby/2.6.0/gems/loofah-2.3.1/test/assets/testdata_sanitizer_tests1.dat +502 -0
  611. data/vendor/ruby/2.6.0/gems/loofah-2.3.1/test/helper.rb +18 -0
  612. data/vendor/ruby/2.6.0/gems/loofah-2.3.1/test/html5/test_sanitizer.rb +401 -0
  613. data/vendor/ruby/2.6.0/gems/loofah-2.3.1/test/html5/test_scrub.rb +10 -0
  614. data/vendor/ruby/2.6.0/gems/loofah-2.3.1/test/integration/test_ad_hoc.rb +220 -0
  615. data/vendor/ruby/2.6.0/gems/loofah-2.3.1/test/integration/test_helpers.rb +43 -0
  616. data/vendor/ruby/2.6.0/gems/loofah-2.3.1/test/integration/test_html.rb +72 -0
  617. data/vendor/ruby/2.6.0/gems/loofah-2.3.1/test/integration/test_scrubbers.rb +400 -0
  618. data/vendor/ruby/2.6.0/gems/loofah-2.3.1/test/integration/test_xml.rb +55 -0
  619. data/vendor/ruby/2.6.0/gems/loofah-2.3.1/test/unit/test_api.rb +142 -0
  620. data/vendor/ruby/2.6.0/gems/loofah-2.3.1/test/unit/test_encoding.rb +20 -0
  621. data/vendor/ruby/2.6.0/gems/loofah-2.3.1/test/unit/test_helpers.rb +62 -0
  622. data/vendor/ruby/2.6.0/gems/loofah-2.3.1/test/unit/test_scrubber.rb +229 -0
  623. data/vendor/ruby/2.6.0/gems/loofah-2.3.1/test/unit/test_scrubbers.rb +14 -0
  624. data/vendor/ruby/2.6.0/gems/rspec-3.9.0/LICENSE.md +27 -0
  625. data/vendor/ruby/2.6.0/gems/rspec-3.9.0/README.md +43 -0
  626. data/vendor/ruby/2.6.0/gems/rspec-3.9.0/lib/rspec.rb +3 -0
  627. data/vendor/ruby/2.6.0/gems/rspec-3.9.0/lib/rspec/version.rb +5 -0
  628. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/Changelog.md +2265 -0
  629. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/LICENSE.md +26 -0
  630. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/README.md +384 -0
  631. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/exe/rspec +4 -0
  632. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/autorun.rb +3 -0
  633. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core.rb +186 -0
  634. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/backtrace_formatter.rb +65 -0
  635. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/bisect/coordinator.rb +62 -0
  636. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/bisect/example_minimizer.rb +173 -0
  637. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/bisect/fork_runner.rb +134 -0
  638. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/bisect/server.rb +61 -0
  639. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/bisect/shell_command.rb +126 -0
  640. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/bisect/shell_runner.rb +73 -0
  641. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/bisect/utilities.rb +58 -0
  642. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/configuration.rb +2336 -0
  643. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/configuration_options.rb +233 -0
  644. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/did_you_mean.rb +46 -0
  645. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/drb.rb +113 -0
  646. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/dsl.rb +98 -0
  647. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/example.rb +656 -0
  648. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/example_group.rb +889 -0
  649. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/example_status_persister.rb +235 -0
  650. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/filter_manager.rb +231 -0
  651. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/flat_map.rb +20 -0
  652. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/formatters.rb +272 -0
  653. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/formatters/base_bisect_formatter.rb +45 -0
  654. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/formatters/base_formatter.rb +70 -0
  655. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/formatters/base_text_formatter.rb +75 -0
  656. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/formatters/bisect_drb_formatter.rb +29 -0
  657. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/formatters/bisect_progress_formatter.rb +157 -0
  658. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/formatters/console_codes.rb +68 -0
  659. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/formatters/deprecation_formatter.rb +223 -0
  660. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/formatters/documentation_formatter.rb +102 -0
  661. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/formatters/exception_presenter.rb +508 -0
  662. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/formatters/failure_list_formatter.rb +23 -0
  663. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/formatters/fallback_message_formatter.rb +28 -0
  664. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/formatters/helpers.rb +110 -0
  665. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/formatters/html_formatter.rb +153 -0
  666. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/formatters/html_printer.rb +414 -0
  667. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/formatters/html_snippet_extractor.rb +120 -0
  668. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/formatters/json_formatter.rb +102 -0
  669. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/formatters/profile_formatter.rb +68 -0
  670. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/formatters/progress_formatter.rb +29 -0
  671. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/formatters/protocol.rb +182 -0
  672. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/formatters/snippet_extractor.rb +134 -0
  673. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/formatters/syntax_highlighter.rb +91 -0
  674. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/hooks.rb +632 -0
  675. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/invocations.rb +87 -0
  676. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/memoized_helpers.rb +554 -0
  677. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/metadata.rb +498 -0
  678. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/metadata_filter.rb +255 -0
  679. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/minitest_assertions_adapter.rb +31 -0
  680. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/mocking_adapters/flexmock.rb +31 -0
  681. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/mocking_adapters/mocha.rb +57 -0
  682. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/mocking_adapters/null.rb +14 -0
  683. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/mocking_adapters/rr.rb +31 -0
  684. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/mocking_adapters/rspec.rb +32 -0
  685. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/notifications.rb +521 -0
  686. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/option_parser.rb +317 -0
  687. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/ordering.rb +158 -0
  688. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/output_wrapper.rb +29 -0
  689. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/pending.rb +165 -0
  690. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/profiler.rb +34 -0
  691. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/project_initializer.rb +48 -0
  692. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/project_initializer/spec/spec_helper.rb +100 -0
  693. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/rake_task.rb +188 -0
  694. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/reporter.rb +265 -0
  695. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/ruby_project.rb +53 -0
  696. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/runner.rb +204 -0
  697. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/sandbox.rb +37 -0
  698. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/set.rb +54 -0
  699. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/shared_context.rb +55 -0
  700. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/shared_example_group.rb +269 -0
  701. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/shell_escape.rb +49 -0
  702. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/test_unit_assertions_adapter.rb +30 -0
  703. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/version.rb +9 -0
  704. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/warnings.rb +40 -0
  705. data/vendor/ruby/2.6.0/gems/rspec-core-3.9.0/lib/rspec/core/world.rb +275 -0
  706. data/vendor/ruby/2.6.0/gems/rspec-expectations-3.9.0/Changelog.md +1170 -0
  707. data/vendor/ruby/2.6.0/gems/rspec-expectations-3.9.0/LICENSE.md +25 -0
  708. data/vendor/ruby/2.6.0/gems/rspec-expectations-3.9.0/README.md +320 -0
  709. data/vendor/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/expectations.rb +82 -0
  710. data/vendor/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/expectations/block_snippet_extractor.rb +253 -0
  711. data/vendor/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/expectations/configuration.rb +215 -0
  712. data/vendor/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/expectations/expectation_target.rb +127 -0
  713. data/vendor/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/expectations/fail_with.rb +39 -0
  714. data/vendor/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/expectations/failure_aggregator.rb +194 -0
  715. data/vendor/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/expectations/handler.rb +170 -0
  716. data/vendor/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/expectations/minitest_integration.rb +58 -0
  717. data/vendor/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/expectations/syntax.rb +132 -0
  718. data/vendor/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/expectations/version.rb +8 -0
  719. data/vendor/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers.rb +1038 -0
  720. data/vendor/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/aliased_matcher.rb +116 -0
  721. data/vendor/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in.rb +52 -0
  722. data/vendor/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/all.rb +86 -0
  723. data/vendor/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/base_matcher.rb +193 -0
  724. data/vendor/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/be.rb +288 -0
  725. data/vendor/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/be_between.rb +77 -0
  726. data/vendor/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/be_instance_of.rb +26 -0
  727. data/vendor/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/be_kind_of.rb +20 -0
  728. data/vendor/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/be_within.rb +72 -0
  729. data/vendor/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/change.rb +428 -0
  730. data/vendor/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/compound.rb +276 -0
  731. data/vendor/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/contain_exactly.rb +302 -0
  732. data/vendor/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/cover.rb +24 -0
  733. data/vendor/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/eq.rb +40 -0
  734. data/vendor/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/eql.rb +34 -0
  735. data/vendor/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/equal.rb +81 -0
  736. data/vendor/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/exist.rb +90 -0
  737. data/vendor/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/has.rb +103 -0
  738. data/vendor/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/have_attributes.rb +114 -0
  739. data/vendor/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/include.rb +149 -0
  740. data/vendor/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/match.rb +106 -0
  741. data/vendor/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/operators.rb +128 -0
  742. data/vendor/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/output.rb +200 -0
  743. data/vendor/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/raise_error.rb +230 -0
  744. data/vendor/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/respond_to.rb +174 -0
  745. data/vendor/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/satisfy.rb +60 -0
  746. data/vendor/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/start_or_end_with.rb +94 -0
  747. data/vendor/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/throw_symbol.rb +132 -0
  748. data/vendor/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/yield.rb +432 -0
  749. data/vendor/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/composable.rb +171 -0
  750. data/vendor/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/dsl.rb +534 -0
  751. data/vendor/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/english_phrasing.rb +58 -0
  752. data/vendor/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/expecteds_for_multiple_diffs.rb +82 -0
  753. data/vendor/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/fail_matchers.rb +42 -0
  754. data/vendor/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/generated_descriptions.rb +41 -0
  755. data/vendor/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/matcher_delegator.rb +35 -0
  756. data/vendor/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/matcher_protocol.rb +99 -0
  757. data/vendor/ruby/2.6.0/gems/rspec-mocks-3.9.0/Changelog.md +1125 -0
  758. data/vendor/ruby/2.6.0/gems/rspec-mocks-3.9.0/LICENSE.md +25 -0
  759. data/vendor/ruby/2.6.0/gems/rspec-mocks-3.9.0/README.md +463 -0
  760. data/vendor/ruby/2.6.0/gems/rspec-mocks-3.9.0/lib/rspec/mocks.rb +130 -0
  761. data/vendor/ruby/2.6.0/gems/rspec-mocks-3.9.0/lib/rspec/mocks/any_instance.rb +11 -0
  762. data/vendor/ruby/2.6.0/gems/rspec-mocks-3.9.0/lib/rspec/mocks/any_instance/chain.rb +111 -0
  763. data/vendor/ruby/2.6.0/gems/rspec-mocks-3.9.0/lib/rspec/mocks/any_instance/error_generator.rb +31 -0
  764. data/vendor/ruby/2.6.0/gems/rspec-mocks-3.9.0/lib/rspec/mocks/any_instance/expect_chain_chain.rb +31 -0
  765. data/vendor/ruby/2.6.0/gems/rspec-mocks-3.9.0/lib/rspec/mocks/any_instance/expectation_chain.rb +50 -0
  766. data/vendor/ruby/2.6.0/gems/rspec-mocks-3.9.0/lib/rspec/mocks/any_instance/message_chains.rb +83 -0
  767. data/vendor/ruby/2.6.0/gems/rspec-mocks-3.9.0/lib/rspec/mocks/any_instance/proxy.rb +116 -0
  768. data/vendor/ruby/2.6.0/gems/rspec-mocks-3.9.0/lib/rspec/mocks/any_instance/recorder.rb +289 -0
  769. data/vendor/ruby/2.6.0/gems/rspec-mocks-3.9.0/lib/rspec/mocks/any_instance/stub_chain.rb +51 -0
  770. data/vendor/ruby/2.6.0/gems/rspec-mocks-3.9.0/lib/rspec/mocks/any_instance/stub_chain_chain.rb +23 -0
  771. data/vendor/ruby/2.6.0/gems/rspec-mocks-3.9.0/lib/rspec/mocks/argument_list_matcher.rb +100 -0
  772. data/vendor/ruby/2.6.0/gems/rspec-mocks-3.9.0/lib/rspec/mocks/argument_matchers.rb +322 -0
  773. data/vendor/ruby/2.6.0/gems/rspec-mocks-3.9.0/lib/rspec/mocks/configuration.rb +212 -0
  774. data/vendor/ruby/2.6.0/gems/rspec-mocks-3.9.0/lib/rspec/mocks/error_generator.rb +369 -0
  775. data/vendor/ruby/2.6.0/gems/rspec-mocks-3.9.0/lib/rspec/mocks/example_methods.rb +434 -0
  776. data/vendor/ruby/2.6.0/gems/rspec-mocks-3.9.0/lib/rspec/mocks/instance_method_stasher.rb +146 -0
  777. data/vendor/ruby/2.6.0/gems/rspec-mocks-3.9.0/lib/rspec/mocks/marshal_extension.rb +41 -0
  778. data/vendor/ruby/2.6.0/gems/rspec-mocks-3.9.0/lib/rspec/mocks/matchers/expectation_customization.rb +20 -0
  779. data/vendor/ruby/2.6.0/gems/rspec-mocks-3.9.0/lib/rspec/mocks/matchers/have_received.rb +134 -0
  780. data/vendor/ruby/2.6.0/gems/rspec-mocks-3.9.0/lib/rspec/mocks/matchers/receive.rb +132 -0
  781. data/vendor/ruby/2.6.0/gems/rspec-mocks-3.9.0/lib/rspec/mocks/matchers/receive_message_chain.rb +82 -0
  782. data/vendor/ruby/2.6.0/gems/rspec-mocks-3.9.0/lib/rspec/mocks/matchers/receive_messages.rb +77 -0
  783. data/vendor/ruby/2.6.0/gems/rspec-mocks-3.9.0/lib/rspec/mocks/message_chain.rb +87 -0
  784. data/vendor/ruby/2.6.0/gems/rspec-mocks-3.9.0/lib/rspec/mocks/message_expectation.rb +751 -0
  785. data/vendor/ruby/2.6.0/gems/rspec-mocks-3.9.0/lib/rspec/mocks/method_double.rb +287 -0
  786. data/vendor/ruby/2.6.0/gems/rspec-mocks-3.9.0/lib/rspec/mocks/method_reference.rb +202 -0
  787. data/vendor/ruby/2.6.0/gems/rspec-mocks-3.9.0/lib/rspec/mocks/minitest_integration.rb +68 -0
  788. data/vendor/ruby/2.6.0/gems/rspec-mocks-3.9.0/lib/rspec/mocks/mutate_const.rb +339 -0
  789. data/vendor/ruby/2.6.0/gems/rspec-mocks-3.9.0/lib/rspec/mocks/object_reference.rb +149 -0
  790. data/vendor/ruby/2.6.0/gems/rspec-mocks-3.9.0/lib/rspec/mocks/order_group.rb +81 -0
  791. data/vendor/ruby/2.6.0/gems/rspec-mocks-3.9.0/lib/rspec/mocks/proxy.rb +503 -0
  792. data/vendor/ruby/2.6.0/gems/rspec-mocks-3.9.0/lib/rspec/mocks/space.rb +238 -0
  793. data/vendor/ruby/2.6.0/gems/rspec-mocks-3.9.0/lib/rspec/mocks/standalone.rb +3 -0
  794. data/vendor/ruby/2.6.0/gems/rspec-mocks-3.9.0/lib/rspec/mocks/syntax.rb +325 -0
  795. data/vendor/ruby/2.6.0/gems/rspec-mocks-3.9.0/lib/rspec/mocks/targets.rb +124 -0
  796. data/vendor/ruby/2.6.0/gems/rspec-mocks-3.9.0/lib/rspec/mocks/test_double.rb +171 -0
  797. data/vendor/ruby/2.6.0/gems/rspec-mocks-3.9.0/lib/rspec/mocks/verifying_double.rb +129 -0
  798. data/vendor/ruby/2.6.0/gems/rspec-mocks-3.9.0/lib/rspec/mocks/verifying_message_expectation.rb +54 -0
  799. data/vendor/ruby/2.6.0/gems/rspec-mocks-3.9.0/lib/rspec/mocks/verifying_proxy.rb +220 -0
  800. data/vendor/ruby/2.6.0/gems/rspec-mocks-3.9.0/lib/rspec/mocks/version.rb +9 -0
  801. data/vendor/ruby/2.6.0/gems/rspec-support-3.9.0/Changelog.md +275 -0
  802. data/vendor/ruby/2.6.0/gems/rspec-support-3.9.0/LICENSE.md +23 -0
  803. data/vendor/ruby/2.6.0/gems/rspec-support-3.9.0/README.md +40 -0
  804. data/vendor/ruby/2.6.0/gems/rspec-support-3.9.0/lib/rspec/support.rb +149 -0
  805. data/vendor/ruby/2.6.0/gems/rspec-support-3.9.0/lib/rspec/support/caller_filter.rb +83 -0
  806. data/vendor/ruby/2.6.0/gems/rspec-support-3.9.0/lib/rspec/support/comparable_version.rb +46 -0
  807. data/vendor/ruby/2.6.0/gems/rspec-support-3.9.0/lib/rspec/support/differ.rb +215 -0
  808. data/vendor/ruby/2.6.0/gems/rspec-support-3.9.0/lib/rspec/support/directory_maker.rb +63 -0
  809. data/vendor/ruby/2.6.0/gems/rspec-support-3.9.0/lib/rspec/support/encoded_string.rb +165 -0
  810. data/vendor/ruby/2.6.0/gems/rspec-support-3.9.0/lib/rspec/support/fuzzy_matcher.rb +48 -0
  811. data/vendor/ruby/2.6.0/gems/rspec-support-3.9.0/lib/rspec/support/hunk_generator.rb +47 -0
  812. data/vendor/ruby/2.6.0/gems/rspec-support-3.9.0/lib/rspec/support/matcher_definition.rb +42 -0
  813. data/vendor/ruby/2.6.0/gems/rspec-support-3.9.0/lib/rspec/support/method_signature_verifier.rb +438 -0
  814. data/vendor/ruby/2.6.0/gems/rspec-support-3.9.0/lib/rspec/support/mutex.rb +73 -0
  815. data/vendor/ruby/2.6.0/gems/rspec-support-3.9.0/lib/rspec/support/object_formatter.rb +275 -0
  816. data/vendor/ruby/2.6.0/gems/rspec-support-3.9.0/lib/rspec/support/recursive_const_methods.rb +76 -0
  817. data/vendor/ruby/2.6.0/gems/rspec-support-3.9.0/lib/rspec/support/reentrant_mutex.rb +53 -0
  818. data/vendor/ruby/2.6.0/gems/rspec-support-3.9.0/lib/rspec/support/ruby_features.rb +176 -0
  819. data/vendor/ruby/2.6.0/gems/rspec-support-3.9.0/lib/rspec/support/source.rb +75 -0
  820. data/vendor/ruby/2.6.0/gems/rspec-support-3.9.0/lib/rspec/support/source/location.rb +21 -0
  821. data/vendor/ruby/2.6.0/gems/rspec-support-3.9.0/lib/rspec/support/source/node.rb +110 -0
  822. data/vendor/ruby/2.6.0/gems/rspec-support-3.9.0/lib/rspec/support/source/token.rb +87 -0
  823. data/vendor/ruby/2.6.0/gems/rspec-support-3.9.0/lib/rspec/support/spec.rb +81 -0
  824. data/vendor/ruby/2.6.0/gems/rspec-support-3.9.0/lib/rspec/support/spec/deprecation_helpers.rb +64 -0
  825. data/vendor/ruby/2.6.0/gems/rspec-support-3.9.0/lib/rspec/support/spec/formatting_support.rb +9 -0
  826. data/vendor/ruby/2.6.0/gems/rspec-support-3.9.0/lib/rspec/support/spec/in_sub_process.rb +69 -0
  827. data/vendor/ruby/2.6.0/gems/rspec-support-3.9.0/lib/rspec/support/spec/library_wide_checks.rb +150 -0
  828. data/vendor/ruby/2.6.0/gems/rspec-support-3.9.0/lib/rspec/support/spec/shell_out.rb +89 -0
  829. data/vendor/ruby/2.6.0/gems/rspec-support-3.9.0/lib/rspec/support/spec/stderr_splitter.rb +63 -0
  830. data/vendor/ruby/2.6.0/gems/rspec-support-3.9.0/lib/rspec/support/spec/string_matcher.rb +46 -0
  831. data/vendor/ruby/2.6.0/gems/rspec-support-3.9.0/lib/rspec/support/spec/with_isolated_directory.rb +13 -0
  832. data/vendor/ruby/2.6.0/gems/rspec-support-3.9.0/lib/rspec/support/spec/with_isolated_stderr.rb +13 -0
  833. data/vendor/ruby/2.6.0/gems/rspec-support-3.9.0/lib/rspec/support/version.rb +7 -0
  834. data/vendor/ruby/2.6.0/gems/rspec-support-3.9.0/lib/rspec/support/warnings.rb +39 -0
  835. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/LICENSE.txt +20 -0
  836. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/README.md +217 -0
  837. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/assets/logo.png +0 -0
  838. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/assets/output.html.erb +261 -0
  839. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/bin/console +10 -0
  840. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/bin/setup +7 -0
  841. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/config/default.yml +3939 -0
  842. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/exe/rubocop +17 -0
  843. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop.rb +608 -0
  844. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/ast/builder.rb +81 -0
  845. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/ast/node.rb +640 -0
  846. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/ast/node/alias_node.rb +24 -0
  847. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/ast/node/and_node.rb +29 -0
  848. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/ast/node/args_node.rb +29 -0
  849. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/ast/node/array_node.rb +57 -0
  850. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/ast/node/block_node.rb +115 -0
  851. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/ast/node/break_node.rb +17 -0
  852. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/ast/node/case_node.rb +56 -0
  853. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/ast/node/class_node.rb +31 -0
  854. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/ast/node/def_node.rb +71 -0
  855. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/ast/node/defined_node.rb +17 -0
  856. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/ast/node/ensure_node.rb +17 -0
  857. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/ast/node/float_node.rb +12 -0
  858. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/ast/node/for_node.rb +53 -0
  859. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/ast/node/hash_node.rb +109 -0
  860. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/ast/node/if_node.rb +175 -0
  861. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/ast/node/int_node.rb +12 -0
  862. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/ast/node/keyword_splat_node.rb +45 -0
  863. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/ast/node/mixin/basic_literal_node.rb +16 -0
  864. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/ast/node/mixin/binary_operator_node.rb +43 -0
  865. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/ast/node/mixin/collection_node.rb +15 -0
  866. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/ast/node/mixin/conditional_node.rb +45 -0
  867. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/ast/node/mixin/hash_element_node.rb +125 -0
  868. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/ast/node/mixin/method_dispatch_node.rb +261 -0
  869. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/ast/node/mixin/method_identifier_predicates.rb +114 -0
  870. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/ast/node/mixin/modifier_node.rb +17 -0
  871. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/ast/node/mixin/numeric_node.rb +21 -0
  872. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/ast/node/mixin/parameterized_node.rb +61 -0
  873. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/ast/node/mixin/predicate_operator_node.rb +35 -0
  874. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/ast/node/module_node.rb +24 -0
  875. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/ast/node/or_node.rb +29 -0
  876. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/ast/node/pair_node.rb +63 -0
  877. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/ast/node/range_node.rb +18 -0
  878. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/ast/node/regexp_node.rb +35 -0
  879. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/ast/node/resbody_node.rb +24 -0
  880. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/ast/node/retry_node.rb +17 -0
  881. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/ast/node/self_class_node.rb +24 -0
  882. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/ast/node/send_node.rb +13 -0
  883. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/ast/node/str_node.rb +16 -0
  884. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/ast/node/super_node.rb +21 -0
  885. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/ast/node/symbol_node.rb +12 -0
  886. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/ast/node/until_node.rb +35 -0
  887. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/ast/node/when_node.rb +53 -0
  888. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/ast/node/while_node.rb +35 -0
  889. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/ast/node/yield_node.rb +21 -0
  890. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/ast/sexp.rb +16 -0
  891. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/ast/traversal.rb +183 -0
  892. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cached_data.rb +58 -0
  893. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cli.rb +343 -0
  894. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/comment_config.rb +201 -0
  895. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/config.rb +244 -0
  896. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/config_loader.rb +273 -0
  897. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/config_loader_resolver.rb +194 -0
  898. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/config_obsoletion.rb +213 -0
  899. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/config_store.rb +48 -0
  900. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/config_validator.rb +239 -0
  901. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/autocorrect_logic.rb +103 -0
  902. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/badge.rb +73 -0
  903. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/bundler/duplicated_gem.rb +73 -0
  904. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/bundler/gem_comment.rb +64 -0
  905. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/bundler/insecure_protocol_source.rb +69 -0
  906. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/bundler/ordered_gems.rb +73 -0
  907. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/commissioner.rb +137 -0
  908. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/cop.rb +271 -0
  909. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/corrector.rb +171 -0
  910. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/correctors/alignment_corrector.rb +146 -0
  911. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/correctors/condition_corrector.rb +28 -0
  912. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/correctors/each_to_for_corrector.rb +53 -0
  913. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/correctors/empty_line_corrector.rb +26 -0
  914. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/correctors/for_to_each_corrector.rb +73 -0
  915. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/correctors/lambda_literal_to_method_corrector.rb +136 -0
  916. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/correctors/line_break_corrector.rb +61 -0
  917. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/correctors/multiline_literal_brace_corrector.rb +68 -0
  918. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/correctors/ordered_gem_corrector.rb +44 -0
  919. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/correctors/parentheses_corrector.rb +31 -0
  920. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/correctors/percent_literal_corrector.rb +117 -0
  921. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/correctors/punctuation_corrector.rb +29 -0
  922. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/correctors/space_corrector.rb +49 -0
  923. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/correctors/string_literal_corrector.rb +25 -0
  924. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/correctors/unused_arg_corrector.rb +43 -0
  925. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/force.rb +42 -0
  926. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/gemspec/duplicated_assignment.rb +104 -0
  927. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/gemspec/ordered_dependencies.rb +106 -0
  928. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/gemspec/required_ruby_version.rb +85 -0
  929. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/gemspec/ruby_version_globals_usage.rb +55 -0
  930. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/generator.rb +223 -0
  931. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/generator/configuration_injector.rb +66 -0
  932. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/generator/require_file_injector.rb +78 -0
  933. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/ignored_node.rb +38 -0
  934. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/internal_affairs.rb +8 -0
  935. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/internal_affairs/node_destructuring.rb +44 -0
  936. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/internal_affairs/node_type_predicate.rb +44 -0
  937. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/internal_affairs/offense_location_keyword.rb +54 -0
  938. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/internal_affairs/redundant_location_argument.rb +48 -0
  939. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/internal_affairs/redundant_message_argument.rb +73 -0
  940. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/internal_affairs/useless_message_assertion.rb +52 -0
  941. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/access_modifier_indentation.rb +98 -0
  942. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/align_arguments.rb +93 -0
  943. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/align_array.rb +39 -0
  944. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/align_hash.rb +358 -0
  945. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/align_parameters.rb +118 -0
  946. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/block_alignment.rb +244 -0
  947. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/block_end_newline.rb +62 -0
  948. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/case_indentation.rb +161 -0
  949. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/class_structure.rb +340 -0
  950. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/closing_heredoc_indentation.rb +126 -0
  951. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/closing_parenthesis_indentation.rb +203 -0
  952. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/comment_indentation.rb +144 -0
  953. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/condition_position.rb +56 -0
  954. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/def_end_alignment.rb +74 -0
  955. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/dot_position.rb +105 -0
  956. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/else_alignment.rb +134 -0
  957. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/empty_comment.rb +160 -0
  958. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/empty_line_after_guard_clause.rb +157 -0
  959. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/empty_line_after_magic_comment.rb +64 -0
  960. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/empty_line_between_defs.rb +151 -0
  961. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/empty_lines.rb +76 -0
  962. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/empty_lines_around_access_modifier.rb +215 -0
  963. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/empty_lines_around_arguments.rb +99 -0
  964. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/empty_lines_around_begin_body.rb +45 -0
  965. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/empty_lines_around_block_body.rb +41 -0
  966. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/empty_lines_around_class_body.rb +88 -0
  967. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/empty_lines_around_exception_handling_keywords.rb +136 -0
  968. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/empty_lines_around_method_body.rb +45 -0
  969. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/empty_lines_around_module_body.rb +62 -0
  970. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/end_alignment.rb +189 -0
  971. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/end_of_line.rb +87 -0
  972. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/extra_spacing.rb +201 -0
  973. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/first_array_element_line_break.rb +45 -0
  974. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/first_hash_element_line_break.rb +37 -0
  975. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/first_method_argument_line_break.rb +55 -0
  976. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/first_method_parameter_line_break.rb +46 -0
  977. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/heredoc_argument_closing_parenthesis.rb +289 -0
  978. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/indent_assignment.rb +55 -0
  979. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/indent_first_argument.rb +247 -0
  980. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/indent_first_array_element.rb +167 -0
  981. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/indent_first_hash_element.rb +184 -0
  982. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/indent_first_parameter.rb +100 -0
  983. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/indent_heredoc.rb +256 -0
  984. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/indentation_consistency.rb +202 -0
  985. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/indentation_width.rb +364 -0
  986. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/initial_indentation.rb +59 -0
  987. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/leading_blank_lines.rb +53 -0
  988. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/leading_comment_space.rb +88 -0
  989. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/multiline_array_brace_layout.rb +118 -0
  990. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/multiline_array_line_breaks.rb +39 -0
  991. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/multiline_assignment_layout.rb +95 -0
  992. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/multiline_block_layout.rb +146 -0
  993. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/multiline_hash_brace_layout.rb +122 -0
  994. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb +50 -0
  995. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/multiline_method_argument_line_breaks.rb +54 -0
  996. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/multiline_method_call_brace_layout.rb +134 -0
  997. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/multiline_method_call_indentation.rb +220 -0
  998. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/multiline_method_definition_brace_layout.rb +131 -0
  999. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/multiline_operation_indentation.rb +114 -0
  1000. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/rescue_ensure_alignment.rb +189 -0
  1001. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/space_after_colon.rb +47 -0
  1002. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/space_after_comma.rb +35 -0
  1003. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/space_after_method_name.rb +42 -0
  1004. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/space_after_not.rb +40 -0
  1005. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/space_after_semicolon.rb +32 -0
  1006. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/space_around_block_parameters.rb +169 -0
  1007. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/space_around_equals_in_parameter_default.rb +92 -0
  1008. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/space_around_keyword.rb +232 -0
  1009. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/space_around_operators.rb +182 -0
  1010. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/space_before_block_braces.rb +119 -0
  1011. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/space_before_comma.rb +31 -0
  1012. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/space_before_comment.rb +35 -0
  1013. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/space_before_first_arg.rb +67 -0
  1014. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/space_before_semicolon.rb +27 -0
  1015. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/space_in_lambda_literal.rb +80 -0
  1016. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/space_inside_array_literal_brackets.rb +228 -0
  1017. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/space_inside_array_percent_literal.rb +53 -0
  1018. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/space_inside_block_braces.rb +248 -0
  1019. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/space_inside_hash_literal_braces.rb +207 -0
  1020. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/space_inside_parens.rb +113 -0
  1021. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/space_inside_percent_literal_delimiters.rb +65 -0
  1022. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/space_inside_range_literal.rb +63 -0
  1023. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/space_inside_reference_brackets.rb +150 -0
  1024. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/space_inside_string_interpolation.rb +65 -0
  1025. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/tab.rb +75 -0
  1026. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/trailing_blank_lines.rb +113 -0
  1027. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/layout/trailing_whitespace.rb +61 -0
  1028. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/ambiguous_block_association.rb +62 -0
  1029. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/ambiguous_operator.rb +55 -0
  1030. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/ambiguous_regexp_literal.rb +43 -0
  1031. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/assignment_in_condition.rb +97 -0
  1032. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/big_decimal_new.rb +44 -0
  1033. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/boolean_symbol.rb +38 -0
  1034. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/circular_argument_reference.rb +72 -0
  1035. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/debugger.rb +77 -0
  1036. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/deprecated_class_methods.rb +111 -0
  1037. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/disjunctive_assignment_in_constructor.rb +81 -0
  1038. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/duplicate_case_condition.rb +53 -0
  1039. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/duplicate_methods.rb +239 -0
  1040. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/duplicated_key.rb +38 -0
  1041. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/each_with_object_argument.rb +42 -0
  1042. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/else_layout.rb +66 -0
  1043. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/empty_ensure.rb +60 -0
  1044. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/empty_expression.rb +42 -0
  1045. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/empty_interpolation.rb +36 -0
  1046. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/empty_when.rb +38 -0
  1047. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/end_in_method.rb +40 -0
  1048. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/ensure_return.rb +46 -0
  1049. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/erb_new_arguments.rb +163 -0
  1050. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/flip_flop.rb +32 -0
  1051. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/float_out_of_range.rb +35 -0
  1052. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/format_parameter_mismatch.rb +159 -0
  1053. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/handle_exceptions.rb +95 -0
  1054. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/heredoc_method_call_position.rb +156 -0
  1055. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/implicit_string_concatenation.rb +101 -0
  1056. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/ineffective_access_modifier.rb +127 -0
  1057. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/inherit_exception.rb +100 -0
  1058. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/interpolation_check.rb +40 -0
  1059. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/literal_as_condition.rb +138 -0
  1060. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/literal_in_interpolation.rb +98 -0
  1061. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/loop.rb +63 -0
  1062. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/missing_cop_enable_directive.rb +84 -0
  1063. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/multiple_compare.rb +48 -0
  1064. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/nested_method_definition.rb +104 -0
  1065. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/nested_percent_literal.rb +51 -0
  1066. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/next_without_accumulator.rb +50 -0
  1067. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/non_local_exit_from_iterator.rb +83 -0
  1068. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/number_conversion.rb +81 -0
  1069. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/ordered_magic_comments.rb +86 -0
  1070. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/parentheses_as_grouped_expression.rb +64 -0
  1071. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/percent_string_array.rb +73 -0
  1072. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/percent_symbol_array.rb +69 -0
  1073. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/rand_one.rb +45 -0
  1074. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/redundant_with_index.rb +82 -0
  1075. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/redundant_with_object.rb +83 -0
  1076. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/regexp_as_condition.rb +29 -0
  1077. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/require_parentheses.rb +66 -0
  1078. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/rescue_exception.rb +46 -0
  1079. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/rescue_type.rb +94 -0
  1080. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/return_in_void_context.rb +74 -0
  1081. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/safe_navigation_chain.rb +66 -0
  1082. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/safe_navigation_consistency.rb +94 -0
  1083. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/safe_navigation_with_empty.rb +38 -0
  1084. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/script_permission.rb +70 -0
  1085. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/send_with_mixin_argument.rb +91 -0
  1086. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/shadowed_argument.rb +182 -0
  1087. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/shadowed_exception.rb +178 -0
  1088. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/shadowing_outer_local_variable.rb +53 -0
  1089. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/string_conversion_in_interpolation.rb +59 -0
  1090. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/syntax.rb +59 -0
  1091. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/to_json.rb +41 -0
  1092. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/underscore_prefixed_variable_name.rb +82 -0
  1093. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/unified_integer.rb +45 -0
  1094. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/unneeded_cop_disable_directive.rb +263 -0
  1095. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/unneeded_cop_enable_directive.rb +116 -0
  1096. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/unneeded_require_statement.rb +50 -0
  1097. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/unneeded_splat_expansion.rb +172 -0
  1098. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/unreachable_code.rb +99 -0
  1099. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/unused_block_argument.rb +165 -0
  1100. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/unused_method_argument.rb +86 -0
  1101. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/uri_escape_unescape.rb +76 -0
  1102. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/uri_regexp.rb +73 -0
  1103. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/useless_access_modifier.rb +240 -0
  1104. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/useless_assignment.rb +129 -0
  1105. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/useless_comparison.rb +28 -0
  1106. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/useless_else_without_rescue.rb +49 -0
  1107. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/useless_setter_call.rb +164 -0
  1108. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/lint/void.rb +151 -0
  1109. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/message_annotator.rb +129 -0
  1110. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/metrics/abc_size.rb +24 -0
  1111. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/metrics/block_length.rb +50 -0
  1112. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/metrics/block_nesting.rb +65 -0
  1113. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/metrics/class_length.rb +36 -0
  1114. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/metrics/cyclomatic_complexity.rb +32 -0
  1115. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/metrics/line_length.rb +321 -0
  1116. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/metrics/method_length.rb +36 -0
  1117. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/metrics/module_length.rb +36 -0
  1118. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/metrics/parameter_lists.rb +54 -0
  1119. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/metrics/perceived_complexity.rb +61 -0
  1120. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/metrics/utils/abc_size_calculator.rb +67 -0
  1121. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/migration/department_name.rb +44 -0
  1122. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/mixin/alignment.rb +74 -0
  1123. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/mixin/annotation_comment.rb +37 -0
  1124. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/mixin/array_min_size.rb +59 -0
  1125. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/mixin/array_syntax.rb +17 -0
  1126. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/mixin/check_assignment.rb +44 -0
  1127. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/mixin/check_line_breakable.rb +190 -0
  1128. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/mixin/classish_length.rb +37 -0
  1129. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/mixin/code_length.rb +38 -0
  1130. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/mixin/configurable_enforced_style.rb +98 -0
  1131. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/mixin/configurable_formatting.rb +47 -0
  1132. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/mixin/configurable_max.rb +23 -0
  1133. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/mixin/configurable_naming.rb +16 -0
  1134. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/mixin/configurable_numbering.rb +17 -0
  1135. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/mixin/def_node.rb +33 -0
  1136. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/mixin/documentation_comment.rb +52 -0
  1137. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/mixin/duplication.rb +46 -0
  1138. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/mixin/empty_lines_around_body.rb +172 -0
  1139. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/mixin/empty_parameter.rb +24 -0
  1140. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/mixin/end_keyword_alignment.rb +67 -0
  1141. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/mixin/enforce_superclass.rb +30 -0
  1142. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/mixin/first_element_line_break.rb +46 -0
  1143. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/mixin/frozen_string_literal.rb +53 -0
  1144. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/mixin/hash_alignment.rb +147 -0
  1145. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/mixin/heredoc.rb +32 -0
  1146. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/mixin/ignored_methods.rb +19 -0
  1147. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/mixin/ignored_pattern.rb +29 -0
  1148. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/mixin/integer_node.rb +14 -0
  1149. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/mixin/interpolation.rb +27 -0
  1150. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/mixin/match_range.rb +26 -0
  1151. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/mixin/method_complexity.rb +56 -0
  1152. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/mixin/method_preference.rb +31 -0
  1153. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/mixin/min_body_length.rb +21 -0
  1154. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/mixin/multiline_element_indentation.rb +86 -0
  1155. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/mixin/multiline_element_line_breaks.rb +33 -0
  1156. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/mixin/multiline_expression_indentation.rb +255 -0
  1157. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/mixin/multiline_literal_brace_layout.rb +141 -0
  1158. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/mixin/negative_conditional.rb +32 -0
  1159. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/mixin/nil_methods.rb +25 -0
  1160. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/mixin/on_normal_if_unless.rb +14 -0
  1161. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/mixin/ordered_gem_node.rb +56 -0
  1162. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/mixin/parentheses.rb +17 -0
  1163. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/mixin/parser_diagnostic.rb +37 -0
  1164. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/mixin/percent_array.rb +52 -0
  1165. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/mixin/percent_literal.rb +38 -0
  1166. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/mixin/preceding_following_alignment.rb +181 -0
  1167. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/mixin/preferred_delimiters.rb +53 -0
  1168. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/mixin/range_help.rb +117 -0
  1169. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/mixin/rescue_node.rb +22 -0
  1170. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/mixin/safe_assignment.rb +23 -0
  1171. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/mixin/safe_mode.rb +24 -0
  1172. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/mixin/space_after_punctuation.rb +55 -0
  1173. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/mixin/space_before_punctuation.rb +49 -0
  1174. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/mixin/statement_modifier.rb +68 -0
  1175. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/mixin/string_help.rb +35 -0
  1176. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/mixin/string_literals_help.rb +23 -0
  1177. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/mixin/surrounding_space.rb +146 -0
  1178. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/mixin/target_ruby_version.rb +16 -0
  1179. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/mixin/too_many_lines.rb +35 -0
  1180. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/mixin/trailing_body.rb +26 -0
  1181. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/mixin/trailing_comma.rb +216 -0
  1182. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/mixin/uncommunicative_name.rb +111 -0
  1183. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/mixin/unused_argument.rb +33 -0
  1184. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/naming/accessor_method_name.rb +55 -0
  1185. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/naming/ascii_identifiers.rb +72 -0
  1186. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/naming/binary_operator_parameter_name.rb +43 -0
  1187. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/naming/class_and_module_camel_case.rb +33 -0
  1188. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/naming/constant_name.rb +81 -0
  1189. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/naming/file_name.rb +205 -0
  1190. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/naming/heredoc_delimiter_case.rb +62 -0
  1191. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/naming/heredoc_delimiter_naming.rb +55 -0
  1192. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/naming/memoized_instance_variable_name.rb +171 -0
  1193. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/naming/method_name.rb +53 -0
  1194. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/naming/predicate_name.rb +108 -0
  1195. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/naming/rescued_exceptions_variable_name.rb +112 -0
  1196. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/naming/uncommunicative_block_param_name.rb +49 -0
  1197. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/naming/uncommunicative_method_param_name.rb +58 -0
  1198. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/naming/variable_name.rb +52 -0
  1199. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/naming/variable_number.rb +61 -0
  1200. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/offense.rb +205 -0
  1201. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/registry.rb +211 -0
  1202. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/security/eval.rb +31 -0
  1203. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/security/json_load.rb +46 -0
  1204. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/security/marshal_load.rb +39 -0
  1205. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/security/open.rb +71 -0
  1206. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/security/yaml_load.rb +37 -0
  1207. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/severity.rb +77 -0
  1208. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/access_modifier_declarations.rb +112 -0
  1209. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/alias.rb +147 -0
  1210. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/and_or.rb +146 -0
  1211. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/array_join.rb +39 -0
  1212. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/ascii_comments.rb +61 -0
  1213. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/attr.rb +62 -0
  1214. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/auto_resource_cleanup.rb +51 -0
  1215. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/bare_percent_literals.rb +78 -0
  1216. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/begin_block.rb +22 -0
  1217. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/block_comments.rb +70 -0
  1218. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/block_delimiters.rb +331 -0
  1219. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/braces_around_hash_parameters.rb +209 -0
  1220. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/case_equality.rb +30 -0
  1221. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/character_literal.rb +53 -0
  1222. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/class_and_module_children.rb +151 -0
  1223. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/class_check.rb +59 -0
  1224. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/class_methods.rb +60 -0
  1225. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/class_vars.rb +48 -0
  1226. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/collection_methods.rb +77 -0
  1227. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/colon_method_call.rb +48 -0
  1228. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/colon_method_definition.rb +37 -0
  1229. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/command_literal.rb +187 -0
  1230. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/comment_annotation.rb +97 -0
  1231. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/commented_keyword.rb +73 -0
  1232. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/conditional_assignment.rb +668 -0
  1233. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/constant_visibility.rb +77 -0
  1234. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/copyright.rb +95 -0
  1235. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/date_time.rb +77 -0
  1236. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/def_with_parentheses.rb +57 -0
  1237. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/dir.rb +48 -0
  1238. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/documentation.rb +97 -0
  1239. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/documentation_method.rb +125 -0
  1240. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/double_cop_disable_directive.rb +55 -0
  1241. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/double_negation.rb +35 -0
  1242. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/each_for_simple_loop.rb +58 -0
  1243. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/each_with_object.rb +110 -0
  1244. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/empty_block_parameter.rb +48 -0
  1245. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/empty_case_condition.rb +107 -0
  1246. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/empty_else.rb +175 -0
  1247. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/empty_lambda_parameter.rb +45 -0
  1248. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/empty_literal.rb +123 -0
  1249. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/empty_method.rb +115 -0
  1250. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/encoding.rb +56 -0
  1251. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/end_block.rb +25 -0
  1252. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/eval_with_location.rb +148 -0
  1253. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/even_odd.rb +58 -0
  1254. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/expand_path_arguments.rb +194 -0
  1255. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/float_division.rb +94 -0
  1256. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/for.rb +88 -0
  1257. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/format_string.rb +124 -0
  1258. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/format_string_token.rb +119 -0
  1259. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/frozen_string_literal_comment.rb +149 -0
  1260. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/global_vars.rb +80 -0
  1261. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/guard_clause.rb +121 -0
  1262. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/hash_syntax.rb +214 -0
  1263. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/identical_conditional_branches.rb +130 -0
  1264. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/if_inside_else.rb +87 -0
  1265. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/if_unless_modifier.rb +127 -0
  1266. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/if_unless_modifier_of_if_unless.rb +39 -0
  1267. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/if_with_semicolon.rb +30 -0
  1268. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/implicit_runtime_error.rb +32 -0
  1269. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/infinite_loop.rb +127 -0
  1270. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/inline_comment.rb +34 -0
  1271. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/inverse_methods.rb +187 -0
  1272. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/ip_addresses.rb +76 -0
  1273. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/lambda.rb +131 -0
  1274. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/lambda_call.rb +93 -0
  1275. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/line_end_concatenation.rb +121 -0
  1276. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/method_call_with_args_parentheses.rb +388 -0
  1277. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/method_call_without_args_parentheses.rb +77 -0
  1278. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/method_called_on_do_end_block.rb +46 -0
  1279. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/method_def_parentheses.rb +158 -0
  1280. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/method_missing_super.rb +34 -0
  1281. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/min_max.rb +68 -0
  1282. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/missing_else.rb +180 -0
  1283. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/missing_respond_to_missing.rb +46 -0
  1284. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/mixin_grouping.rb +148 -0
  1285. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/mixin_usage.rb +90 -0
  1286. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/module_function.rb +104 -0
  1287. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/multiline_block_chain.rb +40 -0
  1288. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/multiline_if_modifier.rb +67 -0
  1289. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/multiline_if_then.rb +50 -0
  1290. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/multiline_memoization.rb +94 -0
  1291. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/multiline_method_signature.rb +61 -0
  1292. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/multiline_ternary_operator.rb +38 -0
  1293. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/multiline_when_then.rb +55 -0
  1294. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/multiple_comparison.rb +92 -0
  1295. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/mutable_constant.rb +174 -0
  1296. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/negated_if.rb +99 -0
  1297. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/negated_unless.rb +89 -0
  1298. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/negated_while.rb +48 -0
  1299. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/nested_modifier.rb +105 -0
  1300. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/nested_parenthesized_calls.rb +67 -0
  1301. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/nested_ternary_operator.rb +32 -0
  1302. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/next.rb +244 -0
  1303. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/nil_comparison.rb +75 -0
  1304. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/non_nil_check.rb +124 -0
  1305. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/not.rb +82 -0
  1306. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/numeric_literal_prefix.rb +124 -0
  1307. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/numeric_literals.rb +110 -0
  1308. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/numeric_predicate.rb +137 -0
  1309. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/one_line_conditional.rb +101 -0
  1310. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/option_hash.rb +55 -0
  1311. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/optional_arguments.rb +58 -0
  1312. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/or_assignment.rb +95 -0
  1313. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/parallel_assignment.rb +287 -0
  1314. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/parentheses_around_condition.rb +117 -0
  1315. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/percent_literal_delimiters.rb +127 -0
  1316. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/percent_q_literals.rb +73 -0
  1317. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/perl_backrefs.rb +38 -0
  1318. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/preferred_hash_methods.rb +75 -0
  1319. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/proc.rb +34 -0
  1320. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/raise_args.rb +145 -0
  1321. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/random_with_offset.rb +158 -0
  1322. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/redundant_begin.rb +91 -0
  1323. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/redundant_conditional.rb +97 -0
  1324. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/redundant_exception.rb +60 -0
  1325. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/redundant_freeze.rb +67 -0
  1326. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/redundant_parentheses.rb +231 -0
  1327. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/redundant_return.rb +173 -0
  1328. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/redundant_self.rb +171 -0
  1329. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/redundant_sort_by.rb +50 -0
  1330. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/regexp_literal.rb +228 -0
  1331. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/rescue_modifier.rb +73 -0
  1332. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/rescue_standard_error.rb +124 -0
  1333. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/return_nil.rb +89 -0
  1334. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/safe_navigation.rb +272 -0
  1335. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/sample.rb +144 -0
  1336. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/self_assignment.rb +97 -0
  1337. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/semicolon.rb +101 -0
  1338. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/send.rb +31 -0
  1339. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/signal_exception.rb +211 -0
  1340. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/single_line_block_params.rb +95 -0
  1341. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/single_line_methods.rb +83 -0
  1342. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/special_global_vars.rb +213 -0
  1343. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/stabby_lambda_parentheses.rb +86 -0
  1344. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/stderr_puts.rb +61 -0
  1345. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/string_hash_keys.rb +50 -0
  1346. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/string_literals.rb +129 -0
  1347. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/string_literals_in_interpolation.rb +49 -0
  1348. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/string_methods.rb +46 -0
  1349. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/strip.rb +46 -0
  1350. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/struct_inheritance.rb +39 -0
  1351. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/symbol_array.rb +119 -0
  1352. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/symbol_literal.rb +32 -0
  1353. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/symbol_proc.rb +110 -0
  1354. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/ternary_parentheses.rb +223 -0
  1355. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/trailing_body_on_class.rb +43 -0
  1356. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/trailing_body_on_method_definition.rb +54 -0
  1357. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/trailing_body_on_module.rb +43 -0
  1358. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/trailing_comma_in_arguments.rb +96 -0
  1359. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/trailing_comma_in_array_literal.rb +58 -0
  1360. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/trailing_comma_in_hash_literal.rb +56 -0
  1361. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/trailing_method_end_statement.rb +91 -0
  1362. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/trailing_underscore_variable.rb +161 -0
  1363. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/trivial_accessors.rb +191 -0
  1364. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/unless_else.rb +55 -0
  1365. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/unneeded_capital_w.rb +51 -0
  1366. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/unneeded_condition.rb +112 -0
  1367. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/unneeded_interpolation.rb +98 -0
  1368. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/unneeded_percent_q.rb +112 -0
  1369. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/unneeded_sort.rb +165 -0
  1370. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/unpack_first.rb +65 -0
  1371. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/variable_interpolation.rb +48 -0
  1372. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/when_then.rb +37 -0
  1373. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/while_until_do.rb +59 -0
  1374. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/while_until_modifier.rb +61 -0
  1375. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/word_array.rb +102 -0
  1376. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/yoda_condition.rb +141 -0
  1377. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/style/zero_length_predicate.rb +117 -0
  1378. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/team.rb +191 -0
  1379. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/util.rb +127 -0
  1380. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/utils/format_string.rb +128 -0
  1381. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/variable_force.rb +464 -0
  1382. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/variable_force/assignment.rb +96 -0
  1383. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/variable_force/branch.rb +322 -0
  1384. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/variable_force/branchable.rb +23 -0
  1385. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/variable_force/reference.rb +49 -0
  1386. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/variable_force/scope.rb +109 -0
  1387. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/variable_force/variable.rb +117 -0
  1388. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/cop/variable_force/variable_table.rb +129 -0
  1389. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/core_ext/string.rb +23 -0
  1390. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/error.rb +34 -0
  1391. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/file_finder.rb +42 -0
  1392. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/formatter/auto_gen_config_formatter.rb +16 -0
  1393. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/formatter/base_formatter.rb +123 -0
  1394. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/formatter/clang_style_formatter.rb +59 -0
  1395. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/formatter/colorizable.rb +41 -0
  1396. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/formatter/disabled_config_formatter.rb +224 -0
  1397. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/formatter/disabled_lines_formatter.rb +57 -0
  1398. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/formatter/emacs_style_formatter.rb +37 -0
  1399. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/formatter/file_list_formatter.rb +20 -0
  1400. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/formatter/formatter_set.rb +106 -0
  1401. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/formatter/fuubar_style_formatter.rb +80 -0
  1402. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/formatter/html_formatter.rb +141 -0
  1403. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/formatter/json_formatter.rb +80 -0
  1404. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/formatter/offense_count_formatter.rb +74 -0
  1405. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/formatter/pacman_formatter.rb +80 -0
  1406. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/formatter/progress_formatter.rb +63 -0
  1407. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/formatter/quiet_formatter.rb +13 -0
  1408. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/formatter/simple_text_formatter.rb +138 -0
  1409. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/formatter/tap_formatter.rb +84 -0
  1410. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/formatter/text_util.rb +20 -0
  1411. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/formatter/worst_offenders_formatter.rb +62 -0
  1412. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/magic_comment.rb +214 -0
  1413. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/name_similarity.rb +21 -0
  1414. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/node_pattern.rb +799 -0
  1415. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/options.rb +454 -0
  1416. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/path_util.rb +85 -0
  1417. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/platform.rb +11 -0
  1418. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/processed_source.rb +216 -0
  1419. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/rake_task.rb +79 -0
  1420. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/remote_config.rb +106 -0
  1421. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/result_cache.rb +191 -0
  1422. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/rspec/cop_helper.rb +94 -0
  1423. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/rspec/expect_offense.rb +240 -0
  1424. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/rspec/host_environment_simulation_helper.rb +28 -0
  1425. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/rspec/shared_contexts.rb +90 -0
  1426. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/rspec/support.rb +13 -0
  1427. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/runner.rb +358 -0
  1428. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/string_interpreter.rb +57 -0
  1429. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/string_util.rb +14 -0
  1430. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/target_finder.rb +190 -0
  1431. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/token.rb +114 -0
  1432. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/version.rb +21 -0
  1433. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/warning.rb +11 -0
  1434. data/vendor/ruby/2.6.0/gems/rubocop-0.75.1/lib/rubocop/yaml_duplication_checker.rb +39 -0
  1435. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/CHANGELOG.md +68 -0
  1436. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/README.md +632 -0
  1437. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/bin/sprockets +93 -0
  1438. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/rake/sprocketstask.rb +153 -0
  1439. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets.rb +229 -0
  1440. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/add_source_map_comment_to_asset_processor.rb +60 -0
  1441. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/asset.rb +195 -0
  1442. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/autoload.rb +16 -0
  1443. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/autoload/babel.rb +8 -0
  1444. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/autoload/closure.rb +8 -0
  1445. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/autoload/coffee_script.rb +8 -0
  1446. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/autoload/eco.rb +8 -0
  1447. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/autoload/ejs.rb +8 -0
  1448. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/autoload/jsminc.rb +8 -0
  1449. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/autoload/sass.rb +8 -0
  1450. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/autoload/sassc.rb +8 -0
  1451. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/autoload/uglifier.rb +8 -0
  1452. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/autoload/yui.rb +8 -0
  1453. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/autoload/zopfli.rb +7 -0
  1454. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/babel_processor.rb +66 -0
  1455. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/base.rb +147 -0
  1456. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/bower.rb +61 -0
  1457. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/bundle.rb +105 -0
  1458. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/cache.rb +271 -0
  1459. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/cache/file_store.rb +208 -0
  1460. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/cache/memory_store.rb +75 -0
  1461. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/cache/null_store.rb +54 -0
  1462. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/cached_environment.rb +64 -0
  1463. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/closure_compressor.rb +48 -0
  1464. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/coffee_script_processor.rb +39 -0
  1465. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/compressing.rb +134 -0
  1466. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/configuration.rb +79 -0
  1467. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/context.rb +304 -0
  1468. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/dependencies.rb +74 -0
  1469. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/digest_utils.rb +200 -0
  1470. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/directive_processor.rb +414 -0
  1471. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/eco_processor.rb +33 -0
  1472. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/ejs_processor.rb +32 -0
  1473. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/encoding_utils.rb +262 -0
  1474. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/environment.rb +46 -0
  1475. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/erb_processor.rb +37 -0
  1476. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/errors.rb +12 -0
  1477. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/exporters/base.rb +72 -0
  1478. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/exporters/file_exporter.rb +24 -0
  1479. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/exporters/zlib_exporter.rb +33 -0
  1480. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/exporters/zopfli_exporter.rb +14 -0
  1481. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/exporting.rb +73 -0
  1482. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/file_reader.rb +16 -0
  1483. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/http_utils.rb +135 -0
  1484. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/jsminc_compressor.rb +32 -0
  1485. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/jst_processor.rb +50 -0
  1486. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/loader.rb +343 -0
  1487. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/manifest.rb +338 -0
  1488. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/manifest_utils.rb +48 -0
  1489. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/mime.rb +96 -0
  1490. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/npm.rb +52 -0
  1491. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/path_dependency_utils.rb +77 -0
  1492. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/path_digest_utils.rb +48 -0
  1493. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/path_utils.rb +367 -0
  1494. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/paths.rb +82 -0
  1495. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/preprocessors/default_source_map.rb +49 -0
  1496. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/processing.rb +228 -0
  1497. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/processor_utils.rb +169 -0
  1498. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/resolve.rb +295 -0
  1499. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/sass_cache_store.rb +30 -0
  1500. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/sass_compressor.rb +63 -0
  1501. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/sass_functions.rb +3 -0
  1502. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/sass_importer.rb +3 -0
  1503. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/sass_processor.rb +313 -0
  1504. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/sassc_compressor.rb +56 -0
  1505. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/sassc_processor.rb +297 -0
  1506. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/server.rb +295 -0
  1507. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/source_map_processor.rb +66 -0
  1508. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/source_map_utils.rb +483 -0
  1509. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/transformers.rb +173 -0
  1510. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/uglifier_compressor.rb +66 -0
  1511. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/unloaded_asset.rb +139 -0
  1512. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/uri_tar.rb +99 -0
  1513. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/uri_utils.rb +191 -0
  1514. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/utils.rb +202 -0
  1515. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/utils/gzip.rb +99 -0
  1516. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/version.rb +4 -0
  1517. data/vendor/ruby/2.6.0/gems/sprockets-4.0.0/lib/sprockets/yui_compressor.rb +56 -0
  1518. data/vendor/ruby/2.6.0/gems/zeitwerk-2.2.0/MIT-LICENSE +20 -0
  1519. data/vendor/ruby/2.6.0/gems/zeitwerk-2.2.0/README.md +621 -0
  1520. data/vendor/ruby/2.6.0/gems/zeitwerk-2.2.0/lib/zeitwerk.rb +12 -0
  1521. data/vendor/ruby/2.6.0/gems/zeitwerk-2.2.0/lib/zeitwerk/error.rb +10 -0
  1522. data/vendor/ruby/2.6.0/gems/zeitwerk-2.2.0/lib/zeitwerk/explicit_namespace.rb +80 -0
  1523. data/vendor/ruby/2.6.0/gems/zeitwerk-2.2.0/lib/zeitwerk/gem_inflector.rb +19 -0
  1524. data/vendor/ruby/2.6.0/gems/zeitwerk-2.2.0/lib/zeitwerk/inflector.rb +49 -0
  1525. data/vendor/ruby/2.6.0/gems/zeitwerk-2.2.0/lib/zeitwerk/kernel.rb +33 -0
  1526. data/vendor/ruby/2.6.0/gems/zeitwerk-2.2.0/lib/zeitwerk/loader.rb +759 -0
  1527. data/vendor/ruby/2.6.0/gems/zeitwerk-2.2.0/lib/zeitwerk/loader/callbacks.rb +71 -0
  1528. data/vendor/ruby/2.6.0/gems/zeitwerk-2.2.0/lib/zeitwerk/real_mod_name.rb +15 -0
  1529. data/vendor/ruby/2.6.0/gems/zeitwerk-2.2.0/lib/zeitwerk/registry.rb +147 -0
  1530. data/vendor/ruby/2.6.0/gems/zeitwerk-2.2.0/lib/zeitwerk/version.rb +5 -0
  1531. data/vendor/ruby/2.6.0/specifications/autoprefixer-rails-9.6.5.gemspec +47 -0
  1532. data/vendor/ruby/2.6.0/specifications/brakeman-4.7.0.gemspec +23 -0
  1533. data/vendor/ruby/2.6.0/specifications/crass-1.0.5.gemspec +36 -0
  1534. data/vendor/ruby/2.6.0/specifications/loofah-2.3.1.gemspec +71 -0
  1535. data/vendor/ruby/2.6.0/specifications/rspec-3.9.0.gemspec +43 -0
  1536. data/vendor/ruby/2.6.0/specifications/rspec-core-3.9.0.gemspec +63 -0
  1537. data/vendor/ruby/2.6.0/specifications/rspec-expectations-3.9.0.gemspec +51 -0
  1538. data/vendor/ruby/2.6.0/specifications/rspec-mocks-3.9.0.gemspec +51 -0
  1539. data/vendor/ruby/2.6.0/specifications/rspec-support-3.9.0.gemspec +39 -0
  1540. data/vendor/ruby/2.6.0/specifications/rubocop-0.75.1.gemspec +56 -0
  1541. data/vendor/ruby/2.6.0/specifications/sprockets-4.0.0.gemspec +98 -0
  1542. data/vendor/ruby/2.6.0/specifications/zeitwerk-2.2.0.gemspec +21 -0
  1543. metadata +1541 -2
@@ -0,0 +1,8 @@
1
+ module Unicode
2
+ module DisplayWidth
3
+ VERSION = '1.6.0'
4
+ UNICODE_VERSION = "12.1.0".freeze
5
+ DATA_DIRECTORY = File.expand_path(File.dirname(__FILE__) + '/../../../data/').freeze
6
+ INDEX_FILENAME = (DATA_DIRECTORY + '/display_width.marshal.gz').freeze
7
+ end
8
+ end
@@ -0,0 +1,12 @@
1
+ require 'zlib'
2
+ require_relative 'constants'
3
+
4
+ module Unicode
5
+ module DisplayWidth
6
+ File.open(INDEX_FILENAME, "rb") do |file|
7
+ serialized_data = Zlib::GzipReader.new(file).read
8
+ serialized_data.force_encoding Encoding::BINARY
9
+ INDEX = Marshal.load(serialized_data)
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,7 @@
1
+ module Unicode
2
+ module DisplayWidth
3
+ NO_STRING_EXT = true
4
+ end
5
+ end
6
+
7
+ require_relative '../display_width'
@@ -0,0 +1,17 @@
1
+ require_relative '../display_width' unless defined? Unicode::DisplayWidth
2
+
3
+ class String
4
+ def display_width(ambiguous = 1, overwrite = {}, options = {})
5
+ Unicode::DisplayWidth.of(self, ambiguous, overwrite, options)
6
+ end
7
+
8
+ def display_size(*args)
9
+ warn "Deprecation warning: Please use `String#display_width` instead of `String#display_size`"
10
+ display_width(*args)
11
+ end
12
+
13
+ def display_length(*args)
14
+ warn "Deprecation warning: Please use `String#display_width` instead of `String#display_length`"
15
+ display_width(*args)
16
+ end
17
+ end
@@ -0,0 +1,553 @@
1
+ require 'set'
2
+ require 'brakeman/version'
3
+
4
+ module Brakeman
5
+
6
+ #This exit code is used when warnings are found and the --exit-on-warn
7
+ #option is set
8
+ Warnings_Found_Exit_Code = 3
9
+
10
+ #Exit code returned when no Rails application is detected
11
+ No_App_Found_Exit_Code = 4
12
+
13
+ #Exit code returned when brakeman was outdated
14
+ Not_Latest_Version_Exit_Code = 5
15
+
16
+ #Exit code returned when user requests non-existent checks
17
+ Missing_Checks_Exit_Code = 6
18
+
19
+ #Exit code returned when errors were found and the --exit-on-error
20
+ #option is set
21
+ Errors_Found_Exit_Code = 7
22
+
23
+ @debug = false
24
+ @quiet = false
25
+ @loaded_dependencies = []
26
+ @vendored_paths = false
27
+
28
+ #Run Brakeman scan. Returns Tracker object.
29
+ #
30
+ #Options:
31
+ #
32
+ # * :app_path - path to root of Rails app (required)
33
+ # * :additional_checks_path - array of additional directories containing additional out-of-tree checks to run
34
+ # * :additional_libs_path - array of additional application relative lib directories (ex. app/mailers) to process
35
+ # * :assume_all_routes - assume all methods are routes (default: true)
36
+ # * :check_arguments - check arguments of methods (default: true)
37
+ # * :collapse_mass_assignment - report unprotected models in single warning (default: false)
38
+ # * :combine_locations - combine warning locations (default: true)
39
+ # * :config_file - configuration file
40
+ # * :escape_html - escape HTML by default (automatic)
41
+ # * :exit_on_error - only affects Commandline module (default: true)
42
+ # * :exit_on_warn - only affects Commandline module (default: true)
43
+ # * :github_repo - github repo to use for file links (user/repo[/path][@ref])
44
+ # * :highlight_user_input - highlight user input in reported warnings (default: true)
45
+ # * :html_style - path to CSS file
46
+ # * :ignore_model_output - consider models safe (default: false)
47
+ # * :index_libs - add libraries to call index (default: true)
48
+ # * :interprocedural - limited interprocedural processing of method calls (default: false)
49
+ # * :message_limit - limit length of messages
50
+ # * :min_confidence - minimum confidence (0-2, 0 is highest)
51
+ # * :output_files - files for output
52
+ # * :output_formats - formats for output (:to_s, :to_tabs, :to_csv, :to_html)
53
+ # * :parallel_checks - run checks in parallel (default: true)
54
+ # * :parser_timeout - set timeout for parsing an individual file (default: 10 seconds)
55
+ # * :print_report - if no output file specified, print to stdout (default: false)
56
+ # * :quiet - suppress most messages (default: true)
57
+ # * :rails3 - force Rails 3 mode (automatic)
58
+ # * :rails4 - force Rails 4 mode (automatic)
59
+ # * :rails5 - force Rails 5 mode (automatic)
60
+ # * :rails6 - force Rails 6 mode (automatic)
61
+ # * :report_routes - show found routes on controllers (default: false)
62
+ # * :run_checks - array of checks to run (run all if not specified)
63
+ # * :safe_methods - array of methods to consider safe
64
+ # * :skip_libs - do not process lib/ directory (default: false)
65
+ # * :skip_checks - checks not to run (run all if not specified)
66
+ # * :absolute_paths - show absolute path of each file (default: false)
67
+ # * :summary_only - only output summary section of report for plain/table (:summary_only, :no_summary, true)
68
+ #
69
+ #Alternatively, just supply a path as a string.
70
+ def self.run options
71
+ options = set_options options
72
+
73
+ @quiet = !!options[:quiet]
74
+ @debug = !!options[:debug]
75
+
76
+ if @quiet
77
+ options[:report_progress] = false
78
+ end
79
+
80
+ scan options
81
+ end
82
+
83
+ #Sets up options for run, checks given application path
84
+ def self.set_options options
85
+ if options.is_a? String
86
+ options = { :app_path => options }
87
+ end
88
+
89
+ if options[:quiet] == :command_line
90
+ command_line = true
91
+ options.delete :quiet
92
+ end
93
+
94
+ options = default_options.merge(load_options(options)).merge(options)
95
+
96
+ if options[:quiet].nil? and not command_line
97
+ options[:quiet] = true
98
+ end
99
+
100
+ if options[:rails4]
101
+ options[:rails3] = true
102
+ elsif options[:rails5]
103
+ options[:rails3] = true
104
+ options[:rails4] = true
105
+ elsif options[:rails6]
106
+ options[:rails3] = true
107
+ options[:rails4] = true
108
+ options[:rails5] = true
109
+ end
110
+
111
+ options[:output_formats] = get_output_formats options
112
+ options[:github_url] = get_github_url options
113
+
114
+ options
115
+ end
116
+
117
+ #Load options from YAML file
118
+ def self.load_options line_options
119
+ custom_location = line_options[:config_file]
120
+ quiet = line_options[:quiet]
121
+ app_path = line_options[:app_path]
122
+
123
+ #Load configuration file
124
+ if config = config_file(custom_location, app_path)
125
+ require 'date' # https://github.com/dtao/safe_yaml/issues/80
126
+ self.load_brakeman_dependency 'safe_yaml/load'
127
+ options = SafeYAML.load_file config, :deserialize_symbols => true
128
+
129
+ if options
130
+ options.each { |k, v| options[k] = Set.new v if v.is_a? Array }
131
+
132
+ # After parsing the yaml config file for options, convert any string keys into symbols.
133
+ options.keys.select {|k| k.is_a? String}.map {|k| k.to_sym }.each {|k| options[k] = options[k.to_s]; options.delete(k.to_s) }
134
+
135
+ unless line_options[:allow_check_paths_in_config]
136
+ if options.include? :additional_checks_path
137
+ options.delete :additional_checks_path
138
+
139
+ notify "[Notice] Ignoring additional check paths in config file. Use --allow-check-paths-in-config to allow" unless (options[:quiet] || quiet)
140
+ end
141
+ end
142
+
143
+ # notify if options[:quiet] and quiet is nil||false
144
+ notify "[Notice] Using configuration in #{config}" unless (options[:quiet] || quiet)
145
+ options
146
+ else
147
+ notify "[Notice] Empty configuration file: #{config}" unless quiet
148
+ {}
149
+ end
150
+ else
151
+ {}
152
+ end
153
+ end
154
+
155
+ CONFIG_FILES = [
156
+ File.expand_path("~/.brakeman/config.yml"),
157
+ File.expand_path("/etc/brakeman/config.yml")
158
+ ]
159
+
160
+ def self.config_file custom_location, app_path
161
+ app_config = File.expand_path(File.join(app_path, "config", "brakeman.yml"))
162
+ supported_locations = [File.expand_path(custom_location || ""), app_config] + CONFIG_FILES
163
+ supported_locations.detect {|f| File.file?(f) }
164
+ end
165
+
166
+ #Default set of options
167
+ def self.default_options
168
+ { :assume_all_routes => true,
169
+ :check_arguments => true,
170
+ :collapse_mass_assignment => false,
171
+ :combine_locations => true,
172
+ :engine_paths => ["engines/*"],
173
+ :exit_on_error => true,
174
+ :exit_on_warn => true,
175
+ :highlight_user_input => true,
176
+ :html_style => "#{File.expand_path(File.dirname(__FILE__))}/brakeman/format/style.css",
177
+ :ignore_model_output => false,
178
+ :ignore_redirect_to_model => true,
179
+ :index_libs => true,
180
+ :message_limit => 100,
181
+ :min_confidence => 2,
182
+ :output_color => true,
183
+ :pager => true,
184
+ :parallel_checks => true,
185
+ :parser_timeout => 10,
186
+ :relative_path => false,
187
+ :report_progress => true,
188
+ :safe_methods => Set.new,
189
+ :skip_checks => Set.new,
190
+ }
191
+ end
192
+
193
+ #Determine output formats based on options[:output_formats]
194
+ #or options[:output_files]
195
+ def self.get_output_formats options
196
+ #Set output format
197
+ if options[:output_format] && options[:output_files] && options[:output_files].size > 1
198
+ raise ArgumentError, "Cannot specify output format if multiple output files specified"
199
+ end
200
+ if options[:output_format]
201
+ get_formats_from_output_format options[:output_format]
202
+ elsif options[:output_files]
203
+ get_formats_from_output_files options[:output_files]
204
+ else
205
+ begin
206
+ self.load_brakeman_dependency 'terminal-table', :allow_fail
207
+ return [:to_s]
208
+ rescue LoadError
209
+ return [:to_json]
210
+ end
211
+ end
212
+ end
213
+
214
+ def self.get_formats_from_output_format output_format
215
+ case output_format
216
+ when :html, :to_html
217
+ [:to_html]
218
+ when :csv, :to_csv
219
+ [:to_csv]
220
+ when :pdf, :to_pdf
221
+ [:to_pdf]
222
+ when :tabs, :to_tabs
223
+ [:to_tabs]
224
+ when :json, :to_json
225
+ [:to_json]
226
+ when :markdown, :to_markdown
227
+ [:to_markdown]
228
+ when :cc, :to_cc, :codeclimate, :to_codeclimate
229
+ [:to_codeclimate]
230
+ when :plain ,:to_plain, :text, :to_text, :to_s
231
+ [:to_text]
232
+ when :table, :to_table
233
+ [:to_table]
234
+ else
235
+ [:to_text]
236
+ end
237
+ end
238
+ private_class_method :get_formats_from_output_format
239
+
240
+ def self.get_formats_from_output_files output_files
241
+ output_files.map do |output_file|
242
+ case output_file
243
+ when /\.html$/i
244
+ :to_html
245
+ when /\.csv$/i
246
+ :to_csv
247
+ when /\.pdf$/i
248
+ :to_pdf
249
+ when /\.tabs$/i
250
+ :to_tabs
251
+ when /\.json$/i
252
+ :to_json
253
+ when /\.md$/i
254
+ :to_markdown
255
+ when /(\.cc|\.codeclimate)$/i
256
+ :to_codeclimate
257
+ when /\.plain$/i
258
+ :to_text
259
+ when /\.table$/i
260
+ :to_table
261
+ else
262
+ :to_text
263
+ end
264
+ end
265
+ end
266
+ private_class_method :get_formats_from_output_files
267
+
268
+ def self.get_github_url options
269
+ if github_repo = options[:github_repo]
270
+ full_repo, ref = github_repo.split '@', 2
271
+ name, repo, path = full_repo.split '/', 3
272
+ unless name && repo && !(name.empty? || repo.empty?)
273
+ raise ArgumentError, "Invalid GitHub repository format"
274
+ end
275
+ path.chomp '/' if path
276
+ ref ||= 'master'
277
+ ['https://github.com', name, repo, 'blob', ref, path].compact.join '/'
278
+ else
279
+ nil
280
+ end
281
+ end
282
+ private_class_method :get_github_url
283
+
284
+ #Output list of checks (for `-k` option)
285
+ def self.list_checks options
286
+ require 'brakeman/scanner'
287
+
288
+ add_external_checks options
289
+
290
+ if options[:list_optional_checks]
291
+ $stderr.puts "Optional Checks:"
292
+ checks = Checks.optional_checks
293
+ else
294
+ $stderr.puts "Available Checks:"
295
+ checks = Checks.checks
296
+ end
297
+
298
+ format_length = 30
299
+
300
+ $stderr.puts "-" * format_length
301
+ checks.each do |check|
302
+ $stderr.printf("%-#{format_length}s%s\n", check.name, check.description)
303
+ end
304
+ end
305
+
306
+ #Output configuration to YAML
307
+ def self.dump_config options
308
+ require 'yaml'
309
+ if options[:create_config].is_a? String
310
+ file = options[:create_config]
311
+ else
312
+ file = nil
313
+ end
314
+
315
+ options.delete :create_config
316
+
317
+ options.each do |k,v|
318
+ if v.is_a? Set
319
+ options[k] = v.to_a
320
+ end
321
+ end
322
+
323
+ if file
324
+ File.open file, "w" do |f|
325
+ YAML.dump options, f
326
+ end
327
+ notify "Output configuration to #{file}"
328
+ else
329
+ notify YAML.dump(options)
330
+ end
331
+ end
332
+
333
+ def self.ensure_latest
334
+ current = Brakeman::Version
335
+ latest = Gem.latest_version_for('brakeman').to_s
336
+ if current != latest
337
+ "Brakeman #{current} is not the latest version #{latest}"
338
+ end
339
+ end
340
+
341
+ #Run a scan. Generally called from Brakeman.run instead of directly.
342
+ def self.scan options
343
+ #Load scanner
344
+ notify "Loading scanner..."
345
+
346
+ begin
347
+ require 'brakeman/scanner'
348
+ rescue LoadError
349
+ raise NoBrakemanError, "Cannot find lib/ directory."
350
+ end
351
+
352
+ add_external_checks options
353
+
354
+ #Start scanning
355
+ scanner = Scanner.new options
356
+ tracker = scanner.tracker
357
+
358
+ check_for_missing_checks options[:run_checks], options[:skip_checks], options[:enable_checks]
359
+
360
+ notify "Processing application in #{tracker.app_path}"
361
+ scanner.process
362
+
363
+ if options[:parallel_checks]
364
+ notify "Running checks in parallel..."
365
+ else
366
+ notify "Runnning checks..."
367
+ end
368
+
369
+ tracker.run_checks
370
+
371
+ self.filter_warnings tracker, options
372
+
373
+ if options[:output_files]
374
+ notify "Generating report..."
375
+
376
+ write_report_to_files tracker, options[:output_files]
377
+ elsif options[:print_report]
378
+ notify "Generating report..."
379
+
380
+ write_report_to_formats tracker, options[:output_formats]
381
+ end
382
+
383
+ tracker
384
+ end
385
+
386
+ def self.write_report_to_files tracker, output_files
387
+ require 'fileutils'
388
+ tracker.options[:output_color] = false unless tracker.options[:output_color] == :force
389
+
390
+ output_files.each_with_index do |output_file, idx|
391
+ dir = File.dirname(output_file)
392
+ unless Dir.exist? dir
393
+ FileUtils.mkdir_p(dir)
394
+ end
395
+
396
+ File.open output_file, "w" do |f|
397
+ f.write tracker.report.format(tracker.options[:output_formats][idx])
398
+ end
399
+ notify "Report saved in '#{output_file}'"
400
+ end
401
+ end
402
+ private_class_method :write_report_to_files
403
+
404
+ def self.write_report_to_formats tracker, output_formats
405
+ unless $stdout.tty? or tracker.options[:output_color] == :force
406
+ tracker.options[:output_color] = false
407
+ end
408
+
409
+ if not $stdout.tty? or not tracker.options[:pager] or output_formats.length > 1 # does this ever happen??
410
+ output_formats.each do |output_format|
411
+ puts tracker.report.format(output_format)
412
+ end
413
+ else
414
+ require "brakeman/report/pager"
415
+
416
+ Brakeman::Pager.new(tracker).page_report(tracker.report, output_formats.first)
417
+ end
418
+ end
419
+ private_class_method :write_report_to_formats
420
+
421
+ #Rescan a subset of files in a Rails application.
422
+ #
423
+ #A full scan must have been run already to use this method.
424
+ #The returned Tracker object from Brakeman.run is used as a starting point
425
+ #for the rescan.
426
+ #
427
+ #Options may be given as a hash with the same values as Brakeman.run.
428
+ #Note that these options will be merged into the Tracker.
429
+ #
430
+ #This method returns a RescanReport object with information about the scan.
431
+ #However, the Tracker object will also be modified as the scan is run.
432
+ def self.rescan tracker, files, options = {}
433
+ require 'brakeman/rescanner'
434
+
435
+ tracker.options.merge! options
436
+
437
+ @quiet = !!tracker.options[:quiet]
438
+ @debug = !!tracker.options[:debug]
439
+
440
+ Rescanner.new(tracker.options, tracker.processor, files).recheck
441
+ end
442
+
443
+ def self.notify message
444
+ $stderr.puts message unless @quiet
445
+ end
446
+
447
+ def self.debug message
448
+ $stderr.puts message if @debug
449
+ end
450
+
451
+ # Compare JSON ouptut from a previous scan and return the diff of the two scans
452
+ def self.compare options
453
+ require 'json'
454
+ require 'brakeman/differ'
455
+ raise ArgumentError.new("Comparison file doesn't exist") unless File.exist? options[:previous_results_json]
456
+
457
+ begin
458
+ previous_results = JSON.parse(File.read(options[:previous_results_json]), :symbolize_names => true)[:warnings]
459
+ rescue JSON::ParserError
460
+ self.notify "Error parsing comparison file: #{options[:previous_results_json]}"
461
+ exit!
462
+ end
463
+
464
+ tracker = run(options)
465
+
466
+ new_results = JSON.parse(tracker.report.to_json, :symbolize_names => true)[:warnings]
467
+
468
+ Brakeman::Differ.new(new_results, previous_results).diff
469
+ end
470
+
471
+ def self.load_brakeman_dependency name, allow_fail = false
472
+ return if @loaded_dependencies.include? name
473
+
474
+ unless @vendored_paths
475
+ path_load = "#{File.expand_path(File.dirname(__FILE__))}/../bundle/load.rb"
476
+
477
+ if File.exist? path_load
478
+ require path_load
479
+ end
480
+
481
+ @vendored_paths = true
482
+ end
483
+
484
+ begin
485
+ require name
486
+ rescue LoadError => e
487
+ if allow_fail
488
+ raise e
489
+ else
490
+ $stderr.puts e.message
491
+ $stderr.puts "Please install the appropriate dependency: #{name}."
492
+ exit!(-1)
493
+ end
494
+ end
495
+ end
496
+
497
+ def self.filter_warnings tracker, options
498
+ require 'brakeman/report/ignore/config'
499
+
500
+ app_tree = Brakeman::AppTree.from_options(options)
501
+
502
+ if options[:ignore_file]
503
+ file = options[:ignore_file]
504
+ elsif app_tree.exists? "config/brakeman.ignore"
505
+ file = app_tree.expand_path("config/brakeman.ignore")
506
+ elsif not options[:interactive_ignore]
507
+ return
508
+ end
509
+
510
+ notify "Filtering warnings..."
511
+
512
+ if options[:interactive_ignore]
513
+ require 'brakeman/report/ignore/interactive'
514
+ config = InteractiveIgnorer.new(file, tracker.warnings).start
515
+ else
516
+ notify "[Notice] Using '#{file}' to filter warnings"
517
+ config = IgnoreConfig.new(file, tracker.warnings)
518
+ config.read_from_file
519
+ config.filter_ignored
520
+ end
521
+
522
+ tracker.ignored_filter = config
523
+ end
524
+
525
+ def self.add_external_checks options
526
+ options[:additional_checks_path].each do |path|
527
+ Brakeman::Checks.initialize_checks path
528
+ end if options[:additional_checks_path]
529
+ end
530
+
531
+ def self.check_for_missing_checks included_checks, excluded_checks, enabled_checks
532
+ checks = included_checks.to_a + excluded_checks.to_a + enabled_checks.to_a
533
+
534
+ missing = Brakeman::Checks.missing_checks(checks)
535
+
536
+ unless missing.empty?
537
+ raise MissingChecksError, "Could not find specified check#{missing.length > 1 ? 's' : ''}: #{missing.map {|c| "`#{c}`"}.join(', ')}"
538
+ end
539
+ end
540
+
541
+ def self.debug= val
542
+ @debug = val
543
+ end
544
+
545
+ def self.quiet= val
546
+ @quiet = val
547
+ end
548
+
549
+ class DependencyError < RuntimeError; end
550
+ class NoBrakemanError < RuntimeError; end
551
+ class NoApplication < RuntimeError; end
552
+ class MissingChecksError < RuntimeError; end
553
+ end