argon 1.3.0 → 1.3.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3777) hide show
  1. checksums.yaml +5 -5
  2. data/Gemfile +3 -1
  3. data/Rakefile +4 -2
  4. data/argon.gemspec +19 -18
  5. data/bin/console +4 -3
  6. data/lib/argon.rb +51 -43
  7. data/lib/argon/error.rb +2 -0
  8. data/lib/argon/invalid_parameter_error.rb +2 -0
  9. data/lib/argon/invalid_transition_error.rb +3 -1
  10. data/lib/argon/version.rb +3 -1
  11. data/vendor/bundle/ruby/2.7.0/bin/byebug +27 -0
  12. data/vendor/bundle/ruby/2.7.0/bin/coderay +27 -0
  13. data/vendor/bundle/ruby/2.7.0/bin/htmldiff +29 -0
  14. data/vendor/bundle/ruby/2.7.0/bin/ldiff +29 -0
  15. data/vendor/bundle/ruby/2.7.0/bin/nokogiri +27 -0
  16. data/vendor/bundle/ruby/2.7.0/bin/pry +27 -0
  17. data/vendor/bundle/ruby/2.7.0/bin/rackup +27 -0
  18. data/vendor/bundle/ruby/2.7.0/bin/rails +27 -0
  19. data/vendor/bundle/ruby/2.7.0/bin/rake +27 -0
  20. data/vendor/bundle/ruby/2.7.0/bin/rspec +27 -0
  21. data/vendor/bundle/ruby/2.7.0/bin/sprockets +27 -0
  22. data/vendor/bundle/ruby/2.7.0/bin/thor +27 -0
  23. data/vendor/bundle/ruby/2.7.0/extensions/x86_64-linux/2.7.0/byebug-11.1.1/byebug/byebug.so +0 -0
  24. data/vendor/bundle/ruby/2.7.0/extensions/x86_64-linux/2.7.0/byebug-11.1.1/gem.build_complete +0 -0
  25. data/vendor/bundle/ruby/2.7.0/extensions/x86_64-linux/2.7.0/byebug-11.1.1/gem_make.out +19 -0
  26. data/vendor/bundle/ruby/2.7.0/extensions/x86_64-linux/2.7.0/nio4r-2.5.2/gem.build_complete +0 -0
  27. data/vendor/bundle/ruby/2.7.0/extensions/x86_64-linux/2.7.0/nio4r-2.5.2/gem_make.out +81 -0
  28. data/vendor/bundle/ruby/2.7.0/extensions/x86_64-linux/2.7.0/nio4r-2.5.2/mkmf.log +129 -0
  29. data/vendor/bundle/ruby/2.7.0/extensions/x86_64-linux/2.7.0/nio4r-2.5.2/nio4r_ext.so +0 -0
  30. data/vendor/bundle/ruby/2.7.0/extensions/x86_64-linux/2.7.0/nokogiri-1.10.9/gem.build_complete +0 -0
  31. data/vendor/bundle/ruby/2.7.0/extensions/x86_64-linux/2.7.0/nokogiri-1.10.9/gem_make.out +538 -0
  32. data/vendor/bundle/ruby/2.7.0/extensions/x86_64-linux/2.7.0/nokogiri-1.10.9/mkmf.log +560 -0
  33. data/vendor/bundle/ruby/2.7.0/extensions/x86_64-linux/2.7.0/nokogiri-1.10.9/nokogiri/nokogiri.so +0 -0
  34. data/vendor/bundle/ruby/2.7.0/extensions/x86_64-linux/2.7.0/websocket-driver-0.7.1/gem.build_complete +0 -0
  35. data/vendor/bundle/ruby/2.7.0/extensions/x86_64-linux/2.7.0/websocket-driver-0.7.1/gem_make.out +15 -0
  36. data/vendor/bundle/ruby/2.7.0/extensions/x86_64-linux/2.7.0/websocket-driver-0.7.1/websocket_mask.so +0 -0
  37. data/vendor/bundle/ruby/2.7.0/gems/actioncable-6.0.2.1/CHANGELOG.md +184 -0
  38. data/vendor/bundle/ruby/2.7.0/gems/actioncable-6.0.2.1/MIT-LICENSE +20 -0
  39. data/vendor/bundle/ruby/2.7.0/gems/actioncable-6.0.2.1/README.md +24 -0
  40. data/vendor/bundle/ruby/2.7.0/gems/actioncable-6.0.2.1/app/assets/javascripts/action_cable.js +517 -0
  41. data/vendor/bundle/ruby/2.7.0/gems/actioncable-6.0.2.1/lib/action_cable.rb +62 -0
  42. data/vendor/bundle/ruby/2.7.0/gems/actioncable-6.0.2.1/lib/action_cable/channel.rb +17 -0
  43. data/vendor/bundle/ruby/2.7.0/gems/actioncable-6.0.2.1/lib/action_cable/channel/base.rb +311 -0
  44. data/vendor/bundle/ruby/2.7.0/gems/actioncable-6.0.2.1/lib/action_cable/channel/broadcasting.rb +41 -0
  45. data/vendor/bundle/ruby/2.7.0/gems/actioncable-6.0.2.1/lib/action_cable/channel/callbacks.rb +37 -0
  46. data/vendor/bundle/ruby/2.7.0/gems/actioncable-6.0.2.1/lib/action_cable/channel/naming.rb +25 -0
  47. data/vendor/bundle/ruby/2.7.0/gems/actioncable-6.0.2.1/lib/action_cable/channel/periodic_timers.rb +78 -0
  48. data/vendor/bundle/ruby/2.7.0/gems/actioncable-6.0.2.1/lib/action_cable/channel/streams.rb +176 -0
  49. data/vendor/bundle/ruby/2.7.0/gems/actioncable-6.0.2.1/lib/action_cable/channel/test_case.rb +310 -0
  50. data/vendor/bundle/ruby/2.7.0/gems/actioncable-6.0.2.1/lib/action_cable/connection.rb +22 -0
  51. data/vendor/bundle/ruby/2.7.0/gems/actioncable-6.0.2.1/lib/action_cable/connection/authorization.rb +15 -0
  52. data/vendor/bundle/ruby/2.7.0/gems/actioncable-6.0.2.1/lib/action_cable/connection/base.rb +264 -0
  53. data/vendor/bundle/ruby/2.7.0/gems/actioncable-6.0.2.1/lib/action_cable/connection/client_socket.rb +157 -0
  54. data/vendor/bundle/ruby/2.7.0/gems/actioncable-6.0.2.1/lib/action_cable/connection/identification.rb +47 -0
  55. data/vendor/bundle/ruby/2.7.0/gems/actioncable-6.0.2.1/lib/action_cable/connection/internal_channel.rb +45 -0
  56. data/vendor/bundle/ruby/2.7.0/gems/actioncable-6.0.2.1/lib/action_cable/connection/message_buffer.rb +54 -0
  57. data/vendor/bundle/ruby/2.7.0/gems/actioncable-6.0.2.1/lib/action_cable/connection/stream.rb +117 -0
  58. data/vendor/bundle/ruby/2.7.0/gems/actioncable-6.0.2.1/lib/action_cable/connection/stream_event_loop.rb +136 -0
  59. data/vendor/bundle/ruby/2.7.0/gems/actioncable-6.0.2.1/lib/action_cable/connection/subscriptions.rb +79 -0
  60. data/vendor/bundle/ruby/2.7.0/gems/actioncable-6.0.2.1/lib/action_cable/connection/tagged_logger_proxy.rb +42 -0
  61. data/vendor/bundle/ruby/2.7.0/gems/actioncable-6.0.2.1/lib/action_cable/connection/test_case.rb +234 -0
  62. data/vendor/bundle/ruby/2.7.0/gems/actioncable-6.0.2.1/lib/action_cable/connection/web_socket.rb +41 -0
  63. data/vendor/bundle/ruby/2.7.0/gems/actioncable-6.0.2.1/lib/action_cable/engine.rb +79 -0
  64. data/vendor/bundle/ruby/2.7.0/gems/actioncable-6.0.2.1/lib/action_cable/gem_version.rb +17 -0
  65. data/vendor/bundle/ruby/2.7.0/gems/actioncable-6.0.2.1/lib/action_cable/helpers/action_cable_helper.rb +42 -0
  66. data/vendor/bundle/ruby/2.7.0/gems/actioncable-6.0.2.1/lib/action_cable/remote_connections.rb +71 -0
  67. data/vendor/bundle/ruby/2.7.0/gems/actioncable-6.0.2.1/lib/action_cable/server.rb +17 -0
  68. data/vendor/bundle/ruby/2.7.0/gems/actioncable-6.0.2.1/lib/action_cable/server/base.rb +94 -0
  69. data/vendor/bundle/ruby/2.7.0/gems/actioncable-6.0.2.1/lib/action_cable/server/broadcasting.rb +54 -0
  70. data/vendor/bundle/ruby/2.7.0/gems/actioncable-6.0.2.1/lib/action_cable/server/configuration.rb +56 -0
  71. data/vendor/bundle/ruby/2.7.0/gems/actioncable-6.0.2.1/lib/action_cable/server/connections.rb +36 -0
  72. data/vendor/bundle/ruby/2.7.0/gems/actioncable-6.0.2.1/lib/action_cable/server/worker.rb +75 -0
  73. data/vendor/bundle/ruby/2.7.0/gems/actioncable-6.0.2.1/lib/action_cable/server/worker/active_record_connection_management.rb +21 -0
  74. data/vendor/bundle/ruby/2.7.0/gems/actioncable-6.0.2.1/lib/action_cable/subscription_adapter.rb +12 -0
  75. data/vendor/bundle/ruby/2.7.0/gems/actioncable-6.0.2.1/lib/action_cable/subscription_adapter/async.rb +29 -0
  76. data/vendor/bundle/ruby/2.7.0/gems/actioncable-6.0.2.1/lib/action_cable/subscription_adapter/base.rb +30 -0
  77. data/vendor/bundle/ruby/2.7.0/gems/actioncable-6.0.2.1/lib/action_cable/subscription_adapter/channel_prefix.rb +28 -0
  78. data/vendor/bundle/ruby/2.7.0/gems/actioncable-6.0.2.1/lib/action_cable/subscription_adapter/inline.rb +37 -0
  79. data/vendor/bundle/ruby/2.7.0/gems/actioncable-6.0.2.1/lib/action_cable/subscription_adapter/postgresql.rb +132 -0
  80. data/vendor/bundle/ruby/2.7.0/gems/actioncable-6.0.2.1/lib/action_cable/subscription_adapter/redis.rb +181 -0
  81. data/vendor/bundle/ruby/2.7.0/gems/actioncable-6.0.2.1/lib/action_cable/subscription_adapter/subscriber_map.rb +59 -0
  82. data/vendor/bundle/ruby/2.7.0/gems/actioncable-6.0.2.1/lib/action_cable/subscription_adapter/test.rb +40 -0
  83. data/vendor/bundle/ruby/2.7.0/gems/actioncable-6.0.2.1/lib/action_cable/test_case.rb +11 -0
  84. data/vendor/bundle/ruby/2.7.0/gems/actioncable-6.0.2.1/lib/action_cable/test_helper.rb +133 -0
  85. data/vendor/bundle/ruby/2.7.0/gems/actioncable-6.0.2.1/lib/action_cable/version.rb +10 -0
  86. data/vendor/bundle/ruby/2.7.0/gems/actioncable-6.0.2.1/lib/rails/generators/channel/USAGE +13 -0
  87. data/vendor/bundle/ruby/2.7.0/gems/actioncable-6.0.2.1/lib/rails/generators/channel/channel_generator.rb +52 -0
  88. data/vendor/bundle/ruby/2.7.0/gems/actioncable-6.0.2.1/lib/rails/generators/channel/templates/application_cable/channel.rb.tt +4 -0
  89. data/vendor/bundle/ruby/2.7.0/gems/actioncable-6.0.2.1/lib/rails/generators/channel/templates/application_cable/connection.rb.tt +4 -0
  90. data/vendor/bundle/ruby/2.7.0/gems/actioncable-6.0.2.1/lib/rails/generators/channel/templates/channel.rb.tt +16 -0
  91. data/vendor/bundle/ruby/2.7.0/gems/actioncable-6.0.2.1/lib/rails/generators/channel/templates/javascript/channel.js.tt +20 -0
  92. data/vendor/bundle/ruby/2.7.0/gems/actioncable-6.0.2.1/lib/rails/generators/channel/templates/javascript/consumer.js.tt +6 -0
  93. data/vendor/bundle/ruby/2.7.0/gems/actioncable-6.0.2.1/lib/rails/generators/channel/templates/javascript/index.js.tt +5 -0
  94. data/vendor/bundle/ruby/2.7.0/gems/actioncable-6.0.2.1/lib/rails/generators/test_unit/channel_generator.rb +20 -0
  95. data/vendor/bundle/ruby/2.7.0/gems/actioncable-6.0.2.1/lib/rails/generators/test_unit/templates/channel_test.rb.tt +8 -0
  96. data/vendor/bundle/ruby/2.7.0/gems/actionmailbox-6.0.2.1/CHANGELOG.md +51 -0
  97. data/vendor/bundle/ruby/2.7.0/gems/actionmailbox-6.0.2.1/MIT-LICENSE +21 -0
  98. data/vendor/bundle/ruby/2.7.0/gems/actionmailbox-6.0.2.1/README.md +13 -0
  99. data/vendor/bundle/ruby/2.7.0/gems/actionmailbox-6.0.2.1/app/controllers/action_mailbox/base_controller.rb +34 -0
  100. data/vendor/bundle/ruby/2.7.0/gems/actionmailbox-6.0.2.1/app/controllers/action_mailbox/ingresses/mailgun/inbound_emails_controller.rb +103 -0
  101. data/vendor/bundle/ruby/2.7.0/gems/actionmailbox-6.0.2.1/app/controllers/action_mailbox/ingresses/mandrill/inbound_emails_controller.rb +82 -0
  102. data/vendor/bundle/ruby/2.7.0/gems/actionmailbox-6.0.2.1/app/controllers/action_mailbox/ingresses/postmark/inbound_emails_controller.rb +62 -0
  103. data/vendor/bundle/ruby/2.7.0/gems/actionmailbox-6.0.2.1/app/controllers/action_mailbox/ingresses/relay/inbound_emails_controller.rb +65 -0
  104. data/vendor/bundle/ruby/2.7.0/gems/actionmailbox-6.0.2.1/app/controllers/action_mailbox/ingresses/sendgrid/inbound_emails_controller.rb +54 -0
  105. data/vendor/bundle/ruby/2.7.0/gems/actionmailbox-6.0.2.1/app/controllers/rails/conductor/action_mailbox/inbound_emails_controller.rb +35 -0
  106. data/vendor/bundle/ruby/2.7.0/gems/actionmailbox-6.0.2.1/app/controllers/rails/conductor/action_mailbox/reroutes_controller.rb +19 -0
  107. data/vendor/bundle/ruby/2.7.0/gems/actionmailbox-6.0.2.1/app/controllers/rails/conductor/base_controller.rb +14 -0
  108. data/vendor/bundle/ruby/2.7.0/gems/actionmailbox-6.0.2.1/app/jobs/action_mailbox/incineration_job.rb +25 -0
  109. data/vendor/bundle/ruby/2.7.0/gems/actionmailbox-6.0.2.1/app/jobs/action_mailbox/routing_job.rb +13 -0
  110. data/vendor/bundle/ruby/2.7.0/gems/actionmailbox-6.0.2.1/app/models/action_mailbox/inbound_email.rb +49 -0
  111. data/vendor/bundle/ruby/2.7.0/gems/actionmailbox-6.0.2.1/app/models/action_mailbox/inbound_email/incineratable.rb +20 -0
  112. data/vendor/bundle/ruby/2.7.0/gems/actionmailbox-6.0.2.1/app/models/action_mailbox/inbound_email/incineratable/incineration.rb +26 -0
  113. data/vendor/bundle/ruby/2.7.0/gems/actionmailbox-6.0.2.1/app/models/action_mailbox/inbound_email/message_id.rb +38 -0
  114. data/vendor/bundle/ruby/2.7.0/gems/actionmailbox-6.0.2.1/app/models/action_mailbox/inbound_email/routable.rb +24 -0
  115. data/vendor/bundle/ruby/2.7.0/gems/actionmailbox-6.0.2.1/app/views/layouts/rails/conductor.html.erb +8 -0
  116. data/vendor/bundle/ruby/2.7.0/gems/actionmailbox-6.0.2.1/app/views/rails/conductor/action_mailbox/inbound_emails/index.html.erb +15 -0
  117. data/vendor/bundle/ruby/2.7.0/gems/actionmailbox-6.0.2.1/app/views/rails/conductor/action_mailbox/inbound_emails/new.html.erb +47 -0
  118. data/vendor/bundle/ruby/2.7.0/gems/actionmailbox-6.0.2.1/app/views/rails/conductor/action_mailbox/inbound_emails/show.html.erb +15 -0
  119. data/vendor/bundle/ruby/2.7.0/gems/actionmailbox-6.0.2.1/config/routes.rb +19 -0
  120. data/vendor/bundle/ruby/2.7.0/gems/actionmailbox-6.0.2.1/db/migrate/20180917164000_create_action_mailbox_tables.rb +13 -0
  121. data/vendor/bundle/ruby/2.7.0/gems/actionmailbox-6.0.2.1/lib/action_mailbox.rb +17 -0
  122. data/vendor/bundle/ruby/2.7.0/gems/actionmailbox-6.0.2.1/lib/action_mailbox/base.rb +118 -0
  123. data/vendor/bundle/ruby/2.7.0/gems/actionmailbox-6.0.2.1/lib/action_mailbox/callbacks.rb +34 -0
  124. data/vendor/bundle/ruby/2.7.0/gems/actionmailbox-6.0.2.1/lib/action_mailbox/engine.rb +33 -0
  125. data/vendor/bundle/ruby/2.7.0/gems/actionmailbox-6.0.2.1/lib/action_mailbox/gem_version.rb +17 -0
  126. data/vendor/bundle/ruby/2.7.0/gems/actionmailbox-6.0.2.1/lib/action_mailbox/mail_ext.rb +6 -0
  127. data/vendor/bundle/ruby/2.7.0/gems/actionmailbox-6.0.2.1/lib/action_mailbox/mail_ext/address_equality.rb +9 -0
  128. data/vendor/bundle/ruby/2.7.0/gems/actionmailbox-6.0.2.1/lib/action_mailbox/mail_ext/address_wrapping.rb +9 -0
  129. data/vendor/bundle/ruby/2.7.0/gems/actionmailbox-6.0.2.1/lib/action_mailbox/mail_ext/addresses.rb +29 -0
  130. data/vendor/bundle/ruby/2.7.0/gems/actionmailbox-6.0.2.1/lib/action_mailbox/mail_ext/from_source.rb +7 -0
  131. data/vendor/bundle/ruby/2.7.0/gems/actionmailbox-6.0.2.1/lib/action_mailbox/mail_ext/recipients.rb +9 -0
  132. data/vendor/bundle/ruby/2.7.0/gems/actionmailbox-6.0.2.1/lib/action_mailbox/relayer.rb +75 -0
  133. data/vendor/bundle/ruby/2.7.0/gems/actionmailbox-6.0.2.1/lib/action_mailbox/router.rb +42 -0
  134. data/vendor/bundle/ruby/2.7.0/gems/actionmailbox-6.0.2.1/lib/action_mailbox/router/route.rb +42 -0
  135. data/vendor/bundle/ruby/2.7.0/gems/actionmailbox-6.0.2.1/lib/action_mailbox/routing.rb +22 -0
  136. data/vendor/bundle/ruby/2.7.0/gems/actionmailbox-6.0.2.1/lib/action_mailbox/test_case.rb +12 -0
  137. data/vendor/bundle/ruby/2.7.0/gems/actionmailbox-6.0.2.1/lib/action_mailbox/test_helper.rb +48 -0
  138. data/vendor/bundle/ruby/2.7.0/gems/actionmailbox-6.0.2.1/lib/action_mailbox/version.rb +10 -0
  139. data/vendor/bundle/ruby/2.7.0/gems/actionmailbox-6.0.2.1/lib/rails/generators/installer.rb +10 -0
  140. data/vendor/bundle/ruby/2.7.0/gems/actionmailbox-6.0.2.1/lib/rails/generators/mailbox/USAGE +12 -0
  141. data/vendor/bundle/ruby/2.7.0/gems/actionmailbox-6.0.2.1/lib/rails/generators/mailbox/mailbox_generator.rb +32 -0
  142. data/vendor/bundle/ruby/2.7.0/gems/actionmailbox-6.0.2.1/lib/rails/generators/mailbox/templates/application_mailbox.rb.tt +3 -0
  143. data/vendor/bundle/ruby/2.7.0/gems/actionmailbox-6.0.2.1/lib/rails/generators/mailbox/templates/mailbox.rb.tt +4 -0
  144. data/vendor/bundle/ruby/2.7.0/gems/actionmailbox-6.0.2.1/lib/rails/generators/test_unit/mailbox_generator.rb +20 -0
  145. data/vendor/bundle/ruby/2.7.0/gems/actionmailbox-6.0.2.1/lib/rails/generators/test_unit/templates/mailbox_test.rb.tt +11 -0
  146. data/vendor/bundle/ruby/2.7.0/gems/actionmailbox-6.0.2.1/lib/tasks/ingress.rake +72 -0
  147. data/vendor/bundle/ruby/2.7.0/gems/actionmailbox-6.0.2.1/lib/tasks/install.rake +20 -0
  148. data/vendor/bundle/ruby/2.7.0/gems/actionmailer-6.0.2.1/CHANGELOG.md +113 -0
  149. data/vendor/bundle/ruby/2.7.0/gems/actionmailer-6.0.2.1/MIT-LICENSE +21 -0
  150. data/vendor/bundle/ruby/2.7.0/gems/actionmailer-6.0.2.1/README.rdoc +141 -0
  151. data/vendor/bundle/ruby/2.7.0/gems/actionmailer-6.0.2.1/lib/action_mailer.rb +70 -0
  152. data/vendor/bundle/ruby/2.7.0/gems/actionmailer-6.0.2.1/lib/action_mailer/base.rb +1026 -0
  153. data/vendor/bundle/ruby/2.7.0/gems/actionmailer-6.0.2.1/lib/action_mailer/collector.rb +32 -0
  154. data/vendor/bundle/ruby/2.7.0/gems/actionmailer-6.0.2.1/lib/action_mailer/delivery_job.rb +44 -0
  155. data/vendor/bundle/ruby/2.7.0/gems/actionmailer-6.0.2.1/lib/action_mailer/delivery_methods.rb +82 -0
  156. data/vendor/bundle/ruby/2.7.0/gems/actionmailer-6.0.2.1/lib/action_mailer/gem_version.rb +17 -0
  157. data/vendor/bundle/ruby/2.7.0/gems/actionmailer-6.0.2.1/lib/action_mailer/inline_preview_interceptor.rb +57 -0
  158. data/vendor/bundle/ruby/2.7.0/gems/actionmailer-6.0.2.1/lib/action_mailer/log_subscriber.rb +45 -0
  159. data/vendor/bundle/ruby/2.7.0/gems/actionmailer-6.0.2.1/lib/action_mailer/mail_delivery_job.rb +38 -0
  160. data/vendor/bundle/ruby/2.7.0/gems/actionmailer-6.0.2.1/lib/action_mailer/mail_helper.rb +72 -0
  161. data/vendor/bundle/ruby/2.7.0/gems/actionmailer-6.0.2.1/lib/action_mailer/message_delivery.rb +152 -0
  162. data/vendor/bundle/ruby/2.7.0/gems/actionmailer-6.0.2.1/lib/action_mailer/parameterized.rb +171 -0
  163. data/vendor/bundle/ruby/2.7.0/gems/actionmailer-6.0.2.1/lib/action_mailer/preview.rb +143 -0
  164. data/vendor/bundle/ruby/2.7.0/gems/actionmailer-6.0.2.1/lib/action_mailer/railtie.rb +93 -0
  165. data/vendor/bundle/ruby/2.7.0/gems/actionmailer-6.0.2.1/lib/action_mailer/rescuable.rb +29 -0
  166. data/vendor/bundle/ruby/2.7.0/gems/actionmailer-6.0.2.1/lib/action_mailer/test_case.rb +123 -0
  167. data/vendor/bundle/ruby/2.7.0/gems/actionmailer-6.0.2.1/lib/action_mailer/test_helper.rb +163 -0
  168. data/vendor/bundle/ruby/2.7.0/gems/actionmailer-6.0.2.1/lib/action_mailer/version.rb +11 -0
  169. data/vendor/bundle/ruby/2.7.0/gems/actionmailer-6.0.2.1/lib/rails/generators/mailer/USAGE +17 -0
  170. data/vendor/bundle/ruby/2.7.0/gems/actionmailer-6.0.2.1/lib/rails/generators/mailer/mailer_generator.rb +38 -0
  171. data/vendor/bundle/ruby/2.7.0/gems/actionmailer-6.0.2.1/lib/rails/generators/mailer/templates/application_mailer.rb.tt +6 -0
  172. data/vendor/bundle/ruby/2.7.0/gems/actionmailer-6.0.2.1/lib/rails/generators/mailer/templates/mailer.rb.tt +17 -0
  173. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/CHANGELOG.md +345 -0
  174. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/MIT-LICENSE +21 -0
  175. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/README.rdoc +58 -0
  176. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/abstract_controller.rb +27 -0
  177. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/abstract_controller/asset_paths.rb +12 -0
  178. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/abstract_controller/base.rb +267 -0
  179. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/abstract_controller/caching.rb +66 -0
  180. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/abstract_controller/caching/fragments.rb +150 -0
  181. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/abstract_controller/callbacks.rb +224 -0
  182. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/abstract_controller/collector.rb +43 -0
  183. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/abstract_controller/error.rb +6 -0
  184. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/abstract_controller/helpers.rb +194 -0
  185. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/abstract_controller/logger.rb +14 -0
  186. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/abstract_controller/railties/routes_helpers.rb +20 -0
  187. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/abstract_controller/rendering.rb +127 -0
  188. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/abstract_controller/translation.rb +32 -0
  189. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/abstract_controller/url_for.rb +35 -0
  190. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_controller.rb +70 -0
  191. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_controller/api.rb +150 -0
  192. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_controller/api/api_rendering.rb +16 -0
  193. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_controller/base.rb +271 -0
  194. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_controller/caching.rb +46 -0
  195. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_controller/form_builder.rb +50 -0
  196. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_controller/log_subscriber.rb +81 -0
  197. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_controller/metal.rb +256 -0
  198. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_controller/metal/basic_implicit_render.rb +13 -0
  199. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_controller/metal/conditional_get.rb +280 -0
  200. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_controller/metal/content_security_policy.rb +52 -0
  201. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_controller/metal/cookies.rb +16 -0
  202. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_controller/metal/data_streaming.rb +151 -0
  203. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_controller/metal/default_headers.rb +17 -0
  204. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_controller/metal/etag_with_flash.rb +18 -0
  205. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_controller/metal/etag_with_template_digest.rb +57 -0
  206. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_controller/metal/exceptions.rb +74 -0
  207. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_controller/metal/flash.rb +61 -0
  208. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_controller/metal/force_ssl.rb +58 -0
  209. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_controller/metal/head.rb +60 -0
  210. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_controller/metal/helpers.rb +122 -0
  211. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_controller/metal/http_authentication.rb +518 -0
  212. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_controller/metal/implicit_render.rb +63 -0
  213. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_controller/metal/instrumentation.rb +105 -0
  214. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_controller/metal/live.rb +314 -0
  215. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_controller/metal/mime_responds.rb +324 -0
  216. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_controller/metal/parameter_encoding.rb +51 -0
  217. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_controller/metal/params_wrapper.rb +297 -0
  218. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_controller/metal/redirecting.rb +133 -0
  219. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_controller/metal/renderers.rb +181 -0
  220. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_controller/metal/rendering.rb +122 -0
  221. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_controller/metal/request_forgery_protection.rb +456 -0
  222. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_controller/metal/rescue.rb +28 -0
  223. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_controller/metal/streaming.rb +223 -0
  224. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_controller/metal/strong_parameters.rb +1105 -0
  225. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_controller/metal/testing.rb +16 -0
  226. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_controller/metal/url_for.rb +58 -0
  227. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_controller/railtie.rb +89 -0
  228. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_controller/railties/helpers.rb +24 -0
  229. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_controller/renderer.rb +130 -0
  230. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_controller/template_assertions.rb +11 -0
  231. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_controller/test_case.rb +627 -0
  232. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch.rb +115 -0
  233. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/http/cache.rb +226 -0
  234. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/http/content_disposition.rb +45 -0
  235. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/http/content_security_policy.rb +284 -0
  236. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/http/filter_parameters.rb +86 -0
  237. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/http/filter_redirect.rb +37 -0
  238. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/http/headers.rb +132 -0
  239. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/http/mime_negotiation.rb +177 -0
  240. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/http/mime_type.rb +350 -0
  241. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/http/mime_types.rb +50 -0
  242. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/http/parameter_filter.rb +12 -0
  243. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/http/parameters.rb +136 -0
  244. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/http/rack_cache.rb +63 -0
  245. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/http/request.rb +427 -0
  246. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/http/response.rb +540 -0
  247. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/http/upload.rb +92 -0
  248. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/http/url.rb +350 -0
  249. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/journey.rb +7 -0
  250. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/journey/formatter.rb +189 -0
  251. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/journey/gtg/builder.rb +164 -0
  252. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/journey/gtg/simulator.rb +41 -0
  253. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/journey/gtg/transition_table.rb +158 -0
  254. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/journey/nfa/builder.rb +78 -0
  255. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/journey/nfa/dot.rb +36 -0
  256. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/journey/nfa/simulator.rb +47 -0
  257. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/journey/nfa/transition_table.rb +120 -0
  258. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/journey/nodes/node.rb +141 -0
  259. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/journey/parser.rb +199 -0
  260. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/journey/parser.y +50 -0
  261. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/journey/parser_extras.rb +31 -0
  262. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/journey/path/pattern.rb +203 -0
  263. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/journey/route.rb +204 -0
  264. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/journey/router.rb +153 -0
  265. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/journey/router/utils.rb +102 -0
  266. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/journey/routes.rb +81 -0
  267. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/journey/scanner.rb +71 -0
  268. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/journey/visitors.rb +268 -0
  269. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/journey/visualizer/fsm.css +30 -0
  270. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/journey/visualizer/fsm.js +134 -0
  271. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/journey/visualizer/index.html.erb +52 -0
  272. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/middleware/actionable_exceptions.rb +39 -0
  273. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/middleware/callbacks.rb +34 -0
  274. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/middleware/cookies.rb +663 -0
  275. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/middleware/debug_exceptions.rb +185 -0
  276. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/middleware/debug_locks.rb +124 -0
  277. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/middleware/debug_view.rb +68 -0
  278. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/middleware/exception_wrapper.rb +181 -0
  279. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/middleware/executor.rb +21 -0
  280. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/middleware/flash.rb +300 -0
  281. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/middleware/host_authorization.rb +103 -0
  282. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/middleware/public_exceptions.rb +61 -0
  283. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/middleware/reloader.rb +12 -0
  284. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/middleware/remote_ip.rb +181 -0
  285. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/middleware/request_id.rb +43 -0
  286. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/middleware/session/abstract_store.rb +106 -0
  287. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/middleware/session/cache_store.rb +59 -0
  288. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/middleware/session/cookie_store.rb +123 -0
  289. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/middleware/session/mem_cache_store.rb +28 -0
  290. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/middleware/show_exceptions.rb +62 -0
  291. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/middleware/ssl.rb +150 -0
  292. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/middleware/stack.rb +148 -0
  293. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/middleware/static.rb +129 -0
  294. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/middleware/templates/rescues/_actions.html.erb +13 -0
  295. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/middleware/templates/rescues/_actions.text.erb +0 -0
  296. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb +24 -0
  297. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.text.erb +23 -0
  298. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb +29 -0
  299. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/middleware/templates/rescues/_source.text.erb +8 -0
  300. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb +62 -0
  301. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.text.erb +9 -0
  302. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/middleware/templates/rescues/blocked_host.html.erb +7 -0
  303. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/middleware/templates/rescues/blocked_host.text.erb +5 -0
  304. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb +38 -0
  305. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.text.erb +9 -0
  306. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/middleware/templates/rescues/invalid_statement.html.erb +24 -0
  307. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/middleware/templates/rescues/invalid_statement.text.erb +15 -0
  308. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/middleware/templates/rescues/layout.erb +165 -0
  309. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/middleware/templates/rescues/missing_exact_template.html.erb +19 -0
  310. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/middleware/templates/rescues/missing_exact_template.text.erb +3 -0
  311. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb +11 -0
  312. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/middleware/templates/rescues/missing_template.text.erb +3 -0
  313. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb +32 -0
  314. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.text.erb +11 -0
  315. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb +20 -0
  316. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.text.erb +7 -0
  317. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb +6 -0
  318. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/middleware/templates/rescues/unknown_action.text.erb +3 -0
  319. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb +16 -0
  320. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb +203 -0
  321. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/railtie.rb +60 -0
  322. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/request/session.rb +248 -0
  323. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/request/utils.rb +78 -0
  324. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/routing.rb +261 -0
  325. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/routing/endpoint.rb +17 -0
  326. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/routing/inspector.rb +274 -0
  327. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/routing/mapper.rb +2289 -0
  328. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/routing/polymorphic_routes.rb +351 -0
  329. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/routing/redirection.rb +201 -0
  330. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/routing/route_set.rb +887 -0
  331. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/routing/routes_proxy.rb +69 -0
  332. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/routing/url_for.rb +237 -0
  333. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/system_test_case.rb +186 -0
  334. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/system_testing/browser.rb +80 -0
  335. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/system_testing/driver.rb +68 -0
  336. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/system_testing/server.rb +31 -0
  337. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/system_testing/test_helpers/screenshot_helper.rb +97 -0
  338. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/system_testing/test_helpers/setup_and_teardown.rb +32 -0
  339. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/testing/assertion_response.rb +47 -0
  340. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/testing/assertions.rb +24 -0
  341. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/testing/assertions/response.rb +106 -0
  342. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/testing/assertions/routing.rb +234 -0
  343. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/testing/integration.rb +659 -0
  344. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/testing/request_encoder.rb +55 -0
  345. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/testing/test_process.rb +50 -0
  346. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/testing/test_request.rb +71 -0
  347. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_dispatch/testing/test_response.rb +25 -0
  348. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_pack.rb +26 -0
  349. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_pack/gem_version.rb +17 -0
  350. data/vendor/bundle/ruby/2.7.0/gems/actionpack-6.0.2.1/lib/action_pack/version.rb +10 -0
  351. data/vendor/bundle/ruby/2.7.0/gems/actiontext-6.0.2.1/CHANGELOG.md +45 -0
  352. data/vendor/bundle/ruby/2.7.0/gems/actiontext-6.0.2.1/MIT-LICENSE +21 -0
  353. data/vendor/bundle/ruby/2.7.0/gems/actiontext-6.0.2.1/README.md +9 -0
  354. data/vendor/bundle/ruby/2.7.0/gems/actiontext-6.0.2.1/app/helpers/action_text/content_helper.rb +37 -0
  355. data/vendor/bundle/ruby/2.7.0/gems/actiontext-6.0.2.1/app/helpers/action_text/tag_helper.rb +79 -0
  356. data/vendor/bundle/ruby/2.7.0/gems/actiontext-6.0.2.1/app/javascript/actiontext/attachment_upload.js +45 -0
  357. data/vendor/bundle/ruby/2.7.0/gems/actiontext-6.0.2.1/app/javascript/actiontext/index.js +10 -0
  358. data/vendor/bundle/ruby/2.7.0/gems/actiontext-6.0.2.1/app/models/action_text/rich_text.rb +29 -0
  359. data/vendor/bundle/ruby/2.7.0/gems/actiontext-6.0.2.1/app/views/action_text/attachables/_missing_attachable.html.erb +1 -0
  360. data/vendor/bundle/ruby/2.7.0/gems/actiontext-6.0.2.1/app/views/action_text/attachables/_remote_image.html.erb +8 -0
  361. data/vendor/bundle/ruby/2.7.0/gems/actiontext-6.0.2.1/app/views/action_text/attachment_galleries/_attachment_gallery.html.erb +3 -0
  362. data/vendor/bundle/ruby/2.7.0/gems/actiontext-6.0.2.1/app/views/action_text/content/_layout.html.erb +3 -0
  363. data/vendor/bundle/ruby/2.7.0/gems/actiontext-6.0.2.1/app/views/active_storage/blobs/_blob.html.erb +14 -0
  364. data/vendor/bundle/ruby/2.7.0/gems/actiontext-6.0.2.1/db/migrate/20180528164100_create_action_text_tables.rb +13 -0
  365. data/vendor/bundle/ruby/2.7.0/gems/actiontext-6.0.2.1/lib/action_text.rb +37 -0
  366. data/vendor/bundle/ruby/2.7.0/gems/actiontext-6.0.2.1/lib/action_text/attachable.rb +86 -0
  367. data/vendor/bundle/ruby/2.7.0/gems/actiontext-6.0.2.1/lib/action_text/attachables/content_attachment.rb +38 -0
  368. data/vendor/bundle/ruby/2.7.0/gems/actiontext-6.0.2.1/lib/action_text/attachables/missing_attachable.rb +13 -0
  369. data/vendor/bundle/ruby/2.7.0/gems/actiontext-6.0.2.1/lib/action_text/attachables/remote_image.rb +46 -0
  370. data/vendor/bundle/ruby/2.7.0/gems/actiontext-6.0.2.1/lib/action_text/attachment.rb +103 -0
  371. data/vendor/bundle/ruby/2.7.0/gems/actiontext-6.0.2.1/lib/action_text/attachment_gallery.rb +65 -0
  372. data/vendor/bundle/ruby/2.7.0/gems/actiontext-6.0.2.1/lib/action_text/attachments/caching.rb +16 -0
  373. data/vendor/bundle/ruby/2.7.0/gems/actiontext-6.0.2.1/lib/action_text/attachments/minification.rb +17 -0
  374. data/vendor/bundle/ruby/2.7.0/gems/actiontext-6.0.2.1/lib/action_text/attachments/trix_conversion.rb +34 -0
  375. data/vendor/bundle/ruby/2.7.0/gems/actiontext-6.0.2.1/lib/action_text/attribute.rb +45 -0
  376. data/vendor/bundle/ruby/2.7.0/gems/actiontext-6.0.2.1/lib/action_text/content.rb +132 -0
  377. data/vendor/bundle/ruby/2.7.0/gems/actiontext-6.0.2.1/lib/action_text/engine.rb +54 -0
  378. data/vendor/bundle/ruby/2.7.0/gems/actiontext-6.0.2.1/lib/action_text/fragment.rb +57 -0
  379. data/vendor/bundle/ruby/2.7.0/gems/actiontext-6.0.2.1/lib/action_text/gem_version.rb +17 -0
  380. data/vendor/bundle/ruby/2.7.0/gems/actiontext-6.0.2.1/lib/action_text/html_conversion.rb +24 -0
  381. data/vendor/bundle/ruby/2.7.0/gems/actiontext-6.0.2.1/lib/action_text/plain_text_conversion.rb +81 -0
  382. data/vendor/bundle/ruby/2.7.0/gems/actiontext-6.0.2.1/lib/action_text/serialization.rb +34 -0
  383. data/vendor/bundle/ruby/2.7.0/gems/actiontext-6.0.2.1/lib/action_text/trix_attachment.rb +92 -0
  384. data/vendor/bundle/ruby/2.7.0/gems/actiontext-6.0.2.1/lib/action_text/version.rb +10 -0
  385. data/vendor/bundle/ruby/2.7.0/gems/actiontext-6.0.2.1/lib/tasks/actiontext.rake +20 -0
  386. data/vendor/bundle/ruby/2.7.0/gems/actiontext-6.0.2.1/lib/templates/actiontext.scss +36 -0
  387. data/vendor/bundle/ruby/2.7.0/gems/actiontext-6.0.2.1/lib/templates/fixtures.yml +4 -0
  388. data/vendor/bundle/ruby/2.7.0/gems/actiontext-6.0.2.1/lib/templates/installer.rb +45 -0
  389. data/vendor/bundle/ruby/2.7.0/gems/actiontext-6.0.2.1/package.json +29 -0
  390. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/CHANGELOG.md +298 -0
  391. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/MIT-LICENSE +21 -0
  392. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/README.rdoc +40 -0
  393. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view.rb +98 -0
  394. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/base.rb +312 -0
  395. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/buffers.rb +67 -0
  396. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/cache_expiry.rb +54 -0
  397. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/context.rb +32 -0
  398. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/dependency_tracker.rb +175 -0
  399. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/digestor.rb +126 -0
  400. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/flows.rb +76 -0
  401. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/gem_version.rb +17 -0
  402. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/helpers.rb +66 -0
  403. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/helpers/active_model_helper.rb +55 -0
  404. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/helpers/asset_tag_helper.rb +488 -0
  405. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/helpers/asset_url_helper.rb +470 -0
  406. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/helpers/atom_feed_helper.rb +205 -0
  407. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/helpers/cache_helper.rb +271 -0
  408. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/helpers/capture_helper.rb +216 -0
  409. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/helpers/controller_helper.rb +36 -0
  410. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/helpers/csp_helper.rb +26 -0
  411. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/helpers/csrf_helper.rb +35 -0
  412. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/helpers/date_helper.rb +1200 -0
  413. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/helpers/debug_helper.rb +36 -0
  414. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/helpers/form_helper.rb +2569 -0
  415. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/helpers/form_options_helper.rb +896 -0
  416. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/helpers/form_tag_helper.rb +922 -0
  417. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/helpers/javascript_helper.rb +95 -0
  418. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/helpers/number_helper.rb +456 -0
  419. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/helpers/output_safety_helper.rb +70 -0
  420. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/helpers/rendering_helper.rb +101 -0
  421. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/helpers/sanitize_helper.rb +171 -0
  422. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/helpers/tag_helper.rb +314 -0
  423. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/helpers/tags.rb +44 -0
  424. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/helpers/tags/base.rb +196 -0
  425. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/helpers/tags/check_box.rb +66 -0
  426. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/helpers/tags/checkable.rb +18 -0
  427. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/helpers/tags/collection_check_boxes.rb +36 -0
  428. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/helpers/tags/collection_helpers.rb +119 -0
  429. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/helpers/tags/collection_radio_buttons.rb +31 -0
  430. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/helpers/tags/collection_select.rb +30 -0
  431. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/helpers/tags/color_field.rb +27 -0
  432. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/helpers/tags/date_field.rb +15 -0
  433. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/helpers/tags/date_select.rb +74 -0
  434. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/helpers/tags/datetime_field.rb +32 -0
  435. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/helpers/tags/datetime_local_field.rb +21 -0
  436. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/helpers/tags/datetime_select.rb +10 -0
  437. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/helpers/tags/email_field.rb +10 -0
  438. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/helpers/tags/file_field.rb +10 -0
  439. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/helpers/tags/grouped_collection_select.rb +31 -0
  440. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/helpers/tags/hidden_field.rb +10 -0
  441. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/helpers/tags/label.rb +81 -0
  442. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/helpers/tags/month_field.rb +15 -0
  443. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/helpers/tags/number_field.rb +20 -0
  444. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/helpers/tags/password_field.rb +14 -0
  445. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/helpers/tags/placeholderable.rb +24 -0
  446. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/helpers/tags/radio_button.rb +33 -0
  447. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/helpers/tags/range_field.rb +10 -0
  448. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/helpers/tags/search_field.rb +27 -0
  449. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/helpers/tags/select.rb +43 -0
  450. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/helpers/tags/tel_field.rb +10 -0
  451. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/helpers/tags/text_area.rb +24 -0
  452. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/helpers/tags/text_field.rb +34 -0
  453. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/helpers/tags/time_field.rb +15 -0
  454. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/helpers/tags/time_select.rb +10 -0
  455. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/helpers/tags/time_zone_select.rb +22 -0
  456. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/helpers/tags/translator.rb +39 -0
  457. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/helpers/tags/url_field.rb +10 -0
  458. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/helpers/tags/week_field.rb +15 -0
  459. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/helpers/text_helper.rb +486 -0
  460. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/helpers/translation_helper.rb +145 -0
  461. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/helpers/url_helper.rb +676 -0
  462. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/layouts.rb +433 -0
  463. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/locale/en.yml +56 -0
  464. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/log_subscriber.rb +96 -0
  465. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/lookup_context.rb +316 -0
  466. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/model_naming.rb +14 -0
  467. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/path_set.rb +95 -0
  468. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/railtie.rb +105 -0
  469. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/record_identifier.rb +112 -0
  470. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/renderer/abstract_renderer.rb +108 -0
  471. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/renderer/partial_renderer.rb +563 -0
  472. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/renderer/partial_renderer/collection_caching.rb +103 -0
  473. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/renderer/renderer.rb +68 -0
  474. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/renderer/streaming_template_renderer.rb +105 -0
  475. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/renderer/template_renderer.rb +108 -0
  476. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/rendering.rb +171 -0
  477. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/routing_url_for.rb +146 -0
  478. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/tasks/cache_digests.rake +25 -0
  479. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/template.rb +393 -0
  480. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/template/error.rb +161 -0
  481. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/template/handlers.rb +92 -0
  482. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/template/handlers/builder.rb +25 -0
  483. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/template/handlers/erb.rb +84 -0
  484. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/template/handlers/erb/erubi.rb +87 -0
  485. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/template/handlers/html.rb +11 -0
  486. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/template/handlers/raw.rb +11 -0
  487. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/template/html.rb +43 -0
  488. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/template/inline.rb +22 -0
  489. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/template/raw_file.rb +28 -0
  490. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/template/resolver.rb +394 -0
  491. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/template/sources.rb +13 -0
  492. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/template/sources/file.rb +17 -0
  493. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/template/text.rb +35 -0
  494. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/template/types.rb +57 -0
  495. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/test_case.rb +300 -0
  496. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/testing/resolvers.rb +67 -0
  497. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/unbound_template.rb +32 -0
  498. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/version.rb +10 -0
  499. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/view_paths.rb +129 -0
  500. data/vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/assets/compiled/rails-ujs.js +746 -0
  501. data/vendor/bundle/ruby/2.7.0/gems/activejob-6.0.2.1/CHANGELOG.md +176 -0
  502. data/vendor/bundle/ruby/2.7.0/gems/activejob-6.0.2.1/MIT-LICENSE +21 -0
  503. data/vendor/bundle/ruby/2.7.0/gems/activejob-6.0.2.1/README.md +133 -0
  504. data/vendor/bundle/ruby/2.7.0/gems/activejob-6.0.2.1/lib/active_job.rb +40 -0
  505. data/vendor/bundle/ruby/2.7.0/gems/activejob-6.0.2.1/lib/active_job/arguments.rb +177 -0
  506. data/vendor/bundle/ruby/2.7.0/gems/activejob-6.0.2.1/lib/active_job/base.rb +76 -0
  507. data/vendor/bundle/ruby/2.7.0/gems/activejob-6.0.2.1/lib/active_job/callbacks.rb +158 -0
  508. data/vendor/bundle/ruby/2.7.0/gems/activejob-6.0.2.1/lib/active_job/configured_job.rb +18 -0
  509. data/vendor/bundle/ruby/2.7.0/gems/activejob-6.0.2.1/lib/active_job/core.rb +175 -0
  510. data/vendor/bundle/ruby/2.7.0/gems/activejob-6.0.2.1/lib/active_job/enqueuing.rb +80 -0
  511. data/vendor/bundle/ruby/2.7.0/gems/activejob-6.0.2.1/lib/active_job/exceptions.rb +157 -0
  512. data/vendor/bundle/ruby/2.7.0/gems/activejob-6.0.2.1/lib/active_job/execution.rb +49 -0
  513. data/vendor/bundle/ruby/2.7.0/gems/activejob-6.0.2.1/lib/active_job/gem_version.rb +17 -0
  514. data/vendor/bundle/ruby/2.7.0/gems/activejob-6.0.2.1/lib/active_job/logging.rb +161 -0
  515. data/vendor/bundle/ruby/2.7.0/gems/activejob-6.0.2.1/lib/active_job/queue_adapter.rb +62 -0
  516. data/vendor/bundle/ruby/2.7.0/gems/activejob-6.0.2.1/lib/active_job/queue_adapters.rb +137 -0
  517. data/vendor/bundle/ruby/2.7.0/gems/activejob-6.0.2.1/lib/active_job/queue_adapters/async_adapter.rb +116 -0
  518. data/vendor/bundle/ruby/2.7.0/gems/activejob-6.0.2.1/lib/active_job/queue_adapters/backburner_adapter.rb +36 -0
  519. data/vendor/bundle/ruby/2.7.0/gems/activejob-6.0.2.1/lib/active_job/queue_adapters/delayed_job_adapter.rb +47 -0
  520. data/vendor/bundle/ruby/2.7.0/gems/activejob-6.0.2.1/lib/active_job/queue_adapters/inline_adapter.rb +23 -0
  521. data/vendor/bundle/ruby/2.7.0/gems/activejob-6.0.2.1/lib/active_job/queue_adapters/que_adapter.rb +39 -0
  522. data/vendor/bundle/ruby/2.7.0/gems/activejob-6.0.2.1/lib/active_job/queue_adapters/queue_classic_adapter.rb +58 -0
  523. data/vendor/bundle/ruby/2.7.0/gems/activejob-6.0.2.1/lib/active_job/queue_adapters/resque_adapter.rb +53 -0
  524. data/vendor/bundle/ruby/2.7.0/gems/activejob-6.0.2.1/lib/active_job/queue_adapters/sidekiq_adapter.rb +47 -0
  525. data/vendor/bundle/ruby/2.7.0/gems/activejob-6.0.2.1/lib/active_job/queue_adapters/sneakers_adapter.rb +48 -0
  526. data/vendor/bundle/ruby/2.7.0/gems/activejob-6.0.2.1/lib/active_job/queue_adapters/sucker_punch_adapter.rb +49 -0
  527. data/vendor/bundle/ruby/2.7.0/gems/activejob-6.0.2.1/lib/active_job/queue_adapters/test_adapter.rb +81 -0
  528. data/vendor/bundle/ruby/2.7.0/gems/activejob-6.0.2.1/lib/active_job/queue_name.rb +69 -0
  529. data/vendor/bundle/ruby/2.7.0/gems/activejob-6.0.2.1/lib/active_job/queue_priority.rb +43 -0
  530. data/vendor/bundle/ruby/2.7.0/gems/activejob-6.0.2.1/lib/active_job/railtie.rb +49 -0
  531. data/vendor/bundle/ruby/2.7.0/gems/activejob-6.0.2.1/lib/active_job/serializers.rb +63 -0
  532. data/vendor/bundle/ruby/2.7.0/gems/activejob-6.0.2.1/lib/active_job/serializers/date_serializer.rb +21 -0
  533. data/vendor/bundle/ruby/2.7.0/gems/activejob-6.0.2.1/lib/active_job/serializers/date_time_serializer.rb +21 -0
  534. data/vendor/bundle/ruby/2.7.0/gems/activejob-6.0.2.1/lib/active_job/serializers/duration_serializer.rb +24 -0
  535. data/vendor/bundle/ruby/2.7.0/gems/activejob-6.0.2.1/lib/active_job/serializers/object_serializer.rb +54 -0
  536. data/vendor/bundle/ruby/2.7.0/gems/activejob-6.0.2.1/lib/active_job/serializers/symbol_serializer.rb +21 -0
  537. data/vendor/bundle/ruby/2.7.0/gems/activejob-6.0.2.1/lib/active_job/serializers/time_serializer.rb +21 -0
  538. data/vendor/bundle/ruby/2.7.0/gems/activejob-6.0.2.1/lib/active_job/serializers/time_with_zone_serializer.rb +21 -0
  539. data/vendor/bundle/ruby/2.7.0/gems/activejob-6.0.2.1/lib/active_job/test_case.rb +11 -0
  540. data/vendor/bundle/ruby/2.7.0/gems/activejob-6.0.2.1/lib/active_job/test_helper.rb +677 -0
  541. data/vendor/bundle/ruby/2.7.0/gems/activejob-6.0.2.1/lib/active_job/timezones.rb +13 -0
  542. data/vendor/bundle/ruby/2.7.0/gems/activejob-6.0.2.1/lib/active_job/translation.rb +13 -0
  543. data/vendor/bundle/ruby/2.7.0/gems/activejob-6.0.2.1/lib/active_job/version.rb +10 -0
  544. data/vendor/bundle/ruby/2.7.0/gems/activejob-6.0.2.1/lib/rails/generators/job/job_generator.rb +44 -0
  545. data/vendor/bundle/ruby/2.7.0/gems/activejob-6.0.2.1/lib/rails/generators/job/templates/application_job.rb.tt +9 -0
  546. data/vendor/bundle/ruby/2.7.0/gems/activejob-6.0.2.1/lib/rails/generators/job/templates/job.rb.tt +9 -0
  547. data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/CHANGELOG.md +187 -0
  548. data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/MIT-LICENSE +21 -0
  549. data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/README.rdoc +266 -0
  550. data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/lib/active_model.rb +77 -0
  551. data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/lib/active_model/attribute.rb +247 -0
  552. data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/lib/active_model/attribute/user_provided_default.rb +51 -0
  553. data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/lib/active_model/attribute_assignment.rb +57 -0
  554. data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/lib/active_model/attribute_methods.rb +517 -0
  555. data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/lib/active_model/attribute_mutation_tracker.rb +178 -0
  556. data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/lib/active_model/attribute_set.rb +106 -0
  557. data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/lib/active_model/attribute_set/builder.rb +124 -0
  558. data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/lib/active_model/attribute_set/yaml_encoder.rb +40 -0
  559. data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/lib/active_model/attributes.rb +138 -0
  560. data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/lib/active_model/callbacks.rb +156 -0
  561. data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/lib/active_model/conversion.rb +111 -0
  562. data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/lib/active_model/dirty.rb +280 -0
  563. data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/lib/active_model/errors.rb +601 -0
  564. data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/lib/active_model/forbidden_attributes_protection.rb +31 -0
  565. data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/lib/active_model/gem_version.rb +17 -0
  566. data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/lib/active_model/lint.rb +118 -0
  567. data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/lib/active_model/locale/en.yml +36 -0
  568. data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/lib/active_model/model.rb +99 -0
  569. data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/lib/active_model/naming.rb +334 -0
  570. data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/lib/active_model/railtie.rb +20 -0
  571. data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/lib/active_model/secure_password.rb +128 -0
  572. data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/lib/active_model/serialization.rb +192 -0
  573. data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/lib/active_model/serializers/json.rb +147 -0
  574. data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/lib/active_model/translation.rb +70 -0
  575. data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/lib/active_model/type.rb +53 -0
  576. data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/lib/active_model/type/big_integer.rb +15 -0
  577. data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/lib/active_model/type/binary.rb +52 -0
  578. data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/lib/active_model/type/boolean.rb +47 -0
  579. data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/lib/active_model/type/date.rb +53 -0
  580. data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/lib/active_model/type/date_time.rb +47 -0
  581. data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/lib/active_model/type/decimal.rb +70 -0
  582. data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/lib/active_model/type/float.rb +34 -0
  583. data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/lib/active_model/type/helpers.rb +7 -0
  584. data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/lib/active_model/type/helpers/accepts_multiparameter_time.rb +45 -0
  585. data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/lib/active_model/type/helpers/mutable.rb +20 -0
  586. data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/lib/active_model/type/helpers/numeric.rb +44 -0
  587. data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/lib/active_model/type/helpers/time_value.rb +81 -0
  588. data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/lib/active_model/type/helpers/timezone.rb +19 -0
  589. data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/lib/active_model/type/immutable_string.rb +32 -0
  590. data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/lib/active_model/type/integer.rb +58 -0
  591. data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/lib/active_model/type/registry.rb +62 -0
  592. data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/lib/active_model/type/string.rb +26 -0
  593. data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/lib/active_model/type/time.rb +47 -0
  594. data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/lib/active_model/type/value.rb +126 -0
  595. data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/lib/active_model/validations.rb +437 -0
  596. data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/lib/active_model/validations/absence.rb +33 -0
  597. data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/lib/active_model/validations/acceptance.rb +114 -0
  598. data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/lib/active_model/validations/callbacks.rb +122 -0
  599. data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/lib/active_model/validations/clusivity.rb +54 -0
  600. data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/lib/active_model/validations/confirmation.rb +80 -0
  601. data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/lib/active_model/validations/exclusion.rb +49 -0
  602. data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/lib/active_model/validations/format.rb +114 -0
  603. data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/lib/active_model/validations/helper_methods.rb +15 -0
  604. data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/lib/active_model/validations/inclusion.rb +47 -0
  605. data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/lib/active_model/validations/length.rb +129 -0
  606. data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/lib/active_model/validations/numericality.rb +189 -0
  607. data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/lib/active_model/validations/presence.rb +39 -0
  608. data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/lib/active_model/validations/validates.rb +174 -0
  609. data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/lib/active_model/validations/with.rb +147 -0
  610. data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/lib/active_model/validator.rb +183 -0
  611. data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/lib/active_model/version.rb +10 -0
  612. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/CHANGELOG.md +1131 -0
  613. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/MIT-LICENSE +22 -0
  614. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/README.rdoc +219 -0
  615. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/examples/performance.rb +185 -0
  616. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/examples/simple.rb +15 -0
  617. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record.rb +195 -0
  618. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/aggregations.rb +285 -0
  619. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/association_relation.rb +49 -0
  620. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/associations.rb +1865 -0
  621. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/associations/alias_tracker.rb +81 -0
  622. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/associations/association.rb +340 -0
  623. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/associations/association_scope.rb +166 -0
  624. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/associations/belongs_to_association.rb +124 -0
  625. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/associations/belongs_to_polymorphic_association.rb +36 -0
  626. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/associations/builder/association.rb +136 -0
  627. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/associations/builder/belongs_to.rb +130 -0
  628. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/associations/builder/collection_association.rb +72 -0
  629. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/associations/builder/has_and_belongs_to_many.rb +114 -0
  630. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/associations/builder/has_many.rb +19 -0
  631. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/associations/builder/has_one.rb +64 -0
  632. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/associations/builder/singular_association.rb +44 -0
  633. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/associations/collection_association.rb +502 -0
  634. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/associations/collection_proxy.rb +1128 -0
  635. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/associations/foreign_association.rb +20 -0
  636. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/associations/has_many_association.rb +136 -0
  637. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/associations/has_many_through_association.rb +220 -0
  638. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/associations/has_one_association.rb +118 -0
  639. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/associations/has_one_through_association.rb +45 -0
  640. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/associations/join_dependency.rb +262 -0
  641. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/associations/join_dependency/join_association.rb +80 -0
  642. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/associations/join_dependency/join_base.rb +23 -0
  643. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/associations/join_dependency/join_part.rb +71 -0
  644. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/associations/preloader.rb +201 -0
  645. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/associations/preloader/association.rb +133 -0
  646. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/associations/preloader/through_association.rb +116 -0
  647. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/associations/singular_association.rb +59 -0
  648. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/associations/through_association.rb +121 -0
  649. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/attribute_assignment.rb +85 -0
  650. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/attribute_decorators.rb +90 -0
  651. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/attribute_methods.rb +420 -0
  652. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/attribute_methods/before_type_cast.rb +81 -0
  653. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/attribute_methods/dirty.rb +221 -0
  654. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/attribute_methods/primary_key.rb +136 -0
  655. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/attribute_methods/query.rb +41 -0
  656. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/attribute_methods/read.rb +47 -0
  657. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/attribute_methods/serialization.rb +90 -0
  658. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/attribute_methods/time_zone_conversion.rb +91 -0
  659. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/attribute_methods/write.rb +61 -0
  660. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/attributes.rb +279 -0
  661. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/autosave_association.rb +512 -0
  662. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/base.rb +328 -0
  663. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/callbacks.rb +339 -0
  664. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/coders/json.rb +15 -0
  665. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/coders/yaml_column.rb +50 -0
  666. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/abstract/connection_pool.rb +1175 -0
  667. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/abstract/database_limits.rb +85 -0
  668. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/abstract/database_statements.rb +516 -0
  669. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/abstract/query_cache.rb +155 -0
  670. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/abstract/quoting.rb +251 -0
  671. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/abstract/savepoints.rb +23 -0
  672. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/abstract/schema_creation.rb +153 -0
  673. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/abstract/schema_definitions.rb +713 -0
  674. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/abstract/schema_dumper.rb +93 -0
  675. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/abstract/schema_statements.rb +1475 -0
  676. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/abstract/transaction.rb +323 -0
  677. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/abstract_adapter.rb +772 -0
  678. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/abstract_mysql_adapter.rb +830 -0
  679. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/column.rb +95 -0
  680. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/connection_specification.rb +297 -0
  681. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/determine_if_preparable_visitor.rb +29 -0
  682. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/mysql/column.rb +27 -0
  683. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/mysql/database_statements.rb +202 -0
  684. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/mysql/explain_pretty_printer.rb +72 -0
  685. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/mysql/quoting.rb +81 -0
  686. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/mysql/schema_creation.rb +72 -0
  687. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/mysql/schema_definitions.rb +95 -0
  688. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/mysql/schema_dumper.rb +88 -0
  689. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/mysql/schema_statements.rb +264 -0
  690. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/mysql/type_metadata.rb +31 -0
  691. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/mysql2_adapter.rb +146 -0
  692. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/postgresql/column.rb +30 -0
  693. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/postgresql/database_statements.rb +184 -0
  694. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/postgresql/explain_pretty_printer.rb +44 -0
  695. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/postgresql/oid.rb +34 -0
  696. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/postgresql/oid/array.rb +92 -0
  697. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/postgresql/oid/bit.rb +53 -0
  698. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/postgresql/oid/bit_varying.rb +15 -0
  699. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/postgresql/oid/bytea.rb +17 -0
  700. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/postgresql/oid/cidr.rb +50 -0
  701. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/postgresql/oid/date.rb +23 -0
  702. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/postgresql/oid/date_time.rb +23 -0
  703. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/postgresql/oid/decimal.rb +15 -0
  704. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/postgresql/oid/enum.rb +21 -0
  705. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/postgresql/oid/hstore.rb +71 -0
  706. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/postgresql/oid/inet.rb +15 -0
  707. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/postgresql/oid/jsonb.rb +15 -0
  708. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/postgresql/oid/legacy_point.rb +45 -0
  709. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/postgresql/oid/money.rb +41 -0
  710. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/postgresql/oid/oid.rb +15 -0
  711. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/postgresql/oid/point.rb +65 -0
  712. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/postgresql/oid/range.rb +97 -0
  713. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/postgresql/oid/specialized_string.rb +18 -0
  714. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/postgresql/oid/type_map_initializer.rb +113 -0
  715. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/postgresql/oid/uuid.rb +26 -0
  716. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/postgresql/oid/vector.rb +28 -0
  717. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/postgresql/oid/xml.rb +30 -0
  718. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/postgresql/quoting.rb +205 -0
  719. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/postgresql/referential_integrity.rb +43 -0
  720. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/postgresql/schema_creation.rb +76 -0
  721. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/postgresql/schema_definitions.rb +222 -0
  722. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/postgresql/schema_dumper.rb +50 -0
  723. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/postgresql/schema_statements.rb +776 -0
  724. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/postgresql/type_metadata.rb +36 -0
  725. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/postgresql/utils.rb +81 -0
  726. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/postgresql_adapter.rb +953 -0
  727. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/schema_cache.rb +141 -0
  728. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/sql_type_metadata.rb +37 -0
  729. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/sqlite3/database_statements.rb +120 -0
  730. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/sqlite3/explain_pretty_printer.rb +21 -0
  731. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/sqlite3/quoting.rb +103 -0
  732. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/sqlite3/schema_creation.rb +17 -0
  733. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/sqlite3/schema_definitions.rb +19 -0
  734. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/sqlite3/schema_dumper.rb +18 -0
  735. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/sqlite3/schema_statements.rb +137 -0
  736. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/sqlite3_adapter.rb +561 -0
  737. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_adapters/statement_pool.rb +61 -0
  738. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/connection_handling.rb +274 -0
  739. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/core.rb +603 -0
  740. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/counter_cache.rb +193 -0
  741. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/database_configurations.rb +233 -0
  742. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/database_configurations/database_config.rb +37 -0
  743. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/database_configurations/hash_config.rb +50 -0
  744. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/database_configurations/url_config.rb +79 -0
  745. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/define_callbacks.rb +22 -0
  746. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/dynamic_matchers.rb +122 -0
  747. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/enum.rb +274 -0
  748. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/errors.rb +388 -0
  749. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/explain.rb +50 -0
  750. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/explain_registry.rb +32 -0
  751. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/explain_subscriber.rb +34 -0
  752. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/fixture_set/file.rb +82 -0
  753. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/fixture_set/model_metadata.rb +33 -0
  754. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/fixture_set/render_context.rb +17 -0
  755. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/fixture_set/table_row.rb +153 -0
  756. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/fixture_set/table_rows.rb +47 -0
  757. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/fixtures.rb +738 -0
  758. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/gem_version.rb +17 -0
  759. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/inheritance.rb +293 -0
  760. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/insert_all.rb +179 -0
  761. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/integration.rb +207 -0
  762. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/internal_metadata.rb +53 -0
  763. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/legacy_yaml_adapter.rb +48 -0
  764. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/locale/en.yml +48 -0
  765. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/locking/optimistic.rb +197 -0
  766. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/locking/pessimistic.rb +89 -0
  767. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/log_subscriber.rb +118 -0
  768. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/middleware/database_selector.rb +75 -0
  769. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/middleware/database_selector/resolver.rb +88 -0
  770. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/middleware/database_selector/resolver/session.rb +45 -0
  771. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/migration.rb +1397 -0
  772. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/migration/command_recorder.rb +284 -0
  773. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/migration/compatibility.rb +244 -0
  774. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/migration/join_table.rb +17 -0
  775. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/model_schema.rb +545 -0
  776. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/nested_attributes.rb +600 -0
  777. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/no_touching.rb +65 -0
  778. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/null_relation.rb +68 -0
  779. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/persistence.rb +967 -0
  780. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/query_cache.rb +52 -0
  781. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/querying.rb +82 -0
  782. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/railtie.rb +263 -0
  783. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/railties/collection_cache_association_loading.rb +34 -0
  784. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/railties/console_sandbox.rb +7 -0
  785. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/railties/controller_runtime.rb +51 -0
  786. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/railties/databases.rake +530 -0
  787. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/readonly_attributes.rb +24 -0
  788. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/reflection.rb +1042 -0
  789. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/relation.rb +860 -0
  790. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/relation/batches.rb +290 -0
  791. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/relation/batches/batch_enumerator.rb +69 -0
  792. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/relation/calculations.rb +424 -0
  793. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/relation/delegation.rb +130 -0
  794. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/relation/finder_methods.rb +561 -0
  795. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/relation/from_clause.rb +26 -0
  796. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/relation/merger.rb +184 -0
  797. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/relation/predicate_builder.rb +150 -0
  798. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/relation/predicate_builder/array_handler.rb +49 -0
  799. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/relation/predicate_builder/association_query_value.rb +43 -0
  800. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/relation/predicate_builder/base_handler.rb +18 -0
  801. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/relation/predicate_builder/basic_object_handler.rb +19 -0
  802. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/relation/predicate_builder/polymorphic_array_value.rb +53 -0
  803. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/relation/predicate_builder/range_handler.rb +22 -0
  804. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/relation/predicate_builder/relation_handler.rb +19 -0
  805. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/relation/query_attribute.rb +50 -0
  806. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/relation/query_methods.rb +1382 -0
  807. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/relation/record_fetch_warning.rb +51 -0
  808. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/relation/spawn_methods.rb +77 -0
  809. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/relation/where_clause.rb +190 -0
  810. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/relation/where_clause_factory.rb +33 -0
  811. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/result.rb +168 -0
  812. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/runtime_registry.rb +24 -0
  813. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/sanitization.rb +214 -0
  814. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/schema.rb +61 -0
  815. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/schema_dumper.rb +270 -0
  816. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/schema_migration.rb +60 -0
  817. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/scoping.rb +106 -0
  818. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/scoping/default.rb +151 -0
  819. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/scoping/named.rb +218 -0
  820. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/secure_token.rb +40 -0
  821. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/serialization.rb +22 -0
  822. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/statement_cache.rb +148 -0
  823. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/store.rb +290 -0
  824. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/suppressor.rb +61 -0
  825. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/table_metadata.rb +75 -0
  826. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/tasks/database_tasks.rb +506 -0
  827. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/tasks/mysql_database_tasks.rb +115 -0
  828. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/tasks/postgresql_database_tasks.rb +141 -0
  829. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/tasks/sqlite_database_tasks.rb +77 -0
  830. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/test_databases.rb +23 -0
  831. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/test_fixtures.rb +225 -0
  832. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/timestamp.rb +167 -0
  833. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/touch_later.rb +66 -0
  834. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/transactions.rb +493 -0
  835. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/translation.rb +24 -0
  836. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/type.rb +78 -0
  837. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/type/adapter_specific_registry.rb +129 -0
  838. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/type/date.rb +9 -0
  839. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/type/date_time.rb +9 -0
  840. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/type/decimal_without_scale.rb +15 -0
  841. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/type/hash_lookup_type_map.rb +25 -0
  842. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/type/internal/timezone.rb +17 -0
  843. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/type/json.rb +30 -0
  844. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/type/serialized.rb +71 -0
  845. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/type/text.rb +11 -0
  846. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/type/time.rb +21 -0
  847. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/type/type_map.rb +62 -0
  848. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/type/unsigned_integer.rb +17 -0
  849. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/type_caster.rb +9 -0
  850. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/type_caster/connection.rb +34 -0
  851. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/type_caster/map.rb +20 -0
  852. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/validations.rb +94 -0
  853. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/validations/absence.rb +25 -0
  854. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/validations/associated.rb +60 -0
  855. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/validations/length.rb +26 -0
  856. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/validations/presence.rb +68 -0
  857. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/validations/uniqueness.rb +226 -0
  858. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/version.rb +10 -0
  859. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel.rb +58 -0
  860. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/alias_predication.rb +9 -0
  861. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/attributes.rb +22 -0
  862. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/attributes/attribute.rb +37 -0
  863. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/collectors/bind.rb +24 -0
  864. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/collectors/composite.rb +31 -0
  865. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/collectors/plain_string.rb +20 -0
  866. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/collectors/sql_string.rb +20 -0
  867. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/collectors/substitute_binds.rb +28 -0
  868. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/crud.rb +42 -0
  869. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/delete_manager.rb +18 -0
  870. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/errors.rb +9 -0
  871. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/expressions.rb +29 -0
  872. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/factory_methods.rb +49 -0
  873. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/insert_manager.rb +49 -0
  874. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/math.rb +45 -0
  875. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/nodes.rb +68 -0
  876. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/nodes/and.rb +32 -0
  877. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/nodes/ascending.rb +23 -0
  878. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/nodes/binary.rb +52 -0
  879. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/nodes/bind_param.rb +36 -0
  880. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/nodes/case.rb +55 -0
  881. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/nodes/casted.rb +50 -0
  882. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/nodes/comment.rb +29 -0
  883. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/nodes/count.rb +12 -0
  884. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/nodes/delete_statement.rb +45 -0
  885. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/nodes/descending.rb +23 -0
  886. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/nodes/equality.rb +18 -0
  887. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/nodes/extract.rb +24 -0
  888. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/nodes/false.rb +16 -0
  889. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/nodes/full_outer_join.rb +8 -0
  890. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/nodes/function.rb +44 -0
  891. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/nodes/grouping.rb +8 -0
  892. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/nodes/in.rb +8 -0
  893. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/nodes/infix_operation.rb +80 -0
  894. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/nodes/inner_join.rb +8 -0
  895. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/nodes/insert_statement.rb +37 -0
  896. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/nodes/join_source.rb +20 -0
  897. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/nodes/matches.rb +18 -0
  898. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/nodes/named_function.rb +23 -0
  899. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/nodes/node.rb +50 -0
  900. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/nodes/node_expression.rb +13 -0
  901. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/nodes/outer_join.rb +8 -0
  902. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/nodes/over.rb +15 -0
  903. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/nodes/regexp.rb +16 -0
  904. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/nodes/right_outer_join.rb +8 -0
  905. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/nodes/select_core.rb +67 -0
  906. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/nodes/select_statement.rb +41 -0
  907. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/nodes/sql_literal.rb +16 -0
  908. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/nodes/string_join.rb +11 -0
  909. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/nodes/table_alias.rb +27 -0
  910. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/nodes/terminal.rb +16 -0
  911. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/nodes/true.rb +16 -0
  912. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/nodes/unary.rb +45 -0
  913. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/nodes/unary_operation.rb +20 -0
  914. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/nodes/unqualified_column.rb +22 -0
  915. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/nodes/update_statement.rb +41 -0
  916. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/nodes/values_list.rb +9 -0
  917. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/nodes/window.rb +126 -0
  918. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/nodes/with.rb +11 -0
  919. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/order_predications.rb +13 -0
  920. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/predications.rb +257 -0
  921. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/select_manager.rb +271 -0
  922. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/table.rb +110 -0
  923. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/tree_manager.rb +72 -0
  924. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/update_manager.rb +34 -0
  925. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/visitors.rb +20 -0
  926. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/visitors/depth_first.rb +204 -0
  927. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/visitors/dot.rb +297 -0
  928. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/visitors/ibm_db.rb +34 -0
  929. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/visitors/informix.rb +62 -0
  930. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/visitors/mssql.rb +157 -0
  931. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/visitors/mysql.rb +83 -0
  932. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/visitors/oracle.rb +159 -0
  933. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/visitors/oracle12.rb +66 -0
  934. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/visitors/postgresql.rb +110 -0
  935. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/visitors/sqlite.rb +39 -0
  936. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/visitors/to_sql.rb +889 -0
  937. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/visitors/visitor.rb +46 -0
  938. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/visitors/where_sql.rb +23 -0
  939. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/arel/window_predications.rb +9 -0
  940. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/rails/generators/active_record.rb +19 -0
  941. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/rails/generators/active_record/application_record/application_record_generator.rb +27 -0
  942. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/rails/generators/active_record/application_record/templates/application_record.rb.tt +5 -0
  943. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/rails/generators/active_record/migration.rb +48 -0
  944. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/rails/generators/active_record/migration/migration_generator.rb +75 -0
  945. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/rails/generators/active_record/migration/templates/create_table_migration.rb.tt +24 -0
  946. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/rails/generators/active_record/migration/templates/migration.rb.tt +48 -0
  947. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/rails/generators/active_record/model/model_generator.rb +49 -0
  948. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/rails/generators/active_record/model/templates/model.rb.tt +22 -0
  949. data/vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/rails/generators/active_record/model/templates/module.rb.tt +7 -0
  950. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/CHANGELOG.md +221 -0
  951. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/MIT-LICENSE +20 -0
  952. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/README.md +162 -0
  953. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/app/assets/javascripts/activestorage.js +942 -0
  954. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/app/controllers/active_storage/base_controller.rb +8 -0
  955. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/app/controllers/active_storage/blobs_controller.rb +14 -0
  956. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/app/controllers/active_storage/direct_uploads_controller.rb +23 -0
  957. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/app/controllers/active_storage/disk_controller.rb +66 -0
  958. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/app/controllers/active_storage/representations_controller.rb +14 -0
  959. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/app/controllers/concerns/active_storage/set_blob.rb +16 -0
  960. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/app/controllers/concerns/active_storage/set_current.rb +15 -0
  961. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/app/javascript/activestorage/blob_record.js +73 -0
  962. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/app/javascript/activestorage/blob_upload.js +35 -0
  963. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/app/javascript/activestorage/direct_upload.js +48 -0
  964. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/app/javascript/activestorage/direct_upload_controller.js +67 -0
  965. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/app/javascript/activestorage/direct_uploads_controller.js +50 -0
  966. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/app/javascript/activestorage/file_checksum.js +53 -0
  967. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/app/javascript/activestorage/helpers.js +51 -0
  968. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/app/javascript/activestorage/index.js +11 -0
  969. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/app/javascript/activestorage/ujs.js +86 -0
  970. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/app/jobs/active_storage/analyze_job.rb +13 -0
  971. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/app/jobs/active_storage/base_job.rb +4 -0
  972. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/app/jobs/active_storage/purge_job.rb +13 -0
  973. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/app/models/active_storage/attachment.rb +50 -0
  974. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/app/models/active_storage/blob.rb +291 -0
  975. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/app/models/active_storage/blob/analyzable.rb +57 -0
  976. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/app/models/active_storage/blob/identifiable.rb +31 -0
  977. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/app/models/active_storage/blob/representable.rb +93 -0
  978. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/app/models/active_storage/current.rb +5 -0
  979. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/app/models/active_storage/filename.rb +77 -0
  980. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/app/models/active_storage/preview.rb +89 -0
  981. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/app/models/active_storage/variant.rb +131 -0
  982. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/app/models/active_storage/variation.rb +80 -0
  983. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/config/routes.rb +32 -0
  984. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/db/migrate/20170806125915_create_active_storage_tables.rb +26 -0
  985. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/db/update_migrate/20180723000244_add_foreign_key_constraint_to_active_storage_attachments_for_blob_id.rb +9 -0
  986. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/lib/active_storage.rb +73 -0
  987. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/lib/active_storage/analyzer.rb +38 -0
  988. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/lib/active_storage/analyzer/image_analyzer.rb +52 -0
  989. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/lib/active_storage/analyzer/null_analyzer.rb +13 -0
  990. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/lib/active_storage/analyzer/video_analyzer.rb +118 -0
  991. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/lib/active_storage/attached.rb +25 -0
  992. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/lib/active_storage/attached/changes.rb +16 -0
  993. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/lib/active_storage/attached/changes/create_many.rb +46 -0
  994. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/lib/active_storage/attached/changes/create_one.rb +69 -0
  995. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/lib/active_storage/attached/changes/create_one_of_many.rb +10 -0
  996. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/lib/active_storage/attached/changes/delete_many.rb +27 -0
  997. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/lib/active_storage/attached/changes/delete_one.rb +19 -0
  998. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/lib/active_storage/attached/many.rb +65 -0
  999. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/lib/active_storage/attached/model.rb +147 -0
  1000. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/lib/active_storage/attached/one.rb +79 -0
  1001. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/lib/active_storage/downloader.rb +43 -0
  1002. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/lib/active_storage/downloading.rb +47 -0
  1003. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/lib/active_storage/engine.rb +149 -0
  1004. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/lib/active_storage/errors.rb +26 -0
  1005. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/lib/active_storage/gem_version.rb +17 -0
  1006. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/lib/active_storage/log_subscriber.rb +58 -0
  1007. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/lib/active_storage/previewer.rb +84 -0
  1008. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/lib/active_storage/previewer/mupdf_previewer.rb +36 -0
  1009. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/lib/active_storage/previewer/poppler_pdf_previewer.rb +35 -0
  1010. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/lib/active_storage/previewer/video_previewer.rb +26 -0
  1011. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/lib/active_storage/reflection.rb +64 -0
  1012. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/lib/active_storage/service.rb +141 -0
  1013. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/lib/active_storage/service/azure_storage_service.rb +165 -0
  1014. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/lib/active_storage/service/configurator.rb +34 -0
  1015. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/lib/active_storage/service/disk_service.rb +166 -0
  1016. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/lib/active_storage/service/gcs_service.rb +141 -0
  1017. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/lib/active_storage/service/mirror_service.rb +55 -0
  1018. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/lib/active_storage/service/s3_service.rb +116 -0
  1019. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/lib/active_storage/transformers/image_processing_transformer.rb +39 -0
  1020. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/lib/active_storage/transformers/mini_magick_transformer.rb +38 -0
  1021. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/lib/active_storage/transformers/transformer.rb +42 -0
  1022. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/lib/active_storage/version.rb +10 -0
  1023. data/vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/lib/tasks/activestorage.rake +22 -0
  1024. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/CHANGELOG.md +633 -0
  1025. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/MIT-LICENSE +20 -0
  1026. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/README.rdoc +40 -0
  1027. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support.rb +96 -0
  1028. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/actionable_error.rb +48 -0
  1029. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/all.rb +5 -0
  1030. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/array_inquirer.rb +48 -0
  1031. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/backtrace_cleaner.rb +132 -0
  1032. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/benchmarkable.rb +51 -0
  1033. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/builder.rb +8 -0
  1034. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/cache.rb +830 -0
  1035. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/cache/file_store.rb +196 -0
  1036. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/cache/mem_cache_store.rb +212 -0
  1037. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/cache/memory_store.rb +176 -0
  1038. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/cache/null_store.rb +48 -0
  1039. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/cache/redis_cache_store.rb +488 -0
  1040. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/cache/strategy/local_cache.rb +194 -0
  1041. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/cache/strategy/local_cache_middleware.rb +45 -0
  1042. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/callbacks.rb +856 -0
  1043. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/concern.rb +171 -0
  1044. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/concurrency/load_interlock_aware_monitor.rb +17 -0
  1045. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/concurrency/share_lock.rb +227 -0
  1046. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/configurable.rb +146 -0
  1047. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext.rb +5 -0
  1048. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/array.rb +9 -0
  1049. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/array/access.rb +104 -0
  1050. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/array/conversions.rb +213 -0
  1051. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/array/extract.rb +21 -0
  1052. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/array/extract_options.rb +31 -0
  1053. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/array/grouping.rb +109 -0
  1054. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/array/inquiry.rb +19 -0
  1055. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/array/prepend_and_append.rb +5 -0
  1056. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/array/wrap.rb +48 -0
  1057. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/benchmark.rb +16 -0
  1058. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/big_decimal.rb +3 -0
  1059. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/big_decimal/conversions.rb +14 -0
  1060. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/class.rb +4 -0
  1061. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/class/attribute.rb +141 -0
  1062. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/class/attribute_accessors.rb +6 -0
  1063. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/class/subclasses.rb +54 -0
  1064. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/date.rb +7 -0
  1065. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/date/acts_like.rb +10 -0
  1066. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/date/blank.rb +14 -0
  1067. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/date/calculations.rb +146 -0
  1068. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/date/conversions.rb +96 -0
  1069. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/date/zones.rb +8 -0
  1070. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/date_and_time/calculations.rb +351 -0
  1071. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/date_and_time/compatibility.rb +16 -0
  1072. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/date_and_time/zones.rb +41 -0
  1073. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/date_time.rb +7 -0
  1074. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/date_time/acts_like.rb +16 -0
  1075. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/date_time/blank.rb +14 -0
  1076. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/date_time/calculations.rb +211 -0
  1077. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/date_time/compatibility.rb +18 -0
  1078. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/date_time/conversions.rb +107 -0
  1079. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/digest.rb +3 -0
  1080. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/digest/uuid.rb +53 -0
  1081. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/enumerable.rb +188 -0
  1082. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/file.rb +3 -0
  1083. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/file/atomic.rb +70 -0
  1084. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/hash.rb +10 -0
  1085. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/hash/compact.rb +5 -0
  1086. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/hash/conversions.rb +263 -0
  1087. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/hash/deep_merge.rb +34 -0
  1088. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/hash/deep_transform_values.rb +46 -0
  1089. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/hash/except.rb +24 -0
  1090. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/hash/indifferent_access.rb +24 -0
  1091. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/hash/keys.rb +143 -0
  1092. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/hash/reverse_merge.rb +25 -0
  1093. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/hash/slice.rb +26 -0
  1094. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/hash/transform_values.rb +5 -0
  1095. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/integer.rb +5 -0
  1096. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/integer/inflections.rb +31 -0
  1097. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/integer/multiple.rb +12 -0
  1098. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/integer/time.rb +22 -0
  1099. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/kernel.rb +5 -0
  1100. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/kernel/concern.rb +14 -0
  1101. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/kernel/reporting.rb +45 -0
  1102. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/kernel/singleton_class.rb +8 -0
  1103. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/load_error.rb +9 -0
  1104. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/marshal.rb +24 -0
  1105. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/module.rb +13 -0
  1106. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/module/aliasing.rb +31 -0
  1107. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/module/anonymous.rb +30 -0
  1108. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/module/attr_internal.rb +38 -0
  1109. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/module/attribute_accessors.rb +212 -0
  1110. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/module/attribute_accessors_per_thread.rb +144 -0
  1111. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/module/concerning.rb +134 -0
  1112. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/module/delegation.rb +313 -0
  1113. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/module/deprecation.rb +25 -0
  1114. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/module/introspection.rb +86 -0
  1115. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/module/reachable.rb +6 -0
  1116. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/module/redefine_method.rb +40 -0
  1117. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/module/remove_method.rb +17 -0
  1118. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/name_error.rb +38 -0
  1119. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/numeric.rb +5 -0
  1120. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/numeric/bytes.rb +66 -0
  1121. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/numeric/conversions.rb +136 -0
  1122. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/numeric/inquiry.rb +5 -0
  1123. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/numeric/time.rb +66 -0
  1124. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/object.rb +16 -0
  1125. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/object/acts_like.rb +21 -0
  1126. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/object/blank.rb +155 -0
  1127. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/object/conversions.rb +6 -0
  1128. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/object/deep_dup.rb +55 -0
  1129. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/object/duplicable.rb +49 -0
  1130. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/object/inclusion.rb +29 -0
  1131. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/object/instance_variables.rb +30 -0
  1132. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/object/json.rb +228 -0
  1133. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/object/to_param.rb +3 -0
  1134. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/object/to_query.rb +89 -0
  1135. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/object/try.rb +156 -0
  1136. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/object/with_options.rb +82 -0
  1137. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/range.rb +7 -0
  1138. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/range/compare_range.rb +76 -0
  1139. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/range/conversions.rb +41 -0
  1140. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/range/each.rb +25 -0
  1141. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/range/include_range.rb +9 -0
  1142. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/range/include_time_with_zone.rb +23 -0
  1143. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/range/overlaps.rb +10 -0
  1144. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/regexp.rb +7 -0
  1145. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/securerandom.rb +45 -0
  1146. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/string.rb +15 -0
  1147. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/string/access.rb +114 -0
  1148. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/string/behavior.rb +8 -0
  1149. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/string/conversions.rb +59 -0
  1150. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/string/exclude.rb +13 -0
  1151. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/string/filters.rb +145 -0
  1152. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/string/indent.rb +45 -0
  1153. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/string/inflections.rb +259 -0
  1154. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/string/inquiry.rb +15 -0
  1155. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/string/multibyte.rb +58 -0
  1156. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/string/output_safety.rb +316 -0
  1157. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/string/starts_ends_with.rb +6 -0
  1158. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/string/strip.rb +27 -0
  1159. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/string/zones.rb +16 -0
  1160. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/time.rb +7 -0
  1161. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/time/acts_like.rb +10 -0
  1162. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/time/calculations.rb +344 -0
  1163. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/time/compatibility.rb +16 -0
  1164. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/time/conversions.rb +72 -0
  1165. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/time/zones.rb +113 -0
  1166. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/uri.rb +25 -0
  1167. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/current_attributes.rb +203 -0
  1168. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/dependencies.rb +806 -0
  1169. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/dependencies/autoload.rb +79 -0
  1170. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/dependencies/interlock.rb +57 -0
  1171. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/dependencies/zeitwerk_integration.rb +118 -0
  1172. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/deprecation.rb +46 -0
  1173. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/deprecation/behaviors.rb +109 -0
  1174. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/deprecation/constant_accessor.rb +52 -0
  1175. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/deprecation/instance_delegator.rb +39 -0
  1176. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/deprecation/method_wrappers.rb +78 -0
  1177. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/deprecation/proxy_wrappers.rb +173 -0
  1178. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/deprecation/reporting.rb +114 -0
  1179. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/descendants_tracker.rb +109 -0
  1180. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/digest.rb +20 -0
  1181. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/duration.rb +433 -0
  1182. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/duration/iso8601_parser.rb +124 -0
  1183. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/duration/iso8601_serializer.rb +54 -0
  1184. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/encrypted_configuration.rb +45 -0
  1185. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/encrypted_file.rb +100 -0
  1186. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/evented_file_update_checker.rb +235 -0
  1187. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/execution_wrapper.rb +129 -0
  1188. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/executor.rb +8 -0
  1189. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/file_update_checker.rb +163 -0
  1190. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/gem_version.rb +17 -0
  1191. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/gzip.rb +38 -0
  1192. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/hash_with_indifferent_access.rb +399 -0
  1193. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/i18n.rb +16 -0
  1194. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/i18n_railtie.rb +130 -0
  1195. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/inflections.rb +72 -0
  1196. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/inflector.rb +9 -0
  1197. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/inflector/inflections.rb +257 -0
  1198. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/inflector/methods.rb +398 -0
  1199. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/inflector/transliterate.rb +147 -0
  1200. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/json.rb +4 -0
  1201. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/json/decoding.rb +76 -0
  1202. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/json/encoding.rb +134 -0
  1203. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/key_generator.rb +41 -0
  1204. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/lazy_load_hooks.rb +82 -0
  1205. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/locale/en.rb +31 -0
  1206. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/locale/en.yml +135 -0
  1207. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/log_subscriber.rb +135 -0
  1208. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/log_subscriber/test_helper.rb +106 -0
  1209. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/logger.rb +93 -0
  1210. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/logger_silence.rb +45 -0
  1211. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/logger_thread_safe_level.rb +56 -0
  1212. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/message_encryptor.rb +227 -0
  1213. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/message_verifier.rb +205 -0
  1214. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/messages/metadata.rb +71 -0
  1215. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/messages/rotation_configuration.rb +22 -0
  1216. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/messages/rotator.rb +56 -0
  1217. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/multibyte.rb +23 -0
  1218. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/multibyte/chars.rb +216 -0
  1219. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/multibyte/unicode.rb +157 -0
  1220. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/notifications.rb +253 -0
  1221. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/notifications/fanout.rb +244 -0
  1222. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/notifications/instrumenter.rb +165 -0
  1223. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/number_helper.rb +378 -0
  1224. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/number_helper/number_converter.rb +184 -0
  1225. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/number_helper/number_to_currency_converter.rb +46 -0
  1226. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/number_helper/number_to_delimited_converter.rb +31 -0
  1227. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/number_helper/number_to_human_converter.rb +70 -0
  1228. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/number_helper/number_to_human_size_converter.rb +61 -0
  1229. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/number_helper/number_to_percentage_converter.rb +16 -0
  1230. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/number_helper/number_to_phone_converter.rb +60 -0
  1231. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/number_helper/number_to_rounded_converter.rb +56 -0
  1232. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/number_helper/rounding_helper.rb +66 -0
  1233. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/option_merger.rb +27 -0
  1234. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/ordered_hash.rb +50 -0
  1235. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/ordered_options.rb +85 -0
  1236. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/parameter_filter.rb +129 -0
  1237. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/per_thread_registry.rb +60 -0
  1238. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/proxy_object.rb +15 -0
  1239. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/rails.rb +29 -0
  1240. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/railtie.rb +80 -0
  1241. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/reloader.rb +130 -0
  1242. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/rescuable.rb +174 -0
  1243. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/security_utils.rb +31 -0
  1244. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/string_inquirer.rb +34 -0
  1245. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/subscriber.rb +169 -0
  1246. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/tagged_logging.rb +88 -0
  1247. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/test_case.rb +163 -0
  1248. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/testing/assertions.rb +228 -0
  1249. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/testing/autorun.rb +7 -0
  1250. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/testing/constant_lookup.rb +51 -0
  1251. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/testing/declarative.rb +28 -0
  1252. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/testing/deprecation.rb +38 -0
  1253. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/testing/file_fixtures.rb +38 -0
  1254. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/testing/isolation.rb +110 -0
  1255. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/testing/method_call_assertions.rb +70 -0
  1256. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/testing/parallelization.rb +128 -0
  1257. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/testing/setup_and_teardown.rb +55 -0
  1258. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/testing/stream.rb +44 -0
  1259. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/testing/tagged_logging.rb +27 -0
  1260. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/testing/time_helpers.rb +200 -0
  1261. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/time.rb +20 -0
  1262. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/time_with_zone.rb +561 -0
  1263. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/values/time_zone.rb +570 -0
  1264. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/version.rb +10 -0
  1265. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/xml_mini.rb +202 -0
  1266. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/xml_mini/jdom.rb +183 -0
  1267. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/xml_mini/libxml.rb +80 -0
  1268. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/xml_mini/libxmlsax.rb +83 -0
  1269. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/xml_mini/nokogiri.rb +83 -0
  1270. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/xml_mini/nokogirisax.rb +86 -0
  1271. data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/xml_mini/rexml.rb +130 -0
  1272. data/vendor/bundle/ruby/2.7.0/gems/builder-3.2.4/CHANGES +119 -0
  1273. data/vendor/bundle/ruby/2.7.0/gems/builder-3.2.4/MIT-LICENSE +20 -0
  1274. data/vendor/bundle/ruby/2.7.0/gems/builder-3.2.4/README.md +258 -0
  1275. data/vendor/bundle/ruby/2.7.0/gems/builder-3.2.4/Rakefile +194 -0
  1276. data/vendor/bundle/ruby/2.7.0/gems/builder-3.2.4/builder.blurb +27 -0
  1277. data/vendor/bundle/ruby/2.7.0/gems/builder-3.2.4/builder.gemspec +45 -0
  1278. data/vendor/bundle/ruby/2.7.0/gems/builder-3.2.4/doc/jamis.rb +592 -0
  1279. data/vendor/bundle/ruby/2.7.0/gems/builder-3.2.4/doc/releases/builder-1.2.4.rdoc +31 -0
  1280. data/vendor/bundle/ruby/2.7.0/gems/builder-3.2.4/doc/releases/builder-2.0.0.rdoc +46 -0
  1281. data/vendor/bundle/ruby/2.7.0/gems/builder-3.2.4/doc/releases/builder-2.1.1.rdoc +58 -0
  1282. data/vendor/bundle/ruby/2.7.0/gems/builder-3.2.4/lib/blankslate.rb +138 -0
  1283. data/vendor/bundle/ruby/2.7.0/gems/builder-3.2.4/lib/builder.rb +14 -0
  1284. data/vendor/bundle/ruby/2.7.0/gems/builder-3.2.4/lib/builder/blankslate.rb +24 -0
  1285. data/vendor/bundle/ruby/2.7.0/gems/builder-3.2.4/lib/builder/version.rb +9 -0
  1286. data/vendor/bundle/ruby/2.7.0/gems/builder-3.2.4/lib/builder/xchar.rb +198 -0
  1287. data/vendor/bundle/ruby/2.7.0/gems/builder-3.2.4/lib/builder/xmlbase.rb +200 -0
  1288. data/vendor/bundle/ruby/2.7.0/gems/builder-3.2.4/lib/builder/xmlevents.rb +64 -0
  1289. data/vendor/bundle/ruby/2.7.0/gems/builder-3.2.4/lib/builder/xmlmarkup.rb +345 -0
  1290. data/vendor/bundle/ruby/2.7.0/gems/builder-3.2.4/rakelib/publish.rake +21 -0
  1291. data/vendor/bundle/ruby/2.7.0/gems/builder-3.2.4/rakelib/tags.rake +63 -0
  1292. data/vendor/bundle/ruby/2.7.0/gems/builder-3.2.4/rakelib/testing.rake +8 -0
  1293. data/vendor/bundle/ruby/2.7.0/gems/builder-3.2.4/test/helper.rb +13 -0
  1294. data/vendor/bundle/ruby/2.7.0/gems/builder-3.2.4/test/performance.rb +42 -0
  1295. data/vendor/bundle/ruby/2.7.0/gems/builder-3.2.4/test/preload.rb +40 -0
  1296. data/vendor/bundle/ruby/2.7.0/gems/builder-3.2.4/test/test_blankslate.rb +208 -0
  1297. data/vendor/bundle/ruby/2.7.0/gems/builder-3.2.4/test/test_eventbuilder.rb +151 -0
  1298. data/vendor/bundle/ruby/2.7.0/gems/builder-3.2.4/test/test_markupbuilder.rb +617 -0
  1299. data/vendor/bundle/ruby/2.7.0/gems/builder-3.2.4/test/test_method_caching.rb +63 -0
  1300. data/vendor/bundle/ruby/2.7.0/gems/builder-3.2.4/test/test_namecollision.rb +40 -0
  1301. data/vendor/bundle/ruby/2.7.0/gems/builder-3.2.4/test/test_xchar.rb +85 -0
  1302. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/CHANGELOG.md +919 -0
  1303. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/CONTRIBUTING.md +58 -0
  1304. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/GUIDE.md +1806 -0
  1305. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/LICENSE +23 -0
  1306. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/README.md +206 -0
  1307. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/exe/byebug +6 -0
  1308. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/ext/byebug/.sitearchdir.-.byebug.time +0 -0
  1309. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/ext/byebug/Makefile +266 -0
  1310. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/ext/byebug/breakpoint.c +517 -0
  1311. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/ext/byebug/breakpoint.o +0 -0
  1312. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/ext/byebug/byebug.c +900 -0
  1313. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/ext/byebug/byebug.h +145 -0
  1314. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/ext/byebug/byebug.o +0 -0
  1315. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/ext/byebug/byebug.so +0 -0
  1316. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/ext/byebug/context.c +686 -0
  1317. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/ext/byebug/context.o +0 -0
  1318. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/ext/byebug/extconf.rb +12 -0
  1319. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/ext/byebug/locker.c +96 -0
  1320. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/ext/byebug/locker.o +0 -0
  1321. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/ext/byebug/threads.c +230 -0
  1322. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/ext/byebug/threads.o +0 -0
  1323. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug.rb +3 -0
  1324. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/attacher.rb +48 -0
  1325. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/breakpoint.rb +111 -0
  1326. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/byebug.so +0 -0
  1327. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/command.rb +111 -0
  1328. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/command_list.rb +34 -0
  1329. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/commands.rb +40 -0
  1330. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/commands/break.rb +112 -0
  1331. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/commands/catch.rb +78 -0
  1332. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/commands/condition.rb +55 -0
  1333. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/commands/continue.rb +68 -0
  1334. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/commands/debug.rb +38 -0
  1335. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/commands/delete.rb +55 -0
  1336. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/commands/disable.rb +33 -0
  1337. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/commands/disable/breakpoints.rb +42 -0
  1338. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/commands/disable/display.rb +43 -0
  1339. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/commands/display.rb +66 -0
  1340. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/commands/down.rb +45 -0
  1341. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/commands/edit.rb +69 -0
  1342. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/commands/enable.rb +33 -0
  1343. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/commands/enable/breakpoints.rb +42 -0
  1344. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/commands/enable/display.rb +43 -0
  1345. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/commands/finish.rb +57 -0
  1346. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/commands/frame.rb +57 -0
  1347. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/commands/help.rb +64 -0
  1348. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/commands/history.rb +39 -0
  1349. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/commands/info.rb +37 -0
  1350. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/commands/info/breakpoints.rb +65 -0
  1351. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/commands/info/display.rb +49 -0
  1352. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/commands/info/file.rb +80 -0
  1353. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/commands/info/line.rb +35 -0
  1354. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/commands/info/program.rb +49 -0
  1355. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/commands/interrupt.rb +34 -0
  1356. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/commands/irb.rb +50 -0
  1357. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/commands/kill.rb +45 -0
  1358. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/commands/list.rb +159 -0
  1359. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/commands/method.rb +53 -0
  1360. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/commands/next.rb +40 -0
  1361. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/commands/pry.rb +41 -0
  1362. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/commands/quit.rb +42 -0
  1363. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/commands/restart.rb +64 -0
  1364. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/commands/save.rb +72 -0
  1365. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/commands/set.rb +79 -0
  1366. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/commands/show.rb +45 -0
  1367. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/commands/skip.rb +85 -0
  1368. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/commands/source.rb +40 -0
  1369. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/commands/step.rb +40 -0
  1370. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/commands/thread.rb +34 -0
  1371. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/commands/thread/current.rb +37 -0
  1372. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/commands/thread/list.rb +43 -0
  1373. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/commands/thread/resume.rb +45 -0
  1374. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/commands/thread/stop.rb +43 -0
  1375. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/commands/thread/switch.rb +46 -0
  1376. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/commands/tracevar.rb +54 -0
  1377. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/commands/undisplay.rb +51 -0
  1378. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/commands/untracevar.rb +36 -0
  1379. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/commands/up.rb +45 -0
  1380. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/commands/var.rb +37 -0
  1381. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/commands/var/all.rb +41 -0
  1382. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/commands/var/args.rb +39 -0
  1383. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/commands/var/const.rb +49 -0
  1384. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/commands/var/global.rb +37 -0
  1385. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/commands/var/instance.rb +39 -0
  1386. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/commands/var/local.rb +39 -0
  1387. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/commands/where.rb +53 -0
  1388. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/context.rb +157 -0
  1389. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/core.rb +115 -0
  1390. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/errors.rb +29 -0
  1391. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/frame.rb +185 -0
  1392. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/helpers/bin.rb +47 -0
  1393. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/helpers/eval.rb +126 -0
  1394. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/helpers/file.rb +63 -0
  1395. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/helpers/frame.rb +75 -0
  1396. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/helpers/parse.rb +75 -0
  1397. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/helpers/path.rb +40 -0
  1398. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/helpers/reflection.rb +19 -0
  1399. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/helpers/string.rb +33 -0
  1400. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/helpers/thread.rb +67 -0
  1401. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/helpers/toggle.rb +62 -0
  1402. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/helpers/var.rb +54 -0
  1403. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/history.rb +130 -0
  1404. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/interface.rb +146 -0
  1405. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/interfaces/local_interface.rb +44 -0
  1406. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/interfaces/remote_interface.rb +50 -0
  1407. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/interfaces/script_interface.rb +33 -0
  1408. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/interfaces/test_interface.rb +67 -0
  1409. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/option_setter.rb +95 -0
  1410. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/printers/base.rb +68 -0
  1411. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/printers/plain.rb +44 -0
  1412. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/printers/texts/base.yml +115 -0
  1413. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/printers/texts/plain.yml +33 -0
  1414. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/processors/command_processor.rb +173 -0
  1415. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/processors/control_processor.rb +24 -0
  1416. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/processors/post_mortem_processor.rb +18 -0
  1417. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/processors/script_processor.rb +49 -0
  1418. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/remote.rb +85 -0
  1419. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/remote/client.rb +57 -0
  1420. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/remote/server.rb +47 -0
  1421. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/runner.rb +198 -0
  1422. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/setting.rb +79 -0
  1423. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/settings/autoirb.rb +29 -0
  1424. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/settings/autolist.rb +29 -0
  1425. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/settings/autopry.rb +29 -0
  1426. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/settings/autosave.rb +17 -0
  1427. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/settings/basename.rb +16 -0
  1428. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/settings/callstyle.rb +20 -0
  1429. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/settings/fullpath.rb +16 -0
  1430. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/settings/histfile.rb +20 -0
  1431. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/settings/histsize.rb +20 -0
  1432. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/settings/linetrace.rb +22 -0
  1433. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/settings/listsize.rb +21 -0
  1434. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/settings/post_mortem.rb +27 -0
  1435. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/settings/savefile.rb +20 -0
  1436. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/settings/stack_on_error.rb +15 -0
  1437. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/settings/width.rb +20 -0
  1438. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/source_file_formatter.rb +71 -0
  1439. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/subcommands.rb +54 -0
  1440. data/vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/version.rb +8 -0
  1441. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/MIT-LICENSE +22 -0
  1442. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/README_INDEX.rdoc +123 -0
  1443. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/bin/coderay +215 -0
  1444. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay.rb +284 -0
  1445. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/duo.rb +81 -0
  1446. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/encoders.rb +18 -0
  1447. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/encoders/_map.rb +17 -0
  1448. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/encoders/comment_filter.rb +25 -0
  1449. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/encoders/count.rb +39 -0
  1450. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/encoders/debug.rb +49 -0
  1451. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/encoders/debug_lint.rb +63 -0
  1452. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/encoders/div.rb +23 -0
  1453. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/encoders/encoder.rb +190 -0
  1454. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/encoders/filter.rb +58 -0
  1455. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/encoders/html.rb +333 -0
  1456. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/encoders/html/css.rb +65 -0
  1457. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/encoders/html/numbering.rb +108 -0
  1458. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/encoders/html/output.rb +166 -0
  1459. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/encoders/json.rb +83 -0
  1460. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/encoders/lines_of_code.rb +45 -0
  1461. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/encoders/lint.rb +59 -0
  1462. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/encoders/null.rb +18 -0
  1463. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/encoders/page.rb +24 -0
  1464. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/encoders/span.rb +23 -0
  1465. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/encoders/statistic.rb +95 -0
  1466. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/encoders/terminal.rb +195 -0
  1467. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/encoders/text.rb +46 -0
  1468. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/encoders/token_kind_filter.rb +111 -0
  1469. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/encoders/xml.rb +72 -0
  1470. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/encoders/yaml.rb +50 -0
  1471. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/for_redcloth.rb +95 -0
  1472. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/helpers/file_type.rb +151 -0
  1473. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/helpers/plugin.rb +55 -0
  1474. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/helpers/plugin_host.rb +221 -0
  1475. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/helpers/word_list.rb +72 -0
  1476. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/scanners.rb +27 -0
  1477. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/scanners/_map.rb +24 -0
  1478. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/scanners/c.rb +189 -0
  1479. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/scanners/clojure.rb +217 -0
  1480. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/scanners/cpp.rb +217 -0
  1481. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/scanners/css.rb +196 -0
  1482. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/scanners/debug.rb +75 -0
  1483. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/scanners/delphi.rb +144 -0
  1484. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/scanners/diff.rb +221 -0
  1485. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/scanners/erb.rb +81 -0
  1486. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/scanners/go.rb +208 -0
  1487. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/scanners/groovy.rb +268 -0
  1488. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/scanners/haml.rb +168 -0
  1489. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/scanners/html.rb +275 -0
  1490. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/scanners/java.rb +174 -0
  1491. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/scanners/java/builtin_types.rb +421 -0
  1492. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/scanners/java_script.rb +237 -0
  1493. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/scanners/json.rb +98 -0
  1494. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/scanners/lua.rb +280 -0
  1495. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/scanners/php.rb +527 -0
  1496. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/scanners/python.rb +287 -0
  1497. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/scanners/raydebug.rb +75 -0
  1498. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/scanners/ruby.rb +477 -0
  1499. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/scanners/ruby/patterns.rb +178 -0
  1500. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/scanners/ruby/string_state.rb +79 -0
  1501. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/scanners/sass.rb +232 -0
  1502. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/scanners/scanner.rb +337 -0
  1503. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/scanners/sql.rb +169 -0
  1504. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/scanners/taskpaper.rb +36 -0
  1505. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/scanners/text.rb +26 -0
  1506. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/scanners/xml.rb +17 -0
  1507. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/scanners/yaml.rb +140 -0
  1508. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/styles.rb +15 -0
  1509. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/styles/_map.rb +7 -0
  1510. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/styles/alpha.rb +153 -0
  1511. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/styles/style.rb +18 -0
  1512. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/token_kinds.rb +85 -0
  1513. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/tokens.rb +161 -0
  1514. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/tokens_proxy.rb +55 -0
  1515. data/vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/version.rb +3 -0
  1516. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/CHANGELOG.md +502 -0
  1517. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/Gemfile +42 -0
  1518. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/LICENSE.md +23 -0
  1519. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/README.md +384 -0
  1520. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/Rakefile +332 -0
  1521. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/ext/concurrent-ruby/ConcurrentRubyService.java +17 -0
  1522. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/ext/concurrent-ruby/com/concurrent_ruby/ext/AtomicReferenceLibrary.java +175 -0
  1523. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/ext/concurrent-ruby/com/concurrent_ruby/ext/JRubyMapBackendLibrary.java +248 -0
  1524. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/ext/concurrent-ruby/com/concurrent_ruby/ext/JavaAtomicBooleanLibrary.java +93 -0
  1525. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/ext/concurrent-ruby/com/concurrent_ruby/ext/JavaAtomicFixnumLibrary.java +113 -0
  1526. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/ext/concurrent-ruby/com/concurrent_ruby/ext/JavaSemaphoreLibrary.java +159 -0
  1527. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/ext/concurrent-ruby/com/concurrent_ruby/ext/SynchronizationLibrary.java +307 -0
  1528. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/ConcurrentHashMap.java +31 -0
  1529. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/ConcurrentHashMapV8.java +3863 -0
  1530. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/LongAdder.java +203 -0
  1531. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/Striped64.java +342 -0
  1532. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/nounsafe/ConcurrentHashMapV8.java +3800 -0
  1533. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/nounsafe/LongAdder.java +204 -0
  1534. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/nounsafe/Striped64.java +291 -0
  1535. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166y/ThreadLocalRandom.java +199 -0
  1536. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent-ruby.rb +1 -0
  1537. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent.rb +134 -0
  1538. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/agent.rb +587 -0
  1539. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/array.rb +66 -0
  1540. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/async.rb +459 -0
  1541. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/atom.rb +222 -0
  1542. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/atomic/abstract_thread_local_var.rb +66 -0
  1543. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/atomic/atomic_boolean.rb +126 -0
  1544. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/atomic/atomic_fixnum.rb +143 -0
  1545. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/atomic/atomic_markable_reference.rb +164 -0
  1546. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/atomic/atomic_reference.rb +204 -0
  1547. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/atomic/count_down_latch.rb +100 -0
  1548. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/atomic/cyclic_barrier.rb +128 -0
  1549. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/atomic/event.rb +109 -0
  1550. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/atomic/java_count_down_latch.rb +42 -0
  1551. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/atomic/java_thread_local_var.rb +37 -0
  1552. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/atomic/mutex_atomic_boolean.rb +62 -0
  1553. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/atomic/mutex_atomic_fixnum.rb +75 -0
  1554. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/atomic/mutex_count_down_latch.rb +44 -0
  1555. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/atomic/mutex_semaphore.rb +115 -0
  1556. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/atomic/read_write_lock.rb +254 -0
  1557. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/atomic/reentrant_read_write_lock.rb +379 -0
  1558. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/atomic/ruby_thread_local_var.rb +171 -0
  1559. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/atomic/semaphore.rb +145 -0
  1560. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/atomic/thread_local_var.rb +104 -0
  1561. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/atomic_reference/mutex_atomic.rb +56 -0
  1562. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/atomic_reference/numeric_cas_wrapper.rb +28 -0
  1563. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/atomics.rb +10 -0
  1564. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/collection/copy_on_notify_observer_set.rb +107 -0
  1565. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/collection/copy_on_write_observer_set.rb +111 -0
  1566. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/collection/java_non_concurrent_priority_queue.rb +84 -0
  1567. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/collection/lock_free_stack.rb +158 -0
  1568. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/collection/map/atomic_reference_map_backend.rb +927 -0
  1569. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/collection/map/mri_map_backend.rb +66 -0
  1570. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/collection/map/non_concurrent_map_backend.rb +140 -0
  1571. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/collection/map/synchronized_map_backend.rb +82 -0
  1572. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/collection/non_concurrent_priority_queue.rb +143 -0
  1573. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/collection/ruby_non_concurrent_priority_queue.rb +150 -0
  1574. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/concern/deprecation.rb +34 -0
  1575. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/concern/dereferenceable.rb +73 -0
  1576. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/concern/logging.rb +32 -0
  1577. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/concern/obligation.rb +220 -0
  1578. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/concern/observable.rb +110 -0
  1579. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/concurrent_ruby.jar +0 -0
  1580. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/configuration.rb +188 -0
  1581. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/constants.rb +8 -0
  1582. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/dataflow.rb +81 -0
  1583. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/delay.rb +199 -0
  1584. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/errors.rb +69 -0
  1585. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/exchanger.rb +352 -0
  1586. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/executor/abstract_executor_service.rb +128 -0
  1587. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/executor/cached_thread_pool.rb +62 -0
  1588. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/executor/executor_service.rb +185 -0
  1589. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/executor/fixed_thread_pool.rb +203 -0
  1590. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/executor/immediate_executor.rb +66 -0
  1591. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/executor/indirect_immediate_executor.rb +44 -0
  1592. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/executor/java_executor_service.rb +103 -0
  1593. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/executor/java_single_thread_executor.rb +30 -0
  1594. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/executor/java_thread_pool_executor.rb +124 -0
  1595. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/executor/ruby_executor_service.rb +76 -0
  1596. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/executor/ruby_single_thread_executor.rb +21 -0
  1597. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/executor/ruby_thread_pool_executor.rb +367 -0
  1598. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/executor/safe_task_executor.rb +35 -0
  1599. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/executor/serial_executor_service.rb +34 -0
  1600. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/executor/serialized_execution.rb +107 -0
  1601. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/executor/serialized_execution_delegator.rb +28 -0
  1602. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/executor/simple_executor_service.rb +100 -0
  1603. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/executor/single_thread_executor.rb +57 -0
  1604. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/executor/thread_pool_executor.rb +87 -0
  1605. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/executor/timer_set.rb +172 -0
  1606. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/executors.rb +20 -0
  1607. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/future.rb +141 -0
  1608. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/hash.rb +59 -0
  1609. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/immutable_struct.rb +101 -0
  1610. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/ivar.rb +207 -0
  1611. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/map.rb +337 -0
  1612. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/maybe.rb +229 -0
  1613. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/mutable_struct.rb +239 -0
  1614. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/mvar.rb +242 -0
  1615. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/options.rb +42 -0
  1616. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/promise.rb +579 -0
  1617. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/promises.rb +2167 -0
  1618. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/re_include.rb +58 -0
  1619. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/scheduled_task.rb +318 -0
  1620. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/set.rb +66 -0
  1621. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/settable_struct.rb +139 -0
  1622. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/synchronization.rb +30 -0
  1623. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/synchronization/abstract_lockable_object.rb +98 -0
  1624. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/synchronization/abstract_object.rb +24 -0
  1625. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/synchronization/abstract_struct.rb +171 -0
  1626. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/synchronization/condition.rb +60 -0
  1627. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/synchronization/jruby_lockable_object.rb +13 -0
  1628. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/synchronization/jruby_object.rb +45 -0
  1629. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/synchronization/lock.rb +36 -0
  1630. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/synchronization/lockable_object.rb +74 -0
  1631. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/synchronization/mri_object.rb +44 -0
  1632. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/synchronization/mutex_lockable_object.rb +76 -0
  1633. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/synchronization/object.rb +183 -0
  1634. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/synchronization/rbx_lockable_object.rb +65 -0
  1635. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/synchronization/rbx_object.rb +49 -0
  1636. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/synchronization/truffleruby_object.rb +47 -0
  1637. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/synchronization/volatile.rb +36 -0
  1638. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/thread_safe/synchronized_delegator.rb +50 -0
  1639. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/thread_safe/util.rb +16 -0
  1640. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/thread_safe/util/adder.rb +74 -0
  1641. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/thread_safe/util/cheap_lockable.rb +118 -0
  1642. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/thread_safe/util/data_structures.rb +63 -0
  1643. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/thread_safe/util/power_of_two_tuple.rb +38 -0
  1644. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/thread_safe/util/striped64.rb +246 -0
  1645. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/thread_safe/util/volatile.rb +75 -0
  1646. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/thread_safe/util/xor_shift_random.rb +50 -0
  1647. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/timer_task.rb +334 -0
  1648. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/tuple.rb +86 -0
  1649. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/tvar.rb +258 -0
  1650. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/utility/engine.rb +56 -0
  1651. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/utility/monotonic_time.rb +58 -0
  1652. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/utility/native_extension_loader.rb +79 -0
  1653. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/utility/native_integer.rb +53 -0
  1654. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/utility/processor_counter.rb +163 -0
  1655. data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/version.rb +3 -0
  1656. data/vendor/bundle/ruby/2.7.0/gems/crass-1.0.6/.gitignore +5 -0
  1657. data/vendor/bundle/ruby/2.7.0/gems/crass-1.0.6/.travis.yml +11 -0
  1658. data/vendor/bundle/ruby/2.7.0/gems/crass-1.0.6/.yardopts +1 -0
  1659. data/vendor/bundle/ruby/2.7.0/gems/crass-1.0.6/Gemfile +2 -0
  1660. data/vendor/bundle/ruby/2.7.0/gems/crass-1.0.6/HISTORY.md +128 -0
  1661. data/vendor/bundle/ruby/2.7.0/gems/crass-1.0.6/LICENSE +18 -0
  1662. data/vendor/bundle/ruby/2.7.0/gems/crass-1.0.6/README.md +192 -0
  1663. data/vendor/bundle/ruby/2.7.0/gems/crass-1.0.6/Rakefile +21 -0
  1664. data/vendor/bundle/ruby/2.7.0/gems/crass-1.0.6/crass.gemspec +31 -0
  1665. data/vendor/bundle/ruby/2.7.0/gems/crass-1.0.6/lib/crass.rb +22 -0
  1666. data/vendor/bundle/ruby/2.7.0/gems/crass-1.0.6/lib/crass/parser.rb +648 -0
  1667. data/vendor/bundle/ruby/2.7.0/gems/crass-1.0.6/lib/crass/scanner.rb +125 -0
  1668. data/vendor/bundle/ruby/2.7.0/gems/crass-1.0.6/lib/crass/token-scanner.rb +50 -0
  1669. data/vendor/bundle/ruby/2.7.0/gems/crass-1.0.6/lib/crass/tokenizer.rb +708 -0
  1670. data/vendor/bundle/ruby/2.7.0/gems/crass-1.0.6/lib/crass/version.rb +5 -0
  1671. data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.3/.rspec +1 -0
  1672. data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.3/Code-of-Conduct.md +74 -0
  1673. data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.3/Contributing.md +83 -0
  1674. data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.3/History.md +220 -0
  1675. data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.3/License.md +39 -0
  1676. data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.3/Manifest.txt +37 -0
  1677. data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.3/README.rdoc +84 -0
  1678. data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.3/Rakefile +57 -0
  1679. data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.3/autotest/discover.rb +1 -0
  1680. data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.3/bin/htmldiff +32 -0
  1681. data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.3/bin/ldiff +6 -0
  1682. data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.3/docs/COPYING.txt +339 -0
  1683. data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.3/docs/artistic.txt +127 -0
  1684. data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.3/lib/diff-lcs.rb +3 -0
  1685. data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.3/lib/diff/lcs.rb +725 -0
  1686. data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.3/lib/diff/lcs/array.rb +7 -0
  1687. data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.3/lib/diff/lcs/block.rb +37 -0
  1688. data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.3/lib/diff/lcs/callbacks.rb +322 -0
  1689. data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.3/lib/diff/lcs/change.rb +181 -0
  1690. data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.3/lib/diff/lcs/htmldiff.rb +149 -0
  1691. data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.3/lib/diff/lcs/hunk.rb +276 -0
  1692. data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.3/lib/diff/lcs/internals.rb +307 -0
  1693. data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.3/lib/diff/lcs/ldiff.rb +167 -0
  1694. data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.3/lib/diff/lcs/string.rb +5 -0
  1695. data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.3/spec/change_spec.rb +65 -0
  1696. data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.3/spec/diff_spec.rb +47 -0
  1697. data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.3/spec/fixtures/ds1.csv +50 -0
  1698. data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.3/spec/fixtures/ds2.csv +51 -0
  1699. data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.3/spec/hunk_spec.rb +72 -0
  1700. data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.3/spec/issues_spec.rb +49 -0
  1701. data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.3/spec/lcs_spec.rb +56 -0
  1702. data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.3/spec/ldiff_spec.rb +47 -0
  1703. data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.3/spec/patch_spec.rb +422 -0
  1704. data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.3/spec/sdiff_spec.rb +214 -0
  1705. data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.3/spec/spec_helper.rb +321 -0
  1706. data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.3/spec/traverse_balanced_spec.rb +310 -0
  1707. data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.3/spec/traverse_sequences_spec.rb +139 -0
  1708. data/vendor/bundle/ruby/2.7.0/gems/erubi-1.9.0/CHANGELOG +79 -0
  1709. data/vendor/bundle/ruby/2.7.0/gems/erubi-1.9.0/MIT-LICENSE +21 -0
  1710. data/vendor/bundle/ruby/2.7.0/gems/erubi-1.9.0/README.rdoc +109 -0
  1711. data/vendor/bundle/ruby/2.7.0/gems/erubi-1.9.0/Rakefile +78 -0
  1712. data/vendor/bundle/ruby/2.7.0/gems/erubi-1.9.0/lib/erubi.rb +211 -0
  1713. data/vendor/bundle/ruby/2.7.0/gems/erubi-1.9.0/lib/erubi/capture_end.rb +52 -0
  1714. data/vendor/bundle/ruby/2.7.0/gems/erubi-1.9.0/test/test.rb +780 -0
  1715. data/vendor/bundle/ruby/2.7.0/gems/globalid-0.4.2/MIT-LICENSE +21 -0
  1716. data/vendor/bundle/ruby/2.7.0/gems/globalid-0.4.2/README.md +174 -0
  1717. data/vendor/bundle/ruby/2.7.0/gems/globalid-0.4.2/lib/global_id.rb +19 -0
  1718. data/vendor/bundle/ruby/2.7.0/gems/globalid-0.4.2/lib/global_id/global_id.rb +76 -0
  1719. data/vendor/bundle/ruby/2.7.0/gems/globalid-0.4.2/lib/global_id/identification.rb +25 -0
  1720. data/vendor/bundle/ruby/2.7.0/gems/globalid-0.4.2/lib/global_id/locator.rb +187 -0
  1721. data/vendor/bundle/ruby/2.7.0/gems/globalid-0.4.2/lib/global_id/railtie.rb +43 -0
  1722. data/vendor/bundle/ruby/2.7.0/gems/globalid-0.4.2/lib/global_id/signed_global_id.rb +85 -0
  1723. data/vendor/bundle/ruby/2.7.0/gems/globalid-0.4.2/lib/global_id/uri/gid.rb +177 -0
  1724. data/vendor/bundle/ruby/2.7.0/gems/globalid-0.4.2/lib/global_id/verifier.rb +15 -0
  1725. data/vendor/bundle/ruby/2.7.0/gems/globalid-0.4.2/lib/globalid.rb +2 -0
  1726. data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.2/MIT-LICENSE +20 -0
  1727. data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.2/README.md +125 -0
  1728. data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.2/lib/i18n.rb +414 -0
  1729. data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.2/lib/i18n/backend.rb +21 -0
  1730. data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.2/lib/i18n/backend/base.rb +284 -0
  1731. data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.2/lib/i18n/backend/cache.rb +113 -0
  1732. data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.2/lib/i18n/backend/cache_file.rb +36 -0
  1733. data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.2/lib/i18n/backend/cascade.rb +56 -0
  1734. data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.2/lib/i18n/backend/chain.rb +131 -0
  1735. data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.2/lib/i18n/backend/fallbacks.rb +84 -0
  1736. data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.2/lib/i18n/backend/flatten.rb +115 -0
  1737. data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.2/lib/i18n/backend/gettext.rb +85 -0
  1738. data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.2/lib/i18n/backend/interpolation_compiler.rb +123 -0
  1739. data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.2/lib/i18n/backend/key_value.rb +206 -0
  1740. data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.2/lib/i18n/backend/memoize.rb +54 -0
  1741. data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.2/lib/i18n/backend/metadata.rb +71 -0
  1742. data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.2/lib/i18n/backend/pluralization.rb +55 -0
  1743. data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.2/lib/i18n/backend/simple.rb +109 -0
  1744. data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.2/lib/i18n/backend/transliterator.rb +108 -0
  1745. data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.2/lib/i18n/config.rb +165 -0
  1746. data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.2/lib/i18n/core_ext/hash.rb +47 -0
  1747. data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.2/lib/i18n/exceptions.rb +111 -0
  1748. data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.2/lib/i18n/gettext.rb +28 -0
  1749. data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.2/lib/i18n/gettext/helpers.rb +75 -0
  1750. data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.2/lib/i18n/gettext/po_parser.rb +329 -0
  1751. data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.2/lib/i18n/interpolate/ruby.rb +39 -0
  1752. data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.2/lib/i18n/locale.rb +8 -0
  1753. data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.2/lib/i18n/locale/fallbacks.rb +97 -0
  1754. data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.2/lib/i18n/locale/tag.rb +28 -0
  1755. data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.2/lib/i18n/locale/tag/parents.rb +22 -0
  1756. data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.2/lib/i18n/locale/tag/rfc4646.rb +74 -0
  1757. data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.2/lib/i18n/locale/tag/simple.rb +39 -0
  1758. data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.2/lib/i18n/middleware.rb +17 -0
  1759. data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.2/lib/i18n/tests.rb +14 -0
  1760. data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.2/lib/i18n/tests/basics.rb +60 -0
  1761. data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.2/lib/i18n/tests/defaults.rb +52 -0
  1762. data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.2/lib/i18n/tests/interpolation.rb +163 -0
  1763. data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.2/lib/i18n/tests/link.rb +66 -0
  1764. data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.2/lib/i18n/tests/localization.rb +19 -0
  1765. data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.2/lib/i18n/tests/localization/date.rb +117 -0
  1766. data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.2/lib/i18n/tests/localization/date_time.rb +103 -0
  1767. data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.2/lib/i18n/tests/localization/procs.rb +116 -0
  1768. data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.2/lib/i18n/tests/localization/time.rb +103 -0
  1769. data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.2/lib/i18n/tests/lookup.rb +81 -0
  1770. data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.2/lib/i18n/tests/pluralization.rb +35 -0
  1771. data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.2/lib/i18n/tests/procs.rb +55 -0
  1772. data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.2/lib/i18n/version.rb +5 -0
  1773. data/vendor/bundle/ruby/2.7.0/gems/loofah-2.4.0/.gemtest +0 -0
  1774. data/vendor/bundle/ruby/2.7.0/gems/loofah-2.4.0/CHANGELOG.md +345 -0
  1775. data/vendor/bundle/ruby/2.7.0/gems/loofah-2.4.0/Gemfile +23 -0
  1776. data/vendor/bundle/ruby/2.7.0/gems/loofah-2.4.0/MIT-LICENSE.txt +23 -0
  1777. data/vendor/bundle/ruby/2.7.0/gems/loofah-2.4.0/Manifest.txt +41 -0
  1778. data/vendor/bundle/ruby/2.7.0/gems/loofah-2.4.0/README.md +363 -0
  1779. data/vendor/bundle/ruby/2.7.0/gems/loofah-2.4.0/Rakefile +91 -0
  1780. data/vendor/bundle/ruby/2.7.0/gems/loofah-2.4.0/SECURITY.md +18 -0
  1781. data/vendor/bundle/ruby/2.7.0/gems/loofah-2.4.0/benchmark/benchmark.rb +149 -0
  1782. data/vendor/bundle/ruby/2.7.0/gems/loofah-2.4.0/benchmark/fragment.html +96 -0
  1783. data/vendor/bundle/ruby/2.7.0/gems/loofah-2.4.0/benchmark/helper.rb +73 -0
  1784. data/vendor/bundle/ruby/2.7.0/gems/loofah-2.4.0/benchmark/www.slashdot.com.html +2560 -0
  1785. data/vendor/bundle/ruby/2.7.0/gems/loofah-2.4.0/lib/loofah.rb +84 -0
  1786. data/vendor/bundle/ruby/2.7.0/gems/loofah-2.4.0/lib/loofah/elements.rb +93 -0
  1787. data/vendor/bundle/ruby/2.7.0/gems/loofah-2.4.0/lib/loofah/helpers.rb +104 -0
  1788. data/vendor/bundle/ruby/2.7.0/gems/loofah-2.4.0/lib/loofah/html/document.rb +19 -0
  1789. data/vendor/bundle/ruby/2.7.0/gems/loofah-2.4.0/lib/loofah/html/document_fragment.rb +41 -0
  1790. data/vendor/bundle/ruby/2.7.0/gems/loofah-2.4.0/lib/loofah/html5/libxml2_workarounds.rb +27 -0
  1791. data/vendor/bundle/ruby/2.7.0/gems/loofah-2.4.0/lib/loofah/html5/safelist.rb +798 -0
  1792. data/vendor/bundle/ruby/2.7.0/gems/loofah-2.4.0/lib/loofah/html5/scrub.rb +134 -0
  1793. data/vendor/bundle/ruby/2.7.0/gems/loofah-2.4.0/lib/loofah/instance_methods.rb +128 -0
  1794. data/vendor/bundle/ruby/2.7.0/gems/loofah-2.4.0/lib/loofah/metahelpers.rb +14 -0
  1795. data/vendor/bundle/ruby/2.7.0/gems/loofah-2.4.0/lib/loofah/scrubber.rb +134 -0
  1796. data/vendor/bundle/ruby/2.7.0/gems/loofah-2.4.0/lib/loofah/scrubbers.rb +298 -0
  1797. data/vendor/bundle/ruby/2.7.0/gems/loofah-2.4.0/lib/loofah/xml/document.rb +14 -0
  1798. data/vendor/bundle/ruby/2.7.0/gems/loofah-2.4.0/lib/loofah/xml/document_fragment.rb +24 -0
  1799. data/vendor/bundle/ruby/2.7.0/gems/loofah-2.4.0/test/assets/msword.html +63 -0
  1800. data/vendor/bundle/ruby/2.7.0/gems/loofah-2.4.0/test/assets/testdata_sanitizer_tests1.dat +502 -0
  1801. data/vendor/bundle/ruby/2.7.0/gems/loofah-2.4.0/test/helper.rb +18 -0
  1802. data/vendor/bundle/ruby/2.7.0/gems/loofah-2.4.0/test/html5/test_sanitizer.rb +414 -0
  1803. data/vendor/bundle/ruby/2.7.0/gems/loofah-2.4.0/test/html5/test_scrub.rb +10 -0
  1804. data/vendor/bundle/ruby/2.7.0/gems/loofah-2.4.0/test/integration/test_ad_hoc.rb +220 -0
  1805. data/vendor/bundle/ruby/2.7.0/gems/loofah-2.4.0/test/integration/test_helpers.rb +43 -0
  1806. data/vendor/bundle/ruby/2.7.0/gems/loofah-2.4.0/test/integration/test_html.rb +72 -0
  1807. data/vendor/bundle/ruby/2.7.0/gems/loofah-2.4.0/test/integration/test_scrubbers.rb +400 -0
  1808. data/vendor/bundle/ruby/2.7.0/gems/loofah-2.4.0/test/integration/test_xml.rb +55 -0
  1809. data/vendor/bundle/ruby/2.7.0/gems/loofah-2.4.0/test/unit/test_api.rb +142 -0
  1810. data/vendor/bundle/ruby/2.7.0/gems/loofah-2.4.0/test/unit/test_encoding.rb +20 -0
  1811. data/vendor/bundle/ruby/2.7.0/gems/loofah-2.4.0/test/unit/test_helpers.rb +62 -0
  1812. data/vendor/bundle/ruby/2.7.0/gems/loofah-2.4.0/test/unit/test_scrubber.rb +229 -0
  1813. data/vendor/bundle/ruby/2.7.0/gems/loofah-2.4.0/test/unit/test_scrubbers.rb +14 -0
  1814. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/MIT-LICENSE +20 -0
  1815. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/README.md +695 -0
  1816. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail.rb +85 -0
  1817. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/attachments_list.rb +110 -0
  1818. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/body.rb +328 -0
  1819. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/check_delivery_params.rb +60 -0
  1820. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/configuration.rb +78 -0
  1821. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/constants.rb +57 -0
  1822. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/core_extensions/smtp.rb +28 -0
  1823. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/core_extensions/string.rb +17 -0
  1824. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/elements.rb +15 -0
  1825. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/elements/address.rb +258 -0
  1826. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/elements/address_list.rb +34 -0
  1827. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/elements/content_disposition_element.rb +20 -0
  1828. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/elements/content_location_element.rb +17 -0
  1829. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/elements/content_transfer_encoding_element.rb +13 -0
  1830. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/elements/content_type_element.rb +21 -0
  1831. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/elements/date_time_element.rb +15 -0
  1832. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/elements/envelope_from_element.rb +33 -0
  1833. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/elements/message_ids_element.rb +22 -0
  1834. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/elements/mime_version_element.rb +15 -0
  1835. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/elements/phrase_list.rb +14 -0
  1836. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/elements/received_element.rb +21 -0
  1837. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/encodings.rb +343 -0
  1838. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/encodings/7bit.rb +22 -0
  1839. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/encodings/8bit.rb +18 -0
  1840. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/encodings/base64.rb +38 -0
  1841. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/encodings/binary.rb +13 -0
  1842. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/encodings/identity.rb +24 -0
  1843. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/encodings/quoted_printable.rb +45 -0
  1844. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/encodings/transfer_encoding.rb +77 -0
  1845. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/encodings/unix_to_unix.rb +20 -0
  1846. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/envelope.rb +31 -0
  1847. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/field.rb +299 -0
  1848. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/field_list.rb +34 -0
  1849. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/fields.rb +36 -0
  1850. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/fields/bcc_field.rb +68 -0
  1851. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/fields/cc_field.rb +55 -0
  1852. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/fields/comments_field.rb +42 -0
  1853. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/fields/common/address_container.rb +17 -0
  1854. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/fields/common/common_address.rb +161 -0
  1855. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/fields/common/common_date.rb +36 -0
  1856. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/fields/common/common_field.rb +52 -0
  1857. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/fields/common/common_message_id.rb +49 -0
  1858. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/fields/common/parameter_hash.rb +59 -0
  1859. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/fields/content_description_field.rb +20 -0
  1860. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/fields/content_disposition_field.rb +71 -0
  1861. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/fields/content_id_field.rb +63 -0
  1862. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/fields/content_location_field.rb +43 -0
  1863. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/fields/content_transfer_encoding_field.rb +45 -0
  1864. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/fields/content_type_field.rb +197 -0
  1865. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/fields/date_field.rb +57 -0
  1866. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/fields/from_field.rb +55 -0
  1867. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/fields/in_reply_to_field.rb +57 -0
  1868. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/fields/keywords_field.rb +44 -0
  1869. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/fields/message_id_field.rb +83 -0
  1870. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/fields/mime_version_field.rb +54 -0
  1871. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/fields/optional_field.rb +17 -0
  1872. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/fields/received_field.rb +76 -0
  1873. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/fields/references_field.rb +57 -0
  1874. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/fields/reply_to_field.rb +55 -0
  1875. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/fields/resent_bcc_field.rb +55 -0
  1876. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/fields/resent_cc_field.rb +55 -0
  1877. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/fields/resent_date_field.rb +35 -0
  1878. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/fields/resent_from_field.rb +55 -0
  1879. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/fields/resent_message_id_field.rb +35 -0
  1880. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/fields/resent_sender_field.rb +62 -0
  1881. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/fields/resent_to_field.rb +55 -0
  1882. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/fields/return_path_field.rb +65 -0
  1883. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/fields/sender_field.rb +67 -0
  1884. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/fields/structured_field.rb +52 -0
  1885. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/fields/subject_field.rb +17 -0
  1886. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/fields/to_field.rb +55 -0
  1887. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/fields/unstructured_field.rb +222 -0
  1888. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/header.rb +278 -0
  1889. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/indifferent_hash.rb +147 -0
  1890. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/mail.rb +262 -0
  1891. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/matchers/attachment_matchers.rb +29 -0
  1892. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/matchers/has_sent_mail.rb +201 -0
  1893. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/message.rb +2170 -0
  1894. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/multibyte.rb +92 -0
  1895. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/multibyte/chars.rb +476 -0
  1896. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/multibyte/unicode.rb +405 -0
  1897. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/multibyte/utils.rb +61 -0
  1898. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/network.rb +16 -0
  1899. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/network/delivery_methods/exim.rb +49 -0
  1900. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/network/delivery_methods/file_delivery.rb +42 -0
  1901. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/network/delivery_methods/logger_delivery.rb +37 -0
  1902. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/network/delivery_methods/sendmail.rb +95 -0
  1903. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/network/delivery_methods/smtp.rb +149 -0
  1904. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/network/delivery_methods/smtp_connection.rb +66 -0
  1905. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/network/delivery_methods/test_mailer.rb +42 -0
  1906. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/network/retriever_methods/base.rb +64 -0
  1907. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/network/retriever_methods/imap.rb +187 -0
  1908. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/network/retriever_methods/pop3.rb +143 -0
  1909. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/network/retriever_methods/test_retriever.rb +44 -0
  1910. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/parser_tools.rb +15 -0
  1911. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/parsers.rb +19 -0
  1912. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/parsers/address_lists_parser.rb +33236 -0
  1913. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/parsers/address_lists_parser.rl +172 -0
  1914. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/parsers/content_disposition_parser.rb +895 -0
  1915. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/parsers/content_disposition_parser.rl +82 -0
  1916. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/parsers/content_location_parser.rb +816 -0
  1917. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/parsers/content_location_parser.rl +71 -0
  1918. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/parsers/content_transfer_encoding_parser.rb +516 -0
  1919. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/parsers/content_transfer_encoding_parser.rl +64 -0
  1920. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/parsers/content_type_parser.rb +1042 -0
  1921. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/parsers/content_type_parser.rl +83 -0
  1922. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/parsers/date_time_parser.rb +885 -0
  1923. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/parsers/date_time_parser.rl +62 -0
  1924. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/parsers/envelope_from_parser.rb +3581 -0
  1925. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/parsers/envelope_from_parser.rl +82 -0
  1926. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/parsers/message_ids_parser.rb +2854 -0
  1927. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/parsers/message_ids_parser.rl +82 -0
  1928. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/parsers/mime_version_parser.rb +507 -0
  1929. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/parsers/mime_version_parser.rl +61 -0
  1930. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/parsers/phrase_lists_parser.rb +878 -0
  1931. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/parsers/phrase_lists_parser.rl +83 -0
  1932. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/parsers/received_parser.rb +8776 -0
  1933. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/parsers/received_parser.rl +84 -0
  1934. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/parsers/rfc2045_content_transfer_encoding.rl +13 -0
  1935. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/parsers/rfc2045_content_type.rl +25 -0
  1936. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/parsers/rfc2045_mime.rl +16 -0
  1937. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/parsers/rfc2183_content_disposition.rl +15 -0
  1938. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/parsers/rfc3629_utf8.rl +19 -0
  1939. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/parsers/rfc5234_abnf_core_rules.rl +22 -0
  1940. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/parsers/rfc5322.rl +59 -0
  1941. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/parsers/rfc5322_address.rl +72 -0
  1942. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/parsers/rfc5322_date_time.rl +37 -0
  1943. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/parsers/rfc5322_lexical_tokens.rl +60 -0
  1944. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/part.rb +123 -0
  1945. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/parts_list.rb +74 -0
  1946. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/utilities.rb +324 -0
  1947. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/values/unicode_tables.dat +0 -0
  1948. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/version.rb +17 -0
  1949. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/version_specific/ruby_1_8.rb +163 -0
  1950. data/vendor/bundle/ruby/2.7.0/gems/mail-2.7.1/lib/mail/version_specific/ruby_1_9.rb +278 -0
  1951. data/vendor/bundle/ruby/2.7.0/gems/marcel-0.3.3/MIT-LICENSE +20 -0
  1952. data/vendor/bundle/ruby/2.7.0/gems/marcel-0.3.3/README.md +50 -0
  1953. data/vendor/bundle/ruby/2.7.0/gems/marcel-0.3.3/lib/marcel.rb +4 -0
  1954. data/vendor/bundle/ruby/2.7.0/gems/marcel-0.3.3/lib/marcel/mime_type.rb +98 -0
  1955. data/vendor/bundle/ruby/2.7.0/gems/marcel-0.3.3/lib/marcel/mime_type/definitions.rb +39 -0
  1956. data/vendor/bundle/ruby/2.7.0/gems/marcel-0.3.3/lib/marcel/version.rb +3 -0
  1957. data/vendor/bundle/ruby/2.7.0/gems/method_source-0.9.2/.gemtest +0 -0
  1958. data/vendor/bundle/ruby/2.7.0/gems/method_source-0.9.2/.travis.yml +31 -0
  1959. data/vendor/bundle/ruby/2.7.0/gems/method_source-0.9.2/.yardopts +1 -0
  1960. data/vendor/bundle/ruby/2.7.0/gems/method_source-0.9.2/Gemfile +2 -0
  1961. data/vendor/bundle/ruby/2.7.0/gems/method_source-0.9.2/LICENSE +25 -0
  1962. data/vendor/bundle/ruby/2.7.0/gems/method_source-0.9.2/README.markdown +91 -0
  1963. data/vendor/bundle/ruby/2.7.0/gems/method_source-0.9.2/Rakefile +81 -0
  1964. data/vendor/bundle/ruby/2.7.0/gems/method_source-0.9.2/lib/method_source.rb +141 -0
  1965. data/vendor/bundle/ruby/2.7.0/gems/method_source-0.9.2/lib/method_source/code_helpers.rb +154 -0
  1966. data/vendor/bundle/ruby/2.7.0/gems/method_source-0.9.2/lib/method_source/source_location.rb +138 -0
  1967. data/vendor/bundle/ruby/2.7.0/gems/method_source-0.9.2/lib/method_source/version.rb +3 -0
  1968. data/vendor/bundle/ruby/2.7.0/gems/method_source-0.9.2/method_source.gemspec +35 -0
  1969. data/vendor/bundle/ruby/2.7.0/gems/method_source-0.9.2/spec/method_source/code_helpers_spec.rb +43 -0
  1970. data/vendor/bundle/ruby/2.7.0/gems/method_source-0.9.2/spec/method_source_spec.rb +143 -0
  1971. data/vendor/bundle/ruby/2.7.0/gems/method_source-0.9.2/spec/spec_helper.rb +101 -0
  1972. data/vendor/bundle/ruby/2.7.0/gems/mimemagic-0.3.4/.gitignore +5 -0
  1973. data/vendor/bundle/ruby/2.7.0/gems/mimemagic-0.3.4/.travis.yml +20 -0
  1974. data/vendor/bundle/ruby/2.7.0/gems/mimemagic-0.3.4/.yardopts +2 -0
  1975. data/vendor/bundle/ruby/2.7.0/gems/mimemagic-0.3.4/CHANGELOG.md +92 -0
  1976. data/vendor/bundle/ruby/2.7.0/gems/mimemagic-0.3.4/Gemfile +3 -0
  1977. data/vendor/bundle/ruby/2.7.0/gems/mimemagic-0.3.4/LICENSE +21 -0
  1978. data/vendor/bundle/ruby/2.7.0/gems/mimemagic-0.3.4/README.md +51 -0
  1979. data/vendor/bundle/ruby/2.7.0/gems/mimemagic-0.3.4/Rakefile +16 -0
  1980. data/vendor/bundle/ruby/2.7.0/gems/mimemagic-0.3.4/lib/mimemagic.rb +138 -0
  1981. data/vendor/bundle/ruby/2.7.0/gems/mimemagic-0.3.4/lib/mimemagic/overlay.rb +8 -0
  1982. data/vendor/bundle/ruby/2.7.0/gems/mimemagic-0.3.4/lib/mimemagic/tables.rb +2067 -0
  1983. data/vendor/bundle/ruby/2.7.0/gems/mimemagic-0.3.4/lib/mimemagic/version.rb +5 -0
  1984. data/vendor/bundle/ruby/2.7.0/gems/mimemagic-0.3.4/mimemagic.gemspec +29 -0
  1985. data/vendor/bundle/ruby/2.7.0/gems/mimemagic-0.3.4/script/freedesktop.org.xml +41233 -0
  1986. data/vendor/bundle/ruby/2.7.0/gems/mimemagic-0.3.4/script/generate-mime.rb +163 -0
  1987. data/vendor/bundle/ruby/2.7.0/gems/mimemagic-0.3.4/test/files/application.gzip +0 -0
  1988. data/vendor/bundle/ruby/2.7.0/gems/mimemagic-0.3.4/test/files/application.vnd.openxmlformats-officedocument.spreadsheetml{gdocs}.sheet +0 -0
  1989. data/vendor/bundle/ruby/2.7.0/gems/mimemagic-0.3.4/test/files/application.vnd.openxmlformats-officedocument.spreadsheetml{msoffice}.sheet +0 -0
  1990. data/vendor/bundle/ruby/2.7.0/gems/mimemagic-0.3.4/test/files/application.vnd.openxmlformats-officedocument.spreadsheetml{rubyxl}.sheet +0 -0
  1991. data/vendor/bundle/ruby/2.7.0/gems/mimemagic-0.3.4/test/files/application.x-bzip +0 -0
  1992. data/vendor/bundle/ruby/2.7.0/gems/mimemagic-0.3.4/test/files/application.x-ruby +2 -0
  1993. data/vendor/bundle/ruby/2.7.0/gems/mimemagic-0.3.4/test/files/application.x-tar +0 -0
  1994. data/vendor/bundle/ruby/2.7.0/gems/mimemagic-0.3.4/test/files/application.zip +0 -0
  1995. data/vendor/bundle/ruby/2.7.0/gems/mimemagic-0.3.4/test/files/image.jpeg +0 -0
  1996. data/vendor/bundle/ruby/2.7.0/gems/mimemagic-0.3.4/test/files/image.png +0 -0
  1997. data/vendor/bundle/ruby/2.7.0/gems/mimemagic-0.3.4/test/mimemagic_test.rb +160 -0
  1998. data/vendor/bundle/ruby/2.7.0/gems/mini_mime-1.0.2/.gitignore +9 -0
  1999. data/vendor/bundle/ruby/2.7.0/gems/mini_mime-1.0.2/.travis.yml +20 -0
  2000. data/vendor/bundle/ruby/2.7.0/gems/mini_mime-1.0.2/CHANGELOG +37 -0
  2001. data/vendor/bundle/ruby/2.7.0/gems/mini_mime-1.0.2/CODE_OF_CONDUCT.md +74 -0
  2002. data/vendor/bundle/ruby/2.7.0/gems/mini_mime-1.0.2/Gemfile +8 -0
  2003. data/vendor/bundle/ruby/2.7.0/gems/mini_mime-1.0.2/LICENSE.txt +21 -0
  2004. data/vendor/bundle/ruby/2.7.0/gems/mini_mime-1.0.2/README.md +111 -0
  2005. data/vendor/bundle/ruby/2.7.0/gems/mini_mime-1.0.2/Rakefile +96 -0
  2006. data/vendor/bundle/ruby/2.7.0/gems/mini_mime-1.0.2/bench/bench.rb +52 -0
  2007. data/vendor/bundle/ruby/2.7.0/gems/mini_mime-1.0.2/bin/console +14 -0
  2008. data/vendor/bundle/ruby/2.7.0/gems/mini_mime-1.0.2/bin/setup +8 -0
  2009. data/vendor/bundle/ruby/2.7.0/gems/mini_mime-1.0.2/lib/db/content_type_mime.db +853 -0
  2010. data/vendor/bundle/ruby/2.7.0/gems/mini_mime-1.0.2/lib/db/ext_mime.db +1172 -0
  2011. data/vendor/bundle/ruby/2.7.0/gems/mini_mime-1.0.2/lib/mini_mime.rb +166 -0
  2012. data/vendor/bundle/ruby/2.7.0/gems/mini_mime-1.0.2/lib/mini_mime/version.rb +3 -0
  2013. data/vendor/bundle/ruby/2.7.0/gems/mini_mime-1.0.2/mini_mime.gemspec +28 -0
  2014. data/vendor/bundle/ruby/2.7.0/gems/mini_portile2-2.4.0/.concourse.yml +83 -0
  2015. data/vendor/bundle/ruby/2.7.0/gems/mini_portile2-2.4.0/.gitignore +7 -0
  2016. data/vendor/bundle/ruby/2.7.0/gems/mini_portile2-2.4.0/.travis.yml +15 -0
  2017. data/vendor/bundle/ruby/2.7.0/gems/mini_portile2-2.4.0/CHANGELOG.md +209 -0
  2018. data/vendor/bundle/ruby/2.7.0/gems/mini_portile2-2.4.0/Gemfile +4 -0
  2019. data/vendor/bundle/ruby/2.7.0/gems/mini_portile2-2.4.0/LICENSE.txt +20 -0
  2020. data/vendor/bundle/ruby/2.7.0/gems/mini_portile2-2.4.0/README.md +245 -0
  2021. data/vendor/bundle/ruby/2.7.0/gems/mini_portile2-2.4.0/Rakefile +29 -0
  2022. data/vendor/bundle/ruby/2.7.0/gems/mini_portile2-2.4.0/appveyor.yml +25 -0
  2023. data/vendor/bundle/ruby/2.7.0/gems/mini_portile2-2.4.0/concourse/mini_portile.yml +141 -0
  2024. data/vendor/bundle/ruby/2.7.0/gems/mini_portile2-2.4.0/concourse/tasks/rake-test/task.ps1 +11 -0
  2025. data/vendor/bundle/ruby/2.7.0/gems/mini_portile2-2.4.0/concourse/tasks/rake-test/task.sh +13 -0
  2026. data/vendor/bundle/ruby/2.7.0/gems/mini_portile2-2.4.0/lib/mini_portile2.rb +3 -0
  2027. data/vendor/bundle/ruby/2.7.0/gems/mini_portile2-2.4.0/lib/mini_portile2/mini_portile.rb +556 -0
  2028. data/vendor/bundle/ruby/2.7.0/gems/mini_portile2-2.4.0/lib/mini_portile2/mini_portile_cmake.rb +40 -0
  2029. data/vendor/bundle/ruby/2.7.0/gems/mini_portile2-2.4.0/lib/mini_portile2/version.rb +3 -0
  2030. data/vendor/bundle/ruby/2.7.0/gems/mini_portile2-2.4.0/mini_portile2.gemspec +42 -0
  2031. data/vendor/bundle/ruby/2.7.0/gems/mini_portile2-2.4.0/test/assets/git/config +4 -0
  2032. data/vendor/bundle/ruby/2.7.0/gems/mini_portile2-2.4.0/test/assets/gpg-fixtures/data +1 -0
  2033. data/vendor/bundle/ruby/2.7.0/gems/mini_portile2-2.4.0/test/assets/gpg-fixtures/data.asc +9 -0
  2034. data/vendor/bundle/ruby/2.7.0/gems/mini_portile2-2.4.0/test/assets/gpg-fixtures/data.invalid.asc +9 -0
  2035. data/vendor/bundle/ruby/2.7.0/gems/mini_portile2-2.4.0/test/assets/patch 1.diff +7 -0
  2036. data/vendor/bundle/ruby/2.7.0/gems/mini_portile2-2.4.0/test/assets/test mini portile-1.0.0/configure +11 -0
  2037. data/vendor/bundle/ruby/2.7.0/gems/mini_portile2-2.4.0/test/assets/test-cmake-1.0/CMakeLists.txt +7 -0
  2038. data/vendor/bundle/ruby/2.7.0/gems/mini_portile2-2.4.0/test/assets/test-cmake-1.0/hello.c +4 -0
  2039. data/vendor/bundle/ruby/2.7.0/gems/mini_portile2-2.4.0/test/assets/test-download-archive.tar.gz +1 -0
  2040. data/vendor/bundle/ruby/2.7.0/gems/mini_portile2-2.4.0/test/helper.rb +60 -0
  2041. data/vendor/bundle/ruby/2.7.0/gems/mini_portile2-2.4.0/test/test_cmake.rb +64 -0
  2042. data/vendor/bundle/ruby/2.7.0/gems/mini_portile2-2.4.0/test/test_cook.rb +115 -0
  2043. data/vendor/bundle/ruby/2.7.0/gems/mini_portile2-2.4.0/test/test_digest.rb +215 -0
  2044. data/vendor/bundle/ruby/2.7.0/gems/mini_portile2-2.4.0/test/test_download.rb +71 -0
  2045. data/vendor/bundle/ruby/2.7.0/gems/mini_portile2-2.4.0/test/test_proxy.rb +121 -0
  2046. data/vendor/bundle/ruby/2.7.0/gems/minitest-5.14.0/.autotest +34 -0
  2047. data/vendor/bundle/ruby/2.7.0/gems/minitest-5.14.0/History.rdoc +1380 -0
  2048. data/vendor/bundle/ruby/2.7.0/gems/minitest-5.14.0/Manifest.txt +27 -0
  2049. data/vendor/bundle/ruby/2.7.0/gems/minitest-5.14.0/README.rdoc +764 -0
  2050. data/vendor/bundle/ruby/2.7.0/gems/minitest-5.14.0/Rakefile +72 -0
  2051. data/vendor/bundle/ruby/2.7.0/gems/minitest-5.14.0/design_rationale.rb +52 -0
  2052. data/vendor/bundle/ruby/2.7.0/gems/minitest-5.14.0/lib/hoe/minitest.rb +32 -0
  2053. data/vendor/bundle/ruby/2.7.0/gems/minitest-5.14.0/lib/minitest.rb +1053 -0
  2054. data/vendor/bundle/ruby/2.7.0/gems/minitest-5.14.0/lib/minitest/assertions.rb +807 -0
  2055. data/vendor/bundle/ruby/2.7.0/gems/minitest-5.14.0/lib/minitest/autorun.rb +13 -0
  2056. data/vendor/bundle/ruby/2.7.0/gems/minitest-5.14.0/lib/minitest/benchmark.rb +455 -0
  2057. data/vendor/bundle/ruby/2.7.0/gems/minitest-5.14.0/lib/minitest/expectations.rb +303 -0
  2058. data/vendor/bundle/ruby/2.7.0/gems/minitest-5.14.0/lib/minitest/hell.rb +11 -0
  2059. data/vendor/bundle/ruby/2.7.0/gems/minitest-5.14.0/lib/minitest/mock.rb +240 -0
  2060. data/vendor/bundle/ruby/2.7.0/gems/minitest-5.14.0/lib/minitest/parallel.rb +70 -0
  2061. data/vendor/bundle/ruby/2.7.0/gems/minitest-5.14.0/lib/minitest/pride.rb +4 -0
  2062. data/vendor/bundle/ruby/2.7.0/gems/minitest-5.14.0/lib/minitest/pride_plugin.rb +142 -0
  2063. data/vendor/bundle/ruby/2.7.0/gems/minitest-5.14.0/lib/minitest/spec.rb +342 -0
  2064. data/vendor/bundle/ruby/2.7.0/gems/minitest-5.14.0/lib/minitest/test.rb +220 -0
  2065. data/vendor/bundle/ruby/2.7.0/gems/minitest-5.14.0/lib/minitest/unit.rb +45 -0
  2066. data/vendor/bundle/ruby/2.7.0/gems/minitest-5.14.0/test/minitest/metametameta.rb +117 -0
  2067. data/vendor/bundle/ruby/2.7.0/gems/minitest-5.14.0/test/minitest/test_minitest_assertions.rb +1567 -0
  2068. data/vendor/bundle/ruby/2.7.0/gems/minitest-5.14.0/test/minitest/test_minitest_benchmark.rb +137 -0
  2069. data/vendor/bundle/ruby/2.7.0/gems/minitest-5.14.0/test/minitest/test_minitest_mock.rb +872 -0
  2070. data/vendor/bundle/ruby/2.7.0/gems/minitest-5.14.0/test/minitest/test_minitest_reporter.rb +299 -0
  2071. data/vendor/bundle/ruby/2.7.0/gems/minitest-5.14.0/test/minitest/test_minitest_spec.rb +1041 -0
  2072. data/vendor/bundle/ruby/2.7.0/gems/minitest-5.14.0/test/minitest/test_minitest_test.rb +1080 -0
  2073. data/vendor/bundle/ruby/2.7.0/gems/nio4r-2.5.2/.gitignore +21 -0
  2074. data/vendor/bundle/ruby/2.7.0/gems/nio4r-2.5.2/.rspec +4 -0
  2075. data/vendor/bundle/ruby/2.7.0/gems/nio4r-2.5.2/.rubocop.yml +81 -0
  2076. data/vendor/bundle/ruby/2.7.0/gems/nio4r-2.5.2/.travis.yml +44 -0
  2077. data/vendor/bundle/ruby/2.7.0/gems/nio4r-2.5.2/CHANGES.md +244 -0
  2078. data/vendor/bundle/ruby/2.7.0/gems/nio4r-2.5.2/Gemfile +19 -0
  2079. data/vendor/bundle/ruby/2.7.0/gems/nio4r-2.5.2/Guardfile +10 -0
  2080. data/vendor/bundle/ruby/2.7.0/gems/nio4r-2.5.2/README.md +150 -0
  2081. data/vendor/bundle/ruby/2.7.0/gems/nio4r-2.5.2/Rakefile +8 -0
  2082. data/vendor/bundle/ruby/2.7.0/gems/nio4r-2.5.2/appveyor.yml +40 -0
  2083. data/vendor/bundle/ruby/2.7.0/gems/nio4r-2.5.2/examples/echo_server.rb +47 -0
  2084. data/vendor/bundle/ruby/2.7.0/gems/nio4r-2.5.2/ext/libev/Changes +548 -0
  2085. data/vendor/bundle/ruby/2.7.0/gems/nio4r-2.5.2/ext/libev/LICENSE +37 -0
  2086. data/vendor/bundle/ruby/2.7.0/gems/nio4r-2.5.2/ext/libev/README +59 -0
  2087. data/vendor/bundle/ruby/2.7.0/gems/nio4r-2.5.2/ext/libev/ev.c +5276 -0
  2088. data/vendor/bundle/ruby/2.7.0/gems/nio4r-2.5.2/ext/libev/ev.h +856 -0
  2089. data/vendor/bundle/ruby/2.7.0/gems/nio4r-2.5.2/ext/libev/ev_epoll.c +296 -0
  2090. data/vendor/bundle/ruby/2.7.0/gems/nio4r-2.5.2/ext/libev/ev_kqueue.c +224 -0
  2091. data/vendor/bundle/ruby/2.7.0/gems/nio4r-2.5.2/ext/libev/ev_linuxaio.c +642 -0
  2092. data/vendor/bundle/ruby/2.7.0/gems/nio4r-2.5.2/ext/libev/ev_poll.c +156 -0
  2093. data/vendor/bundle/ruby/2.7.0/gems/nio4r-2.5.2/ext/libev/ev_port.c +192 -0
  2094. data/vendor/bundle/ruby/2.7.0/gems/nio4r-2.5.2/ext/libev/ev_select.c +316 -0
  2095. data/vendor/bundle/ruby/2.7.0/gems/nio4r-2.5.2/ext/libev/ev_vars.h +215 -0
  2096. data/vendor/bundle/ruby/2.7.0/gems/nio4r-2.5.2/ext/libev/ev_win32.c +162 -0
  2097. data/vendor/bundle/ruby/2.7.0/gems/nio4r-2.5.2/ext/libev/ev_wrap.h +216 -0
  2098. data/vendor/bundle/ruby/2.7.0/gems/nio4r-2.5.2/ext/nio4r/.sitearchdir.time +0 -0
  2099. data/vendor/bundle/ruby/2.7.0/gems/nio4r-2.5.2/ext/nio4r/Makefile +266 -0
  2100. data/vendor/bundle/ruby/2.7.0/gems/nio4r-2.5.2/ext/nio4r/bytebuffer.c +429 -0
  2101. data/vendor/bundle/ruby/2.7.0/gems/nio4r-2.5.2/ext/nio4r/extconf.rb +27 -0
  2102. data/vendor/bundle/ruby/2.7.0/gems/nio4r-2.5.2/ext/nio4r/libev.h +9 -0
  2103. data/vendor/bundle/ruby/2.7.0/gems/nio4r-2.5.2/ext/nio4r/monitor.c +316 -0
  2104. data/vendor/bundle/ruby/2.7.0/gems/nio4r-2.5.2/ext/nio4r/nio4r.h +57 -0
  2105. data/vendor/bundle/ruby/2.7.0/gems/nio4r-2.5.2/ext/nio4r/org/nio4r/ByteBuffer.java +293 -0
  2106. data/vendor/bundle/ruby/2.7.0/gems/nio4r-2.5.2/ext/nio4r/org/nio4r/Monitor.java +175 -0
  2107. data/vendor/bundle/ruby/2.7.0/gems/nio4r-2.5.2/ext/nio4r/org/nio4r/Nio4r.java +104 -0
  2108. data/vendor/bundle/ruby/2.7.0/gems/nio4r-2.5.2/ext/nio4r/org/nio4r/Selector.java +299 -0
  2109. data/vendor/bundle/ruby/2.7.0/gems/nio4r-2.5.2/ext/nio4r/selector.c +567 -0
  2110. data/vendor/bundle/ruby/2.7.0/gems/nio4r-2.5.2/lib/nio.rb +33 -0
  2111. data/vendor/bundle/ruby/2.7.0/gems/nio4r-2.5.2/lib/nio/bytebuffer.rb +225 -0
  2112. data/vendor/bundle/ruby/2.7.0/gems/nio4r-2.5.2/lib/nio/monitor.rb +117 -0
  2113. data/vendor/bundle/ruby/2.7.0/gems/nio4r-2.5.2/lib/nio/selector.rb +171 -0
  2114. data/vendor/bundle/ruby/2.7.0/gems/nio4r-2.5.2/lib/nio/version.rb +5 -0
  2115. data/vendor/bundle/ruby/2.7.0/gems/nio4r-2.5.2/logo.png +0 -0
  2116. data/vendor/bundle/ruby/2.7.0/gems/nio4r-2.5.2/nio4r.gemspec +42 -0
  2117. data/vendor/bundle/ruby/2.7.0/gems/nio4r-2.5.2/rakelib/extension.rake +15 -0
  2118. data/vendor/bundle/ruby/2.7.0/gems/nio4r-2.5.2/rakelib/rspec.rake +9 -0
  2119. data/vendor/bundle/ruby/2.7.0/gems/nio4r-2.5.2/rakelib/rubocop.rake +5 -0
  2120. data/vendor/bundle/ruby/2.7.0/gems/nio4r-2.5.2/spec/nio/acceptables_spec.rb +32 -0
  2121. data/vendor/bundle/ruby/2.7.0/gems/nio4r-2.5.2/spec/nio/bytebuffer_spec.rb +355 -0
  2122. data/vendor/bundle/ruby/2.7.0/gems/nio4r-2.5.2/spec/nio/monitor_spec.rb +162 -0
  2123. data/vendor/bundle/ruby/2.7.0/gems/nio4r-2.5.2/spec/nio/selectables/pipe_spec.rb +47 -0
  2124. data/vendor/bundle/ruby/2.7.0/gems/nio4r-2.5.2/spec/nio/selectables/ssl_socket_spec.rb +192 -0
  2125. data/vendor/bundle/ruby/2.7.0/gems/nio4r-2.5.2/spec/nio/selectables/tcp_socket_spec.rb +101 -0
  2126. data/vendor/bundle/ruby/2.7.0/gems/nio4r-2.5.2/spec/nio/selectables/udp_socket_spec.rb +48 -0
  2127. data/vendor/bundle/ruby/2.7.0/gems/nio4r-2.5.2/spec/nio/selector_spec.rb +237 -0
  2128. data/vendor/bundle/ruby/2.7.0/gems/nio4r-2.5.2/spec/spec_helper.rb +18 -0
  2129. data/vendor/bundle/ruby/2.7.0/gems/nio4r-2.5.2/spec/support/selectable_examples.rb +85 -0
  2130. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/LICENSE-DEPENDENCIES.md +1614 -0
  2131. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/LICENSE.md +9 -0
  2132. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/README.md +198 -0
  2133. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/bin/nokogiri +118 -0
  2134. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/dependencies.yml +74 -0
  2135. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/.sitearchdir.-.nokogiri.time +0 -0
  2136. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/Makefile +628 -0
  2137. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/depend +358 -0
  2138. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/extconf.rb +686 -0
  2139. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/html_document.c +170 -0
  2140. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/html_document.h +10 -0
  2141. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/html_document.o +0 -0
  2142. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/html_element_description.c +279 -0
  2143. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/html_element_description.h +10 -0
  2144. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/html_element_description.o +0 -0
  2145. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/html_entity_lookup.c +32 -0
  2146. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/html_entity_lookup.h +8 -0
  2147. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/html_entity_lookup.o +0 -0
  2148. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/html_sax_parser_context.c +116 -0
  2149. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/html_sax_parser_context.h +11 -0
  2150. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/html_sax_parser_context.o +0 -0
  2151. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/html_sax_push_parser.c +87 -0
  2152. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/html_sax_push_parser.h +9 -0
  2153. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/html_sax_push_parser.o +0 -0
  2154. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/nokogiri.c +141 -0
  2155. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/nokogiri.h +121 -0
  2156. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/nokogiri.o +0 -0
  2157. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/nokogiri.so +0 -0
  2158. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_attr.c +103 -0
  2159. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_attr.h +9 -0
  2160. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_attr.o +0 -0
  2161. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_attribute_decl.c +70 -0
  2162. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_attribute_decl.h +9 -0
  2163. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_attribute_decl.o +0 -0
  2164. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_cdata.c +62 -0
  2165. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_cdata.h +9 -0
  2166. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_cdata.o +0 -0
  2167. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_comment.c +69 -0
  2168. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_comment.h +9 -0
  2169. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_comment.o +0 -0
  2170. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_document.c +608 -0
  2171. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_document.h +23 -0
  2172. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_document.o +0 -0
  2173. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_document_fragment.c +48 -0
  2174. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_document_fragment.h +10 -0
  2175. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_document_fragment.o +0 -0
  2176. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_dtd.c +202 -0
  2177. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_dtd.h +10 -0
  2178. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_dtd.o +0 -0
  2179. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_element_content.c +123 -0
  2180. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_element_content.h +10 -0
  2181. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_element_content.o +0 -0
  2182. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_element_decl.c +69 -0
  2183. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_element_decl.h +9 -0
  2184. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_element_decl.o +0 -0
  2185. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_encoding_handler.c +79 -0
  2186. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_encoding_handler.h +8 -0
  2187. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_encoding_handler.o +0 -0
  2188. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_entity_decl.c +110 -0
  2189. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_entity_decl.h +10 -0
  2190. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_entity_decl.o +0 -0
  2191. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_entity_reference.c +52 -0
  2192. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_entity_reference.h +9 -0
  2193. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_entity_reference.o +0 -0
  2194. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_io.c +61 -0
  2195. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_io.h +11 -0
  2196. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_io.o +0 -0
  2197. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_libxml2_hacks.c +112 -0
  2198. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_libxml2_hacks.h +12 -0
  2199. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_libxml2_hacks.o +0 -0
  2200. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_namespace.c +111 -0
  2201. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_namespace.h +14 -0
  2202. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_namespace.o +0 -0
  2203. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_node.c +1753 -0
  2204. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_node.h +13 -0
  2205. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_node.o +0 -0
  2206. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_node_set.c +486 -0
  2207. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_node_set.h +12 -0
  2208. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_node_set.o +0 -0
  2209. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_processing_instruction.c +56 -0
  2210. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_processing_instruction.h +9 -0
  2211. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_processing_instruction.o +0 -0
  2212. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_reader.c +668 -0
  2213. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_reader.h +10 -0
  2214. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_reader.o +0 -0
  2215. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_relax_ng.c +161 -0
  2216. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_relax_ng.h +9 -0
  2217. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_relax_ng.o +0 -0
  2218. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_sax_parser.c +310 -0
  2219. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_sax_parser.h +39 -0
  2220. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_sax_parser.o +0 -0
  2221. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_sax_parser_context.c +262 -0
  2222. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_sax_parser_context.h +10 -0
  2223. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_sax_parser_context.o +0 -0
  2224. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_sax_push_parser.c +159 -0
  2225. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_sax_push_parser.h +9 -0
  2226. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_sax_push_parser.o +0 -0
  2227. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_schema.c +234 -0
  2228. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_schema.h +9 -0
  2229. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_schema.o +0 -0
  2230. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_syntax_error.c +64 -0
  2231. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_syntax_error.h +13 -0
  2232. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_syntax_error.o +0 -0
  2233. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_text.c +52 -0
  2234. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_text.h +9 -0
  2235. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_text.o +0 -0
  2236. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_xpath_context.c +298 -0
  2237. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_xpath_context.h +10 -0
  2238. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xml_xpath_context.o +0 -0
  2239. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xslt_stylesheet.c +270 -0
  2240. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xslt_stylesheet.h +14 -0
  2241. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/ext/nokogiri/xslt_stylesheet.o +0 -0
  2242. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/lib/nokogiri.rb +144 -0
  2243. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/lib/nokogiri/css.rb +27 -0
  2244. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/lib/nokogiri/css/node.rb +52 -0
  2245. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/lib/nokogiri/css/parser.rb +750 -0
  2246. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/lib/nokogiri/css/parser.y +272 -0
  2247. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/lib/nokogiri/css/parser_extras.rb +91 -0
  2248. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/lib/nokogiri/css/syntax_error.rb +7 -0
  2249. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/lib/nokogiri/css/tokenizer.rb +153 -0
  2250. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/lib/nokogiri/css/tokenizer.rex +55 -0
  2251. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/lib/nokogiri/css/xpath_visitor.rb +230 -0
  2252. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/lib/nokogiri/decorators/slop.rb +42 -0
  2253. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/lib/nokogiri/html.rb +37 -0
  2254. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/lib/nokogiri/html/builder.rb +35 -0
  2255. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/lib/nokogiri/html/document.rb +335 -0
  2256. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/lib/nokogiri/html/document_fragment.rb +49 -0
  2257. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/lib/nokogiri/html/element_description.rb +23 -0
  2258. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/lib/nokogiri/html/element_description_defaults.rb +671 -0
  2259. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/lib/nokogiri/html/entity_lookup.rb +13 -0
  2260. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/lib/nokogiri/html/sax/parser.rb +62 -0
  2261. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/lib/nokogiri/html/sax/parser_context.rb +16 -0
  2262. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/lib/nokogiri/html/sax/push_parser.rb +36 -0
  2263. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/lib/nokogiri/nokogiri.so +0 -0
  2264. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/lib/nokogiri/syntax_error.rb +4 -0
  2265. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/lib/nokogiri/version.rb +109 -0
  2266. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/lib/nokogiri/xml.rb +75 -0
  2267. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/lib/nokogiri/xml/attr.rb +14 -0
  2268. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/lib/nokogiri/xml/attribute_decl.rb +18 -0
  2269. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/lib/nokogiri/xml/builder.rb +446 -0
  2270. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/lib/nokogiri/xml/cdata.rb +11 -0
  2271. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/lib/nokogiri/xml/character_data.rb +7 -0
  2272. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/lib/nokogiri/xml/document.rb +285 -0
  2273. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/lib/nokogiri/xml/document_fragment.rb +160 -0
  2274. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/lib/nokogiri/xml/dtd.rb +32 -0
  2275. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/lib/nokogiri/xml/element_content.rb +36 -0
  2276. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/lib/nokogiri/xml/element_decl.rb +13 -0
  2277. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/lib/nokogiri/xml/entity_decl.rb +19 -0
  2278. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/lib/nokogiri/xml/entity_reference.rb +18 -0
  2279. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/lib/nokogiri/xml/namespace.rb +13 -0
  2280. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/lib/nokogiri/xml/node.rb +902 -0
  2281. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/lib/nokogiri/xml/node/save_options.rb +61 -0
  2282. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/lib/nokogiri/xml/node_set.rb +371 -0
  2283. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/lib/nokogiri/xml/notation.rb +6 -0
  2284. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/lib/nokogiri/xml/parse_options.rb +120 -0
  2285. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/lib/nokogiri/xml/pp.rb +2 -0
  2286. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/lib/nokogiri/xml/pp/character_data.rb +18 -0
  2287. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/lib/nokogiri/xml/pp/node.rb +56 -0
  2288. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/lib/nokogiri/xml/processing_instruction.rb +8 -0
  2289. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/lib/nokogiri/xml/reader.rb +112 -0
  2290. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/lib/nokogiri/xml/relax_ng.rb +32 -0
  2291. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/lib/nokogiri/xml/sax.rb +4 -0
  2292. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/lib/nokogiri/xml/sax/document.rb +171 -0
  2293. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/lib/nokogiri/xml/sax/parser.rb +122 -0
  2294. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/lib/nokogiri/xml/sax/parser_context.rb +16 -0
  2295. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/lib/nokogiri/xml/sax/push_parser.rb +60 -0
  2296. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/lib/nokogiri/xml/schema.rb +63 -0
  2297. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/lib/nokogiri/xml/searchable.rb +230 -0
  2298. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/lib/nokogiri/xml/syntax_error.rb +70 -0
  2299. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/lib/nokogiri/xml/text.rb +9 -0
  2300. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/lib/nokogiri/xml/xpath.rb +10 -0
  2301. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/lib/nokogiri/xml/xpath/syntax_error.rb +11 -0
  2302. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/lib/nokogiri/xml/xpath_context.rb +16 -0
  2303. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/lib/nokogiri/xslt.rb +56 -0
  2304. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/lib/nokogiri/xslt/stylesheet.rb +25 -0
  2305. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/lib/xsd/xmlparser/nokogiri.rb +102 -0
  2306. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/patches/libxml2/0001-Revert-Do-not-URI-escape-in-server-side-includes.patch +78 -0
  2307. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/patches/libxml2/0002-Remove-script-macro-support.patch +40 -0
  2308. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/patches/libxml2/0003-Update-entities-to-remove-handling-of-ssi.patch +44 -0
  2309. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/patches/libxml2/0004-libxml2.la-is-in-top_builddir.patch +25 -0
  2310. data/vendor/bundle/ruby/2.7.0/gems/nokogiri-1.10.9/patches/libxml2/0005-Fix-infinite-loop-in-xmlStringLenDecodeEntities.patch +32 -0
  2311. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/CHANGELOG.md +953 -0
  2312. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/LICENSE +25 -0
  2313. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/README.md +390 -0
  2314. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/bin/pry +8 -0
  2315. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry.rb +132 -0
  2316. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/basic_object.rb +6 -0
  2317. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/cli.rb +218 -0
  2318. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/code.rb +353 -0
  2319. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/code/code_file.rb +110 -0
  2320. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/code/code_range.rb +71 -0
  2321. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/code/loc.rb +98 -0
  2322. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/code_object.rb +195 -0
  2323. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/color_printer.rb +65 -0
  2324. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/command.rb +723 -0
  2325. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/command_set.rb +415 -0
  2326. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands.rb +6 -0
  2327. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/amend_line.rb +98 -0
  2328. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/bang.rb +20 -0
  2329. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/bang_pry.rb +17 -0
  2330. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/cat.rb +63 -0
  2331. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/cat/abstract_formatter.rb +27 -0
  2332. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/cat/exception_formatter.rb +79 -0
  2333. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/cat/file_formatter.rb +71 -0
  2334. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/cat/input_expression_formatter.rb +43 -0
  2335. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/cd.rb +41 -0
  2336. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/change_inspector.rb +27 -0
  2337. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/change_prompt.rb +46 -0
  2338. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/clear_screen.rb +14 -0
  2339. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/code_collector.rb +167 -0
  2340. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/disable_pry.rb +27 -0
  2341. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/disabled_commands.rb +2 -0
  2342. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/easter_eggs.rb +112 -0
  2343. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/edit.rb +200 -0
  2344. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/edit/exception_patcher.rb +25 -0
  2345. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/edit/file_and_line_locator.rb +36 -0
  2346. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/exit.rb +43 -0
  2347. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/exit_all.rb +29 -0
  2348. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/exit_program.rb +23 -0
  2349. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/find_method.rb +191 -0
  2350. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/fix_indent.rb +19 -0
  2351. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/gem_cd.rb +26 -0
  2352. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/gem_install.rb +32 -0
  2353. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/gem_list.rb +33 -0
  2354. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/gem_open.rb +29 -0
  2355. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/gem_readme.rb +25 -0
  2356. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/gem_search.rb +40 -0
  2357. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/gem_stats.rb +83 -0
  2358. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/gist.rb +102 -0
  2359. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/help.rb +164 -0
  2360. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/hist.rb +181 -0
  2361. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/import_set.rb +23 -0
  2362. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/install_command.rb +54 -0
  2363. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/jump_to.rb +29 -0
  2364. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/list_inspectors.rb +35 -0
  2365. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/ls.rb +113 -0
  2366. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/ls/constants.rb +58 -0
  2367. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/ls/formatter.rb +51 -0
  2368. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/ls/globals.rb +46 -0
  2369. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/ls/grep.rb +19 -0
  2370. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/ls/instance_vars.rb +38 -0
  2371. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/ls/interrogatable.rb +18 -0
  2372. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/ls/jruby_hacks.rb +49 -0
  2373. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/ls/local_names.rb +33 -0
  2374. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/ls/local_vars.rb +37 -0
  2375. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/ls/ls_entity.rb +69 -0
  2376. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/ls/methods.rb +54 -0
  2377. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/ls/methods_helper.rb +46 -0
  2378. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/ls/self_methods.rb +33 -0
  2379. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/nesting.rb +25 -0
  2380. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/play.rb +102 -0
  2381. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/pry_backtrace.rb +25 -0
  2382. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/pry_version.rb +17 -0
  2383. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/raise_up.rb +33 -0
  2384. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/reload_code.rb +62 -0
  2385. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/reset.rb +18 -0
  2386. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/ri.rb +65 -0
  2387. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/save_file.rb +61 -0
  2388. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/shell_command.rb +75 -0
  2389. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/shell_mode.rb +25 -0
  2390. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/show_doc.rb +81 -0
  2391. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/show_info.rb +216 -0
  2392. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/show_input.rb +17 -0
  2393. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/show_source.rb +53 -0
  2394. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/stat.rb +40 -0
  2395. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/switch_to.rb +23 -0
  2396. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/toggle_color.rb +24 -0
  2397. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/watch_expression.rb +107 -0
  2398. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/watch_expression/expression.rb +38 -0
  2399. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/whereami.rb +197 -0
  2400. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/wtf.rb +70 -0
  2401. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/config.rb +35 -0
  2402. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/config/behavior.rb +255 -0
  2403. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/config/convenience.rb +28 -0
  2404. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/config/default.rb +159 -0
  2405. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/config/memoization.rb +48 -0
  2406. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/core_extensions.rb +142 -0
  2407. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/editor.rb +128 -0
  2408. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/exceptions.rb +76 -0
  2409. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/forwardable.rb +23 -0
  2410. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/helpers.rb +6 -0
  2411. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/helpers/base_helpers.rb +200 -0
  2412. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/helpers/command_helpers.rb +157 -0
  2413. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/helpers/documentation_helpers.rb +76 -0
  2414. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/helpers/options_helpers.rb +27 -0
  2415. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/helpers/platform.rb +58 -0
  2416. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/helpers/table.rb +114 -0
  2417. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/helpers/text.rb +115 -0
  2418. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/history.rb +161 -0
  2419. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/hooks.rb +171 -0
  2420. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/indent.rb +408 -0
  2421. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/input_completer.rb +265 -0
  2422. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/input_lock.rb +130 -0
  2423. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/inspector.rb +27 -0
  2424. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/last_exception.rb +61 -0
  2425. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/method.rb +552 -0
  2426. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/method/disowned.rb +55 -0
  2427. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/method/patcher.rb +122 -0
  2428. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/method/weird_method_locator.rb +198 -0
  2429. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/object_path.rb +83 -0
  2430. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/output.rb +50 -0
  2431. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/pager.rb +250 -0
  2432. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/platform.rb +91 -0
  2433. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/plugins.rb +122 -0
  2434. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/prompt.rb +145 -0
  2435. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/pry_class.rb +425 -0
  2436. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/pry_instance.rb +699 -0
  2437. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/repl.rb +261 -0
  2438. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/repl_file_loader.rb +73 -0
  2439. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/ring.rb +84 -0
  2440. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/rubygem.rb +84 -0
  2441. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/slop.rb +661 -0
  2442. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/slop/LICENSE +20 -0
  2443. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/slop/commands.rb +195 -0
  2444. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/slop/option.rb +206 -0
  2445. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/terminal.rb +91 -0
  2446. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/testable.rb +70 -0
  2447. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/testable/evalable.rb +15 -0
  2448. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/testable/mockable.rb +14 -0
  2449. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/testable/pry_tester.rb +73 -0
  2450. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/testable/utility.rb +26 -0
  2451. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/testable/variables.rb +46 -0
  2452. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/version.rb +3 -0
  2453. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/wrapped_module.rb +378 -0
  2454. data/vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/wrapped_module/candidate.rb +131 -0
  2455. data/vendor/bundle/ruby/2.7.0/gems/pry-byebug-3.8.0/CHANGELOG.md +200 -0
  2456. data/vendor/bundle/ruby/2.7.0/gems/pry-byebug-3.8.0/LICENSE +20 -0
  2457. data/vendor/bundle/ruby/2.7.0/gems/pry-byebug-3.8.0/README.md +192 -0
  2458. data/vendor/bundle/ruby/2.7.0/gems/pry-byebug-3.8.0/lib/byebug/processors/pry_processor.rb +166 -0
  2459. data/vendor/bundle/ruby/2.7.0/gems/pry-byebug-3.8.0/lib/pry-byebug.rb +4 -0
  2460. data/vendor/bundle/ruby/2.7.0/gems/pry-byebug-3.8.0/lib/pry-byebug/base.rb +29 -0
  2461. data/vendor/bundle/ruby/2.7.0/gems/pry-byebug-3.8.0/lib/pry-byebug/cli.rb +6 -0
  2462. data/vendor/bundle/ruby/2.7.0/gems/pry-byebug-3.8.0/lib/pry-byebug/commands.rb +12 -0
  2463. data/vendor/bundle/ruby/2.7.0/gems/pry-byebug-3.8.0/lib/pry-byebug/commands/backtrace.rb +31 -0
  2464. data/vendor/bundle/ruby/2.7.0/gems/pry-byebug-3.8.0/lib/pry-byebug/commands/breakpoint.rb +137 -0
  2465. data/vendor/bundle/ruby/2.7.0/gems/pry-byebug-3.8.0/lib/pry-byebug/commands/continue.rb +43 -0
  2466. data/vendor/bundle/ruby/2.7.0/gems/pry-byebug-3.8.0/lib/pry-byebug/commands/down.rb +35 -0
  2467. data/vendor/bundle/ruby/2.7.0/gems/pry-byebug-3.8.0/lib/pry-byebug/commands/exit_all.rb +16 -0
  2468. data/vendor/bundle/ruby/2.7.0/gems/pry-byebug-3.8.0/lib/pry-byebug/commands/finish.rb +28 -0
  2469. data/vendor/bundle/ruby/2.7.0/gems/pry-byebug-3.8.0/lib/pry-byebug/commands/frame.rb +35 -0
  2470. data/vendor/bundle/ruby/2.7.0/gems/pry-byebug-3.8.0/lib/pry-byebug/commands/next.rb +39 -0
  2471. data/vendor/bundle/ruby/2.7.0/gems/pry-byebug-3.8.0/lib/pry-byebug/commands/step.rb +34 -0
  2472. data/vendor/bundle/ruby/2.7.0/gems/pry-byebug-3.8.0/lib/pry-byebug/commands/up.rb +35 -0
  2473. data/vendor/bundle/ruby/2.7.0/gems/pry-byebug-3.8.0/lib/pry-byebug/control_d_handler.rb +9 -0
  2474. data/vendor/bundle/ruby/2.7.0/gems/pry-byebug-3.8.0/lib/pry-byebug/helpers/breakpoints.rb +82 -0
  2475. data/vendor/bundle/ruby/2.7.0/gems/pry-byebug-3.8.0/lib/pry-byebug/helpers/location.rb +24 -0
  2476. data/vendor/bundle/ruby/2.7.0/gems/pry-byebug-3.8.0/lib/pry-byebug/helpers/multiline.rb +23 -0
  2477. data/vendor/bundle/ruby/2.7.0/gems/pry-byebug-3.8.0/lib/pry-byebug/helpers/navigation.rb +19 -0
  2478. data/vendor/bundle/ruby/2.7.0/gems/pry-byebug-3.8.0/lib/pry-byebug/pry_ext.rb +18 -0
  2479. data/vendor/bundle/ruby/2.7.0/gems/pry-byebug-3.8.0/lib/pry-byebug/pry_remote_ext.rb +44 -0
  2480. data/vendor/bundle/ruby/2.7.0/gems/pry-byebug-3.8.0/lib/pry-byebug/version.rb +8 -0
  2481. data/vendor/bundle/ruby/2.7.0/gems/pry-byebug-3.8.0/lib/pry/byebug/breakpoints.rb +167 -0
  2482. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/CHANGELOG.md +690 -0
  2483. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/CONTRIBUTING.md +136 -0
  2484. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/MIT-LICENSE +20 -0
  2485. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/README.rdoc +306 -0
  2486. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/Rakefile +130 -0
  2487. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/SPEC.rdoc +288 -0
  2488. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/bin/rackup +5 -0
  2489. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/contrib/rack.png +0 -0
  2490. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/contrib/rack.svg +150 -0
  2491. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/contrib/rack_logo.svg +164 -0
  2492. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/contrib/rdoc.css +412 -0
  2493. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/example/lobster.ru +6 -0
  2494. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/example/protectedlobster.rb +16 -0
  2495. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/example/protectedlobster.ru +10 -0
  2496. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/lib/rack.rb +141 -0
  2497. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/lib/rack/auth/abstract/handler.rb +39 -0
  2498. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/lib/rack/auth/abstract/request.rb +47 -0
  2499. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/lib/rack/auth/basic.rb +61 -0
  2500. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/lib/rack/auth/digest/md5.rb +131 -0
  2501. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/lib/rack/auth/digest/nonce.rb +54 -0
  2502. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/lib/rack/auth/digest/params.rb +54 -0
  2503. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/lib/rack/auth/digest/request.rb +43 -0
  2504. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/lib/rack/body_proxy.rb +45 -0
  2505. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/lib/rack/builder.rb +257 -0
  2506. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/lib/rack/cascade.rb +68 -0
  2507. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/lib/rack/chunked.rb +117 -0
  2508. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/lib/rack/common_logger.rb +80 -0
  2509. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/lib/rack/conditional_get.rb +83 -0
  2510. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/lib/rack/config.rb +22 -0
  2511. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/lib/rack/content_length.rb +38 -0
  2512. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/lib/rack/content_type.rb +30 -0
  2513. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/lib/rack/core_ext/regexp.rb +14 -0
  2514. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/lib/rack/deflater.rb +144 -0
  2515. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/lib/rack/directory.rb +199 -0
  2516. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/lib/rack/etag.rb +75 -0
  2517. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/lib/rack/events.rb +153 -0
  2518. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/lib/rack/file.rb +7 -0
  2519. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/lib/rack/files.rb +218 -0
  2520. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/lib/rack/handler.rb +104 -0
  2521. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/lib/rack/handler/cgi.rb +59 -0
  2522. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/lib/rack/handler/fastcgi.rb +100 -0
  2523. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/lib/rack/handler/lsws.rb +61 -0
  2524. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/lib/rack/handler/scgi.rb +71 -0
  2525. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/lib/rack/handler/thin.rb +36 -0
  2526. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/lib/rack/handler/webrick.rb +129 -0
  2527. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/lib/rack/head.rb +25 -0
  2528. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/lib/rack/lint.rb +806 -0
  2529. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/lib/rack/lobster.rb +70 -0
  2530. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/lib/rack/lock.rb +32 -0
  2531. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/lib/rack/logger.rb +20 -0
  2532. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/lib/rack/media_type.rb +43 -0
  2533. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/lib/rack/method_override.rb +52 -0
  2534. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/lib/rack/mime.rb +685 -0
  2535. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/lib/rack/mock.rb +273 -0
  2536. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/lib/rack/multipart.rb +65 -0
  2537. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/lib/rack/multipart/generator.rb +97 -0
  2538. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/lib/rack/multipart/parser.rb +364 -0
  2539. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/lib/rack/multipart/uploaded_file.rb +41 -0
  2540. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/lib/rack/null_logger.rb +39 -0
  2541. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/lib/rack/query_parser.rb +217 -0
  2542. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/lib/rack/recursive.rb +64 -0
  2543. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/lib/rack/reloader.rb +114 -0
  2544. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/lib/rack/request.rb +659 -0
  2545. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/lib/rack/response.rb +318 -0
  2546. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/lib/rack/rewindable_input.rb +94 -0
  2547. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/lib/rack/runtime.rb +34 -0
  2548. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/lib/rack/sendfile.rb +162 -0
  2549. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/lib/rack/server.rb +466 -0
  2550. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/lib/rack/session/abstract/id.rb +523 -0
  2551. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/lib/rack/session/cookie.rb +203 -0
  2552. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/lib/rack/session/memcache.rb +10 -0
  2553. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/lib/rack/session/pool.rb +85 -0
  2554. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/lib/rack/show_exceptions.rb +390 -0
  2555. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/lib/rack/show_status.rb +113 -0
  2556. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/lib/rack/static.rb +187 -0
  2557. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/lib/rack/tempfile_reaper.rb +22 -0
  2558. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/lib/rack/urlmap.rb +97 -0
  2559. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/lib/rack/utils.rb +609 -0
  2560. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/lib/rack/version.rb +29 -0
  2561. data/vendor/bundle/ruby/2.7.0/gems/rack-2.2.2/rack.gemspec +46 -0
  2562. data/vendor/bundle/ruby/2.7.0/gems/rack-test-1.1.0/History.md +256 -0
  2563. data/vendor/bundle/ruby/2.7.0/gems/rack-test-1.1.0/MIT-LICENSE.txt +19 -0
  2564. data/vendor/bundle/ruby/2.7.0/gems/rack-test-1.1.0/README.md +150 -0
  2565. data/vendor/bundle/ruby/2.7.0/gems/rack-test-1.1.0/lib/rack/mock_session.rb +63 -0
  2566. data/vendor/bundle/ruby/2.7.0/gems/rack-test-1.1.0/lib/rack/test.rb +334 -0
  2567. data/vendor/bundle/ruby/2.7.0/gems/rack-test-1.1.0/lib/rack/test/cookie_jar.rb +194 -0
  2568. data/vendor/bundle/ruby/2.7.0/gems/rack-test-1.1.0/lib/rack/test/methods.rb +83 -0
  2569. data/vendor/bundle/ruby/2.7.0/gems/rack-test-1.1.0/lib/rack/test/mock_digest_request.rb +25 -0
  2570. data/vendor/bundle/ruby/2.7.0/gems/rack-test-1.1.0/lib/rack/test/uploaded_file.rb +85 -0
  2571. data/vendor/bundle/ruby/2.7.0/gems/rack-test-1.1.0/lib/rack/test/utils.rb +144 -0
  2572. data/vendor/bundle/ruby/2.7.0/gems/rack-test-1.1.0/lib/rack/test/version.rb +5 -0
  2573. data/vendor/bundle/ruby/2.7.0/gems/rails-6.0.2.1/README.md +103 -0
  2574. data/vendor/bundle/ruby/2.7.0/gems/rails-dom-testing-2.0.3/MIT-LICENSE +23 -0
  2575. data/vendor/bundle/ruby/2.7.0/gems/rails-dom-testing-2.0.3/README.md +73 -0
  2576. data/vendor/bundle/ruby/2.7.0/gems/rails-dom-testing-2.0.3/lib/rails-dom-testing.rb +1 -0
  2577. data/vendor/bundle/ruby/2.7.0/gems/rails-dom-testing-2.0.3/lib/rails/dom/testing/assertions.rb +18 -0
  2578. data/vendor/bundle/ruby/2.7.0/gems/rails-dom-testing-2.0.3/lib/rails/dom/testing/assertions/dom_assertions.rb +76 -0
  2579. data/vendor/bundle/ruby/2.7.0/gems/rails-dom-testing-2.0.3/lib/rails/dom/testing/assertions/selector_assertions.rb +302 -0
  2580. data/vendor/bundle/ruby/2.7.0/gems/rails-dom-testing-2.0.3/lib/rails/dom/testing/assertions/selector_assertions/count_describable.rb +32 -0
  2581. data/vendor/bundle/ruby/2.7.0/gems/rails-dom-testing-2.0.3/lib/rails/dom/testing/assertions/selector_assertions/html_selector.rb +114 -0
  2582. data/vendor/bundle/ruby/2.7.0/gems/rails-dom-testing-2.0.3/lib/rails/dom/testing/assertions/selector_assertions/substitution_context.rb +33 -0
  2583. data/vendor/bundle/ruby/2.7.0/gems/rails-dom-testing-2.0.3/lib/rails/dom/testing/version.rb +7 -0
  2584. data/vendor/bundle/ruby/2.7.0/gems/rails-dom-testing-2.0.3/test/dom_assertions_test.rb +50 -0
  2585. data/vendor/bundle/ruby/2.7.0/gems/rails-dom-testing-2.0.3/test/selector_assertions_test.rb +325 -0
  2586. data/vendor/bundle/ruby/2.7.0/gems/rails-dom-testing-2.0.3/test/test_helper.rb +6 -0
  2587. data/vendor/bundle/ruby/2.7.0/gems/rails-html-sanitizer-1.3.0/CHANGELOG.md +44 -0
  2588. data/vendor/bundle/ruby/2.7.0/gems/rails-html-sanitizer-1.3.0/MIT-LICENSE +23 -0
  2589. data/vendor/bundle/ruby/2.7.0/gems/rails-html-sanitizer-1.3.0/README.md +140 -0
  2590. data/vendor/bundle/ruby/2.7.0/gems/rails-html-sanitizer-1.3.0/lib/rails-html-sanitizer.rb +77 -0
  2591. data/vendor/bundle/ruby/2.7.0/gems/rails-html-sanitizer-1.3.0/lib/rails/html/sanitizer.rb +155 -0
  2592. data/vendor/bundle/ruby/2.7.0/gems/rails-html-sanitizer-1.3.0/lib/rails/html/sanitizer/version.rb +7 -0
  2593. data/vendor/bundle/ruby/2.7.0/gems/rails-html-sanitizer-1.3.0/lib/rails/html/scrubbers.rb +201 -0
  2594. data/vendor/bundle/ruby/2.7.0/gems/rails-html-sanitizer-1.3.0/test/sanitizer_test.rb +568 -0
  2595. data/vendor/bundle/ruby/2.7.0/gems/rails-html-sanitizer-1.3.0/test/scrubbers_test.rb +174 -0
  2596. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/CHANGELOG.md +462 -0
  2597. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/MIT-LICENSE +20 -0
  2598. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/RDOC_MAIN.rdoc +97 -0
  2599. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/README.rdoc +40 -0
  2600. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/exe/rails +10 -0
  2601. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/minitest/rails_plugin.rb +59 -0
  2602. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails.rb +119 -0
  2603. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/all.rb +24 -0
  2604. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/api/generator.rb +38 -0
  2605. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/api/task.rb +202 -0
  2606. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/app_loader.rb +77 -0
  2607. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/app_updater.rb +37 -0
  2608. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/application.rb +660 -0
  2609. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/application/bootstrap.rb +81 -0
  2610. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/application/configuration.rb +371 -0
  2611. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/application/default_middleware_stack.rb +110 -0
  2612. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/application/dummy_erb_compiler.rb +18 -0
  2613. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/application/finisher.rb +250 -0
  2614. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/application/routes_reloader.rb +55 -0
  2615. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/application_controller.rb +29 -0
  2616. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/autoloaders.rb +48 -0
  2617. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/backtrace_cleaner.rb +22 -0
  2618. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/cli.rb +19 -0
  2619. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/code_statistics.rb +115 -0
  2620. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/code_statistics_calculator.rb +88 -0
  2621. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/command.rb +114 -0
  2622. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/command/actions.rb +54 -0
  2623. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/command/base.rb +169 -0
  2624. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/command/behavior.rb +84 -0
  2625. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/command/environment_argument.rb +40 -0
  2626. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/command/helpers/editor.rb +35 -0
  2627. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/command/spellchecker.rb +58 -0
  2628. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/commands.rb +18 -0
  2629. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/commands/application/application_command.rb +31 -0
  2630. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/commands/console/console_command.rb +106 -0
  2631. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/commands/credentials/USAGE +58 -0
  2632. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/commands/credentials/credentials_command.rb +112 -0
  2633. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/commands/db/system/change/change_command.rb +20 -0
  2634. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/commands/dbconsole/dbconsole_command.rb +182 -0
  2635. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/commands/destroy/destroy_command.rb +28 -0
  2636. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/commands/dev/dev_command.rb +19 -0
  2637. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/commands/encrypted/USAGE +28 -0
  2638. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/commands/encrypted/encrypted_command.rb +87 -0
  2639. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/commands/generate/generate_command.rb +30 -0
  2640. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/commands/help/USAGE +16 -0
  2641. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/commands/help/help_command.rb +15 -0
  2642. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/commands/initializers/initializers_command.rb +23 -0
  2643. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/commands/new/new_command.rb +19 -0
  2644. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/commands/notes/notes_command.rb +39 -0
  2645. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/commands/plugin/plugin_command.rb +45 -0
  2646. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/commands/rake/rake_command.rb +51 -0
  2647. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/commands/routes/routes_command.rb +37 -0
  2648. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/commands/runner/USAGE +20 -0
  2649. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/commands/runner/runner_command.rb +57 -0
  2650. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/commands/secrets/USAGE +60 -0
  2651. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/commands/secrets/secrets_command.rb +65 -0
  2652. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/commands/server/server_command.rb +312 -0
  2653. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/commands/test/test_command.rb +37 -0
  2654. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/commands/version/version_command.rb +11 -0
  2655. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/configuration.rb +131 -0
  2656. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/console/app.rb +38 -0
  2657. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/console/helpers.rb +19 -0
  2658. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/dev_caching.rb +44 -0
  2659. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/engine.rb +731 -0
  2660. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/engine/commands.rb +9 -0
  2661. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/engine/configuration.rb +91 -0
  2662. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/engine/railties.rb +23 -0
  2663. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/engine/updater.rb +21 -0
  2664. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/gem_version.rb +17 -0
  2665. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators.rb +325 -0
  2666. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/actions.rb +350 -0
  2667. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/actions/create_migration.rb +71 -0
  2668. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/active_model.rb +80 -0
  2669. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/app_base.rb +440 -0
  2670. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/app_name.rb +50 -0
  2671. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/base.rb +421 -0
  2672. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/css/assets/assets_generator.rb +15 -0
  2673. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/css/assets/templates/stylesheet.css +4 -0
  2674. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/css/scaffold/scaffold_generator.rb +18 -0
  2675. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/database.rb +58 -0
  2676. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/erb.rb +27 -0
  2677. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/erb/controller/controller_generator.rb +24 -0
  2678. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/erb/controller/templates/view.html.erb.tt +2 -0
  2679. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/erb/mailer/mailer_generator.rb +42 -0
  2680. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/erb/mailer/templates/layout.html.erb.tt +13 -0
  2681. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/erb/mailer/templates/layout.text.erb.tt +1 -0
  2682. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/erb/mailer/templates/view.html.erb.tt +5 -0
  2683. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/erb/mailer/templates/view.text.erb.tt +3 -0
  2684. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/erb/scaffold/scaffold_generator.rb +33 -0
  2685. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/erb/scaffold/templates/_form.html.erb.tt +37 -0
  2686. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/erb/scaffold/templates/edit.html.erb.tt +6 -0
  2687. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/erb/scaffold/templates/index.html.erb.tt +31 -0
  2688. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/erb/scaffold/templates/new.html.erb.tt +5 -0
  2689. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/erb/scaffold/templates/show.html.erb.tt +19 -0
  2690. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/generated_attribute.rb +203 -0
  2691. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/migration.rb +75 -0
  2692. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/model_helpers.rb +37 -0
  2693. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/named_base.rb +227 -0
  2694. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/USAGE +14 -0
  2695. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/app_generator.rb +589 -0
  2696. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/Gemfile.tt +78 -0
  2697. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/README.md.tt +24 -0
  2698. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/Rakefile.tt +6 -0
  2699. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/app/assets/config/manifest.js.tt +2 -0
  2700. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/app/assets/stylesheets/application.css.tt +15 -0
  2701. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/app/channels/application_cable/channel.rb.tt +4 -0
  2702. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/app/channels/application_cable/connection.rb.tt +4 -0
  2703. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/app/controllers/application_controller.rb.tt +2 -0
  2704. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/app/helpers/application_helper.rb.tt +2 -0
  2705. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/app/javascript/channels/consumer.js +6 -0
  2706. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/app/javascript/channels/index.js +5 -0
  2707. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/app/javascript/packs/application.js.tt +23 -0
  2708. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/app/jobs/application_job.rb.tt +7 -0
  2709. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/app/mailers/application_mailer.rb.tt +4 -0
  2710. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/app/models/application_record.rb.tt +3 -0
  2711. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/app/views/layouts/application.html.erb.tt +24 -0
  2712. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/app/views/layouts/mailer.html.erb.tt +13 -0
  2713. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/app/views/layouts/mailer.text.erb.tt +1 -0
  2714. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/bin/rails.tt +3 -0
  2715. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/bin/rake.tt +3 -0
  2716. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/bin/setup.tt +39 -0
  2717. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/bin/yarn.tt +10 -0
  2718. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/config.ru.tt +5 -0
  2719. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/config/application.rb.tt +47 -0
  2720. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/config/boot.rb.tt +6 -0
  2721. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/config/cable.yml.tt +10 -0
  2722. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/config/databases/frontbase.yml.tt +50 -0
  2723. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/config/databases/ibm_db.yml.tt +86 -0
  2724. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/config/databases/jdbc.yml.tt +69 -0
  2725. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/config/databases/jdbcmysql.yml.tt +53 -0
  2726. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/config/databases/jdbcpostgresql.yml.tt +69 -0
  2727. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/config/databases/jdbcsqlite3.yml.tt +24 -0
  2728. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/config/databases/mysql.yml.tt +58 -0
  2729. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/config/databases/oracle.yml.tt +61 -0
  2730. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/config/databases/postgresql.yml.tt +85 -0
  2731. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/config/databases/sqlite3.yml.tt +25 -0
  2732. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/config/databases/sqlserver.yml.tt +52 -0
  2733. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/config/environment.rb.tt +5 -0
  2734. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/config/environments/development.rb.tt +72 -0
  2735. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/config/environments/production.rb.tt +124 -0
  2736. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/config/environments/test.rb.tt +57 -0
  2737. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/config/initializers/application_controller_renderer.rb.tt +8 -0
  2738. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/config/initializers/assets.rb.tt +16 -0
  2739. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/config/initializers/backtrace_silencers.rb.tt +7 -0
  2740. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/config/initializers/content_security_policy.rb.tt +32 -0
  2741. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/config/initializers/cookies_serializer.rb.tt +5 -0
  2742. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/config/initializers/cors.rb.tt +16 -0
  2743. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/config/initializers/filter_parameter_logging.rb.tt +4 -0
  2744. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/config/initializers/inflections.rb.tt +16 -0
  2745. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/config/initializers/mime_types.rb.tt +4 -0
  2746. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/config/initializers/new_framework_defaults_6_0.rb.tt +45 -0
  2747. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/config/initializers/wrap_parameters.rb.tt +16 -0
  2748. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/config/locales/en.yml +33 -0
  2749. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/config/puma.rb.tt +38 -0
  2750. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/config/routes.rb.tt +3 -0
  2751. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/config/spring.rb.tt +6 -0
  2752. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/config/storage.yml.tt +34 -0
  2753. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/db/seeds.rb.tt +7 -0
  2754. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/gitignore.tt +36 -0
  2755. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/package.json.tt +11 -0
  2756. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/public/404.html +67 -0
  2757. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/public/422.html +67 -0
  2758. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/public/500.html +66 -0
  2759. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/public/apple-touch-icon-precomposed.png +0 -0
  2760. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/public/apple-touch-icon.png +0 -0
  2761. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/public/favicon.ico +0 -0
  2762. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/public/robots.txt +1 -0
  2763. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/ruby-version.tt +1 -0
  2764. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/test/application_system_test_case.rb.tt +5 -0
  2765. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/test/channels/application_cable/connection_test.rb.tt +11 -0
  2766. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/app/templates/test/test_helper.rb.tt +19 -0
  2767. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/application_record/application_record_generator.rb +9 -0
  2768. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/assets/USAGE +17 -0
  2769. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/assets/assets_generator.rb +26 -0
  2770. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/assets/templates/stylesheet.css +4 -0
  2771. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/controller/USAGE +18 -0
  2772. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/controller/controller_generator.rb +77 -0
  2773. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/controller/templates/controller.rb.tt +13 -0
  2774. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/credentials/credentials_generator.rb +56 -0
  2775. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/db/system/change/change_generator.rb +65 -0
  2776. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/encrypted_file/encrypted_file_generator.rb +27 -0
  2777. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/encryption_key_file/encryption_key_file_generator.rb +58 -0
  2778. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/generator/USAGE +13 -0
  2779. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/generator/generator_generator.rb +28 -0
  2780. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/generator/templates/%file_name%_generator.rb.tt +3 -0
  2781. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/generator/templates/USAGE.tt +8 -0
  2782. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/generator/templates/templates/.empty_directory +0 -0
  2783. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/helper/USAGE +13 -0
  2784. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/helper/helper_generator.rb +20 -0
  2785. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/helper/templates/helper.rb.tt +4 -0
  2786. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/integration_test/USAGE +10 -0
  2787. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/integration_test/integration_test_generator.rb +9 -0
  2788. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/master_key/master_key_generator.rb +53 -0
  2789. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/migration/USAGE +35 -0
  2790. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/migration/migration_generator.rb +10 -0
  2791. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/model/USAGE +114 -0
  2792. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/model/model_generator.rb +14 -0
  2793. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/plugin/USAGE +10 -0
  2794. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/plugin/plugin_generator.rb +430 -0
  2795. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/plugin/templates/%name%.gemspec.tt +33 -0
  2796. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/plugin/templates/Gemfile.tt +48 -0
  2797. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/plugin/templates/MIT-LICENSE.tt +20 -0
  2798. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/plugin/templates/README.md.tt +28 -0
  2799. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/plugin/templates/Rakefile.tt +28 -0
  2800. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/plugin/templates/app/controllers/%namespaced_name%/application_controller.rb.tt +6 -0
  2801. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/plugin/templates/app/helpers/%namespaced_name%/application_helper.rb.tt +5 -0
  2802. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/plugin/templates/app/jobs/%namespaced_name%/application_job.rb.tt +5 -0
  2803. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/plugin/templates/app/mailers/%namespaced_name%/application_mailer.rb.tt +7 -0
  2804. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/plugin/templates/app/models/%namespaced_name%/application_record.rb.tt +6 -0
  2805. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/plugin/templates/app/views/layouts/%namespaced_name%/application.html.erb.tt +18 -0
  2806. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/plugin/templates/bin/rails.tt +30 -0
  2807. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/plugin/templates/bin/test.tt +4 -0
  2808. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/plugin/templates/config/routes.rb.tt +6 -0
  2809. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/plugin/templates/gitignore.tt +19 -0
  2810. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/plugin/templates/lib/%namespaced_name%.rb.tt +7 -0
  2811. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/plugin/templates/lib/%namespaced_name%/engine.rb.tt +7 -0
  2812. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/plugin/templates/lib/%namespaced_name%/railtie.rb.tt +5 -0
  2813. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/plugin/templates/lib/%namespaced_name%/version.rb.tt +1 -0
  2814. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/plugin/templates/lib/tasks/%namespaced_name%_tasks.rake.tt +4 -0
  2815. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/plugin/templates/rails/application.rb.tt +23 -0
  2816. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/plugin/templates/rails/boot.rb.tt +5 -0
  2817. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/plugin/templates/rails/dummy_manifest.js.tt +10 -0
  2818. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/plugin/templates/rails/engine_manifest.js.tt +6 -0
  2819. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/plugin/templates/rails/javascripts.js.tt +17 -0
  2820. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/plugin/templates/rails/routes.rb.tt +3 -0
  2821. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/plugin/templates/rails/stylesheets.css +15 -0
  2822. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/plugin/templates/test/%namespaced_name%_test.rb.tt +7 -0
  2823. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/plugin/templates/test/application_system_test_case.rb.tt +5 -0
  2824. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/plugin/templates/test/integration/navigation_test.rb.tt +7 -0
  2825. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/plugin/templates/test/test_helper.rb.tt +29 -0
  2826. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/resource/USAGE +23 -0
  2827. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/resource/resource_generator.rb +21 -0
  2828. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/resource_route/resource_route_generator.rb +48 -0
  2829. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/scaffold/USAGE +41 -0
  2830. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/scaffold/scaffold_generator.rb +36 -0
  2831. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/scaffold/templates/scaffold.css +80 -0
  2832. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/scaffold_controller/USAGE +19 -0
  2833. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/scaffold_controller/scaffold_controller_generator.rb +51 -0
  2834. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/scaffold_controller/templates/api_controller.rb.tt +61 -0
  2835. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/scaffold_controller/templates/controller.rb.tt +68 -0
  2836. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/system_test/USAGE +10 -0
  2837. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/system_test/system_test_generator.rb +9 -0
  2838. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/task/USAGE +9 -0
  2839. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/task/task_generator.rb +13 -0
  2840. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/rails/task/templates/task.rb.tt +8 -0
  2841. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/resource_helpers.rb +82 -0
  2842. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/test_case.rb +37 -0
  2843. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/test_unit.rb +10 -0
  2844. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/test_unit/controller/controller_generator.rb +17 -0
  2845. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/test_unit/controller/templates/functional_test.rb.tt +23 -0
  2846. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/test_unit/generator/generator_generator.rb +28 -0
  2847. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/test_unit/generator/templates/generator_test.rb.tt +16 -0
  2848. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/test_unit/helper/helper_generator.rb +11 -0
  2849. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/test_unit/integration/integration_generator.rb +21 -0
  2850. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/test_unit/integration/templates/integration_test.rb.tt +9 -0
  2851. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/test_unit/job/job_generator.rb +20 -0
  2852. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/test_unit/job/templates/unit_test.rb.tt +9 -0
  2853. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/test_unit/mailer/mailer_generator.rb +28 -0
  2854. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/test_unit/mailer/templates/functional_test.rb.tt +21 -0
  2855. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/test_unit/mailer/templates/preview.rb.tt +13 -0
  2856. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/test_unit/model/model_generator.rb +37 -0
  2857. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/test_unit/model/templates/fixtures.yml.tt +29 -0
  2858. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/test_unit/model/templates/unit_test.rb.tt +9 -0
  2859. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/test_unit/plugin/plugin_generator.rb +15 -0
  2860. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/test_unit/plugin/templates/%file_name%_test.rb.tt +7 -0
  2861. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/test_unit/plugin/templates/test_helper.rb +2 -0
  2862. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/test_unit/scaffold/scaffold_generator.rb +69 -0
  2863. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/test_unit/scaffold/templates/api_functional_test.rb.tt +44 -0
  2864. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/test_unit/scaffold/templates/functional_test.rb.tt +54 -0
  2865. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/test_unit/scaffold/templates/system_test.rb.tt +57 -0
  2866. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/test_unit/system/system_generator.rb +24 -0
  2867. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/test_unit/system/templates/application_system_test_case.rb.tt +5 -0
  2868. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/test_unit/system/templates/system_test.rb.tt +9 -0
  2869. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/testing/assertions.rb +127 -0
  2870. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/testing/behaviour.rb +114 -0
  2871. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/generators/testing/setup_and_teardown.rb +20 -0
  2872. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/info.rb +105 -0
  2873. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/info_controller.rb +46 -0
  2874. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/initializable.rb +95 -0
  2875. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/mailers_controller.rb +100 -0
  2876. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/paths.rb +237 -0
  2877. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/plugin/test.rb +9 -0
  2878. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/rack.rb +7 -0
  2879. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/rack/logger.rb +80 -0
  2880. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/railtie.rb +260 -0
  2881. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/railtie/configurable.rb +37 -0
  2882. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/railtie/configuration.rb +102 -0
  2883. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/ruby_version_check.rb +15 -0
  2884. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/secrets.rb +105 -0
  2885. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/source_annotation_extractor.rb +162 -0
  2886. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/tasks.rb +23 -0
  2887. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/tasks/annotations.rake +22 -0
  2888. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/tasks/dev.rake +11 -0
  2889. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/tasks/engine.rake +88 -0
  2890. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/tasks/framework.rake +62 -0
  2891. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/tasks/initializers.rake +9 -0
  2892. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/tasks/log.rake +41 -0
  2893. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/tasks/middleware.rake +9 -0
  2894. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/tasks/misc.rake +79 -0
  2895. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/tasks/restart.rake +9 -0
  2896. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/tasks/routes.rake +9 -0
  2897. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/tasks/statistics.rake +35 -0
  2898. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/tasks/tmp.rake +44 -0
  2899. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/tasks/yarn.rake +18 -0
  2900. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/tasks/zeitwerk.rake +66 -0
  2901. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/templates/layouts/application.html.erb +36 -0
  2902. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/templates/rails/info/properties.html.erb +1 -0
  2903. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/templates/rails/info/routes.html.erb +9 -0
  2904. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/templates/rails/mailers/email.html.erb +162 -0
  2905. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/templates/rails/mailers/index.html.erb +8 -0
  2906. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/templates/rails/mailers/mailer.html.erb +6 -0
  2907. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/templates/rails/welcome/index.html.erb +74 -0
  2908. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/test_help.rb +50 -0
  2909. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/test_unit/line_filtering.rb +13 -0
  2910. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/test_unit/railtie.rb +29 -0
  2911. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/test_unit/reporter.rb +110 -0
  2912. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/test_unit/runner.rb +143 -0
  2913. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/test_unit/testing.rake +58 -0
  2914. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/version.rb +10 -0
  2915. data/vendor/bundle/ruby/2.7.0/gems/railties-6.0.2.1/lib/rails/welcome_controller.rb +10 -0
  2916. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/.autotest +7 -0
  2917. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/.rubocop.yml +27 -0
  2918. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/.togglerc +7 -0
  2919. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/CONTRIBUTING.rdoc +38 -0
  2920. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/History.rdoc +659 -0
  2921. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/MIT-LICENSE +21 -0
  2922. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/Manifest.txt +166 -0
  2923. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/README.rdoc +139 -0
  2924. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/Rakefile +81 -0
  2925. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/bin/rake +33 -0
  2926. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/doc/command_line_usage.rdoc +158 -0
  2927. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/doc/example/Rakefile1 +38 -0
  2928. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/doc/example/Rakefile2 +35 -0
  2929. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/doc/example/a.c +6 -0
  2930. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/doc/example/b.c +6 -0
  2931. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/doc/example/main.c +11 -0
  2932. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/doc/glossary.rdoc +42 -0
  2933. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/doc/jamis.rb +591 -0
  2934. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/doc/proto_rake.rdoc +127 -0
  2935. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/doc/rake.1 +141 -0
  2936. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/doc/rakefile.rdoc +624 -0
  2937. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/doc/rational.rdoc +151 -0
  2938. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/doc/release_notes/rake-0.4.14.rdoc +23 -0
  2939. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/doc/release_notes/rake-0.4.15.rdoc +35 -0
  2940. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/doc/release_notes/rake-0.5.0.rdoc +53 -0
  2941. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/doc/release_notes/rake-0.5.3.rdoc +78 -0
  2942. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/doc/release_notes/rake-0.5.4.rdoc +46 -0
  2943. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/doc/release_notes/rake-0.6.0.rdoc +141 -0
  2944. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/doc/release_notes/rake-0.7.0.rdoc +119 -0
  2945. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/doc/release_notes/rake-0.7.1.rdoc +59 -0
  2946. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/doc/release_notes/rake-0.7.2.rdoc +121 -0
  2947. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/doc/release_notes/rake-0.7.3.rdoc +47 -0
  2948. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/doc/release_notes/rake-0.8.0.rdoc +114 -0
  2949. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/doc/release_notes/rake-0.8.2.rdoc +165 -0
  2950. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/doc/release_notes/rake-0.8.3.rdoc +112 -0
  2951. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/doc/release_notes/rake-0.8.4.rdoc +147 -0
  2952. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/doc/release_notes/rake-0.8.5.rdoc +53 -0
  2953. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/doc/release_notes/rake-0.8.6.rdoc +37 -0
  2954. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/doc/release_notes/rake-0.8.7.rdoc +55 -0
  2955. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/doc/release_notes/rake-0.9.0.rdoc +112 -0
  2956. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/doc/release_notes/rake-0.9.1.rdoc +52 -0
  2957. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/doc/release_notes/rake-0.9.2.2.rdoc +55 -0
  2958. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/doc/release_notes/rake-0.9.2.rdoc +49 -0
  2959. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/doc/release_notes/rake-0.9.3.rdoc +102 -0
  2960. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/doc/release_notes/rake-0.9.4.rdoc +60 -0
  2961. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/doc/release_notes/rake-0.9.5.rdoc +55 -0
  2962. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/doc/release_notes/rake-0.9.6.rdoc +64 -0
  2963. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/doc/release_notes/rake-10.0.0.rdoc +178 -0
  2964. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/doc/release_notes/rake-10.0.1.rdoc +58 -0
  2965. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/doc/release_notes/rake-10.0.2.rdoc +53 -0
  2966. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/doc/release_notes/rake-10.0.3.rdoc +191 -0
  2967. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/doc/release_notes/rake-10.1.0.rdoc +61 -0
  2968. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/lib/rake.rb +79 -0
  2969. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/lib/rake/alt_system.rb +110 -0
  2970. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/lib/rake/application.rb +790 -0
  2971. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/lib/rake/backtrace.rb +23 -0
  2972. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/lib/rake/clean.rb +76 -0
  2973. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/lib/rake/cloneable.rb +16 -0
  2974. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/lib/rake/contrib/.document +1 -0
  2975. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/lib/rake/contrib/compositepublisher.rb +21 -0
  2976. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/lib/rake/contrib/ftptools.rb +137 -0
  2977. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/lib/rake/contrib/publisher.rb +81 -0
  2978. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/lib/rake/contrib/rubyforgepublisher.rb +18 -0
  2979. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/lib/rake/contrib/sshpublisher.rb +61 -0
  2980. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/lib/rake/contrib/sys.rb +4 -0
  2981. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/lib/rake/cpu_counter.rb +125 -0
  2982. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/lib/rake/default_loader.rb +14 -0
  2983. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/lib/rake/dsl_definition.rb +201 -0
  2984. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/lib/rake/early_time.rb +21 -0
  2985. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/lib/rake/ext/core.rb +25 -0
  2986. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/lib/rake/ext/module.rb +2 -0
  2987. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/lib/rake/ext/pathname.rb +25 -0
  2988. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/lib/rake/ext/string.rb +175 -0
  2989. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/lib/rake/ext/time.rb +18 -0
  2990. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/lib/rake/file_creation_task.rb +24 -0
  2991. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/lib/rake/file_list.rb +428 -0
  2992. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/lib/rake/file_task.rb +46 -0
  2993. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/lib/rake/file_utils.rb +128 -0
  2994. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/lib/rake/file_utils_ext.rb +144 -0
  2995. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/lib/rake/gempackagetask.rb +4 -0
  2996. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/lib/rake/invocation_chain.rb +56 -0
  2997. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/lib/rake/invocation_exception_mixin.rb +16 -0
  2998. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/lib/rake/late_time.rb +17 -0
  2999. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/lib/rake/linked_list.rb +103 -0
  3000. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/lib/rake/loaders/makefile.rb +53 -0
  3001. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/lib/rake/multi_task.rb +13 -0
  3002. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/lib/rake/name_space.rb +38 -0
  3003. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/lib/rake/packagetask.rb +199 -0
  3004. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/lib/rake/pathmap.rb +3 -0
  3005. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/lib/rake/phony.rb +15 -0
  3006. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/lib/rake/private_reader.rb +20 -0
  3007. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/lib/rake/promise.rb +99 -0
  3008. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/lib/rake/pseudo_status.rb +29 -0
  3009. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/lib/rake/rake_module.rb +38 -0
  3010. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/lib/rake/rake_test_loader.rb +22 -0
  3011. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/lib/rake/rdoctask.rb +4 -0
  3012. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/lib/rake/ruby182_test_unit_fix.rb +29 -0
  3013. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/lib/rake/rule_recursion_overflow_error.rb +20 -0
  3014. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/lib/rake/runtest.rb +27 -0
  3015. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/lib/rake/scope.rb +42 -0
  3016. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/lib/rake/task.rb +383 -0
  3017. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/lib/rake/task_argument_error.rb +7 -0
  3018. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/lib/rake/task_arguments.rb +98 -0
  3019. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/lib/rake/task_manager.rb +307 -0
  3020. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/lib/rake/tasklib.rb +24 -0
  3021. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/lib/rake/testtask.rb +213 -0
  3022. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/lib/rake/thread_history_display.rb +48 -0
  3023. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/lib/rake/thread_pool.rb +164 -0
  3024. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/lib/rake/trace_output.rb +22 -0
  3025. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/lib/rake/version.rb +7 -0
  3026. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/lib/rake/win32.rb +56 -0
  3027. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/rakelib/publish.rake +20 -0
  3028. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/rakelib/test_times.rake +25 -0
  3029. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/test/file_creation.rb +34 -0
  3030. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/test/helper.rb +129 -0
  3031. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/test/support/rakefile_definitions.rb +478 -0
  3032. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/test/support/ruby_runner.rb +34 -0
  3033. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/test/test_private_reader.rb +42 -0
  3034. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/test/test_rake.rb +40 -0
  3035. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/test/test_rake_application.rb +643 -0
  3036. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/test/test_rake_application_options.rb +468 -0
  3037. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/test/test_rake_backtrace.rb +119 -0
  3038. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/test/test_rake_clean.rb +61 -0
  3039. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/test/test_rake_cpu_counter.rb +68 -0
  3040. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/test/test_rake_definitions.rb +84 -0
  3041. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/test/test_rake_directory_task.rb +76 -0
  3042. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/test/test_rake_dsl.rb +40 -0
  3043. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/test/test_rake_early_time.rb +31 -0
  3044. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/test/test_rake_extension.rb +59 -0
  3045. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/test/test_rake_file_creation_task.rb +56 -0
  3046. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/test/test_rake_file_list.rb +670 -0
  3047. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/test/test_rake_file_list_path_map.rb +8 -0
  3048. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/test/test_rake_file_task.rb +197 -0
  3049. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/test/test_rake_file_utils.rb +314 -0
  3050. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/test/test_rake_ftp_file.rb +74 -0
  3051. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/test/test_rake_functional.rb +482 -0
  3052. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/test/test_rake_invocation_chain.rb +64 -0
  3053. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/test/test_rake_late_time.rb +18 -0
  3054. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/test/test_rake_linked_list.rb +84 -0
  3055. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/test/test_rake_makefile_loader.rb +46 -0
  3056. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/test/test_rake_multi_task.rb +64 -0
  3057. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/test/test_rake_name_space.rb +57 -0
  3058. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/test/test_rake_package_task.rb +79 -0
  3059. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/test/test_rake_path_map.rb +168 -0
  3060. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/test/test_rake_path_map_explode.rb +34 -0
  3061. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/test/test_rake_path_map_partial.rb +18 -0
  3062. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/test/test_rake_pathname_extensions.rb +15 -0
  3063. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/test/test_rake_pseudo_status.rb +21 -0
  3064. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/test/test_rake_rake_test_loader.rb +20 -0
  3065. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/test/test_rake_reduce_compat.rb +26 -0
  3066. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/test/test_rake_require.rb +40 -0
  3067. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/test/test_rake_rules.rb +388 -0
  3068. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/test/test_rake_scope.rb +44 -0
  3069. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/test/test_rake_task.rb +393 -0
  3070. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/test/test_rake_task_argument_parsing.rb +119 -0
  3071. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/test/test_rake_task_arguments.rb +127 -0
  3072. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/test/test_rake_task_lib.rb +9 -0
  3073. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/test/test_rake_task_manager.rb +178 -0
  3074. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/test/test_rake_task_manager_argument_resolution.rb +19 -0
  3075. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/test/test_rake_task_with_arguments.rb +172 -0
  3076. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/test/test_rake_test_task.rb +146 -0
  3077. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/test/test_rake_thread_pool.rb +145 -0
  3078. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/test/test_rake_top_level_functions.rb +71 -0
  3079. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/test/test_rake_win32.rb +72 -0
  3080. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/test/test_thread_history_display.rb +101 -0
  3081. data/vendor/bundle/ruby/2.7.0/gems/rake-10.5.0/test/test_trace_output.rb +52 -0
  3082. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/.github/workflows/macos.yml +22 -0
  3083. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/.github/workflows/ubuntu-rvm.yml +28 -0
  3084. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/.github/workflows/ubuntu.yml +20 -0
  3085. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/.github/workflows/windows.yml +20 -0
  3086. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/CONTRIBUTING.rdoc +43 -0
  3087. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/Gemfile +10 -0
  3088. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/History.rdoc +2368 -0
  3089. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/MIT-LICENSE +21 -0
  3090. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/README.rdoc +155 -0
  3091. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/Rakefile +41 -0
  3092. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/bin/bundle +105 -0
  3093. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/bin/console +7 -0
  3094. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/bin/rake +29 -0
  3095. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/bin/rdoc +29 -0
  3096. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/bin/rubocop +29 -0
  3097. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/bin/setup +6 -0
  3098. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/doc/command_line_usage.rdoc +158 -0
  3099. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/doc/example/Rakefile1 +38 -0
  3100. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/doc/example/Rakefile2 +35 -0
  3101. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/doc/example/a.c +6 -0
  3102. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/doc/example/b.c +6 -0
  3103. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/doc/example/main.c +11 -0
  3104. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/doc/glossary.rdoc +42 -0
  3105. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/doc/jamis.rb +592 -0
  3106. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/doc/proto_rake.rdoc +127 -0
  3107. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/doc/rake.1 +156 -0
  3108. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/doc/rakefile.rdoc +622 -0
  3109. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/doc/rational.rdoc +151 -0
  3110. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/exe/rake +27 -0
  3111. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake.rb +71 -0
  3112. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/application.rb +824 -0
  3113. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/backtrace.rb +24 -0
  3114. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/clean.rb +78 -0
  3115. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/cloneable.rb +17 -0
  3116. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/cpu_counter.rb +107 -0
  3117. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/default_loader.rb +15 -0
  3118. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/dsl_definition.rb +195 -0
  3119. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/early_time.rb +22 -0
  3120. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/ext/core.rb +26 -0
  3121. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/ext/string.rb +176 -0
  3122. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/file_creation_task.rb +25 -0
  3123. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/file_list.rb +435 -0
  3124. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/file_task.rb +54 -0
  3125. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/file_utils.rb +134 -0
  3126. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/file_utils_ext.rb +134 -0
  3127. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/invocation_chain.rb +57 -0
  3128. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/invocation_exception_mixin.rb +17 -0
  3129. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/late_time.rb +18 -0
  3130. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/linked_list.rb +112 -0
  3131. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/loaders/makefile.rb +54 -0
  3132. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/multi_task.rb +14 -0
  3133. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/name_space.rb +38 -0
  3134. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/packagetask.rb +222 -0
  3135. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/phony.rb +16 -0
  3136. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/private_reader.rb +21 -0
  3137. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/promise.rb +100 -0
  3138. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/pseudo_status.rb +30 -0
  3139. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/rake_module.rb +67 -0
  3140. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/rake_test_loader.rb +27 -0
  3141. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/rule_recursion_overflow_error.rb +20 -0
  3142. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/scope.rb +43 -0
  3143. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/task.rb +434 -0
  3144. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/task_argument_error.rb +8 -0
  3145. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/task_arguments.rb +109 -0
  3146. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/task_manager.rb +331 -0
  3147. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/tasklib.rb +12 -0
  3148. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/testtask.rb +224 -0
  3149. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/thread_history_display.rb +49 -0
  3150. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/thread_pool.rb +163 -0
  3151. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/trace_output.rb +23 -0
  3152. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/version.rb +10 -0
  3153. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/win32.rb +51 -0
  3154. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/rake.gemspec +43 -0
  3155. data/vendor/bundle/ruby/2.7.0/gems/rspec-3.9.0/LICENSE.md +27 -0
  3156. data/vendor/bundle/ruby/2.7.0/gems/rspec-3.9.0/README.md +43 -0
  3157. data/vendor/bundle/ruby/2.7.0/gems/rspec-3.9.0/lib/rspec.rb +3 -0
  3158. data/vendor/bundle/ruby/2.7.0/gems/rspec-3.9.0/lib/rspec/version.rb +5 -0
  3159. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/.document +5 -0
  3160. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/.yardopts +8 -0
  3161. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/Changelog.md +2274 -0
  3162. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/LICENSE.md +26 -0
  3163. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/README.md +384 -0
  3164. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/exe/rspec +4 -0
  3165. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/autorun.rb +3 -0
  3166. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core.rb +186 -0
  3167. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/backtrace_formatter.rb +65 -0
  3168. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/bisect/coordinator.rb +62 -0
  3169. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/bisect/example_minimizer.rb +173 -0
  3170. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/bisect/fork_runner.rb +135 -0
  3171. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/bisect/server.rb +61 -0
  3172. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/bisect/shell_command.rb +126 -0
  3173. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/bisect/shell_runner.rb +73 -0
  3174. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/bisect/utilities.rb +58 -0
  3175. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/configuration.rb +2336 -0
  3176. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/configuration_options.rb +233 -0
  3177. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/did_you_mean.rb +46 -0
  3178. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/drb.rb +113 -0
  3179. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/dsl.rb +98 -0
  3180. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/example.rb +656 -0
  3181. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/example_group.rb +889 -0
  3182. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/example_status_persister.rb +235 -0
  3183. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/filter_manager.rb +231 -0
  3184. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/flat_map.rb +20 -0
  3185. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/formatters.rb +272 -0
  3186. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/formatters/base_bisect_formatter.rb +45 -0
  3187. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/formatters/base_formatter.rb +70 -0
  3188. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/formatters/base_text_formatter.rb +75 -0
  3189. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/formatters/bisect_drb_formatter.rb +29 -0
  3190. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/formatters/bisect_progress_formatter.rb +157 -0
  3191. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/formatters/console_codes.rb +68 -0
  3192. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/formatters/deprecation_formatter.rb +223 -0
  3193. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/formatters/documentation_formatter.rb +102 -0
  3194. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/formatters/exception_presenter.rb +508 -0
  3195. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/formatters/failure_list_formatter.rb +23 -0
  3196. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/formatters/fallback_message_formatter.rb +28 -0
  3197. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/formatters/helpers.rb +110 -0
  3198. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/formatters/html_formatter.rb +153 -0
  3199. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/formatters/html_printer.rb +414 -0
  3200. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/formatters/html_snippet_extractor.rb +120 -0
  3201. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/formatters/json_formatter.rb +102 -0
  3202. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/formatters/profile_formatter.rb +68 -0
  3203. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/formatters/progress_formatter.rb +29 -0
  3204. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/formatters/protocol.rb +182 -0
  3205. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/formatters/snippet_extractor.rb +134 -0
  3206. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/formatters/syntax_highlighter.rb +91 -0
  3207. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/hooks.rb +632 -0
  3208. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/invocations.rb +87 -0
  3209. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/memoized_helpers.rb +554 -0
  3210. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/metadata.rb +498 -0
  3211. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/metadata_filter.rb +255 -0
  3212. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/minitest_assertions_adapter.rb +31 -0
  3213. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/mocking_adapters/flexmock.rb +31 -0
  3214. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/mocking_adapters/mocha.rb +57 -0
  3215. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/mocking_adapters/null.rb +14 -0
  3216. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/mocking_adapters/rr.rb +31 -0
  3217. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/mocking_adapters/rspec.rb +32 -0
  3218. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/notifications.rb +521 -0
  3219. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/option_parser.rb +316 -0
  3220. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/ordering.rb +158 -0
  3221. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/output_wrapper.rb +29 -0
  3222. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/pending.rb +165 -0
  3223. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/profiler.rb +34 -0
  3224. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/project_initializer.rb +48 -0
  3225. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/project_initializer/.rspec +1 -0
  3226. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/project_initializer/spec/spec_helper.rb +100 -0
  3227. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/rake_task.rb +188 -0
  3228. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/reporter.rb +265 -0
  3229. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/ruby_project.rb +53 -0
  3230. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/runner.rb +204 -0
  3231. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/sandbox.rb +37 -0
  3232. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/set.rb +54 -0
  3233. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/shared_context.rb +55 -0
  3234. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/shared_example_group.rb +269 -0
  3235. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/shell_escape.rb +49 -0
  3236. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/test_unit_assertions_adapter.rb +30 -0
  3237. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/version.rb +9 -0
  3238. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/warnings.rb +40 -0
  3239. data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.1/lib/rspec/core/world.rb +275 -0
  3240. data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.0/.document +5 -0
  3241. data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.0/.yardopts +6 -0
  3242. data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.0/Changelog.md +1170 -0
  3243. data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.0/LICENSE.md +25 -0
  3244. data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.0/README.md +320 -0
  3245. data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.0/lib/rspec/expectations.rb +82 -0
  3246. data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.0/lib/rspec/expectations/block_snippet_extractor.rb +253 -0
  3247. data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.0/lib/rspec/expectations/configuration.rb +215 -0
  3248. data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.0/lib/rspec/expectations/expectation_target.rb +127 -0
  3249. data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.0/lib/rspec/expectations/fail_with.rb +39 -0
  3250. data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.0/lib/rspec/expectations/failure_aggregator.rb +194 -0
  3251. data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.0/lib/rspec/expectations/handler.rb +170 -0
  3252. data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.0/lib/rspec/expectations/minitest_integration.rb +58 -0
  3253. data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.0/lib/rspec/expectations/syntax.rb +132 -0
  3254. data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.0/lib/rspec/expectations/version.rb +8 -0
  3255. data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers.rb +1038 -0
  3256. data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/aliased_matcher.rb +116 -0
  3257. data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in.rb +52 -0
  3258. data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/all.rb +86 -0
  3259. data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/base_matcher.rb +193 -0
  3260. data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/be.rb +288 -0
  3261. data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/be_between.rb +77 -0
  3262. data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/be_instance_of.rb +26 -0
  3263. data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/be_kind_of.rb +20 -0
  3264. data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/be_within.rb +72 -0
  3265. data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/change.rb +428 -0
  3266. data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/compound.rb +276 -0
  3267. data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/contain_exactly.rb +302 -0
  3268. data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/cover.rb +24 -0
  3269. data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/eq.rb +40 -0
  3270. data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/eql.rb +34 -0
  3271. data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/equal.rb +81 -0
  3272. data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/exist.rb +90 -0
  3273. data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/has.rb +103 -0
  3274. data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/have_attributes.rb +114 -0
  3275. data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/include.rb +149 -0
  3276. data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/match.rb +106 -0
  3277. data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/operators.rb +128 -0
  3278. data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/output.rb +200 -0
  3279. data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/raise_error.rb +230 -0
  3280. data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/respond_to.rb +174 -0
  3281. data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/satisfy.rb +60 -0
  3282. data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/start_or_end_with.rb +94 -0
  3283. data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/throw_symbol.rb +132 -0
  3284. data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/yield.rb +432 -0
  3285. data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/composable.rb +171 -0
  3286. data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/dsl.rb +534 -0
  3287. data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/english_phrasing.rb +58 -0
  3288. data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/expecteds_for_multiple_diffs.rb +82 -0
  3289. data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/fail_matchers.rb +42 -0
  3290. data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/generated_descriptions.rb +41 -0
  3291. data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/matcher_delegator.rb +35 -0
  3292. data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/matcher_protocol.rb +99 -0
  3293. data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/.document +5 -0
  3294. data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/.yardopts +6 -0
  3295. data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/Changelog.md +1133 -0
  3296. data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/LICENSE.md +25 -0
  3297. data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/README.md +463 -0
  3298. data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks.rb +130 -0
  3299. data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance.rb +11 -0
  3300. data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/chain.rb +111 -0
  3301. data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/error_generator.rb +31 -0
  3302. data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/expect_chain_chain.rb +31 -0
  3303. data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/expectation_chain.rb +50 -0
  3304. data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/message_chains.rb +83 -0
  3305. data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/proxy.rb +116 -0
  3306. data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/recorder.rb +294 -0
  3307. data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/stub_chain.rb +51 -0
  3308. data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/stub_chain_chain.rb +23 -0
  3309. data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/argument_list_matcher.rb +100 -0
  3310. data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/argument_matchers.rb +322 -0
  3311. data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/configuration.rb +212 -0
  3312. data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/error_generator.rb +369 -0
  3313. data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/example_methods.rb +434 -0
  3314. data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/instance_method_stasher.rb +146 -0
  3315. data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/marshal_extension.rb +41 -0
  3316. data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/matchers/expectation_customization.rb +20 -0
  3317. data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/matchers/have_received.rb +134 -0
  3318. data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/matchers/receive.rb +132 -0
  3319. data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/matchers/receive_message_chain.rb +82 -0
  3320. data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/matchers/receive_messages.rb +77 -0
  3321. data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/message_chain.rb +87 -0
  3322. data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/message_expectation.rb +751 -0
  3323. data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/method_double.rb +287 -0
  3324. data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/method_reference.rb +202 -0
  3325. data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/minitest_integration.rb +68 -0
  3326. data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/mutate_const.rb +339 -0
  3327. data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/object_reference.rb +149 -0
  3328. data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/order_group.rb +81 -0
  3329. data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/proxy.rb +503 -0
  3330. data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/space.rb +238 -0
  3331. data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/standalone.rb +3 -0
  3332. data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/syntax.rb +325 -0
  3333. data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/targets.rb +124 -0
  3334. data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/test_double.rb +171 -0
  3335. data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/verifying_double.rb +129 -0
  3336. data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/verifying_message_expectation.rb +54 -0
  3337. data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/verifying_proxy.rb +220 -0
  3338. data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/version.rb +9 -0
  3339. data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.2/Changelog.md +292 -0
  3340. data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.2/LICENSE.md +23 -0
  3341. data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.2/README.md +40 -0
  3342. data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.2/lib/rspec/support.rb +149 -0
  3343. data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.2/lib/rspec/support/caller_filter.rb +83 -0
  3344. data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.2/lib/rspec/support/comparable_version.rb +46 -0
  3345. data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.2/lib/rspec/support/differ.rb +215 -0
  3346. data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.2/lib/rspec/support/directory_maker.rb +63 -0
  3347. data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.2/lib/rspec/support/encoded_string.rb +161 -0
  3348. data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.2/lib/rspec/support/fuzzy_matcher.rb +48 -0
  3349. data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.2/lib/rspec/support/hunk_generator.rb +47 -0
  3350. data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.2/lib/rspec/support/matcher_definition.rb +42 -0
  3351. data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.2/lib/rspec/support/method_signature_verifier.rb +438 -0
  3352. data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.2/lib/rspec/support/mutex.rb +73 -0
  3353. data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.2/lib/rspec/support/object_formatter.rb +275 -0
  3354. data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.2/lib/rspec/support/recursive_const_methods.rb +76 -0
  3355. data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.2/lib/rspec/support/reentrant_mutex.rb +53 -0
  3356. data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.2/lib/rspec/support/ruby_features.rb +185 -0
  3357. data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.2/lib/rspec/support/source.rb +75 -0
  3358. data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.2/lib/rspec/support/source/location.rb +21 -0
  3359. data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.2/lib/rspec/support/source/node.rb +110 -0
  3360. data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.2/lib/rspec/support/source/token.rb +87 -0
  3361. data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.2/lib/rspec/support/spec.rb +81 -0
  3362. data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.2/lib/rspec/support/spec/deprecation_helpers.rb +64 -0
  3363. data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.2/lib/rspec/support/spec/formatting_support.rb +9 -0
  3364. data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.2/lib/rspec/support/spec/in_sub_process.rb +69 -0
  3365. data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.2/lib/rspec/support/spec/library_wide_checks.rb +150 -0
  3366. data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.2/lib/rspec/support/spec/shell_out.rb +89 -0
  3367. data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.2/lib/rspec/support/spec/stderr_splitter.rb +67 -0
  3368. data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.2/lib/rspec/support/spec/string_matcher.rb +46 -0
  3369. data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.2/lib/rspec/support/spec/with_isolated_directory.rb +13 -0
  3370. data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.2/lib/rspec/support/spec/with_isolated_stderr.rb +13 -0
  3371. data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.2/lib/rspec/support/version.rb +7 -0
  3372. data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.2/lib/rspec/support/warnings.rb +39 -0
  3373. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/CHANGELOG.md +68 -0
  3374. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/README.md +632 -0
  3375. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/bin/sprockets +93 -0
  3376. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/rake/sprocketstask.rb +153 -0
  3377. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets.rb +229 -0
  3378. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/add_source_map_comment_to_asset_processor.rb +60 -0
  3379. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/asset.rb +195 -0
  3380. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/autoload.rb +16 -0
  3381. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/autoload/babel.rb +8 -0
  3382. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/autoload/closure.rb +8 -0
  3383. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/autoload/coffee_script.rb +8 -0
  3384. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/autoload/eco.rb +8 -0
  3385. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/autoload/ejs.rb +8 -0
  3386. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/autoload/jsminc.rb +8 -0
  3387. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/autoload/sass.rb +8 -0
  3388. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/autoload/sassc.rb +8 -0
  3389. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/autoload/uglifier.rb +8 -0
  3390. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/autoload/yui.rb +8 -0
  3391. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/autoload/zopfli.rb +7 -0
  3392. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/babel_processor.rb +66 -0
  3393. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/base.rb +147 -0
  3394. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/bower.rb +61 -0
  3395. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/bundle.rb +105 -0
  3396. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/cache.rb +271 -0
  3397. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/cache/file_store.rb +208 -0
  3398. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/cache/memory_store.rb +75 -0
  3399. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/cache/null_store.rb +54 -0
  3400. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/cached_environment.rb +64 -0
  3401. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/closure_compressor.rb +48 -0
  3402. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/coffee_script_processor.rb +39 -0
  3403. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/compressing.rb +134 -0
  3404. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/configuration.rb +79 -0
  3405. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/context.rb +304 -0
  3406. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/dependencies.rb +74 -0
  3407. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/digest_utils.rb +200 -0
  3408. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/directive_processor.rb +414 -0
  3409. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/eco_processor.rb +33 -0
  3410. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/ejs_processor.rb +32 -0
  3411. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/encoding_utils.rb +262 -0
  3412. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/environment.rb +46 -0
  3413. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/erb_processor.rb +37 -0
  3414. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/errors.rb +12 -0
  3415. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/exporters/base.rb +72 -0
  3416. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/exporters/file_exporter.rb +24 -0
  3417. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/exporters/zlib_exporter.rb +33 -0
  3418. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/exporters/zopfli_exporter.rb +14 -0
  3419. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/exporting.rb +73 -0
  3420. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/file_reader.rb +16 -0
  3421. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/http_utils.rb +135 -0
  3422. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/jsminc_compressor.rb +32 -0
  3423. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/jst_processor.rb +50 -0
  3424. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/loader.rb +343 -0
  3425. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/manifest.rb +338 -0
  3426. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/manifest_utils.rb +48 -0
  3427. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/mime.rb +96 -0
  3428. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/npm.rb +52 -0
  3429. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/path_dependency_utils.rb +77 -0
  3430. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/path_digest_utils.rb +48 -0
  3431. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/path_utils.rb +367 -0
  3432. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/paths.rb +82 -0
  3433. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/preprocessors/default_source_map.rb +49 -0
  3434. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/processing.rb +228 -0
  3435. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/processor_utils.rb +169 -0
  3436. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/resolve.rb +295 -0
  3437. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/sass_cache_store.rb +30 -0
  3438. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/sass_compressor.rb +63 -0
  3439. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/sass_functions.rb +3 -0
  3440. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/sass_importer.rb +3 -0
  3441. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/sass_processor.rb +313 -0
  3442. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/sassc_compressor.rb +56 -0
  3443. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/sassc_processor.rb +297 -0
  3444. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/server.rb +295 -0
  3445. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/source_map_processor.rb +66 -0
  3446. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/source_map_utils.rb +483 -0
  3447. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/transformers.rb +173 -0
  3448. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/uglifier_compressor.rb +66 -0
  3449. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/unloaded_asset.rb +139 -0
  3450. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/uri_tar.rb +99 -0
  3451. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/uri_utils.rb +191 -0
  3452. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/utils.rb +202 -0
  3453. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/utils/gzip.rb +99 -0
  3454. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/version.rb +4 -0
  3455. data/vendor/bundle/ruby/2.7.0/gems/sprockets-4.0.0/lib/sprockets/yui_compressor.rb +56 -0
  3456. data/vendor/bundle/ruby/2.7.0/gems/sprockets-rails-3.2.1/MIT-LICENSE +20 -0
  3457. data/vendor/bundle/ruby/2.7.0/gems/sprockets-rails-3.2.1/README.md +192 -0
  3458. data/vendor/bundle/ruby/2.7.0/gems/sprockets-rails-3.2.1/lib/sprockets/rails.rb +4 -0
  3459. data/vendor/bundle/ruby/2.7.0/gems/sprockets-rails-3.2.1/lib/sprockets/rails/context.rb +48 -0
  3460. data/vendor/bundle/ruby/2.7.0/gems/sprockets-rails-3.2.1/lib/sprockets/rails/helper.rb +368 -0
  3461. data/vendor/bundle/ruby/2.7.0/gems/sprockets-rails-3.2.1/lib/sprockets/rails/quiet_assets.rb +18 -0
  3462. data/vendor/bundle/ruby/2.7.0/gems/sprockets-rails-3.2.1/lib/sprockets/rails/route_wrapper.rb +23 -0
  3463. data/vendor/bundle/ruby/2.7.0/gems/sprockets-rails-3.2.1/lib/sprockets/rails/task.rb +89 -0
  3464. data/vendor/bundle/ruby/2.7.0/gems/sprockets-rails-3.2.1/lib/sprockets/rails/utils.rb +11 -0
  3465. data/vendor/bundle/ruby/2.7.0/gems/sprockets-rails-3.2.1/lib/sprockets/rails/version.rb +5 -0
  3466. data/vendor/bundle/ruby/2.7.0/gems/sprockets-rails-3.2.1/lib/sprockets/railtie.rb +255 -0
  3467. data/vendor/bundle/ruby/2.7.0/gems/symbolic_enum-1.1.4/.gitignore +12 -0
  3468. data/vendor/bundle/ruby/2.7.0/gems/symbolic_enum-1.1.4/.rspec +3 -0
  3469. data/vendor/bundle/ruby/2.7.0/gems/symbolic_enum-1.1.4/.travis.yml +5 -0
  3470. data/vendor/bundle/ruby/2.7.0/gems/symbolic_enum-1.1.4/Gemfile +6 -0
  3471. data/vendor/bundle/ruby/2.7.0/gems/symbolic_enum-1.1.4/Gemfile.lock +144 -0
  3472. data/vendor/bundle/ruby/2.7.0/gems/symbolic_enum-1.1.4/LICENSE.txt +21 -0
  3473. data/vendor/bundle/ruby/2.7.0/gems/symbolic_enum-1.1.4/README.md +41 -0
  3474. data/vendor/bundle/ruby/2.7.0/gems/symbolic_enum-1.1.4/Rakefile +6 -0
  3475. data/vendor/bundle/ruby/2.7.0/gems/symbolic_enum-1.1.4/bin/console +14 -0
  3476. data/vendor/bundle/ruby/2.7.0/gems/symbolic_enum-1.1.4/bin/setup +8 -0
  3477. data/vendor/bundle/ruby/2.7.0/gems/symbolic_enum-1.1.4/lib/symbolic_enum.rb +102 -0
  3478. data/vendor/bundle/ruby/2.7.0/gems/symbolic_enum-1.1.4/lib/symbolic_enum/version.rb +3 -0
  3479. data/vendor/bundle/ruby/2.7.0/gems/symbolic_enum-1.1.4/symbolic_enum.gemspec +29 -0
  3480. data/vendor/bundle/ruby/2.7.0/gems/thor-1.0.1/.document +5 -0
  3481. data/vendor/bundle/ruby/2.7.0/gems/thor-1.0.1/CHANGELOG.md +220 -0
  3482. data/vendor/bundle/ruby/2.7.0/gems/thor-1.0.1/CONTRIBUTING.md +15 -0
  3483. data/vendor/bundle/ruby/2.7.0/gems/thor-1.0.1/LICENSE.md +20 -0
  3484. data/vendor/bundle/ruby/2.7.0/gems/thor-1.0.1/README.md +51 -0
  3485. data/vendor/bundle/ruby/2.7.0/gems/thor-1.0.1/bin/thor +6 -0
  3486. data/vendor/bundle/ruby/2.7.0/gems/thor-1.0.1/lib/thor.rb +517 -0
  3487. data/vendor/bundle/ruby/2.7.0/gems/thor-1.0.1/lib/thor/actions.rb +336 -0
  3488. data/vendor/bundle/ruby/2.7.0/gems/thor-1.0.1/lib/thor/actions/create_file.rb +104 -0
  3489. data/vendor/bundle/ruby/2.7.0/gems/thor-1.0.1/lib/thor/actions/create_link.rb +61 -0
  3490. data/vendor/bundle/ruby/2.7.0/gems/thor-1.0.1/lib/thor/actions/directory.rb +108 -0
  3491. data/vendor/bundle/ruby/2.7.0/gems/thor-1.0.1/lib/thor/actions/empty_directory.rb +143 -0
  3492. data/vendor/bundle/ruby/2.7.0/gems/thor-1.0.1/lib/thor/actions/file_manipulation.rb +373 -0
  3493. data/vendor/bundle/ruby/2.7.0/gems/thor-1.0.1/lib/thor/actions/inject_into_file.rb +120 -0
  3494. data/vendor/bundle/ruby/2.7.0/gems/thor-1.0.1/lib/thor/base.rb +699 -0
  3495. data/vendor/bundle/ruby/2.7.0/gems/thor-1.0.1/lib/thor/command.rb +142 -0
  3496. data/vendor/bundle/ruby/2.7.0/gems/thor-1.0.1/lib/thor/core_ext/hash_with_indifferent_access.rb +97 -0
  3497. data/vendor/bundle/ruby/2.7.0/gems/thor-1.0.1/lib/thor/error.rb +110 -0
  3498. data/vendor/bundle/ruby/2.7.0/gems/thor-1.0.1/lib/thor/group.rb +281 -0
  3499. data/vendor/bundle/ruby/2.7.0/gems/thor-1.0.1/lib/thor/invocation.rb +178 -0
  3500. data/vendor/bundle/ruby/2.7.0/gems/thor-1.0.1/lib/thor/line_editor.rb +17 -0
  3501. data/vendor/bundle/ruby/2.7.0/gems/thor-1.0.1/lib/thor/line_editor/basic.rb +37 -0
  3502. data/vendor/bundle/ruby/2.7.0/gems/thor-1.0.1/lib/thor/line_editor/readline.rb +88 -0
  3503. data/vendor/bundle/ruby/2.7.0/gems/thor-1.0.1/lib/thor/nested_context.rb +29 -0
  3504. data/vendor/bundle/ruby/2.7.0/gems/thor-1.0.1/lib/thor/parser.rb +4 -0
  3505. data/vendor/bundle/ruby/2.7.0/gems/thor-1.0.1/lib/thor/parser/argument.rb +70 -0
  3506. data/vendor/bundle/ruby/2.7.0/gems/thor-1.0.1/lib/thor/parser/arguments.rb +175 -0
  3507. data/vendor/bundle/ruby/2.7.0/gems/thor-1.0.1/lib/thor/parser/option.rb +159 -0
  3508. data/vendor/bundle/ruby/2.7.0/gems/thor-1.0.1/lib/thor/parser/options.rb +236 -0
  3509. data/vendor/bundle/ruby/2.7.0/gems/thor-1.0.1/lib/thor/rake_compat.rb +72 -0
  3510. data/vendor/bundle/ruby/2.7.0/gems/thor-1.0.1/lib/thor/runner.rb +325 -0
  3511. data/vendor/bundle/ruby/2.7.0/gems/thor-1.0.1/lib/thor/shell.rb +81 -0
  3512. data/vendor/bundle/ruby/2.7.0/gems/thor-1.0.1/lib/thor/shell/basic.rb +491 -0
  3513. data/vendor/bundle/ruby/2.7.0/gems/thor-1.0.1/lib/thor/shell/color.rb +153 -0
  3514. data/vendor/bundle/ruby/2.7.0/gems/thor-1.0.1/lib/thor/shell/html.rb +126 -0
  3515. data/vendor/bundle/ruby/2.7.0/gems/thor-1.0.1/lib/thor/util.rb +284 -0
  3516. data/vendor/bundle/ruby/2.7.0/gems/thor-1.0.1/lib/thor/version.rb +3 -0
  3517. data/vendor/bundle/ruby/2.7.0/gems/thor-1.0.1/thor.gemspec +28 -0
  3518. data/vendor/bundle/ruby/2.7.0/gems/thread_safe-0.3.6/.rspec +2 -0
  3519. data/vendor/bundle/ruby/2.7.0/gems/thread_safe-0.3.6/.travis.yml +46 -0
  3520. data/vendor/bundle/ruby/2.7.0/gems/thread_safe-0.3.6/.yardopts +13 -0
  3521. data/vendor/bundle/ruby/2.7.0/gems/thread_safe-0.3.6/Gemfile +20 -0
  3522. data/vendor/bundle/ruby/2.7.0/gems/thread_safe-0.3.6/LICENSE +144 -0
  3523. data/vendor/bundle/ruby/2.7.0/gems/thread_safe-0.3.6/README.md +60 -0
  3524. data/vendor/bundle/ruby/2.7.0/gems/thread_safe-0.3.6/Rakefile +62 -0
  3525. data/vendor/bundle/ruby/2.7.0/gems/thread_safe-0.3.6/examples/bench_cache.rb +35 -0
  3526. data/vendor/bundle/ruby/2.7.0/gems/thread_safe-0.3.6/ext/org/jruby/ext/thread_safe/JRubyCacheBackendLibrary.java +245 -0
  3527. data/vendor/bundle/ruby/2.7.0/gems/thread_safe-0.3.6/ext/org/jruby/ext/thread_safe/jsr166e/ConcurrentHashMap.java +31 -0
  3528. data/vendor/bundle/ruby/2.7.0/gems/thread_safe-0.3.6/ext/org/jruby/ext/thread_safe/jsr166e/ConcurrentHashMapV8.java +3863 -0
  3529. data/vendor/bundle/ruby/2.7.0/gems/thread_safe-0.3.6/ext/org/jruby/ext/thread_safe/jsr166e/LongAdder.java +203 -0
  3530. data/vendor/bundle/ruby/2.7.0/gems/thread_safe-0.3.6/ext/org/jruby/ext/thread_safe/jsr166e/Striped64.java +342 -0
  3531. data/vendor/bundle/ruby/2.7.0/gems/thread_safe-0.3.6/ext/org/jruby/ext/thread_safe/jsr166e/nounsafe/ConcurrentHashMapV8.java +3800 -0
  3532. data/vendor/bundle/ruby/2.7.0/gems/thread_safe-0.3.6/ext/org/jruby/ext/thread_safe/jsr166e/nounsafe/LongAdder.java +204 -0
  3533. data/vendor/bundle/ruby/2.7.0/gems/thread_safe-0.3.6/ext/org/jruby/ext/thread_safe/jsr166e/nounsafe/Striped64.java +291 -0
  3534. data/vendor/bundle/ruby/2.7.0/gems/thread_safe-0.3.6/ext/org/jruby/ext/thread_safe/jsr166y/ThreadLocalRandom.java +199 -0
  3535. data/vendor/bundle/ruby/2.7.0/gems/thread_safe-0.3.6/ext/thread_safe/JrubyCacheBackendService.java +15 -0
  3536. data/vendor/bundle/ruby/2.7.0/gems/thread_safe-0.3.6/lib/thread_safe.rb +65 -0
  3537. data/vendor/bundle/ruby/2.7.0/gems/thread_safe-0.3.6/lib/thread_safe/atomic_reference_cache_backend.rb +908 -0
  3538. data/vendor/bundle/ruby/2.7.0/gems/thread_safe-0.3.6/lib/thread_safe/cache.rb +161 -0
  3539. data/vendor/bundle/ruby/2.7.0/gems/thread_safe-0.3.6/lib/thread_safe/mri_cache_backend.rb +60 -0
  3540. data/vendor/bundle/ruby/2.7.0/gems/thread_safe-0.3.6/lib/thread_safe/non_concurrent_cache_backend.rb +135 -0
  3541. data/vendor/bundle/ruby/2.7.0/gems/thread_safe-0.3.6/lib/thread_safe/synchronized_cache_backend.rb +77 -0
  3542. data/vendor/bundle/ruby/2.7.0/gems/thread_safe-0.3.6/lib/thread_safe/synchronized_delegator.rb +43 -0
  3543. data/vendor/bundle/ruby/2.7.0/gems/thread_safe-0.3.6/lib/thread_safe/util.rb +16 -0
  3544. data/vendor/bundle/ruby/2.7.0/gems/thread_safe-0.3.6/lib/thread_safe/util/adder.rb +62 -0
  3545. data/vendor/bundle/ruby/2.7.0/gems/thread_safe-0.3.6/lib/thread_safe/util/atomic_reference.rb +44 -0
  3546. data/vendor/bundle/ruby/2.7.0/gems/thread_safe-0.3.6/lib/thread_safe/util/cheap_lockable.rb +106 -0
  3547. data/vendor/bundle/ruby/2.7.0/gems/thread_safe-0.3.6/lib/thread_safe/util/power_of_two_tuple.rb +26 -0
  3548. data/vendor/bundle/ruby/2.7.0/gems/thread_safe-0.3.6/lib/thread_safe/util/striped64.rb +222 -0
  3549. data/vendor/bundle/ruby/2.7.0/gems/thread_safe-0.3.6/lib/thread_safe/util/volatile.rb +64 -0
  3550. data/vendor/bundle/ruby/2.7.0/gems/thread_safe-0.3.6/lib/thread_safe/util/volatile_tuple.rb +46 -0
  3551. data/vendor/bundle/ruby/2.7.0/gems/thread_safe-0.3.6/lib/thread_safe/util/xor_shift_random.rb +41 -0
  3552. data/vendor/bundle/ruby/2.7.0/gems/thread_safe-0.3.6/lib/thread_safe/version.rb +21 -0
  3553. data/vendor/bundle/ruby/2.7.0/gems/thread_safe-0.3.6/spec/.gitignore +0 -0
  3554. data/vendor/bundle/ruby/2.7.0/gems/thread_safe-0.3.6/spec/spec_helper.rb +31 -0
  3555. data/vendor/bundle/ruby/2.7.0/gems/thread_safe-0.3.6/spec/src/thread_safe/SecurityManager.java +21 -0
  3556. data/vendor/bundle/ruby/2.7.0/gems/thread_safe-0.3.6/spec/support/.gitignore +0 -0
  3557. data/vendor/bundle/ruby/2.7.0/gems/thread_safe-0.3.6/spec/support/threads.rb +1 -0
  3558. data/vendor/bundle/ruby/2.7.0/gems/thread_safe-0.3.6/spec/support/threadsafe_test.rb +75 -0
  3559. data/vendor/bundle/ruby/2.7.0/gems/thread_safe-0.3.6/spec/thread_safe/.gitignore +0 -0
  3560. data/vendor/bundle/ruby/2.7.0/gems/thread_safe-0.3.6/spec/thread_safe/array_spec.rb +18 -0
  3561. data/vendor/bundle/ruby/2.7.0/gems/thread_safe-0.3.6/spec/thread_safe/cache_loops_spec.rb +507 -0
  3562. data/vendor/bundle/ruby/2.7.0/gems/thread_safe-0.3.6/spec/thread_safe/cache_spec.rb +943 -0
  3563. data/vendor/bundle/ruby/2.7.0/gems/thread_safe-0.3.6/spec/thread_safe/hash_spec.rb +17 -0
  3564. data/vendor/bundle/ruby/2.7.0/gems/thread_safe-0.3.6/spec/thread_safe/no_unsafe_spec.rb +27 -0
  3565. data/vendor/bundle/ruby/2.7.0/gems/thread_safe-0.3.6/spec/thread_safe/synchronized_delegator_spec.rb +85 -0
  3566. data/vendor/bundle/ruby/2.7.0/gems/thread_safe-0.3.6/tasks/update_doc.rake +45 -0
  3567. data/vendor/bundle/ruby/2.7.0/gems/thread_safe-0.3.6/thread_safe.gemspec +26 -0
  3568. data/vendor/bundle/ruby/2.7.0/gems/thread_safe-0.3.6/yard-template/default/fulldoc/html/css/common.css +125 -0
  3569. data/vendor/bundle/ruby/2.7.0/gems/thread_safe-0.3.6/yard-template/default/layout/html/footer.erb +16 -0
  3570. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/.yardopts +6 -0
  3571. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/CHANGES.md +797 -0
  3572. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/LICENSE +19 -0
  3573. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/README.md +152 -0
  3574. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/Rakefile +107 -0
  3575. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/lib/tzinfo.rb +40 -0
  3576. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/lib/tzinfo/country.rb +196 -0
  3577. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/lib/tzinfo/country_index_definition.rb +31 -0
  3578. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/lib/tzinfo/country_info.rb +42 -0
  3579. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/lib/tzinfo/country_timezone.rb +135 -0
  3580. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/lib/tzinfo/data_source.rb +190 -0
  3581. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/lib/tzinfo/data_timezone.rb +58 -0
  3582. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/lib/tzinfo/data_timezone_info.rb +55 -0
  3583. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/lib/tzinfo/info_timezone.rb +30 -0
  3584. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/lib/tzinfo/linked_timezone.rb +63 -0
  3585. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/lib/tzinfo/linked_timezone_info.rb +26 -0
  3586. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/lib/tzinfo/offset_rationals.rb +77 -0
  3587. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/lib/tzinfo/ruby_core_support.rb +176 -0
  3588. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/lib/tzinfo/ruby_country_info.rb +74 -0
  3589. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/lib/tzinfo/ruby_data_source.rb +138 -0
  3590. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/lib/tzinfo/time_or_datetime.rb +340 -0
  3591. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/lib/tzinfo/timezone.rb +673 -0
  3592. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/lib/tzinfo/timezone_definition.rb +36 -0
  3593. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/lib/tzinfo/timezone_index_definition.rb +54 -0
  3594. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/lib/tzinfo/timezone_info.rb +30 -0
  3595. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/lib/tzinfo/timezone_offset.rb +101 -0
  3596. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/lib/tzinfo/timezone_period.rb +245 -0
  3597. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/lib/tzinfo/timezone_proxy.rb +105 -0
  3598. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/lib/tzinfo/timezone_transition.rb +130 -0
  3599. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/lib/tzinfo/timezone_transition_definition.rb +104 -0
  3600. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/lib/tzinfo/transition_data_timezone_info.rb +274 -0
  3601. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/lib/tzinfo/zoneinfo_country_info.rb +37 -0
  3602. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/lib/tzinfo/zoneinfo_data_source.rb +496 -0
  3603. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/lib/tzinfo/zoneinfo_timezone_info.rb +298 -0
  3604. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/tc_country.rb +236 -0
  3605. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/tc_country_index_definition.rb +69 -0
  3606. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/tc_country_info.rb +16 -0
  3607. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/tc_country_timezone.rb +173 -0
  3608. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/tc_data_source.rb +218 -0
  3609. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/tc_data_timezone.rb +99 -0
  3610. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/tc_data_timezone_info.rb +18 -0
  3611. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/tc_info_timezone.rb +34 -0
  3612. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/tc_linked_timezone.rb +155 -0
  3613. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/tc_linked_timezone_info.rb +23 -0
  3614. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/tc_offset_rationals.rb +23 -0
  3615. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/tc_ruby_core_support.rb +168 -0
  3616. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/tc_ruby_country_info.rb +110 -0
  3617. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/tc_ruby_data_source.rb +165 -0
  3618. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/tc_time_or_datetime.rb +660 -0
  3619. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/tc_timezone.rb +1359 -0
  3620. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/tc_timezone_definition.rb +113 -0
  3621. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/tc_timezone_index_definition.rb +73 -0
  3622. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/tc_timezone_info.rb +11 -0
  3623. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/tc_timezone_london.rb +143 -0
  3624. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/tc_timezone_melbourne.rb +142 -0
  3625. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/tc_timezone_new_york.rb +142 -0
  3626. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/tc_timezone_offset.rb +126 -0
  3627. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/tc_timezone_period.rb +555 -0
  3628. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/tc_timezone_proxy.rb +136 -0
  3629. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/tc_timezone_transition.rb +366 -0
  3630. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/tc_timezone_transition_definition.rb +295 -0
  3631. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/tc_timezone_utc.rb +27 -0
  3632. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/tc_transition_data_timezone_info.rb +433 -0
  3633. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/tc_zoneinfo_country_info.rb +78 -0
  3634. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/tc_zoneinfo_data_source.rb +1204 -0
  3635. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/tc_zoneinfo_timezone_info.rb +1234 -0
  3636. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/test_utils.rb +188 -0
  3637. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/ts_all.rb +7 -0
  3638. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/ts_all_ruby.rb +5 -0
  3639. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/ts_all_zoneinfo.rb +9 -0
  3640. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/tzinfo-data/tzinfo/data.rb +8 -0
  3641. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/tzinfo-data/tzinfo/data/definitions/America/Argentina/Buenos_Aires.rb +89 -0
  3642. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/tzinfo-data/tzinfo/data/definitions/America/New_York.rb +315 -0
  3643. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/tzinfo-data/tzinfo/data/definitions/Australia/Melbourne.rb +218 -0
  3644. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/tzinfo-data/tzinfo/data/definitions/EST.rb +19 -0
  3645. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/tzinfo-data/tzinfo/data/definitions/Etc/GMT__m__1.rb +21 -0
  3646. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/tzinfo-data/tzinfo/data/definitions/Etc/GMT__p__1.rb +21 -0
  3647. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/tzinfo-data/tzinfo/data/definitions/Etc/UTC.rb +21 -0
  3648. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/tzinfo-data/tzinfo/data/definitions/Europe/Amsterdam.rb +261 -0
  3649. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/tzinfo-data/tzinfo/data/definitions/Europe/Andorra.rb +186 -0
  3650. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/tzinfo-data/tzinfo/data/definitions/Europe/London.rb +321 -0
  3651. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/tzinfo-data/tzinfo/data/definitions/Europe/Paris.rb +265 -0
  3652. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/tzinfo-data/tzinfo/data/definitions/Europe/Prague.rb +220 -0
  3653. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/tzinfo-data/tzinfo/data/definitions/UTC.rb +16 -0
  3654. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/tzinfo-data/tzinfo/data/indexes/countries.rb +927 -0
  3655. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/tzinfo-data/tzinfo/data/indexes/timezones.rb +596 -0
  3656. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/tzinfo-data/tzinfo/data/version.rb +14 -0
  3657. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/zoneinfo/America/Argentina/Buenos_Aires +0 -0
  3658. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/zoneinfo/America/New_York +0 -0
  3659. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/zoneinfo/Australia/Melbourne +0 -0
  3660. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/zoneinfo/EST +0 -0
  3661. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/zoneinfo/Etc/UTC +0 -0
  3662. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/zoneinfo/Europe/Amsterdam +0 -0
  3663. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/zoneinfo/Europe/Andorra +0 -0
  3664. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/zoneinfo/Europe/London +0 -0
  3665. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/zoneinfo/Europe/Paris +0 -0
  3666. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/zoneinfo/Europe/Prague +0 -0
  3667. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/zoneinfo/Factory +0 -0
  3668. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/zoneinfo/iso3166.tab +275 -0
  3669. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/zoneinfo/leapseconds +61 -0
  3670. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/zoneinfo/posix/Europe/London +0 -0
  3671. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/zoneinfo/posixrules +0 -0
  3672. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/zoneinfo/right/Europe/London +0 -0
  3673. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/zoneinfo/zone.tab +439 -0
  3674. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/test/zoneinfo/zone1970.tab +369 -0
  3675. data/vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/tzinfo.gemspec +21 -0
  3676. data/vendor/bundle/ruby/2.7.0/gems/websocket-driver-0.7.1/CHANGELOG.md +136 -0
  3677. data/vendor/bundle/ruby/2.7.0/gems/websocket-driver-0.7.1/LICENSE.md +12 -0
  3678. data/vendor/bundle/ruby/2.7.0/gems/websocket-driver-0.7.1/README.md +380 -0
  3679. data/vendor/bundle/ruby/2.7.0/gems/websocket-driver-0.7.1/ext/websocket-driver/.sitearchdir.time +0 -0
  3680. data/vendor/bundle/ruby/2.7.0/gems/websocket-driver-0.7.1/ext/websocket-driver/Makefile +266 -0
  3681. data/vendor/bundle/ruby/2.7.0/gems/websocket-driver-0.7.1/ext/websocket-driver/WebsocketMaskService.java +57 -0
  3682. data/vendor/bundle/ruby/2.7.0/gems/websocket-driver-0.7.1/ext/websocket-driver/extconf.rb +4 -0
  3683. data/vendor/bundle/ruby/2.7.0/gems/websocket-driver-0.7.1/ext/websocket-driver/websocket_mask.c +32 -0
  3684. data/vendor/bundle/ruby/2.7.0/gems/websocket-driver-0.7.1/ext/websocket-driver/websocket_mask.o +0 -0
  3685. data/vendor/bundle/ruby/2.7.0/gems/websocket-driver-0.7.1/ext/websocket-driver/websocket_mask.so +0 -0
  3686. data/vendor/bundle/ruby/2.7.0/gems/websocket-driver-0.7.1/lib/websocket/driver.rb +233 -0
  3687. data/vendor/bundle/ruby/2.7.0/gems/websocket-driver-0.7.1/lib/websocket/driver/client.rb +140 -0
  3688. data/vendor/bundle/ruby/2.7.0/gems/websocket-driver-0.7.1/lib/websocket/driver/draft75.rb +102 -0
  3689. data/vendor/bundle/ruby/2.7.0/gems/websocket-driver-0.7.1/lib/websocket/driver/draft76.rb +98 -0
  3690. data/vendor/bundle/ruby/2.7.0/gems/websocket-driver-0.7.1/lib/websocket/driver/event_emitter.rb +54 -0
  3691. data/vendor/bundle/ruby/2.7.0/gems/websocket-driver-0.7.1/lib/websocket/driver/headers.rb +45 -0
  3692. data/vendor/bundle/ruby/2.7.0/gems/websocket-driver-0.7.1/lib/websocket/driver/hybi.rb +414 -0
  3693. data/vendor/bundle/ruby/2.7.0/gems/websocket-driver-0.7.1/lib/websocket/driver/hybi/frame.rb +20 -0
  3694. data/vendor/bundle/ruby/2.7.0/gems/websocket-driver-0.7.1/lib/websocket/driver/hybi/message.rb +31 -0
  3695. data/vendor/bundle/ruby/2.7.0/gems/websocket-driver-0.7.1/lib/websocket/driver/proxy.rb +68 -0
  3696. data/vendor/bundle/ruby/2.7.0/gems/websocket-driver-0.7.1/lib/websocket/driver/server.rb +80 -0
  3697. data/vendor/bundle/ruby/2.7.0/gems/websocket-driver-0.7.1/lib/websocket/driver/stream_reader.rb +55 -0
  3698. data/vendor/bundle/ruby/2.7.0/gems/websocket-driver-0.7.1/lib/websocket/http.rb +15 -0
  3699. data/vendor/bundle/ruby/2.7.0/gems/websocket-driver-0.7.1/lib/websocket/http/headers.rb +112 -0
  3700. data/vendor/bundle/ruby/2.7.0/gems/websocket-driver-0.7.1/lib/websocket/http/request.rb +45 -0
  3701. data/vendor/bundle/ruby/2.7.0/gems/websocket-driver-0.7.1/lib/websocket/http/response.rb +29 -0
  3702. data/vendor/bundle/ruby/2.7.0/gems/websocket-driver-0.7.1/lib/websocket/mask.rb +14 -0
  3703. data/vendor/bundle/ruby/2.7.0/gems/websocket-driver-0.7.1/lib/websocket/websocket_mask.rb +2 -0
  3704. data/vendor/bundle/ruby/2.7.0/gems/websocket-driver-0.7.1/lib/websocket_mask.so +0 -0
  3705. data/vendor/bundle/ruby/2.7.0/gems/websocket-extensions-0.1.4/CHANGELOG.md +19 -0
  3706. data/vendor/bundle/ruby/2.7.0/gems/websocket-extensions-0.1.4/LICENSE.md +12 -0
  3707. data/vendor/bundle/ruby/2.7.0/gems/websocket-extensions-0.1.4/README.md +313 -0
  3708. data/vendor/bundle/ruby/2.7.0/gems/websocket-extensions-0.1.4/lib/websocket/extensions.rb +181 -0
  3709. data/vendor/bundle/ruby/2.7.0/gems/websocket-extensions-0.1.4/lib/websocket/extensions/parser.rb +111 -0
  3710. data/vendor/bundle/ruby/2.7.0/gems/zeitwerk-2.3.0/MIT-LICENSE +20 -0
  3711. data/vendor/bundle/ruby/2.7.0/gems/zeitwerk-2.3.0/README.md +703 -0
  3712. data/vendor/bundle/ruby/2.7.0/gems/zeitwerk-2.3.0/lib/zeitwerk.rb +12 -0
  3713. data/vendor/bundle/ruby/2.7.0/gems/zeitwerk-2.3.0/lib/zeitwerk/error.rb +10 -0
  3714. data/vendor/bundle/ruby/2.7.0/gems/zeitwerk-2.3.0/lib/zeitwerk/explicit_namespace.rb +80 -0
  3715. data/vendor/bundle/ruby/2.7.0/gems/zeitwerk-2.3.0/lib/zeitwerk/gem_inflector.rb +19 -0
  3716. data/vendor/bundle/ruby/2.7.0/gems/zeitwerk-2.3.0/lib/zeitwerk/inflector.rb +49 -0
  3717. data/vendor/bundle/ruby/2.7.0/gems/zeitwerk-2.3.0/lib/zeitwerk/kernel.rb +33 -0
  3718. data/vendor/bundle/ruby/2.7.0/gems/zeitwerk-2.3.0/lib/zeitwerk/loader.rb +808 -0
  3719. data/vendor/bundle/ruby/2.7.0/gems/zeitwerk-2.3.0/lib/zeitwerk/loader/callbacks.rb +71 -0
  3720. data/vendor/bundle/ruby/2.7.0/gems/zeitwerk-2.3.0/lib/zeitwerk/real_mod_name.rb +21 -0
  3721. data/vendor/bundle/ruby/2.7.0/gems/zeitwerk-2.3.0/lib/zeitwerk/registry.rb +147 -0
  3722. data/vendor/bundle/ruby/2.7.0/gems/zeitwerk-2.3.0/lib/zeitwerk/version.rb +5 -0
  3723. data/vendor/bundle/ruby/2.7.0/specifications/actioncable-6.0.2.1.gemspec +36 -0
  3724. data/vendor/bundle/ruby/2.7.0/specifications/actionmailbox-6.0.2.1.gemspec +42 -0
  3725. data/vendor/bundle/ruby/2.7.0/specifications/actionmailer-6.0.2.1.gemspec +41 -0
  3726. data/vendor/bundle/ruby/2.7.0/specifications/actionpack-6.0.2.1.gemspec +45 -0
  3727. data/vendor/bundle/ruby/2.7.0/specifications/actiontext-6.0.2.1.gemspec +40 -0
  3728. data/vendor/bundle/ruby/2.7.0/specifications/actionview-6.0.2.1.gemspec +45 -0
  3729. data/vendor/bundle/ruby/2.7.0/specifications/activejob-6.0.2.1.gemspec +34 -0
  3730. data/vendor/bundle/ruby/2.7.0/specifications/activemodel-6.0.2.1.gemspec +32 -0
  3731. data/vendor/bundle/ruby/2.7.0/specifications/activerecord-6.0.2.1.gemspec +37 -0
  3732. data/vendor/bundle/ruby/2.7.0/specifications/activestorage-6.0.2.1.gemspec +38 -0
  3733. data/vendor/bundle/ruby/2.7.0/specifications/activesupport-6.0.2.1.gemspec +41 -0
  3734. data/vendor/bundle/ruby/2.7.0/specifications/builder-3.2.4.gemspec +23 -0
  3735. data/vendor/bundle/ruby/2.7.0/specifications/byebug-11.1.1.gemspec +37 -0
  3736. data/vendor/bundle/ruby/2.7.0/specifications/coderay-1.1.2.gemspec +25 -0
  3737. data/vendor/bundle/ruby/2.7.0/specifications/concurrent-ruby-1.1.6.gemspec +24 -0
  3738. data/vendor/bundle/ruby/2.7.0/specifications/crass-1.0.6.gemspec +34 -0
  3739. data/vendor/bundle/ruby/2.7.0/specifications/diff-lcs-1.3.gemspec +51 -0
  3740. data/vendor/bundle/ruby/2.7.0/specifications/erubi-1.9.0.gemspec +35 -0
  3741. data/vendor/bundle/ruby/2.7.0/specifications/globalid-0.4.2.gemspec +33 -0
  3742. data/vendor/bundle/ruby/2.7.0/specifications/i18n-1.8.2.gemspec +33 -0
  3743. data/vendor/bundle/ruby/2.7.0/specifications/loofah-2.4.0.gemspec +60 -0
  3744. data/vendor/bundle/ruby/2.7.0/specifications/mail-2.7.1.gemspec +43 -0
  3745. data/vendor/bundle/ruby/2.7.0/specifications/marcel-0.3.3.gemspec +38 -0
  3746. data/vendor/bundle/ruby/2.7.0/specifications/method_source-0.9.2.gemspec +32 -0
  3747. data/vendor/bundle/ruby/2.7.0/specifications/mimemagic-0.3.4.gemspec +33 -0
  3748. data/vendor/bundle/ruby/2.7.0/specifications/mini_mime-1.0.2.gemspec +35 -0
  3749. data/vendor/bundle/ruby/2.7.0/specifications/mini_portile2-2.4.0.gemspec +41 -0
  3750. data/vendor/bundle/ruby/2.7.0/specifications/minitest-5.14.0.gemspec +38 -0
  3751. data/vendor/bundle/ruby/2.7.0/specifications/nio4r-2.5.2.gemspec +37 -0
  3752. data/vendor/bundle/ruby/2.7.0/specifications/nokogiri-1.10.9.gemspec +68 -0
  3753. data/vendor/bundle/ruby/2.7.0/specifications/pry-0.12.2.gemspec +35 -0
  3754. data/vendor/bundle/ruby/2.7.0/specifications/pry-byebug-3.8.0.gemspec +35 -0
  3755. data/vendor/bundle/ruby/2.7.0/specifications/rack-2.2.2.gemspec +41 -0
  3756. data/vendor/bundle/ruby/2.7.0/specifications/rack-test-1.1.0.gemspec +45 -0
  3757. data/vendor/bundle/ruby/2.7.0/specifications/rails-6.0.2.1.gemspec +58 -0
  3758. data/vendor/bundle/ruby/2.7.0/specifications/rails-dom-testing-2.0.3.gemspec +38 -0
  3759. data/vendor/bundle/ruby/2.7.0/specifications/rails-html-sanitizer-1.3.0.gemspec +38 -0
  3760. data/vendor/bundle/ruby/2.7.0/specifications/railties-6.0.2.1.gemspec +46 -0
  3761. data/vendor/bundle/ruby/2.7.0/specifications/rake-10.5.0.gemspec +39 -0
  3762. data/vendor/bundle/ruby/2.7.0/specifications/rake-13.0.1.gemspec +26 -0
  3763. data/vendor/bundle/ruby/2.7.0/specifications/rspec-3.9.0.gemspec +39 -0
  3764. data/vendor/bundle/ruby/2.7.0/specifications/rspec-core-3.9.1.gemspec +53 -0
  3765. data/vendor/bundle/ruby/2.7.0/specifications/rspec-expectations-3.9.0.gemspec +44 -0
  3766. data/vendor/bundle/ruby/2.7.0/specifications/rspec-mocks-3.9.1.gemspec +44 -0
  3767. data/vendor/bundle/ruby/2.7.0/specifications/rspec-support-3.9.2.gemspec +36 -0
  3768. data/vendor/bundle/ruby/2.7.0/specifications/sprockets-4.0.0.gemspec +75 -0
  3769. data/vendor/bundle/ruby/2.7.0/specifications/sprockets-rails-3.2.1.gemspec +42 -0
  3770. data/vendor/bundle/ruby/2.7.0/specifications/symbolic_enum-1.1.4.gemspec +40 -0
  3771. data/vendor/bundle/ruby/2.7.0/specifications/thor-1.0.1.gemspec +34 -0
  3772. data/vendor/bundle/ruby/2.7.0/specifications/thread_safe-0.3.6.gemspec +34 -0
  3773. data/vendor/bundle/ruby/2.7.0/specifications/tzinfo-1.2.6.gemspec +35 -0
  3774. data/vendor/bundle/ruby/2.7.0/specifications/websocket-driver-0.7.1.gemspec +42 -0
  3775. data/vendor/bundle/ruby/2.7.0/specifications/websocket-extensions-0.1.4.gemspec +32 -0
  3776. data/vendor/bundle/ruby/2.7.0/specifications/zeitwerk-2.3.0.gemspec +21 -0
  3777. metadata +3793 -34
@@ -0,0 +1,5 @@
1
+ *.swp
2
+ *.gem
3
+ Gemfile.lock
4
+ .bundle
5
+ .yardoc
@@ -0,0 +1,20 @@
1
+ language: ruby
2
+ rvm:
3
+ - 1.9.3
4
+ - 2.0.0
5
+ - 2.1
6
+ - 2.2
7
+ - 2.3
8
+ - 2.4
9
+ - 2.5
10
+ - ruby-head
11
+ - jruby-19mode
12
+ - rbx-3
13
+ before_install:
14
+ # 1. The pre-installed Bundler version on Travis is very old; causes 1.9.3 build issues
15
+ # 2. Bundler 2.0 is not supported by the whole matrix
16
+ - gem install bundler -v'< 2'
17
+ matrix:
18
+ allow_failures:
19
+ - rvm: ruby-head
20
+ - rvm: rbx-3
@@ -0,0 +1,2 @@
1
+ --no-private
2
+ - README.md
@@ -0,0 +1,92 @@
1
+ # Changelog
2
+
3
+ ## Unreleased
4
+
5
+ ### Breaking Changes
6
+
7
+ None
8
+
9
+ ### Added
10
+
11
+ None
12
+
13
+ ### Fixed
14
+
15
+ None
16
+
17
+ ## 0.3.4 (2020-01-28)
18
+
19
+ Added frozen string literal comments
20
+
21
+ ## 0.3.3 (2018-12-20)
22
+
23
+ Upgrade to shared-mime-info-1.10
24
+
25
+ ## 0.3.2 (2016-08-02)
26
+
27
+ ### Breaking Changes
28
+
29
+ None
30
+
31
+ ### Added
32
+
33
+ - [#37](https://github.com/minad/mimemagic/pull/37)
34
+ A convenient way to get all possible mime types by magic
35
+
36
+ ### Fixed
37
+
38
+ - [#40](https://github.com/minad/mimemagic/pull/40),
39
+ [#41](https://github.com/minad/mimemagic/pull/41)
40
+ Performance improvements
41
+ - [#38](https://github.com/minad/mimemagic/pull/38)
42
+ Updated to shared-mime-info 1.6
43
+
44
+ ## 0.3.1 (2016-01-04)
45
+
46
+ No release notes yet. Contributions welcome.
47
+
48
+ ## 0.3.0 (2015-03-25)
49
+
50
+ No release notes yet. Contributions welcome.
51
+
52
+ ## 0.2.1 (2013-07-29)
53
+
54
+ No release notes yet. Contributions welcome.
55
+
56
+ ## 0.2.0 (2012-10-19)
57
+
58
+ No release notes yet. Contributions welcome.
59
+
60
+ ## 0.1.9 (2012-09-20)
61
+
62
+ No release notes yet. Contributions welcome.
63
+
64
+ ## 0.1.8 (2009-05-08)
65
+
66
+ No release notes yet. Contributions welcome.
67
+
68
+ ## 0.1.7 (2009-05-08)
69
+
70
+ No release notes yet. Contributions welcome.
71
+
72
+ ## 0.1.5 (2009-05-08)
73
+
74
+ No release notes yet. Contributions welcome.
75
+
76
+ ## 0.1.4 (2009-05-08)
77
+
78
+ No release notes yet. Contributions welcome.
79
+
80
+ ## 0.1.3 (2009-05-08)
81
+
82
+ No release notes yet. Contributions welcome.
83
+
84
+ ## 0.1.2 (2009-05-08)
85
+
86
+ No release notes yet. Contributions welcome.
87
+
88
+ ## 0.1.1 (2009-05-08)
89
+
90
+ No release notes yet. Contributions welcome.
91
+
92
+
@@ -0,0 +1,3 @@
1
+ source 'https://rubygems.org/'
2
+ gemspec
3
+
@@ -0,0 +1,21 @@
1
+ The MIT License
2
+
3
+ Copyright (c) 2011 Daniel Mendler
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,51 @@
1
+ MimeMagic is a library to detect the mime type of a file by extension or by content. It uses the mime database
2
+ provided by freedesktop.org (see http://freedesktop.org/wiki/Software/shared-mime-info/).
3
+
4
+ [![Gem Version](https://img.shields.io/gem/v/mimemagic.svg)](http://rubygems.org/gems/mimemagic)
5
+ [![Gem Downloads](https://img.shields.io/gem/dt/mimemagic.svg)](http://rubygems.org/gems/mimemagic)
6
+ [![Build Status](https://secure.travis-ci.org/minad/mimemagic.svg?branch=master)](http://travis-ci.org/minad/mimemagic) [![Code Climate](https://codeclimate.com/github/minad/mimemagic.svg)](https://codeclimate.com/github/minad/mimemagic)
7
+ [![Flattr this git repo](http://api.flattr.com/button/flattr-badge-large.png)](https://flattr.com/submit/auto?user_id=min4d&url=https://github.com/minad/mimemagic&title=MimeMagic&language=&tags=github&category=software)
8
+
9
+ Usage
10
+ =====
11
+
12
+ ```ruby
13
+ require 'mimemagic'
14
+ MimeMagic.by_extension('html').text?
15
+ MimeMagic.by_extension('.html').child_of? 'text/plain'
16
+ MimeMagic.by_path('filename.txt')
17
+ MimeMagic.by_magic(File.open('test.html'))
18
+ # etc...
19
+ ```
20
+
21
+ Extra magic overlay
22
+ =====
23
+
24
+ Microsoft Office 2007+ formats (xlsx, docx, and pptx) are not supported by the mime database at freedesktop.org. These files are all zipped collections of xml files and will be detected as "application/zip". Mimemagic comes with extra magic you can overlay on top of the defaults to correctly detect these file types. Enable it like this:
25
+
26
+ ```ruby
27
+ require 'mimemagic'
28
+ require 'mimemagic/overlay'
29
+ MimeMagic.by_magic(File.open('test.xlsx'))
30
+ ```
31
+
32
+ You can add your own magic with `MimeMagic.add`. See `lib/mimemagic/overlay.rb`.
33
+
34
+ API
35
+ ===
36
+
37
+ http://www.rubydoc.info/github/minad/mimemagic
38
+
39
+ Tests
40
+ =====
41
+
42
+ ```
43
+ bundle install
44
+
45
+ rake test
46
+ ```
47
+
48
+ Authors
49
+ =======
50
+
51
+ Daniel Mendler
@@ -0,0 +1,16 @@
1
+ require 'rake/testtask'
2
+
3
+ task :default => %w(test)
4
+
5
+ desc 'Run tests with minitest'
6
+ Rake::TestTask.new do |t|
7
+ t.libs << 'test'
8
+ t.pattern = 'test/*_test.rb'
9
+ end
10
+
11
+ desc 'Generate mime tables'
12
+ task :tables => 'lib/mimemagic/tables.rb'
13
+ file 'lib/mimemagic/tables.rb' => FileList['script/freedesktop.org.xml'] do |f|
14
+ sh "script/generate-mime.rb #{f.prerequisites.join(' ')} > #{f.name}"
15
+ end
16
+
@@ -0,0 +1,138 @@
1
+ require 'mimemagic/tables'
2
+ require 'mimemagic/version'
3
+
4
+ require 'stringio'
5
+
6
+ # Mime type detection
7
+ class MimeMagic
8
+ attr_reader :type, :mediatype, :subtype
9
+
10
+ # Mime type by type string
11
+ def initialize(type)
12
+ @type = type
13
+ @mediatype, @subtype = type.split('/', 2)
14
+ end
15
+
16
+ # Add custom mime type. Arguments:
17
+ # * <i>type</i>: Mime type
18
+ # * <i>options</i>: Options hash
19
+ #
20
+ # Option keys:
21
+ # * <i>:extensions</i>: String list or single string of file extensions
22
+ # * <i>:parents</i>: String list or single string of parent mime types
23
+ # * <i>:magic</i>: Mime magic specification
24
+ # * <i>:comment</i>: Comment string
25
+ def self.add(type, options)
26
+ extensions = [options[:extensions]].flatten.compact
27
+ TYPES[type] = [extensions,
28
+ [options[:parents]].flatten.compact,
29
+ options[:comment]]
30
+ extensions.each {|ext| EXTENSIONS[ext] = type }
31
+ MAGIC.unshift [type, options[:magic]] if options[:magic]
32
+ end
33
+
34
+ # Removes a mime type from the dictionary. You might want to do this if
35
+ # you're seeing impossible conflicts (for instance, application/x-gmc-link).
36
+ # * <i>type</i>: The mime type to remove. All associated extensions and magic are removed too.
37
+ def self.remove(type)
38
+ EXTENSIONS.delete_if {|ext, t| t == type }
39
+ MAGIC.delete_if {|t, m| t == type }
40
+ TYPES.delete(type)
41
+ end
42
+
43
+ # Returns true if type is a text format
44
+ def text?; mediatype == 'text' || child_of?('text/plain'); end
45
+
46
+ # Mediatype shortcuts
47
+ def image?; mediatype == 'image'; end
48
+ def audio?; mediatype == 'audio'; end
49
+ def video?; mediatype == 'video'; end
50
+
51
+ # Returns true if type is child of parent type
52
+ def child_of?(parent)
53
+ MimeMagic.child?(type, parent)
54
+ end
55
+
56
+ # Get string list of file extensions
57
+ def extensions
58
+ TYPES.key?(type) ? TYPES[type][0] : []
59
+ end
60
+
61
+ # Get mime comment
62
+ def comment
63
+ (TYPES.key?(type) ? TYPES[type][2] : nil).to_s
64
+ end
65
+
66
+ # Lookup mime type by file extension
67
+ def self.by_extension(ext)
68
+ ext = ext.to_s.downcase
69
+ mime = ext[0..0] == '.' ? EXTENSIONS[ext[1..-1]] : EXTENSIONS[ext]
70
+ mime && new(mime)
71
+ end
72
+
73
+ # Lookup mime type by filename
74
+ def self.by_path(path)
75
+ by_extension(File.extname(path))
76
+ end
77
+
78
+ # Lookup mime type by magic content analysis.
79
+ # This is a slow operation.
80
+ def self.by_magic(io)
81
+ mime = magic_match(io, :find)
82
+ mime && new(mime[0])
83
+ end
84
+
85
+ # Lookup all mime types by magic content analysis.
86
+ # This is a slower operation.
87
+ def self.all_by_magic(io)
88
+ magic_match(io, :select).map { |mime| new(mime[0]) }
89
+ end
90
+
91
+ # Return type as string
92
+ def to_s
93
+ type
94
+ end
95
+
96
+ # Allow comparison with string
97
+ def eql?(other)
98
+ type == other.to_s
99
+ end
100
+
101
+ def hash
102
+ type.hash
103
+ end
104
+
105
+ alias == eql?
106
+
107
+ def self.child?(child, parent)
108
+ child == parent || TYPES.key?(child) && TYPES[child][1].any? {|p| child?(p, parent) }
109
+ end
110
+
111
+ def self.magic_match(io, method)
112
+ return magic_match(StringIO.new(io.to_s), method) unless io.respond_to?(:read)
113
+
114
+ io.binmode if io.respond_to?(:binmode)
115
+ io.set_encoding(Encoding::BINARY) if io.respond_to?(:set_encoding)
116
+ buffer = "".force_encoding(Encoding::BINARY)
117
+
118
+ MAGIC.send(method) { |type, matches| magic_match_io(io, matches, buffer) }
119
+ end
120
+
121
+ def self.magic_match_io(io, matches, buffer)
122
+ matches.any? do |offset, value, children|
123
+ match =
124
+ if Range === offset
125
+ io.read(offset.begin, buffer)
126
+ x = io.read(offset.end - offset.begin + value.bytesize, buffer)
127
+ x && x.include?(value)
128
+ else
129
+ io.read(offset, buffer)
130
+ io.read(value.bytesize, buffer) == value
131
+ end
132
+ io.rewind
133
+ match && (!children || magic_match_io(io, children, buffer))
134
+ end
135
+ end
136
+
137
+ private_class_method :magic_match, :magic_match_io
138
+ end
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+ # Extra magic
3
+
4
+ [['application/vnd.openxmlformats-officedocument.presentationml.presentation', [[0, "PK\003\004", [[0..5000, '[Content_Types].xml', [[0..5000, 'ppt/']]]]]]],
5
+ ['application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', [[0, "PK\003\004", [[0..5000, '[Content_Types].xml', [[0..5000, 'xl/']]]]]]],
6
+ ['application/vnd.openxmlformats-officedocument.wordprocessingml.document', [[0, "PK\003\004", [[0..5000, '[Content_Types].xml', [[0..5000, 'word/']]]]]]]].each do |magic|
7
+ MimeMagic.add(magic[0], magic: magic[1])
8
+ end
@@ -0,0 +1,2067 @@
1
+ # -*- coding: binary -*-
2
+ # frozen_string_literal: true
3
+ # Generated from freedesktop.org.xml
4
+ class MimeMagic
5
+ # @private
6
+ # :nodoc:
7
+ EXTENSIONS = {
8
+ '123' => 'application/vnd.lotus-1-2-3',
9
+ '32x' => 'application/x-genesis-32x-rom',
10
+ '3ds' => 'image/x-3ds',
11
+ '3g2' => 'video/3gpp2',
12
+ '3ga' => 'video/3gpp',
13
+ '3gp' => 'video/3gpp',
14
+ '3gp2' => 'video/3gpp2',
15
+ '3gpp' => 'video/3gpp',
16
+ '3gpp2' => 'video/3gpp2',
17
+ '602' => 'application/x-t602',
18
+ '669' => 'audio/x-mod',
19
+ '7z' => 'application/x-7z-compressed',
20
+ 'a' => 'application/x-archive',
21
+ 'a26' => 'application/x-atari-2600-rom',
22
+ 'a78' => 'application/x-atari-7800-rom',
23
+ 'aa' => 'audio/x-pn-audibleaudio',
24
+ 'aac' => 'audio/aac',
25
+ 'aax' => 'audio/x-pn-audibleaudio',
26
+ 'abw' => 'application/x-abiword',
27
+ 'abw.crashed' => 'application/x-abiword',
28
+ 'abw.gz' => 'application/x-abiword',
29
+ 'ac3' => 'audio/ac3',
30
+ 'ace' => 'application/x-ace',
31
+ 'adb' => 'text/x-adasrc',
32
+ 'adf' => 'application/x-amiga-disk-format',
33
+ 'ads' => 'text/x-adasrc',
34
+ 'adts' => 'audio/aac',
35
+ 'afm' => 'application/x-font-afm',
36
+ 'ag' => 'image/x-applix-graphics',
37
+ 'agb' => 'application/x-gba-rom',
38
+ 'ai' => 'application/illustrator',
39
+ 'aif' => 'audio/x-aiff',
40
+ 'aifc' => 'audio/x-aifc',
41
+ 'aiff' => 'audio/x-aiff',
42
+ 'aiffc' => 'audio/x-aifc',
43
+ 'al' => 'application/x-perl',
44
+ 'alz' => 'application/x-alz',
45
+ 'amr' => 'audio/AMR',
46
+ 'amz' => 'audio/x-amzxml',
47
+ 'ani' => 'application/x-navi-animation',
48
+ 'anx' => 'application/annodex',
49
+ 'ape' => 'audio/x-ape',
50
+ 'apk' => 'application/vnd.android.package-archive',
51
+ 'appimage' => 'application/x-iso9660-appimage',
52
+ 'ar' => 'application/x-archive',
53
+ 'arj' => 'application/x-arj',
54
+ 'arw' => 'image/x-sony-arw',
55
+ 'as' => 'application/x-applix-spreadsheet',
56
+ 'asc' => 'application/pgp-encrypted',
57
+ 'asf' => 'application/vnd.ms-asf',
58
+ 'asp' => 'application/x-asp',
59
+ 'ass' => 'text/x-ssa',
60
+ 'asx' => 'audio/x-ms-asx',
61
+ 'atom' => 'application/atom+xml',
62
+ 'au' => 'audio/basic',
63
+ 'automount' => 'text/x-systemd-unit',
64
+ 'avf' => 'video/x-msvideo',
65
+ 'avi' => 'video/x-msvideo',
66
+ 'aw' => 'application/x-applix-word',
67
+ 'awb' => 'audio/AMR-WB',
68
+ 'awk' => 'application/x-awk',
69
+ 'axa' => 'audio/annodex',
70
+ 'axv' => 'video/annodex',
71
+ 'bak' => 'application/x-trash',
72
+ 'bcpio' => 'application/x-bcpio',
73
+ 'bdf' => 'application/x-font-bdf',
74
+ 'bdm' => 'video/mp2t',
75
+ 'bdmv' => 'video/mp2t',
76
+ 'bib' => 'text/x-bibtex',
77
+ 'bin' => 'application/x-sega-cd-rom',
78
+ 'blend' => 'application/x-blender',
79
+ 'blender' => 'application/x-blender',
80
+ 'bmp' => 'image/bmp',
81
+ 'bsdiff' => 'application/x-bsdiff',
82
+ 'bz' => 'application/x-bzip',
83
+ 'bz2' => 'application/x-bzip',
84
+ 'c' => 'text/x-c++src',
85
+ 'c++' => 'text/x-c++src',
86
+ 'cab' => 'application/vnd.ms-cab-compressed',
87
+ 'cap' => 'application/vnd.tcpdump.pcap',
88
+ 'cb7' => 'application/x-cb7',
89
+ 'cbl' => 'text/x-cobol',
90
+ 'cbr' => 'application/vnd.comicbook-rar',
91
+ 'cbt' => 'application/x-cbt',
92
+ 'cbz' => 'application/vnd.comicbook+zip',
93
+ 'cc' => 'text/x-c++src',
94
+ 'ccmx' => 'application/x-ccmx',
95
+ 'cdf' => 'application/x-netcdf',
96
+ 'cdr' => 'application/vnd.corel-draw',
97
+ 'cer' => 'application/pkix-cert',
98
+ 'cert' => 'application/x-x509-ca-cert',
99
+ 'cgb' => 'application/x-gameboy-color-rom',
100
+ 'cgm' => 'image/cgm',
101
+ 'chm' => 'application/vnd.ms-htmlhelp',
102
+ 'chrt' => 'application/x-kchart',
103
+ 'cl' => 'text/x-opencl-src',
104
+ 'class' => 'application/x-java',
105
+ 'clpi' => 'video/mp2t',
106
+ 'cls' => 'text/x-tex',
107
+ 'cmake' => 'text/x-cmake',
108
+ 'cob' => 'text/x-cobol',
109
+ 'coffee' => 'application/vnd.coffeescript',
110
+ 'cpi' => 'video/mp2t',
111
+ 'cpio' => 'application/x-cpio',
112
+ 'cpio.gz' => 'application/x-cpio-compressed',
113
+ 'cpp' => 'text/x-c++src',
114
+ 'cr2' => 'image/x-canon-cr2',
115
+ 'crdownload' => 'application/x-partial-download',
116
+ 'crl' => 'application/pkix-crl',
117
+ 'crt' => 'application/x-x509-ca-cert',
118
+ 'crw' => 'image/x-canon-crw',
119
+ 'cs' => 'text/x-csharp',
120
+ 'csh' => 'application/x-csh',
121
+ 'css' => 'text/css',
122
+ 'csv' => 'text/csv',
123
+ 'csvs' => 'text/csv-schema',
124
+ 'cue' => 'application/x-cue',
125
+ 'cur' => 'image/x-win-bitmap',
126
+ 'cxx' => 'text/x-c++src',
127
+ 'd' => 'text/x-dsrc',
128
+ 'dar' => 'application/x-dar',
129
+ 'dbf' => 'application/x-dbf',
130
+ 'dbk' => 'application/x-docbook+xml',
131
+ 'dc' => 'application/x-dc-rom',
132
+ 'dcl' => 'text/x-dcl',
133
+ 'dcm' => 'application/dicom',
134
+ 'dcr' => 'image/x-kodak-dcr',
135
+ 'dds' => 'image/x-dds',
136
+ 'deb' => 'application/vnd.debian.binary-package',
137
+ 'der' => 'application/x-x509-ca-cert',
138
+ 'desktop' => 'application/x-desktop',
139
+ 'device' => 'text/x-systemd-unit',
140
+ 'di' => 'text/x-dsrc',
141
+ 'dia' => 'application/x-dia-diagram',
142
+ 'dib' => 'image/bmp',
143
+ 'diff' => 'text/x-patch',
144
+ 'divx' => 'video/x-msvideo',
145
+ 'djv' => 'image/vnd.djvu',
146
+ 'djvu' => 'image/vnd.djvu',
147
+ 'dmg' => 'application/x-apple-diskimage',
148
+ 'dmp' => 'application/vnd.tcpdump.pcap',
149
+ 'dng' => 'image/x-adobe-dng',
150
+ 'doc' => 'application/msword',
151
+ 'docbook' => 'application/x-docbook+xml',
152
+ 'docm' => 'application/vnd.ms-word.document.macroEnabled.12',
153
+ 'docx' => 'application/vnd.openxmlformats-officedocument.wordprocessingml.document',
154
+ 'dot' => 'application/msword-template',
155
+ 'dotm' => 'application/vnd.ms-word.template.macroEnabled.12',
156
+ 'dotx' => 'application/vnd.openxmlformats-officedocument.wordprocessingml.template',
157
+ 'dsl' => 'text/x-dsl',
158
+ 'dtd' => 'application/xml-dtd',
159
+ 'dts' => 'audio/vnd.dts',
160
+ 'dtshd' => 'audio/vnd.dts.hd',
161
+ 'dtx' => 'text/x-tex',
162
+ 'dv' => 'video/dv',
163
+ 'dvi' => 'application/x-dvi',
164
+ 'dvi.bz2' => 'application/x-bzdvi',
165
+ 'dvi.gz' => 'application/x-gzdvi',
166
+ 'dwg' => 'image/vnd.dwg',
167
+ 'dxf' => 'image/vnd.dxf',
168
+ 'e' => 'text/x-eiffel',
169
+ 'egon' => 'application/x-egon',
170
+ 'eif' => 'text/x-eiffel',
171
+ 'el' => 'text/x-emacs-lisp',
172
+ 'emf' => 'image/emf',
173
+ 'eml' => 'message/rfc822',
174
+ 'emp' => 'application/vnd.emusic-emusic_package',
175
+ 'ent' => 'application/xml-external-parsed-entity',
176
+ 'eps' => 'image/x-eps',
177
+ 'eps.bz2' => 'image/x-bzeps',
178
+ 'eps.gz' => 'image/x-gzeps',
179
+ 'epsf' => 'image/x-eps',
180
+ 'epsf.bz2' => 'image/x-bzeps',
181
+ 'epsf.gz' => 'image/x-gzeps',
182
+ 'epsi' => 'image/x-eps',
183
+ 'epsi.bz2' => 'image/x-bzeps',
184
+ 'epsi.gz' => 'image/x-gzeps',
185
+ 'epub' => 'application/epub+zip',
186
+ 'erl' => 'text/x-erlang',
187
+ 'es' => 'application/ecmascript',
188
+ 'etheme' => 'application/x-e-theme',
189
+ 'etx' => 'text/x-setext',
190
+ 'exe' => 'application/x-ms-dos-executable',
191
+ 'exr' => 'image/x-exr',
192
+ 'ez' => 'application/andrew-inset',
193
+ 'f' => 'text/x-fortran',
194
+ 'f4a' => 'audio/mp4',
195
+ 'f4b' => 'audio/x-m4b',
196
+ 'f4v' => 'video/mp4',
197
+ 'f90' => 'text/x-fortran',
198
+ 'f95' => 'text/x-fortran',
199
+ 'fb2' => 'application/x-fictionbook+xml',
200
+ 'fb2.zip' => 'application/x-zip-compressed-fb2',
201
+ 'fd' => 'application/x-raw-floppy-disk-image',
202
+ 'fds' => 'application/x-fds-disk',
203
+ 'feature' => 'text/x-gherkin',
204
+ 'fig' => 'image/x-xfig',
205
+ 'fits' => 'image/fits',
206
+ 'fl' => 'application/x-fluid',
207
+ 'flac' => 'audio/flac',
208
+ 'flatpak' => 'application/vnd.flatpak',
209
+ 'flatpakref' => 'application/vnd.flatpak.ref',
210
+ 'flatpakrepo' => 'application/vnd.flatpak.repo',
211
+ 'flc' => 'video/x-flic',
212
+ 'fli' => 'video/x-flic',
213
+ 'flv' => 'video/x-flv',
214
+ 'flw' => 'application/x-kivio',
215
+ 'fm' => 'application/vnd.framemaker',
216
+ 'fo' => 'text/x-xslfo',
217
+ 'fodg' => 'application/vnd.oasis.opendocument.graphics-flat-xml',
218
+ 'fodp' => 'application/vnd.oasis.opendocument.presentation-flat-xml',
219
+ 'fods' => 'application/vnd.oasis.opendocument.spreadsheet-flat-xml',
220
+ 'fodt' => 'application/vnd.oasis.opendocument.text-flat-xml',
221
+ 'for' => 'text/x-fortran',
222
+ 'fxm' => 'video/x-javafx',
223
+ 'g3' => 'image/fax-g3',
224
+ 'gb' => 'application/x-gameboy-rom',
225
+ 'gba' => 'application/x-gba-rom',
226
+ 'gbc' => 'application/x-gameboy-color-rom',
227
+ 'gbr' => 'image/x-gimp-gbr',
228
+ 'gcode' => 'text/x.gcode',
229
+ 'gcrd' => 'text/vcard',
230
+ 'ged' => 'application/x-gedcom',
231
+ 'gedcom' => 'application/x-gedcom',
232
+ 'gem' => 'application/x-tar',
233
+ 'gen' => 'application/x-genesis-rom',
234
+ 'geo.json' => 'application/geo+json',
235
+ 'geojson' => 'application/geo+json',
236
+ 'gf' => 'application/x-tex-gf',
237
+ 'gg' => 'application/x-gamegear-rom',
238
+ 'gif' => 'image/gif',
239
+ 'gih' => 'image/x-gimp-gih',
240
+ 'glade' => 'application/x-glade',
241
+ 'gml' => 'application/gml+xml',
242
+ 'gmo' => 'application/x-gettext-translation',
243
+ 'gnc' => 'application/x-gnucash',
244
+ 'gnd' => 'application/gnunet-directory',
245
+ 'gnucash' => 'application/x-gnucash',
246
+ 'gnumeric' => 'application/x-gnumeric',
247
+ 'gnuplot' => 'application/x-gnuplot',
248
+ 'go' => 'text/x-go',
249
+ 'gp' => 'application/x-gnuplot',
250
+ 'gpg' => 'application/pgp-encrypted',
251
+ 'gplt' => 'application/x-gnuplot',
252
+ 'gpx' => 'application/gpx+xml',
253
+ 'gra' => 'application/x-graphite',
254
+ 'gs' => 'text/x-genie',
255
+ 'gsf' => 'application/x-font-type1',
256
+ 'gsm' => 'audio/x-gsm',
257
+ 'gtar' => 'application/x-tar',
258
+ 'gv' => 'text/vnd.graphviz',
259
+ 'gvp' => 'text/x-google-video-pointer',
260
+ 'gz' => 'application/gzip',
261
+ 'h' => 'text/x-chdr',
262
+ 'h++' => 'text/x-c++hdr',
263
+ 'h4' => 'application/x-hdf',
264
+ 'h5' => 'application/x-hdf',
265
+ 'hdf' => 'application/x-hdf',
266
+ 'hdf4' => 'application/x-hdf',
267
+ 'hdf5' => 'application/x-hdf',
268
+ 'heic' => 'image/heif',
269
+ 'heif' => 'image/heif',
270
+ 'hfe' => 'application/x-hfe-floppy-image',
271
+ 'hh' => 'text/x-c++hdr',
272
+ 'hlp' => 'application/winhlp',
273
+ 'hp' => 'text/x-c++hdr',
274
+ 'hpgl' => 'application/vnd.hp-hpgl',
275
+ 'hpp' => 'text/x-c++hdr',
276
+ 'hs' => 'text/x-haskell',
277
+ 'htm' => 'text/html',
278
+ 'html' => 'text/html',
279
+ 'hwp' => 'application/x-hwp',
280
+ 'hwt' => 'application/x-hwt',
281
+ 'hxx' => 'text/x-c++hdr',
282
+ 'ica' => 'application/x-ica',
283
+ 'icb' => 'image/x-tga',
284
+ 'icc' => 'application/vnd.iccprofile',
285
+ 'icm' => 'application/vnd.iccprofile',
286
+ 'icns' => 'image/x-icns',
287
+ 'ico' => 'image/vnd.microsoft.icon',
288
+ 'ics' => 'text/calendar',
289
+ 'idl' => 'text/x-idl',
290
+ 'ief' => 'image/ief',
291
+ 'iff' => 'image/x-ilbm',
292
+ 'iges' => 'model/iges',
293
+ 'igs' => 'model/iges',
294
+ 'ilbm' => 'image/x-ilbm',
295
+ 'ime' => 'text/x-iMelody',
296
+ 'img' => 'application/x-raw-disk-image',
297
+ 'img.xz' => 'application/x-raw-disk-image-xz-compressed',
298
+ 'imy' => 'text/x-iMelody',
299
+ 'ins' => 'text/x-tex',
300
+ 'iptables' => 'text/x-iptables',
301
+ 'ipynb' => 'application/x-ipynb+json',
302
+ 'iso' => 'application/x-cd-image',
303
+ 'iso9660' => 'application/x-cd-image',
304
+ 'it' => 'audio/x-it',
305
+ 'it87' => 'application/x-it87',
306
+ 'j2c' => 'image/x-jp2-codestream',
307
+ 'j2k' => 'image/x-jp2-codestream',
308
+ 'jad' => 'text/vnd.sun.j2me.app-descriptor',
309
+ 'jar' => 'application/x-java-archive',
310
+ 'java' => 'text/x-java',
311
+ 'jceks' => 'application/x-java-jce-keystore',
312
+ 'jks' => 'application/x-java-keystore',
313
+ 'jng' => 'image/x-jng',
314
+ 'jnlp' => 'application/x-java-jnlp-file',
315
+ 'jp2' => 'image/jp2',
316
+ 'jpc' => 'image/x-jp2-codestream',
317
+ 'jpe' => 'image/jpeg',
318
+ 'jpeg' => 'image/jpeg',
319
+ 'jpf' => 'image/jpx',
320
+ 'jpg' => 'image/jpeg',
321
+ 'jpg2' => 'image/jp2',
322
+ 'jpgm' => 'image/jpm',
323
+ 'jpm' => 'image/jpm',
324
+ 'jpr' => 'application/x-jbuilder-project',
325
+ 'jpx' => 'application/x-jbuilder-project',
326
+ 'jrd' => 'application/jrd+json',
327
+ 'js' => 'application/javascript',
328
+ 'jsm' => 'application/javascript',
329
+ 'json' => 'application/json',
330
+ 'json-patch' => 'application/json-patch+json',
331
+ 'jsonld' => 'application/ld+json',
332
+ 'k25' => 'image/x-kodak-k25',
333
+ 'k7' => 'application/x-thomson-cassette',
334
+ 'kar' => 'audio/midi',
335
+ 'karbon' => 'application/x-karbon',
336
+ 'kdc' => 'image/x-kodak-kdc',
337
+ 'kdelnk' => 'application/x-desktop',
338
+ 'kexi' => 'application/x-kexiproject-sqlite2',
339
+ 'kexic' => 'application/x-kexi-connectiondata',
340
+ 'kexis' => 'application/x-kexiproject-shortcut',
341
+ 'key' => 'application/x-iwork-keynote-sffkey',
342
+ 'kfo' => 'application/x-kformula',
343
+ 'kil' => 'application/x-killustrator',
344
+ 'kino' => 'application/smil+xml',
345
+ 'kml' => 'application/vnd.google-earth.kml+xml',
346
+ 'kmz' => 'application/vnd.google-earth.kmz',
347
+ 'kon' => 'application/x-kontour',
348
+ 'kpm' => 'application/x-kpovmodeler',
349
+ 'kpr' => 'application/x-kpresenter',
350
+ 'kpt' => 'application/x-kpresenter',
351
+ 'kra' => 'application/x-krita',
352
+ 'ks' => 'application/x-java-keystore',
353
+ 'ksp' => 'application/x-kspread',
354
+ 'ktx' => 'image/ktx',
355
+ 'kud' => 'application/x-kugar',
356
+ 'kwd' => 'application/x-kword',
357
+ 'kwt' => 'application/x-kword',
358
+ 'la' => 'application/x-shared-library-la',
359
+ 'latex' => 'text/x-tex',
360
+ 'lbm' => 'image/x-ilbm',
361
+ 'ldif' => 'text/x-ldif',
362
+ 'lha' => 'application/x-lha',
363
+ 'lhs' => 'text/x-literate-haskell',
364
+ 'lhz' => 'application/x-lhz',
365
+ 'lnx' => 'application/x-atari-lynx-rom',
366
+ 'loas' => 'audio/usac',
367
+ 'log' => 'text/x-log',
368
+ 'lrv' => 'video/mp4',
369
+ 'lrz' => 'application/x-lrzip',
370
+ 'ltx' => 'text/x-tex',
371
+ 'lua' => 'text/x-lua',
372
+ 'lwo' => 'image/x-lwo',
373
+ 'lwob' => 'image/x-lwo',
374
+ 'lwp' => 'application/vnd.lotus-wordpro',
375
+ 'lws' => 'image/x-lws',
376
+ 'ly' => 'text/x-lilypond',
377
+ 'lyx' => 'application/x-lyx',
378
+ 'lz' => 'application/x-lzip',
379
+ 'lz4' => 'application/x-lz4',
380
+ 'lzh' => 'application/x-lha',
381
+ 'lzma' => 'application/x-lzma',
382
+ 'lzo' => 'application/x-lzop',
383
+ 'm' => 'text/x-objcsrc',
384
+ 'm15' => 'audio/x-mod',
385
+ 'm1u' => 'video/vnd.mpegurl',
386
+ 'm2t' => 'video/mp2t',
387
+ 'm2ts' => 'video/mp2t',
388
+ 'm3u' => 'audio/x-mpegurl',
389
+ 'm3u8' => 'audio/x-mpegurl',
390
+ 'm4' => 'application/x-m4',
391
+ 'm4a' => 'audio/mp4',
392
+ 'm4b' => 'audio/x-m4b',
393
+ 'm4r' => 'audio/x-m4r',
394
+ 'm4u' => 'video/vnd.mpegurl',
395
+ 'm4v' => 'video/mp4',
396
+ 'm7' => 'application/x-thomson-cartridge-memo7',
397
+ 'mab' => 'application/x-markaby',
398
+ 'mak' => 'text/x-makefile',
399
+ 'man' => 'application/x-troff-man',
400
+ 'manifest' => 'text/cache-manifest',
401
+ 'markdown' => 'text/markdown',
402
+ 'mbox' => 'application/mbox',
403
+ 'md' => 'text/markdown',
404
+ 'mdb' => 'application/vnd.ms-access',
405
+ 'mdi' => 'image/vnd.ms-modi',
406
+ 'mdx' => 'application/x-genesis-32x-rom',
407
+ 'me' => 'text/x-troff-me',
408
+ 'med' => 'audio/x-mod',
409
+ 'meta4' => 'application/metalink4+xml',
410
+ 'metalink' => 'application/metalink+xml',
411
+ 'mgp' => 'application/x-magicpoint',
412
+ 'mht' => 'application/x-mimearchive',
413
+ 'mhtml' => 'application/x-mimearchive',
414
+ 'mid' => 'audio/midi',
415
+ 'midi' => 'audio/midi',
416
+ 'mif' => 'application/x-mif',
417
+ 'minipsf' => 'audio/x-minipsf',
418
+ 'mj2' => 'video/mj2',
419
+ 'mjp2' => 'video/mj2',
420
+ 'mjpeg' => 'video/x-mjpeg',
421
+ 'mjpg' => 'video/x-mjpeg',
422
+ 'mjs' => 'application/javascript',
423
+ 'mk' => 'text/x-makefile',
424
+ 'mk3d' => 'video/x-matroska-3d',
425
+ 'mka' => 'audio/x-matroska',
426
+ 'mkd' => 'text/markdown',
427
+ 'mkv' => 'video/x-matroska',
428
+ 'ml' => 'text/x-ocaml',
429
+ 'mli' => 'text/x-ocaml',
430
+ 'mm' => 'text/x-troff-mm',
431
+ 'mmf' => 'application/x-smaf',
432
+ 'mml' => 'application/mathml+xml',
433
+ 'mng' => 'video/x-mng',
434
+ 'mo' => 'application/x-gettext-translation',
435
+ 'mo3' => 'audio/x-mo3',
436
+ 'mobi' => 'application/x-mobipocket-ebook',
437
+ 'moc' => 'text/x-moc',
438
+ 'mod' => 'audio/x-mod',
439
+ 'mof' => 'text/x-mof',
440
+ 'moov' => 'video/quicktime',
441
+ 'mount' => 'text/x-systemd-unit',
442
+ 'mov' => 'video/quicktime',
443
+ 'movie' => 'video/x-sgi-movie',
444
+ 'mp+' => 'audio/x-musepack',
445
+ 'mp2' => 'audio/mp2',
446
+ 'mp3' => 'audio/mpeg',
447
+ 'mp4' => 'video/mp4',
448
+ 'mpc' => 'audio/x-musepack',
449
+ 'mpe' => 'video/mpeg',
450
+ 'mpeg' => 'video/mpeg',
451
+ 'mpg' => 'video/mpeg',
452
+ 'mpga' => 'audio/mpeg',
453
+ 'mpl' => 'video/mp2t',
454
+ 'mpls' => 'video/mp2t',
455
+ 'mpp' => 'audio/x-musepack',
456
+ 'mrl' => 'text/x-mrml',
457
+ 'mrml' => 'text/x-mrml',
458
+ 'mrw' => 'image/x-minolta-mrw',
459
+ 'ms' => 'text/x-troff-ms',
460
+ 'msi' => 'application/x-msi',
461
+ 'msod' => 'image/x-msod',
462
+ 'msx' => 'application/x-msx-rom',
463
+ 'mtm' => 'audio/x-mod',
464
+ 'mts' => 'video/mp2t',
465
+ 'mup' => 'text/x-mup',
466
+ 'mxf' => 'application/mxf',
467
+ 'mxu' => 'video/vnd.mpegurl',
468
+ 'n64' => 'application/x-n64-rom',
469
+ 'nb' => 'application/mathematica',
470
+ 'nc' => 'application/x-netcdf',
471
+ 'nds' => 'application/x-nintendo-ds-rom',
472
+ 'nef' => 'image/x-nikon-nef',
473
+ 'nes' => 'application/x-nes-rom',
474
+ 'nez' => 'application/x-nes-rom',
475
+ 'nfo' => 'text/x-nfo',
476
+ 'ngc' => 'application/x-neo-geo-pocket-color-rom',
477
+ 'ngp' => 'application/x-neo-geo-pocket-rom',
478
+ 'not' => 'text/x-mup',
479
+ 'nsc' => 'application/x-netshow-channel',
480
+ 'nsv' => 'video/x-nsv',
481
+ 'nzb' => 'application/x-nzb',
482
+ 'o' => 'application/x-object',
483
+ 'obj' => 'application/x-tgif',
484
+ 'ocl' => 'text/x-ocl',
485
+ 'oda' => 'application/oda',
486
+ 'odb' => 'application/vnd.oasis.opendocument.database',
487
+ 'odc' => 'application/vnd.oasis.opendocument.chart',
488
+ 'odf' => 'application/vnd.oasis.opendocument.formula',
489
+ 'odg' => 'application/vnd.oasis.opendocument.graphics',
490
+ 'odi' => 'application/vnd.oasis.opendocument.image',
491
+ 'odm' => 'application/vnd.oasis.opendocument.text-master',
492
+ 'odp' => 'application/vnd.oasis.opendocument.presentation',
493
+ 'ods' => 'application/vnd.oasis.opendocument.spreadsheet',
494
+ 'odt' => 'application/vnd.oasis.opendocument.text',
495
+ 'oga' => 'audio/ogg',
496
+ 'ogg' => 'audio/ogg',
497
+ 'ogm' => 'video/x-ogm+ogg',
498
+ 'ogv' => 'video/ogg',
499
+ 'ogx' => 'application/ogg',
500
+ 'old' => 'application/x-trash',
501
+ 'oleo' => 'application/x-oleo',
502
+ 'ooc' => 'text/x-ooc',
503
+ 'opml' => 'text/x-opml+xml',
504
+ 'oprc' => 'application/vnd.palm',
505
+ 'opus' => 'audio/ogg',
506
+ 'ora' => 'image/openraster',
507
+ 'orf' => 'image/x-olympus-orf',
508
+ 'otc' => 'application/vnd.oasis.opendocument.chart-template',
509
+ 'otf' => 'application/vnd.oasis.opendocument.formula-template',
510
+ 'otg' => 'application/vnd.oasis.opendocument.graphics-template',
511
+ 'oth' => 'application/vnd.oasis.opendocument.text-web',
512
+ 'otp' => 'application/vnd.oasis.opendocument.presentation-template',
513
+ 'ots' => 'application/vnd.oasis.opendocument.spreadsheet-template',
514
+ 'ott' => 'application/vnd.oasis.opendocument.text-template',
515
+ 'owl' => 'application/rdf+xml',
516
+ 'owx' => 'application/owl+xml',
517
+ 'oxps' => 'application/oxps',
518
+ 'oxt' => 'application/vnd.openofficeorg.extension',
519
+ 'p' => 'text/x-pascal',
520
+ 'p10' => 'application/pkcs10',
521
+ 'p12' => 'application/pkcs12',
522
+ 'p65' => 'application/x-pagemaker',
523
+ 'p7b' => 'application/x-pkcs7-certificates',
524
+ 'p7c' => 'application/pkcs7-mime',
525
+ 'p7m' => 'application/pkcs7-mime',
526
+ 'p7s' => 'application/pkcs7-signature',
527
+ 'p8' => 'application/pkcs8',
528
+ 'p8e' => 'application/pkcs8-encrypted',
529
+ 'pack' => 'application/x-java-pack200',
530
+ 'pak' => 'application/x-pak',
531
+ 'par2' => 'application/x-par2',
532
+ 'part' => 'application/x-partial-download',
533
+ 'pas' => 'text/x-pascal',
534
+ 'pat' => 'image/x-gimp-pat',
535
+ 'patch' => 'text/x-patch',
536
+ 'path' => 'text/x-systemd-unit',
537
+ 'pbm' => 'image/x-portable-bitmap',
538
+ 'pcap' => 'application/vnd.tcpdump.pcap',
539
+ 'pcd' => 'image/x-photo-cd',
540
+ 'pce' => 'application/x-pc-engine-rom',
541
+ 'pcf' => 'application/x-font-pcf',
542
+ 'pcf.gz' => 'application/x-font-pcf',
543
+ 'pcf.z' => 'application/x-font-pcf',
544
+ 'pcl' => 'application/vnd.hp-pcl',
545
+ 'pct' => 'image/x-pict',
546
+ 'pcx' => 'image/vnd.zbrush.pcx',
547
+ 'pdb' => 'application/x-aportisdoc',
548
+ 'pdc' => 'application/x-aportisdoc',
549
+ 'pdf' => 'application/pdf',
550
+ 'pdf.bz2' => 'application/x-bzpdf',
551
+ 'pdf.gz' => 'application/x-gzpdf',
552
+ 'pdf.lz' => 'application/x-lzpdf',
553
+ 'pdf.xz' => 'application/x-xzpdf',
554
+ 'pef' => 'image/x-pentax-pef',
555
+ 'pem' => 'application/x-x509-ca-cert',
556
+ 'perl' => 'application/x-perl',
557
+ 'pfa' => 'application/x-font-type1',
558
+ 'pfb' => 'application/x-font-type1',
559
+ 'pfx' => 'application/pkcs12',
560
+ 'pgm' => 'image/x-portable-graymap',
561
+ 'pgn' => 'application/vnd.chess-pgn',
562
+ 'pgp' => 'application/pgp-encrypted',
563
+ 'php' => 'application/x-php',
564
+ 'php3' => 'application/x-php',
565
+ 'php4' => 'application/x-php',
566
+ 'php5' => 'application/x-php',
567
+ 'phps' => 'application/x-php',
568
+ 'pict' => 'image/x-pict',
569
+ 'pict1' => 'image/x-pict',
570
+ 'pict2' => 'image/x-pict',
571
+ 'pk' => 'application/x-tex-pk',
572
+ 'pkg' => 'application/x-xar',
573
+ 'pkipath' => 'application/pkix-pkipath',
574
+ 'pkr' => 'application/pgp-keys',
575
+ 'pl' => 'application/x-perl',
576
+ 'pla' => 'audio/x-iriver-pla',
577
+ 'pln' => 'application/x-planperfect',
578
+ 'pls' => 'audio/x-scpls',
579
+ 'pm' => 'application/x-perl',
580
+ 'pm6' => 'application/x-pagemaker',
581
+ 'pmd' => 'application/x-pagemaker',
582
+ 'png' => 'image/png',
583
+ 'pnm' => 'image/x-portable-anymap',
584
+ 'pntg' => 'image/x-macpaint',
585
+ 'po' => 'text/x-gettext-translation',
586
+ 'pod' => 'application/x-perl',
587
+ 'por' => 'application/x-spss-por',
588
+ 'pot' => 'application/vnd.ms-powerpoint',
589
+ 'potm' => 'application/vnd.ms-powerpoint.template.macroEnabled.12',
590
+ 'potx' => 'application/vnd.openxmlformats-officedocument.presentationml.template',
591
+ 'ppam' => 'application/vnd.ms-powerpoint.addin.macroEnabled.12',
592
+ 'ppm' => 'image/x-portable-pixmap',
593
+ 'pps' => 'application/vnd.ms-powerpoint',
594
+ 'ppsm' => 'application/vnd.ms-powerpoint.slideshow.macroEnabled.12',
595
+ 'ppsx' => 'application/vnd.openxmlformats-officedocument.presentationml.slideshow',
596
+ 'ppt' => 'application/vnd.ms-powerpoint',
597
+ 'pptm' => 'application/vnd.ms-powerpoint.presentation.macroEnabled.12',
598
+ 'pptx' => 'application/vnd.openxmlformats-officedocument.presentationml.presentation',
599
+ 'ppz' => 'application/vnd.ms-powerpoint',
600
+ 'pqa' => 'application/vnd.palm',
601
+ 'prc' => 'application/x-mobipocket-ebook',
602
+ 'ps' => 'application/postscript',
603
+ 'ps.bz2' => 'application/x-bzpostscript',
604
+ 'ps.gz' => 'application/x-gzpostscript',
605
+ 'psd' => 'image/vnd.adobe.photoshop',
606
+ 'psf' => 'application/x-font-linux-psf',
607
+ 'psf.gz' => 'application/x-gz-font-linux-psf',
608
+ 'psflib' => 'audio/x-psflib',
609
+ 'psid' => 'audio/prs.sid',
610
+ 'psw' => 'application/x-pocket-word',
611
+ 'pub' => 'application/vnd.ms-publisher',
612
+ 'pw' => 'application/x-pw',
613
+ 'py' => 'text/x-python3',
614
+ 'py3' => 'text/x-python3',
615
+ 'py3x' => 'text/x-python3',
616
+ 'pyc' => 'application/x-python-bytecode',
617
+ 'pyo' => 'application/x-python-bytecode',
618
+ 'pyx' => 'text/x-python',
619
+ 'qd' => 'application/x-raw-floppy-disk-image',
620
+ 'qif' => 'application/x-qw',
621
+ 'qml' => 'text/x-qml',
622
+ 'qmlproject' => 'text/x-qml',
623
+ 'qmltypes' => 'text/x-qml',
624
+ 'qp' => 'application/x-qpress',
625
+ 'qt' => 'video/quicktime',
626
+ 'qti' => 'application/x-qtiplot',
627
+ 'qti.gz' => 'application/x-qtiplot',
628
+ 'qtif' => 'image/x-quicktime',
629
+ 'qtl' => 'application/x-quicktime-media-link',
630
+ 'qtvr' => 'video/quicktime',
631
+ 'ra' => 'audio/vnd.rn-realaudio',
632
+ 'raf' => 'image/x-fuji-raf',
633
+ 'ram' => 'application/ram',
634
+ 'raml' => 'application/raml+yaml',
635
+ 'rar' => 'application/vnd.rar',
636
+ 'ras' => 'image/x-cmu-raster',
637
+ 'raw' => 'image/x-panasonic-rw',
638
+ 'raw-disk-image' => 'application/x-raw-disk-image',
639
+ 'raw-disk-image.xz' => 'application/x-raw-disk-image-xz-compressed',
640
+ 'rax' => 'audio/vnd.rn-realaudio',
641
+ 'rb' => 'application/x-ruby',
642
+ 'rdf' => 'application/rdf+xml',
643
+ 'rdfs' => 'application/rdf+xml',
644
+ 'reg' => 'text/x-ms-regedit',
645
+ 'rej' => 'text/x-reject',
646
+ 'rgb' => 'image/x-rgb',
647
+ 'rle' => 'image/rle',
648
+ 'rm' => 'application/vnd.rn-realmedia',
649
+ 'rmj' => 'application/vnd.rn-realmedia',
650
+ 'rmm' => 'application/vnd.rn-realmedia',
651
+ 'rms' => 'application/vnd.rn-realmedia',
652
+ 'rmvb' => 'application/vnd.rn-realmedia',
653
+ 'rmx' => 'application/vnd.rn-realmedia',
654
+ 'rnc' => 'application/relax-ng-compact-syntax',
655
+ 'rng' => 'application/xml',
656
+ 'roff' => 'text/troff',
657
+ 'rp' => 'image/vnd.rn-realpix',
658
+ 'rpm' => 'application/x-rpm',
659
+ 'rs' => 'text/rust',
660
+ 'rss' => 'application/rss+xml',
661
+ 'rt' => 'text/vnd.rn-realtext',
662
+ 'rtf' => 'application/rtf',
663
+ 'rtx' => 'text/richtext',
664
+ 'rv' => 'video/vnd.rn-realvideo',
665
+ 'rvx' => 'video/vnd.rn-realvideo',
666
+ 'rw2' => 'image/x-panasonic-rw2',
667
+ 's3m' => 'audio/x-s3m',
668
+ 'sam' => 'application/x-amipro',
669
+ 'sami' => 'application/x-sami',
670
+ 'sap' => 'application/x-thomson-sap-image',
671
+ 'sass' => 'text/x-sass',
672
+ 'sav' => 'application/x-spss-sav',
673
+ 'scala' => 'text/x-scala',
674
+ 'scm' => 'text/x-scheme',
675
+ 'scope' => 'text/x-systemd-unit',
676
+ 'scss' => 'text/x-scss',
677
+ 'sda' => 'application/vnd.stardivision.draw',
678
+ 'sdc' => 'application/vnd.stardivision.calc',
679
+ 'sdd' => 'application/vnd.stardivision.impress',
680
+ 'sdp' => 'application/vnd.stardivision.impress',
681
+ 'sds' => 'application/vnd.stardivision.chart',
682
+ 'sdw' => 'application/vnd.stardivision.writer',
683
+ 'service' => 'text/x-dbus-service',
684
+ 'sfc' => 'application/vnd.nintendo.snes.rom',
685
+ 'sg' => 'application/x-sg1000-rom',
686
+ 'sgb' => 'application/x-gameboy-rom',
687
+ 'sgf' => 'application/x-go-sgf',
688
+ 'sgi' => 'image/x-sgi',
689
+ 'sgl' => 'application/vnd.stardivision.writer',
690
+ 'sgm' => 'text/sgml',
691
+ 'sgml' => 'text/sgml',
692
+ 'sh' => 'application/x-shellscript',
693
+ 'shape' => 'application/x-dia-shape',
694
+ 'shar' => 'application/x-shar',
695
+ 'shn' => 'application/x-shorten',
696
+ 'siag' => 'application/x-siag',
697
+ 'sid' => 'audio/prs.sid',
698
+ 'sig' => 'application/pgp-signature',
699
+ 'sik' => 'application/x-trash',
700
+ 'sis' => 'application/vnd.symbian.install',
701
+ 'sisx' => 'x-epoc/x-sisx-app',
702
+ 'sit' => 'application/x-stuffit',
703
+ 'siv' => 'application/sieve',
704
+ 'sk' => 'image/x-skencil',
705
+ 'sk1' => 'image/x-skencil',
706
+ 'skr' => 'application/pgp-keys',
707
+ 'sldm' => 'application/vnd.ms-powerpoint.slide.macroEnabled.12',
708
+ 'sldx' => 'application/vnd.openxmlformats-officedocument.presentationml.slide',
709
+ 'slice' => 'text/x-systemd-unit',
710
+ 'slk' => 'text/spreadsheet',
711
+ 'smaf' => 'application/x-smaf',
712
+ 'smc' => 'application/vnd.nintendo.snes.rom',
713
+ 'smd' => 'application/vnd.stardivision.mail',
714
+ 'smf' => 'application/vnd.stardivision.math',
715
+ 'smi' => 'application/smil+xml',
716
+ 'smil' => 'application/smil+xml',
717
+ 'sml' => 'application/smil+xml',
718
+ 'sms' => 'application/x-sms-rom',
719
+ 'snap' => 'application/vnd.snap',
720
+ 'snd' => 'audio/basic',
721
+ 'so' => 'application/x-sharedlib',
722
+ 'socket' => 'text/x-systemd-unit',
723
+ 'spc' => 'application/x-pkcs7-certificates',
724
+ 'spd' => 'application/x-font-speedo',
725
+ 'spec' => 'text/x-rpm-spec',
726
+ 'spl' => 'application/vnd.adobe.flash.movie',
727
+ 'spm' => 'application/x-source-rpm',
728
+ 'spx' => 'audio/x-speex',
729
+ 'sql' => 'application/sql',
730
+ 'sqlite2' => 'application/x-sqlite2',
731
+ 'sqlite3' => 'application/vnd.sqlite3',
732
+ 'sqsh' => 'application/vnd.squashfs',
733
+ 'sr2' => 'image/x-sony-sr2',
734
+ 'src' => 'application/x-wais-source',
735
+ 'src.rpm' => 'application/x-source-rpm',
736
+ 'srf' => 'image/x-sony-srf',
737
+ 'srt' => 'application/x-subrip',
738
+ 'ss' => 'text/x-scheme',
739
+ 'ssa' => 'text/x-ssa',
740
+ 'stc' => 'application/vnd.sun.xml.calc.template',
741
+ 'std' => 'application/vnd.sun.xml.draw.template',
742
+ 'sti' => 'application/vnd.sun.xml.impress.template',
743
+ 'stl' => 'model/stl',
744
+ 'stm' => 'audio/x-stm',
745
+ 'stw' => 'application/vnd.sun.xml.writer.template',
746
+ 'sty' => 'text/x-tex',
747
+ 'sub' => 'text/x-microdvd',
748
+ 'sun' => 'image/x-sun-raster',
749
+ 'sv' => 'text/x-svsrc',
750
+ 'sv4cpio' => 'application/x-sv4cpio',
751
+ 'sv4crc' => 'application/x-sv4crc',
752
+ 'svg' => 'image/svg+xml',
753
+ 'svgz' => 'image/svg+xml-compressed',
754
+ 'svh' => 'text/x-svhdr',
755
+ 'swap' => 'text/x-systemd-unit',
756
+ 'swf' => 'application/vnd.adobe.flash.movie',
757
+ 'swm' => 'application/x-ms-wim',
758
+ 'sxc' => 'application/vnd.sun.xml.calc',
759
+ 'sxd' => 'application/vnd.sun.xml.draw',
760
+ 'sxg' => 'application/vnd.sun.xml.writer.global',
761
+ 'sxi' => 'application/vnd.sun.xml.impress',
762
+ 'sxm' => 'application/vnd.sun.xml.math',
763
+ 'sxw' => 'application/vnd.sun.xml.writer',
764
+ 'sylk' => 'text/spreadsheet',
765
+ 't' => 'application/x-perl',
766
+ 't2t' => 'text/x-txt2tags',
767
+ 'tar' => 'application/x-tar',
768
+ 'tar.bz' => 'application/x-bzip-compressed-tar',
769
+ 'tar.bz2' => 'application/x-bzip-compressed-tar',
770
+ 'tar.gz' => 'application/x-compressed-tar',
771
+ 'tar.lrz' => 'application/x-lrzip-compressed-tar',
772
+ 'tar.lz' => 'application/x-lzip-compressed-tar',
773
+ 'tar.lz4' => 'application/x-lz4-compressed-tar',
774
+ 'tar.lzma' => 'application/x-lzma-compressed-tar',
775
+ 'tar.lzo' => 'application/x-tzo',
776
+ 'tar.xz' => 'application/x-xz-compressed-tar',
777
+ 'tar.z' => 'application/x-tarz',
778
+ 'target' => 'text/x-systemd-unit',
779
+ 'taz' => 'application/x-tarz',
780
+ 'tb2' => 'application/x-bzip-compressed-tar',
781
+ 'tbz' => 'application/x-bzip-compressed-tar',
782
+ 'tbz2' => 'application/x-bzip-compressed-tar',
783
+ 'tcl' => 'text/x-tcl',
784
+ 'tex' => 'text/x-tex',
785
+ 'texi' => 'text/x-texinfo',
786
+ 'texinfo' => 'text/x-texinfo',
787
+ 'tga' => 'image/x-tga',
788
+ 'tgz' => 'application/x-compressed-tar',
789
+ 'theme' => 'application/x-theme',
790
+ 'themepack' => 'application/x-windows-themepack',
791
+ 'tif' => 'image/tiff',
792
+ 'tiff' => 'image/tiff',
793
+ 'timer' => 'text/x-systemd-unit',
794
+ 'tk' => 'text/x-tcl',
795
+ 'tlrz' => 'application/x-lrzip-compressed-tar',
796
+ 'tlz' => 'application/x-lzma-compressed-tar',
797
+ 'tnef' => 'application/vnd.ms-tnef',
798
+ 'tnf' => 'application/vnd.ms-tnef',
799
+ 'toc' => 'application/x-cdrdao-toc',
800
+ 'torrent' => 'application/x-bittorrent',
801
+ 'tpic' => 'image/x-tga',
802
+ 'tr' => 'text/troff',
803
+ 'trig' => 'application/trig',
804
+ 'ts' => 'text/vnd.qt.linguist',
805
+ 'tsv' => 'text/tab-separated-values',
806
+ 'tta' => 'audio/x-tta',
807
+ 'ttc' => 'font/collection',
808
+ 'ttf' => 'font/ttf',
809
+ 'ttl' => 'text/turtle',
810
+ 'ttx' => 'application/x-font-ttx',
811
+ 'twig' => 'text/x-twig',
812
+ 'txt' => 'text/plain',
813
+ 'txz' => 'application/x-xz-compressed-tar',
814
+ 'tzo' => 'application/x-tzo',
815
+ 'udeb' => 'application/vnd.debian.binary-package',
816
+ 'ufraw' => 'application/x-ufraw',
817
+ 'ui' => 'application/x-designer',
818
+ 'uil' => 'text/x-uil',
819
+ 'ult' => 'audio/x-mod',
820
+ 'unf' => 'application/x-nes-rom',
821
+ 'uni' => 'audio/x-mod',
822
+ 'unif' => 'application/x-nes-rom',
823
+ 'url' => 'application/x-mswinurl',
824
+ 'ustar' => 'application/x-ustar',
825
+ 'uue' => 'text/x-uuencode',
826
+ 'v' => 'text/x-verilog',
827
+ 'v64' => 'application/x-n64-rom',
828
+ 'vala' => 'text/x-vala',
829
+ 'vapi' => 'text/x-vala',
830
+ 'vb' => 'application/x-virtual-boy-rom',
831
+ 'vcard' => 'text/vcard',
832
+ 'vcf' => 'text/vcard',
833
+ 'vcs' => 'text/calendar',
834
+ 'vct' => 'text/vcard',
835
+ 'vda' => 'image/x-tga',
836
+ 'vhd' => 'text/x-vhdl',
837
+ 'vhdl' => 'text/x-vhdl',
838
+ 'viv' => 'video/vnd.vivo',
839
+ 'vivo' => 'video/vnd.vivo',
840
+ 'vlc' => 'audio/x-mpegurl',
841
+ 'vob' => 'video/mpeg',
842
+ 'voc' => 'audio/x-voc',
843
+ 'vor' => 'application/vnd.stardivision.writer',
844
+ 'vrm' => 'model/vrml',
845
+ 'vrml' => 'model/vrml',
846
+ 'vsd' => 'application/vnd.visio',
847
+ 'vsdm' => 'application/vnd.ms-visio.drawing.macroEnabled.main+xml',
848
+ 'vsdx' => 'application/vnd.ms-visio.drawing.main+xml',
849
+ 'vss' => 'application/vnd.visio',
850
+ 'vssm' => 'application/vnd.ms-visio.stencil.macroEnabled.main+xml',
851
+ 'vssx' => 'application/vnd.ms-visio.stencil.main+xml',
852
+ 'vst' => 'application/vnd.visio',
853
+ 'vstm' => 'application/vnd.ms-visio.template.macroEnabled.main+xml',
854
+ 'vstx' => 'application/vnd.ms-visio.template.main+xml',
855
+ 'vsw' => 'application/vnd.visio',
856
+ 'vtt' => 'text/vtt',
857
+ 'wad' => 'application/x-wii-wad',
858
+ 'wav' => 'audio/x-wav',
859
+ 'wax' => 'audio/x-ms-asx',
860
+ 'wb1' => 'application/x-quattropro',
861
+ 'wb2' => 'application/x-quattropro',
862
+ 'wb3' => 'application/x-quattropro',
863
+ 'wbmp' => 'image/vnd.wap.wbmp',
864
+ 'wcm' => 'application/vnd.ms-works',
865
+ 'wdb' => 'application/vnd.ms-works',
866
+ 'webm' => 'video/webm',
867
+ 'webp' => 'image/webp',
868
+ 'wim' => 'application/x-ms-wim',
869
+ 'wk1' => 'application/vnd.lotus-1-2-3',
870
+ 'wk3' => 'application/vnd.lotus-1-2-3',
871
+ 'wk4' => 'application/vnd.lotus-1-2-3',
872
+ 'wkdownload' => 'application/x-partial-download',
873
+ 'wks' => 'application/vnd.lotus-1-2-3',
874
+ 'wma' => 'audio/x-ms-wma',
875
+ 'wmf' => 'image/wmf',
876
+ 'wml' => 'text/vnd.wap.wml',
877
+ 'wmls' => 'text/vnd.wap.wmlscript',
878
+ 'wmv' => 'video/x-ms-wmv',
879
+ 'wmx' => 'audio/x-ms-asx',
880
+ 'woff' => 'font/woff',
881
+ 'woff2' => 'font/woff',
882
+ 'wp' => 'application/vnd.wordperfect',
883
+ 'wp4' => 'application/vnd.wordperfect',
884
+ 'wp5' => 'application/vnd.wordperfect',
885
+ 'wp6' => 'application/vnd.wordperfect',
886
+ 'wpd' => 'application/vnd.wordperfect',
887
+ 'wpg' => 'application/x-wpg',
888
+ 'wpl' => 'application/vnd.ms-wpl',
889
+ 'wpp' => 'application/vnd.wordperfect',
890
+ 'wps' => 'application/vnd.ms-works',
891
+ 'wri' => 'application/x-mswrite',
892
+ 'wrl' => 'model/vrml',
893
+ 'ws' => 'application/x-wonderswan-rom',
894
+ 'wsc' => 'application/x-wonderswan-color-rom',
895
+ 'wsgi' => 'text/x-python',
896
+ 'wv' => 'audio/x-wavpack',
897
+ 'wvc' => 'audio/x-wavpack-correction',
898
+ 'wvp' => 'audio/x-wavpack',
899
+ 'wvx' => 'audio/x-ms-asx',
900
+ 'wwf' => 'application/x-wwf',
901
+ 'x3f' => 'image/x-sigma-x3f',
902
+ 'xac' => 'application/x-gnucash',
903
+ 'xar' => 'application/x-xar',
904
+ 'xbel' => 'application/x-xbel',
905
+ 'xbl' => 'application/xml',
906
+ 'xbm' => 'image/x-xbitmap',
907
+ 'xcf' => 'image/x-xcf',
908
+ 'xcf.bz2' => 'image/x-compressed-xcf',
909
+ 'xcf.gz' => 'image/x-compressed-xcf',
910
+ 'xdgapp' => 'application/vnd.flatpak',
911
+ 'xhe' => 'audio/usac',
912
+ 'xht' => 'application/xhtml+xml',
913
+ 'xhtml' => 'application/xhtml+xml',
914
+ 'xi' => 'audio/x-xi',
915
+ 'xla' => 'application/vnd.ms-excel',
916
+ 'xlam' => 'application/vnd.ms-excel.addin.macroEnabled.12',
917
+ 'xlc' => 'application/vnd.ms-excel',
918
+ 'xld' => 'application/vnd.ms-excel',
919
+ 'xlf' => 'application/xliff+xml',
920
+ 'xliff' => 'application/xliff+xml',
921
+ 'xll' => 'application/vnd.ms-excel',
922
+ 'xlm' => 'application/vnd.ms-excel',
923
+ 'xlr' => 'application/vnd.ms-works',
924
+ 'xls' => 'application/vnd.ms-excel',
925
+ 'xlsb' => 'application/vnd.ms-excel.sheet.binary.macroEnabled.12',
926
+ 'xlsm' => 'application/vnd.ms-excel.sheet.macroEnabled.12',
927
+ 'xlsx' => 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
928
+ 'xlt' => 'application/vnd.ms-excel',
929
+ 'xltm' => 'application/vnd.ms-excel.template.macroEnabled.12',
930
+ 'xltx' => 'application/vnd.openxmlformats-officedocument.spreadsheetml.template',
931
+ 'xlw' => 'application/vnd.ms-excel',
932
+ 'xm' => 'audio/x-xm',
933
+ 'xmf' => 'audio/x-xmf',
934
+ 'xmi' => 'text/x-xmi',
935
+ 'xml' => 'application/xml',
936
+ 'xpi' => 'application/x-xpinstall',
937
+ 'xpm' => 'image/x-xpixmap',
938
+ 'xps' => 'application/oxps',
939
+ 'xsd' => 'application/xml',
940
+ 'xsl' => 'application/xslt+xml',
941
+ 'xslfo' => 'text/x-xslfo',
942
+ 'xslt' => 'application/xslt+xml',
943
+ 'xspf' => 'application/xspf+xml',
944
+ 'xul' => 'application/vnd.mozilla.xul+xml',
945
+ 'xwd' => 'image/x-xwindowdump',
946
+ 'xz' => 'application/x-xz',
947
+ 'yaml' => 'application/x-yaml',
948
+ 'yml' => 'application/x-yaml',
949
+ 'yt' => 'application/vnd.youtube.yt',
950
+ 'z' => 'application/x-compress',
951
+ 'z64' => 'application/x-n64-rom',
952
+ 'zabw' => 'application/x-abiword',
953
+ 'zip' => 'application/zip',
954
+ 'zoo' => 'application/x-zoo',
955
+ 'zsav' => 'application/x-spss-sav',
956
+ 'zz' => 'application/zlib',
957
+ }
958
+ # @private
959
+ # :nodoc:
960
+ TYPES = {
961
+ 'application/andrew-inset' => [%w(ez), %w(), 'ATK inset'],
962
+ 'application/annodex' => [%w(anx), %w(), 'Annodex exchange format'],
963
+ 'application/atom+xml' => [%w(atom), %w(application/xml), 'Atom syndication feed'],
964
+ 'application/dicom' => [%w(dcm), %w(), 'DICOM image'],
965
+ 'application/ecmascript' => [%w(es), %w(application/x-executable text/plain), 'ECMAScript program'],
966
+ 'application/epub+zip' => [%w(epub), %w(application/zip), 'electronic book document'],
967
+ 'application/geo+json' => [%w(geo.json geojson), %w(application/json), 'GeoJSON geospatial data'],
968
+ 'application/gml+xml' => [%w(gml), %w(application/xml), 'GML document'],
969
+ 'application/gnunet-directory' => [%w(gnd), %w(), 'GNUnet search file'],
970
+ 'application/gpx+xml' => [%w(gpx), %w(application/xml), 'GPX geographic data'],
971
+ 'application/gzip' => [%w(gz), %w(), 'Gzip archive'],
972
+ 'application/illustrator' => [%w(ai), %w(), 'Adobe Illustrator document'],
973
+ 'application/javascript' => [%w(js jsm mjs), %w(application/ecmascript), 'JavaScript program'],
974
+ 'application/jrd+json' => [%w(jrd), %w(application/json), 'JRD document'],
975
+ 'application/json' => [%w(json), %w(application/javascript), 'JSON document'],
976
+ 'application/json-patch+json' => [%w(json-patch), %w(application/json), 'JSON patch'],
977
+ 'application/ld+json' => [%w(jsonld), %w(application/json), 'JSON-LD document'],
978
+ 'application/mathematica' => [%w(nb), %w(text/plain), 'Mathematica Notebook'],
979
+ 'application/mathml+xml' => [%w(mml), %w(application/xml), 'MathML document'],
980
+ 'application/mbox' => [%w(mbox), %w(text/plain), 'mailbox file'],
981
+ 'application/metalink+xml' => [%w(metalink), %w(application/xml), 'Metalink file'],
982
+ 'application/metalink4+xml' => [%w(meta4), %w(application/xml), 'Metalink file'],
983
+ 'application/msword' => [%w(doc), %w(application/x-ole-storage), 'Word document'],
984
+ 'application/msword-template' => [%w(dot), %w(application/msword), 'Word template'],
985
+ 'application/mxf' => [%w(mxf), %w(), 'MXF video'],
986
+ 'application/oda' => [%w(oda), %w(), 'ODA document'],
987
+ 'application/ogg' => [%w(ogx), %w(), 'Ogg multimedia file'],
988
+ 'application/owl+xml' => [%w(owx), %w(application/xml), 'OWL XML file'],
989
+ 'application/oxps' => [%w(oxps xps), %w(application/zip), 'XPS document'],
990
+ 'application/pdf' => [%w(pdf), %w(), 'PDF document'],
991
+ 'application/pgp-encrypted' => [%w(asc gpg pgp), %w(text/plain), 'PGP/MIME-encrypted message header'],
992
+ 'application/pgp-keys' => [%w(asc gpg pgp pkr skr), %w(text/plain), 'PGP keys'],
993
+ 'application/pgp-signature' => [%w(asc gpg pgp sig), %w(text/plain), 'detached OpenPGP signature'],
994
+ 'application/pkcs10' => [%w(p10), %w(), 'PKCS#10 certification request'],
995
+ 'application/pkcs12' => [%w(p12 pfx), %w(), 'PKCS#12 certificate bundle'],
996
+ 'application/pkcs7-mime' => [%w(p7c p7m), %w(), 'PKCS#7 Message or Certificate'],
997
+ 'application/pkcs7-signature' => [%w(p7s), %w(text/plain), 'detached S/MIME signature'],
998
+ 'application/pkcs8' => [%w(p8), %w(), 'PKCS#8 private key'],
999
+ 'application/pkcs8-encrypted' => [%w(p8e), %w(), 'PKCS#8 private key (encrypted)'],
1000
+ 'application/pkix-cert' => [%w(cer), %w(), 'X.509 certificate'],
1001
+ 'application/pkix-crl' => [%w(crl), %w(), 'Certificate revocation list'],
1002
+ 'application/pkix-pkipath' => [%w(pkipath), %w(), 'PkiPath certification path'],
1003
+ 'application/postscript' => [%w(ps), %w(text/plain), 'PS document'],
1004
+ 'application/ram' => [%w(ram), %w(), 'RealMedia Metafile'],
1005
+ 'application/raml+yaml' => [%w(raml), %w(application/x-yaml), 'RAML document'],
1006
+ 'application/rdf+xml' => [%w(owl rdf rdfs), %w(application/xml), 'RDF file'],
1007
+ 'application/relax-ng-compact-syntax' => [%w(rnc), %w(text/plain), 'RELAX NG XML schema'],
1008
+ 'application/rss+xml' => [%w(rss), %w(application/xml), 'RSS summary'],
1009
+ 'application/rtf' => [%w(rtf), %w(text/plain), 'RTF document'],
1010
+ 'application/sdp' => [%w(sdp), %w(text/plain), 'SDP multicast stream file'],
1011
+ 'application/sieve' => [%w(siv), %w(application/xml), 'Sieve mail filter script'],
1012
+ 'application/smil+xml' => [%w(kino smi smil sml), %w(application/xml), 'SMIL document'],
1013
+ 'application/sql' => [%w(sql), %w(text/plain), 'SQL code'],
1014
+ 'application/trig' => [%w(trig), %w(text/plain), 'TriG RDF document'],
1015
+ 'application/vnd.adobe.flash.movie' => [%w(spl swf), %w(), 'Shockwave Flash file'],
1016
+ 'application/vnd.android.package-archive' => [%w(apk), %w(application/x-java-archive), 'Android package'],
1017
+ 'application/vnd.appimage' => [%w(appimage), %w(application/vnd.squashfs application/x-executable), 'AppImage application bundle'],
1018
+ 'application/vnd.apple.mpegurl' => [%w(m3u m3u8), %w(text/plain), 'HTTP Live Streaming playlist'],
1019
+ 'application/vnd.chess-pgn' => [%w(pgn), %w(text/plain), 'PGN chess game notation'],
1020
+ 'application/vnd.coffeescript' => [%w(coffee), %w(text/plain), 'CoffeeScript document'],
1021
+ 'application/vnd.comicbook+zip' => [%w(cbz), %w(application/zip), 'comic book archive'],
1022
+ 'application/vnd.comicbook-rar' => [%w(cbr), %w(application/vnd.rar), 'comic book archive'],
1023
+ 'application/vnd.corel-draw' => [%w(cdr), %w(), 'Corel Draw drawing'],
1024
+ 'application/vnd.debian.binary-package' => [%w(deb udeb), %w(), 'Debian package'],
1025
+ 'application/vnd.emusic-emusic_package' => [%w(emp), %w(), 'eMusic download package'],
1026
+ 'application/vnd.flatpak' => [%w(flatpak xdgapp), %w(), 'Flatpak application bundle'],
1027
+ 'application/vnd.flatpak.ref' => [%w(flatpakref), %w(text/plain), 'Flatpak repository reference'],
1028
+ 'application/vnd.flatpak.repo' => [%w(flatpakrepo), %w(text/plain), 'Flatpak repository description'],
1029
+ 'application/vnd.framemaker' => [%w(fm), %w(), 'Adobe FrameMaker document'],
1030
+ 'application/vnd.google-earth.kml+xml' => [%w(kml), %w(application/xml), 'KML geographic data'],
1031
+ 'application/vnd.google-earth.kmz' => [%w(kmz), %w(application/zip), 'KML geographic compressed data'],
1032
+ 'application/vnd.hp-hpgl' => [%w(hpgl), %w(), 'HPGL file'],
1033
+ 'application/vnd.hp-pcl' => [%w(pcl), %w(), 'PCL file'],
1034
+ 'application/vnd.iccprofile' => [%w(icc icm), %w(), 'ICC profile'],
1035
+ 'application/vnd.lotus-1-2-3' => [%w(123 wk1 wk3 wk4 wks), %w(), 'Lotus 1-2-3 spreadsheet'],
1036
+ 'application/vnd.lotus-wordpro' => [%w(lwp), %w(), 'Lotus Word Pro'],
1037
+ 'application/vnd.mozilla.xul+xml' => [%w(xul), %w(application/xml), 'XUL interface document'],
1038
+ 'application/vnd.ms-access' => [%w(mdb), %w(), 'JET database'],
1039
+ 'application/vnd.ms-asf' => [%w(asf), %w(), 'ASF video'],
1040
+ 'application/vnd.ms-cab-compressed' => [%w(cab), %w(), 'Microsoft Cabinet archive'],
1041
+ 'application/vnd.ms-excel' => [%w(xla xlc xld xll xlm xls xlt xlw), %w(), 'Excel spreadsheet'],
1042
+ 'application/vnd.ms-excel.addin.macroEnabled.12' => [%w(xlam), %w(application/vnd.openxmlformats-officedocument.spreadsheetml.sheet), 'Excel add-in'],
1043
+ 'application/vnd.ms-excel.sheet.binary.macroEnabled.12' => [%w(xlsb), %w(application/vnd.openxmlformats-officedocument.spreadsheetml.sheet), 'Excel 2007 binary spreadsheet'],
1044
+ 'application/vnd.ms-excel.sheet.macroEnabled.12' => [%w(xlsm), %w(application/vnd.openxmlformats-officedocument.spreadsheetml.sheet), 'Excel spreadsheet'],
1045
+ 'application/vnd.ms-excel.template.macroEnabled.12' => [%w(xltm), %w(application/vnd.openxmlformats-officedocument.spreadsheetml.template), 'Excel spreadsheet template'],
1046
+ 'application/vnd.ms-htmlhelp' => [%w(chm), %w(), 'CHM document'],
1047
+ 'application/vnd.ms-powerpoint' => [%w(pot pps ppt ppz), %w(), 'PowerPoint presentation'],
1048
+ 'application/vnd.ms-powerpoint.addin.macroEnabled.12' => [%w(ppam), %w(), 'PowerPoint add-in'],
1049
+ 'application/vnd.ms-powerpoint.presentation.macroEnabled.12' => [%w(pptm), %w(application/vnd.openxmlformats-officedocument.presentationml.presentation), 'PowerPoint presentation'],
1050
+ 'application/vnd.ms-powerpoint.slide.macroEnabled.12' => [%w(sldm), %w(application/vnd.openxmlformats-officedocument.presentationml.slide), 'PowerPoint slide'],
1051
+ 'application/vnd.ms-powerpoint.slideshow.macroEnabled.12' => [%w(ppsm), %w(application/vnd.openxmlformats-officedocument.presentationml.slideshow), 'PowerPoint presentation'],
1052
+ 'application/vnd.ms-powerpoint.template.macroEnabled.12' => [%w(potm), %w(application/vnd.openxmlformats-officedocument.presentationml.template), 'PowerPoint presentation template'],
1053
+ 'application/vnd.ms-publisher' => [%w(pub), %w(application/x-ole-storage), 'Microsoft Publisher document'],
1054
+ 'application/vnd.ms-tnef' => [%w(tnef tnf), %w(), 'TNEF message'],
1055
+ 'application/vnd.ms-visio.drawing.macroEnabled.main+xml' => [%w(vsdm), %w(application/zip), 'Office Open XML Visio Drawing'],
1056
+ 'application/vnd.ms-visio.drawing.main+xml' => [%w(vsdx), %w(application/zip), 'Office Open XML Visio Drawing'],
1057
+ 'application/vnd.ms-visio.stencil.macroEnabled.main+xml' => [%w(vssm), %w(application/zip), 'Office Open XML Visio Stencil'],
1058
+ 'application/vnd.ms-visio.stencil.main+xml' => [%w(vssx), %w(application/zip), 'Office Open XML Visio Stencil'],
1059
+ 'application/vnd.ms-visio.template.macroEnabled.main+xml' => [%w(vstm), %w(application/zip), 'Office Open XML Visio Template'],
1060
+ 'application/vnd.ms-visio.template.main+xml' => [%w(vstx), %w(application/zip), 'Office Open XML Visio Template'],
1061
+ 'application/vnd.ms-word.document.macroEnabled.12' => [%w(docm), %w(application/vnd.openxmlformats-officedocument.wordprocessingml.document), 'Word document'],
1062
+ 'application/vnd.ms-word.template.macroEnabled.12' => [%w(dotm), %w(application/vnd.openxmlformats-officedocument.wordprocessingml.template), 'Word document template'],
1063
+ 'application/vnd.ms-works' => [%w(wcm wdb wks wps xlr), %w(application/x-ole-storage), 'Microsoft Works document'],
1064
+ 'application/vnd.ms-wpl' => [%w(wpl), %w(), 'WPL playlist'],
1065
+ 'application/vnd.nintendo.snes.rom' => [%w(sfc smc), %w(), 'Super NES ROM'],
1066
+ 'application/vnd.oasis.opendocument.chart' => [%w(odc), %w(application/zip), 'ODC chart'],
1067
+ 'application/vnd.oasis.opendocument.chart-template' => [%w(otc), %w(application/zip), 'ODC template'],
1068
+ 'application/vnd.oasis.opendocument.database' => [%w(odb), %w(application/zip), 'ODB database'],
1069
+ 'application/vnd.oasis.opendocument.formula' => [%w(odf), %w(application/zip), 'ODF formula'],
1070
+ 'application/vnd.oasis.opendocument.formula-template' => [%w(otf), %w(application/zip), 'ODF template'],
1071
+ 'application/vnd.oasis.opendocument.graphics' => [%w(odg), %w(application/zip), 'ODG drawing'],
1072
+ 'application/vnd.oasis.opendocument.graphics-flat-xml' => [%w(fodg), %w(application/xml), 'ODG drawing (Flat XML)'],
1073
+ 'application/vnd.oasis.opendocument.graphics-template' => [%w(otg), %w(application/zip), 'ODG template'],
1074
+ 'application/vnd.oasis.opendocument.image' => [%w(odi), %w(application/zip), 'ODI image'],
1075
+ 'application/vnd.oasis.opendocument.presentation' => [%w(odp), %w(application/zip), 'ODP presentation'],
1076
+ 'application/vnd.oasis.opendocument.presentation-flat-xml' => [%w(fodp), %w(application/xml), 'ODP presentation (Flat XML)'],
1077
+ 'application/vnd.oasis.opendocument.presentation-template' => [%w(otp), %w(application/zip), 'ODP template'],
1078
+ 'application/vnd.oasis.opendocument.spreadsheet' => [%w(ods), %w(application/zip), 'ODS spreadsheet'],
1079
+ 'application/vnd.oasis.opendocument.spreadsheet-flat-xml' => [%w(fods), %w(application/xml), 'ODS spreadsheet (Flat XML)'],
1080
+ 'application/vnd.oasis.opendocument.spreadsheet-template' => [%w(ots), %w(application/zip), 'ODS template'],
1081
+ 'application/vnd.oasis.opendocument.text' => [%w(odt), %w(application/zip), 'ODT document'],
1082
+ 'application/vnd.oasis.opendocument.text-flat-xml' => [%w(fodt), %w(application/xml), 'ODT document (Flat XML)'],
1083
+ 'application/vnd.oasis.opendocument.text-master' => [%w(odm), %w(application/zip), 'ODM document'],
1084
+ 'application/vnd.oasis.opendocument.text-template' => [%w(ott), %w(application/zip), 'ODT template'],
1085
+ 'application/vnd.oasis.opendocument.text-web' => [%w(oth), %w(application/zip), 'OTH template'],
1086
+ 'application/vnd.openofficeorg.extension' => [%w(oxt), %w(application/zip), 'OpenOffice.org extension'],
1087
+ 'application/vnd.openxmlformats-officedocument.presentationml.presentation' => [%w(pptx), %w(application/zip), 'PowerPoint 2007 presentation'],
1088
+ 'application/vnd.openxmlformats-officedocument.presentationml.slide' => [%w(sldx), %w(application/zip), 'PowerPoint 2007 slide'],
1089
+ 'application/vnd.openxmlformats-officedocument.presentationml.slideshow' => [%w(ppsx), %w(application/zip), 'PowerPoint 2007 show'],
1090
+ 'application/vnd.openxmlformats-officedocument.presentationml.template' => [%w(potx), %w(application/zip), 'PowerPoint 2007 presentation template'],
1091
+ 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet' => [%w(xlsx), %w(application/zip), 'Excel 2007 spreadsheet'],
1092
+ 'application/vnd.openxmlformats-officedocument.spreadsheetml.template' => [%w(xltx), %w(application/zip), 'Excel 2007 spreadsheet template'],
1093
+ 'application/vnd.openxmlformats-officedocument.wordprocessingml.document' => [%w(docx), %w(application/zip), 'Word 2007 document'],
1094
+ 'application/vnd.openxmlformats-officedocument.wordprocessingml.template' => [%w(dotx), %w(application/zip), 'Word 2007 document template'],
1095
+ 'application/vnd.palm' => [%w(oprc pdb pqa prc), %w(), 'Palm OS database'],
1096
+ 'application/vnd.rar' => [%w(rar), %w(), 'RAR archive'],
1097
+ 'application/vnd.rn-realmedia' => [%w(rm rmj rmm rms rmvb rmx), %w(), 'RealMedia document'],
1098
+ 'application/vnd.snap' => [%w(snap), %w(application/vnd.squashfs), 'Snap package'],
1099
+ 'application/vnd.sqlite3' => [%w(sqlite3), %w(), 'SQLite3 database'],
1100
+ 'application/vnd.squashfs' => [%w(sqsh), %w(), 'Squashfs filesystem'],
1101
+ 'application/vnd.stardivision.calc' => [%w(sdc), %w(), 'StarCalc spreadsheet'],
1102
+ 'application/vnd.stardivision.chart' => [%w(sds), %w(), 'StarChart chart'],
1103
+ 'application/vnd.stardivision.draw' => [%w(sda), %w(), 'StarDraw drawing'],
1104
+ 'application/vnd.stardivision.impress' => [%w(sdd sdp), %w(), 'StarImpress presentation'],
1105
+ 'application/vnd.stardivision.mail' => [%w(smd), %w(), 'StarMail email'],
1106
+ 'application/vnd.stardivision.math' => [%w(smf), %w(), 'StarMath formula'],
1107
+ 'application/vnd.stardivision.writer' => [%w(sdw sgl vor), %w(), 'StarWriter document'],
1108
+ 'application/vnd.sun.xml.calc' => [%w(sxc), %w(application/zip), 'OpenOffice Calc spreadsheet'],
1109
+ 'application/vnd.sun.xml.calc.template' => [%w(stc), %w(application/zip), 'OpenOffice Calc template'],
1110
+ 'application/vnd.sun.xml.draw' => [%w(sxd), %w(application/zip), 'OpenOffice Draw drawing'],
1111
+ 'application/vnd.sun.xml.draw.template' => [%w(std), %w(application/zip), 'OpenOffice Draw template'],
1112
+ 'application/vnd.sun.xml.impress' => [%w(sxi), %w(application/zip), 'OpenOffice Impress presentation'],
1113
+ 'application/vnd.sun.xml.impress.template' => [%w(sti), %w(application/zip), 'OpenOffice Impress template'],
1114
+ 'application/vnd.sun.xml.math' => [%w(sxm), %w(application/zip), 'OpenOffice Math formula'],
1115
+ 'application/vnd.sun.xml.writer' => [%w(sxw), %w(application/zip), 'OpenOffice Writer document'],
1116
+ 'application/vnd.sun.xml.writer.global' => [%w(sxg), %w(application/zip), 'OpenOffice Writer global document'],
1117
+ 'application/vnd.sun.xml.writer.template' => [%w(stw), %w(application/zip), 'OpenOffice Writer template'],
1118
+ 'application/vnd.symbian.install' => [%w(sis), %w(), 'SIS package'],
1119
+ 'application/vnd.tcpdump.pcap' => [%w(cap dmp pcap), %w(), 'Network Packet Capture'],
1120
+ 'application/vnd.visio' => [%w(vsd vss vst vsw), %w(application/x-ole-storage), 'Microsoft Visio document'],
1121
+ 'application/vnd.wordperfect' => [%w(wp wp4 wp5 wp6 wpd wpp), %w(), 'WordPerfect document'],
1122
+ 'application/vnd.youtube.yt' => [%w(yt), %w(application/zip), 'YouTube Media Archive'],
1123
+ 'application/winhlp' => [%w(hlp), %w(), 'WinHelp help file'],
1124
+ 'application/x-7z-compressed' => [%w(7z), %w(), '7-zip archive'],
1125
+ 'application/x-abiword' => [%w(abw abw.crashed abw.gz zabw), %w(application/xml), 'AbiWord document'],
1126
+ 'application/x-ace' => [%w(ace), %w(), 'ACE archive'],
1127
+ 'application/x-alz' => [%w(alz), %w(), 'Alzip archive'],
1128
+ 'application/x-amiga-disk-format' => [%w(adf), %w(), 'Amiga disk image'],
1129
+ 'application/x-amipro' => [%w(sam), %w(), 'Lotus AmiPro document'],
1130
+ 'application/x-aportisdoc' => [%w(pdb pdc), %w(application/vnd.palm), 'AportisDoc document'],
1131
+ 'application/x-apple-diskimage' => [%w(dmg), %w(), 'Apple disk image'],
1132
+ 'application/x-applix-spreadsheet' => [%w(as), %w(), 'Applix Spreadsheets spreadsheet'],
1133
+ 'application/x-applix-word' => [%w(aw), %w(), 'Applix Words document'],
1134
+ 'application/x-archive' => [%w(a ar), %w(), 'AR archive'],
1135
+ 'application/x-arj' => [%w(arj), %w(), 'ARJ archive'],
1136
+ 'application/x-asp' => [%w(asp), %w(text/plain), 'ASP page'],
1137
+ 'application/x-atari-2600-rom' => [%w(a26), %w(), 'Atari 2600'],
1138
+ 'application/x-atari-7800-rom' => [%w(a78), %w(), 'Atari 7800'],
1139
+ 'application/x-atari-lynx-rom' => [%w(lnx), %w(), 'Atari Lynx'],
1140
+ 'application/x-awk' => [%w(awk), %w(application/x-executable text/plain), 'AWK script'],
1141
+ 'application/x-bcpio' => [%w(bcpio), %w(), 'BCPIO document'],
1142
+ 'application/x-bittorrent' => [%w(torrent), %w(), 'BitTorrent seed file'],
1143
+ 'application/x-blender' => [%w(blend blend blender), %w(), 'Blender scene'],
1144
+ 'application/x-bsdiff' => [%w(bsdiff), %w(), 'binary differences between files'],
1145
+ 'application/x-bzdvi' => [%w(dvi.bz2), %w(application/x-bzip), 'TeX DVI document (bzip-compressed)'],
1146
+ 'application/x-bzip' => [%w(bz bz2), %w(), 'Bzip archive'],
1147
+ 'application/x-bzip-compressed-tar' => [%w(tar.bz tar.bz2 tb2 tbz tbz2), %w(application/x-bzip), 'Tar archive (bzip-compressed)'],
1148
+ 'application/x-bzpdf' => [%w(pdf.bz2), %w(application/x-bzip), 'PDF document (bzip-compressed)'],
1149
+ 'application/x-bzpostscript' => [%w(ps.bz2), %w(application/x-bzip), 'PostScript document (bzip-compressed)'],
1150
+ 'application/x-cb7' => [%w(cb7), %w(application/x-7z-compressed), 'comic book archive'],
1151
+ 'application/x-cbt' => [%w(cbt), %w(application/x-tar), 'comic book archive'],
1152
+ 'application/x-ccmx' => [%w(ccmx), %w(text/plain), 'CCMX color correction file'],
1153
+ 'application/x-cd-image' => [%w(iso iso9660), %w(application/x-raw-disk-image), 'raw CD image'],
1154
+ 'application/x-cdrdao-toc' => [%w(toc), %w(text/plain), 'CD Table Of Contents'],
1155
+ 'application/x-cisco-vpn-settings' => [%w(pcf), %w(), 'Cisco VPN Settings'],
1156
+ 'application/x-compress' => [%w(z), %w(), 'UNIX-compressed file'],
1157
+ 'application/x-compressed-tar' => [%w(tar.gz tgz), %w(application/gzip), 'Tar archive (gzip-compressed)'],
1158
+ 'application/x-cpio' => [%w(cpio), %w(), 'CPIO archive'],
1159
+ 'application/x-cpio-compressed' => [%w(cpio.gz), %w(application/gzip), 'CPIO archive (gzip-compressed)'],
1160
+ 'application/x-csh' => [%w(csh), %w(application/x-shellscript text/plain), 'C shell script'],
1161
+ 'application/x-cue' => [%w(cue), %w(text/plain), 'CD image cuesheet'],
1162
+ 'application/x-dar' => [%w(dar), %w(), 'DAR archive'],
1163
+ 'application/x-dbf' => [%w(dbf), %w(), 'Xbase document'],
1164
+ 'application/x-dc-rom' => [%w(dc), %w(), 'Dreamcast GD-ROM'],
1165
+ 'application/x-designer' => [%w(ui), %w(application/xml), 'Qt Designer file'],
1166
+ 'application/x-desktop' => [%w(desktop kdelnk), %w(text/plain), 'desktop configuration file'],
1167
+ 'application/x-dia-diagram' => [%w(dia), %w(application/xml), 'Dia diagram'],
1168
+ 'application/x-dia-shape' => [%w(shape), %w(application/xml), 'Dia shape'],
1169
+ 'application/x-docbook+xml' => [%w(dbk docbook), %w(application/xml), 'DocBook document'],
1170
+ 'application/x-doom-wad' => [%w(wad), %w(), 'Doom WAD'],
1171
+ 'application/x-dvi' => [%w(dvi), %w(), 'TeX DVI document'],
1172
+ 'application/x-e-theme' => [%w(etheme), %w(), 'Enlightenment theme'],
1173
+ 'application/x-egon' => [%w(egon), %w(), 'Egon Animator animation'],
1174
+ 'application/x-fds-disk' => [%w(fds), %w(), 'Nintendo FDS disk image'],
1175
+ 'application/x-fictionbook+xml' => [%w(fb2), %w(application/xml), 'FictionBook document'],
1176
+ 'application/x-fluid' => [%w(fl), %w(text/plain), 'FLTK Fluid file'],
1177
+ 'application/x-font-afm' => [%w(afm), %w(), 'Adobe font metrics'],
1178
+ 'application/x-font-bdf' => [%w(bdf), %w(), 'BDF font'],
1179
+ 'application/x-font-linux-psf' => [%w(psf), %w(), 'Linux PSF console font'],
1180
+ 'application/x-font-pcf' => [%w(pcf pcf.gz pcf.z), %w(), 'PCF font'],
1181
+ 'application/x-font-speedo' => [%w(spd), %w(), 'Speedo font'],
1182
+ 'application/x-font-ttx' => [%w(ttx), %w(application/xml), 'TrueType XML font'],
1183
+ 'application/x-font-type1' => [%w(gsf pfa pfb), %w(application/postscript), 'PostScript type-1 font'],
1184
+ 'application/x-gameboy-color-rom' => [%w(cgb gbc), %w(), 'Game Boy Color ROM'],
1185
+ 'application/x-gameboy-rom' => [%w(gb sgb), %w(), 'Game Boy ROM'],
1186
+ 'application/x-gamecube-rom' => [%w(iso), %w(), 'GameCube disc image'],
1187
+ 'application/x-gamegear-rom' => [%w(gg), %w(), 'Game Gear ROM'],
1188
+ 'application/x-gba-rom' => [%w(agb gba), %w(), 'Game Boy Advance ROM'],
1189
+ 'application/x-gedcom' => [%w(ged gedcom), %w(), 'GEDCOM family history'],
1190
+ 'application/x-genesis-32x-rom' => [%w(32x mdx), %w(), 'Genesis 32X ROM'],
1191
+ 'application/x-genesis-rom' => [%w(gen smd), %w(), 'Genesis ROM'],
1192
+ 'application/x-gettext-translation' => [%w(gmo mo), %w(), 'translated messages (machine-readable)'],
1193
+ 'application/x-glade' => [%w(glade), %w(application/xml), 'Glade project'],
1194
+ 'application/x-gnucash' => [%w(gnc gnucash xac), %w(), 'GnuCash financial data'],
1195
+ 'application/x-gnumeric' => [%w(gnumeric), %w(), 'Gnumeric spreadsheet'],
1196
+ 'application/x-gnuplot' => [%w(gnuplot gp gplt), %w(text/plain), 'Gnuplot document'],
1197
+ 'application/x-go-sgf' => [%w(sgf), %w(text/plain), 'SGF record'],
1198
+ 'application/x-graphite' => [%w(gra), %w(), 'Graphite scientific graph'],
1199
+ 'application/x-gtk-builder' => [%w(ui), %w(application/xml), 'GTK+ Builder'],
1200
+ 'application/x-gz-font-linux-psf' => [%w(psf.gz), %w(application/gzip), 'Linux PSF console font (gzip-compressed)'],
1201
+ 'application/x-gzdvi' => [%w(dvi.gz), %w(application/gzip), 'TeX DVI document (gzip-compressed)'],
1202
+ 'application/x-gzpdf' => [%w(pdf.gz), %w(application/gzip), 'PDF document (gzip-compressed)'],
1203
+ 'application/x-gzpostscript' => [%w(ps.gz), %w(application/gzip), 'PostScript document (gzip-compressed)'],
1204
+ 'application/x-hdf' => [%w(h4 h5 hdf hdf4 hdf5), %w(), 'HDF document'],
1205
+ 'application/x-hfe-floppy-image' => [%w(hfe), %w(), 'HFE floppy disk image'],
1206
+ 'application/x-hwp' => [%w(hwp), %w(), 'Haansoft Hangul document'],
1207
+ 'application/x-hwt' => [%w(hwt), %w(), 'Haansoft Hangul document template'],
1208
+ 'application/x-ica' => [%w(ica), %w(text/plain), 'Citrix ICA settings file'],
1209
+ 'application/x-ipynb+json' => [%w(ipynb), %w(application/json), 'Jupyter Notebook'],
1210
+ 'application/x-iso9660-appimage' => [%w(appimage), %w(application/x-executable application/x-iso9660-image), 'AppImage application bundle'],
1211
+ 'application/x-it87' => [%w(it87), %w(text/plain), 'IT 8.7 color calibration file'],
1212
+ 'application/x-iwork-keynote-sffkey' => [%w(key), %w(application/zip), 'Apple Keynote 5 presentation'],
1213
+ 'application/x-java' => [%w(class), %w(), 'Java class'],
1214
+ 'application/x-java-archive' => [%w(jar), %w(application/zip), 'Java archive'],
1215
+ 'application/x-java-jce-keystore' => [%w(jceks), %w(), 'Java JCE keystore'],
1216
+ 'application/x-java-jnlp-file' => [%w(jnlp), %w(application/xml), 'JNLP file'],
1217
+ 'application/x-java-keystore' => [%w(jks ks), %w(), 'Java keystore'],
1218
+ 'application/x-java-pack200' => [%w(pack), %w(), 'Pack200 Java archive'],
1219
+ 'application/x-jbuilder-project' => [%w(jpr jpx), %w(), 'JBuilder project'],
1220
+ 'application/x-karbon' => [%w(karbon), %w(), 'Karbon14 drawing'],
1221
+ 'application/x-kchart' => [%w(chrt), %w(), 'KChart chart'],
1222
+ 'application/x-kexi-connectiondata' => [%w(kexic), %w(), 'Kexi settings for database server connection'],
1223
+ 'application/x-kexiproject-shortcut' => [%w(kexis), %w(), 'shortcut to Kexi project on database server'],
1224
+ 'application/x-kexiproject-sqlite2' => [%w(kexi), %w(application/x-sqlite2), 'Kexi database file-based project'],
1225
+ 'application/x-kexiproject-sqlite3' => [%w(kexi), %w(application/x-sqlite3), 'Kexi database file-based project'],
1226
+ 'application/x-kformula' => [%w(kfo), %w(), 'KFormula formula'],
1227
+ 'application/x-killustrator' => [%w(kil), %w(), 'KIllustrator drawing'],
1228
+ 'application/x-kivio' => [%w(flw), %w(), 'Kivio flowchart'],
1229
+ 'application/x-kontour' => [%w(kon), %w(), 'Kontour drawing'],
1230
+ 'application/x-kpovmodeler' => [%w(kpm), %w(), 'KPovModeler scene'],
1231
+ 'application/x-kpresenter' => [%w(kpr kpt), %w(), 'KPresenter presentation'],
1232
+ 'application/x-krita' => [%w(kra), %w(), 'Krita document'],
1233
+ 'application/x-kspread' => [%w(ksp), %w(), 'KSpread spreadsheet'],
1234
+ 'application/x-kugar' => [%w(kud), %w(), 'Kugar document'],
1235
+ 'application/x-kword' => [%w(kwd kwt), %w(), 'KWord document'],
1236
+ 'application/x-lha' => [%w(lha lzh), %w(), 'LHA archive'],
1237
+ 'application/x-lhz' => [%w(lhz), %w(), 'LHZ archive'],
1238
+ 'application/x-lrzip' => [%w(lrz), %w(), 'Lrzip archive'],
1239
+ 'application/x-lrzip-compressed-tar' => [%w(tar.lrz tlrz), %w(application/x-lrzip), 'Tar archive (lrzip-compressed)'],
1240
+ 'application/x-lyx' => [%w(lyx), %w(text/plain), 'LyX document'],
1241
+ 'application/x-lz4' => [%w(lz4), %w(), 'LZ4 archive'],
1242
+ 'application/x-lz4-compressed-tar' => [%w(tar.lz4), %w(application/x-lz4), 'Tar archive (LZ4-compressed)'],
1243
+ 'application/x-lzip' => [%w(lz), %w(), 'Lzip archive'],
1244
+ 'application/x-lzip-compressed-tar' => [%w(tar.lz), %w(application/x-lzip), 'Tar archive (lzip-compressed)'],
1245
+ 'application/x-lzma' => [%w(lzma), %w(), 'LZMA archive'],
1246
+ 'application/x-lzma-compressed-tar' => [%w(tar.lzma tlz), %w(application/x-lzma), 'Tar archive (LZMA-compressed)'],
1247
+ 'application/x-lzop' => [%w(lzo), %w(), 'LZO archive'],
1248
+ 'application/x-lzpdf' => [%w(pdf.lz), %w(application/x-lzip), 'PDF document (lzip-compressed)'],
1249
+ 'application/x-m4' => [%w(m4), %w(text/plain), 'M4 macro'],
1250
+ 'application/x-magicpoint' => [%w(mgp), %w(text/plain), 'MagicPoint presentation'],
1251
+ 'application/x-markaby' => [%w(mab), %w(application/x-ruby), 'Markaby script'],
1252
+ 'application/x-mif' => [%w(mif), %w(), 'Adobe FrameMaker MIF document'],
1253
+ 'application/x-mimearchive' => [%w(mht mhtml), %w(multipart/related), 'MHTML web archive'],
1254
+ 'application/x-mobipocket-ebook' => [%w(mobi prc), %w(application/vnd.palm), 'Mobipocket e-book'],
1255
+ 'application/x-ms-dos-executable' => [%w(exe), %w(), 'DOS/Windows executable'],
1256
+ 'application/x-ms-wim' => [%w(swm wim), %w(), 'WIM disk Image'],
1257
+ 'application/x-msi' => [%w(msi), %w(application/x-ole-storage), 'Windows Installer package'],
1258
+ 'application/x-mswinurl' => [%w(url), %w(), 'Internet shortcut'],
1259
+ 'application/x-mswrite' => [%w(wri), %w(), 'WRI document'],
1260
+ 'application/x-msx-rom' => [%w(msx), %w(), 'MSX ROM'],
1261
+ 'application/x-n64-rom' => [%w(n64 v64 z64), %w(), 'Nintendo64 ROM'],
1262
+ 'application/x-navi-animation' => [%w(ani), %w(), 'Windows animated cursor'],
1263
+ 'application/x-neo-geo-pocket-color-rom' => [%w(ngc), %w(), 'Neo-Geo Pocket Color ROM'],
1264
+ 'application/x-neo-geo-pocket-rom' => [%w(ngp), %w(), 'Neo-Geo Pocket ROM'],
1265
+ 'application/x-nes-rom' => [%w(nes nez unf unif), %w(), 'NES ROM'],
1266
+ 'application/x-netcdf' => [%w(cdf nc), %w(), 'Unidata NetCDF document'],
1267
+ 'application/x-netshow-channel' => [%w(nsc), %w(application/vnd.ms-asf), 'Windows Media Station file'],
1268
+ 'application/x-nintendo-ds-rom' => [%w(nds), %w(), 'Nintendo DS ROM'],
1269
+ 'application/x-nzb' => [%w(nzb), %w(application/xml), 'NewzBin usenet index'],
1270
+ 'application/x-object' => [%w(o), %w(), 'object code'],
1271
+ 'application/x-oleo' => [%w(oleo), %w(), 'GNU Oleo spreadsheet'],
1272
+ 'application/x-pagemaker' => [%w(p65 pm pm6 pmd), %w(application/x-ole-storage), 'Adobe PageMaker'],
1273
+ 'application/x-pak' => [%w(pak), %w(), 'PAK archive'],
1274
+ 'application/x-par2' => [%w(par2 par2), %w(), 'Parchive archive'],
1275
+ 'application/x-partial-download' => [%w(crdownload part wkdownload), %w(), 'Partially downloaded file'],
1276
+ 'application/x-pc-engine-rom' => [%w(pce), %w(), 'PC Engine ROM'],
1277
+ 'application/x-perl' => [%w(al perl pl pl pm pod t), %w(application/x-executable text/plain), 'Perl script'],
1278
+ 'application/x-php' => [%w(php php3 php4 php5 phps), %w(text/plain), 'PHP script'],
1279
+ 'application/x-pkcs7-certificates' => [%w(p7b spc), %w(), 'PKCS#7 certificate bundle'],
1280
+ 'application/x-planperfect' => [%w(pln), %w(), 'PlanPerfect spreadsheet'],
1281
+ 'application/x-pocket-word' => [%w(psw), %w(), 'Pocket Word document'],
1282
+ 'application/x-pw' => [%w(pw), %w(), 'Pathetic Writer document'],
1283
+ 'application/x-python-bytecode' => [%w(pyc pyo), %w(), 'Python bytecode'],
1284
+ 'application/x-qpress' => [%w(qp), %w(), 'Qpress archive'],
1285
+ 'application/x-qtiplot' => [%w(qti qti.gz), %w(text/plain), 'QtiPlot document'],
1286
+ 'application/x-quattropro' => [%w(wb1 wb2 wb3), %w(), 'Quattro Pro spreadsheet'],
1287
+ 'application/x-quicktime-media-link' => [%w(qtl), %w(video/quicktime), 'QuickTime metalink playlist'],
1288
+ 'application/x-qw' => [%w(qif), %w(), 'Quicken document'],
1289
+ 'application/x-raw-disk-image' => [%w(img raw-disk-image), %w(), 'Raw disk image'],
1290
+ 'application/x-raw-disk-image-xz-compressed' => [%w(img.xz raw-disk-image.xz), %w(application/x-xz), 'Raw disk image (XZ-compressed)'],
1291
+ 'application/x-raw-floppy-disk-image' => [%w(fd qd), %w(application/x-raw-disk-image), 'Floppy disk image'],
1292
+ 'application/x-rpm' => [%w(rpm), %w(), 'RPM package'],
1293
+ 'application/x-ruby' => [%w(rb), %w(application/x-executable text/plain), 'Ruby script'],
1294
+ 'application/x-sami' => [%w(sami smi), %w(text/plain), 'SAMI subtitles'],
1295
+ 'application/x-saturn-rom' => [%w(bin iso), %w(), 'Sega Saturn disc image'],
1296
+ 'application/x-sega-cd-rom' => [%w(bin iso), %w(), 'Sega CD disc image'],
1297
+ 'application/x-sg1000-rom' => [%w(sg), %w(), 'SG-1000 ROM'],
1298
+ 'application/x-shar' => [%w(shar), %w(), 'shell archive'],
1299
+ 'application/x-shared-library-la' => [%w(la), %w(text/plain), 'libtool shared library'],
1300
+ 'application/x-sharedlib' => [%w(so), %w(), 'shared library'],
1301
+ 'application/x-shellscript' => [%w(sh), %w(application/x-executable text/plain), 'shell script'],
1302
+ 'application/x-shorten' => [%w(shn), %w(), 'Shorten audio'],
1303
+ 'application/x-siag' => [%w(siag), %w(), 'Siag spreadsheet'],
1304
+ 'application/x-smaf' => [%w(mmf smaf), %w(), 'SMAF audio'],
1305
+ 'application/x-sms-rom' => [%w(sms), %w(), 'Master System ROM'],
1306
+ 'application/x-source-rpm' => [%w(spm src.rpm), %w(application/x-rpm), 'Source RPM package'],
1307
+ 'application/x-spss-por' => [%w(por), %w(), 'SPSS Portable Data File'],
1308
+ 'application/x-spss-sav' => [%w(sav zsav), %w(), 'SPSS Data File'],
1309
+ 'application/x-sqlite2' => [%w(sqlite2), %w(), 'SQLite2 database'],
1310
+ 'application/x-stuffit' => [%w(sit), %w(), 'StuffIt archive'],
1311
+ 'application/x-subrip' => [%w(srt), %w(text/plain), 'SubRip subtitles'],
1312
+ 'application/x-sv4cpio' => [%w(sv4cpio), %w(), 'SV4 CPIO archive'],
1313
+ 'application/x-sv4crc' => [%w(sv4crc), %w(), 'SV4 CPIO archive (with CRC)'],
1314
+ 'application/x-t602' => [%w(602), %w(), 'T602 document'],
1315
+ 'application/x-tar' => [%w(gem gtar tar), %w(), 'Tar archive'],
1316
+ 'application/x-tarz' => [%w(tar.z taz), %w(application/x-compress), 'Tar archive (compressed)'],
1317
+ 'application/x-tex-gf' => [%w(gf), %w(), 'generic font file'],
1318
+ 'application/x-tex-pk' => [%w(pk), %w(), 'packed font file'],
1319
+ 'application/x-tgif' => [%w(obj), %w(), 'TGIF document'],
1320
+ 'application/x-theme' => [%w(theme), %w(application/x-desktop), 'theme'],
1321
+ 'application/x-thomson-cartridge-memo7' => [%w(m7), %w(), "Thomson M\303\251mo7 cartridge"],
1322
+ 'application/x-thomson-cassette' => [%w(k7), %w(), 'Thomson cassette'],
1323
+ 'application/x-thomson-sap-image' => [%w(sap), %w(), 'SAP Thomson floppy disk image'],
1324
+ 'application/x-trash' => [%w(bak old sik), %w(), 'backup file'],
1325
+ 'application/x-troff-man' => [%w(man), %w(text/plain), 'Manpage manual document'],
1326
+ 'application/x-tzo' => [%w(tar.lzo tzo), %w(application/x-lzop), 'Tar archive (LZO-compressed)'],
1327
+ 'application/x-ufraw' => [%w(ufraw), %w(application/xml), 'UFRaw ID image'],
1328
+ 'application/x-ustar' => [%w(ustar), %w(), 'Ustar archive'],
1329
+ 'application/x-virtual-boy-rom' => [%w(vb), %w(), 'Virtual Boy ROM'],
1330
+ 'application/x-wais-source' => [%w(src), %w(text/plain), 'WAIS source code'],
1331
+ 'application/x-wii-rom' => [%w(iso), %w(), 'Wii disc image'],
1332
+ 'application/x-wii-wad' => [%w(wad), %w(), 'WiiWare bundle'],
1333
+ 'application/x-windows-themepack' => [%w(themepack), %w(application/vnd.ms-cab-compressed), 'Microsoft Windows theme pack'],
1334
+ 'application/x-wonderswan-color-rom' => [%w(wsc), %w(), 'Bandai WonderSwan Color ROM'],
1335
+ 'application/x-wonderswan-rom' => [%w(ws), %w(), 'Bandai WonderSwan ROM'],
1336
+ 'application/x-wpg' => [%w(wpg), %w(), 'WordPerfect/Drawperfect image'],
1337
+ 'application/x-wwf' => [%w(wwf), %w(application/pdf), 'WWF document'],
1338
+ 'application/x-x509-ca-cert' => [%w(cert crt der pem), %w(), 'DER/PEM/Netscape-encoded X.509 certificate'],
1339
+ 'application/x-xar' => [%w(pkg xar), %w(), 'XAR archive'],
1340
+ 'application/x-xbel' => [%w(xbel), %w(application/xml), 'XBEL bookmarks'],
1341
+ 'application/x-xpinstall' => [%w(xpi), %w(application/zip), 'XPInstall installer module'],
1342
+ 'application/x-xz' => [%w(xz), %w(), 'XZ archive'],
1343
+ 'application/x-xz-compressed-tar' => [%w(tar.xz txz), %w(application/x-xz), 'Tar archive (XZ-compressed)'],
1344
+ 'application/x-xzpdf' => [%w(pdf.xz), %w(application/x-xz), 'PDF document (XZ-compressed)'],
1345
+ 'application/x-yaml' => [%w(yaml yml), %w(text/plain), 'YAML document'],
1346
+ 'application/x-zip-compressed-fb2' => [%w(fb2.zip), %w(application/zip), 'Compressed FictionBook document'],
1347
+ 'application/x-zoo' => [%w(zoo), %w(), 'Zoo archive'],
1348
+ 'application/xhtml+xml' => [%w(xht xhtml), %w(application/xml), 'XHTML page'],
1349
+ 'application/xliff+xml' => [%w(xlf xliff), %w(application/xml), 'XLIFF translation file'],
1350
+ 'application/xml' => [%w(rng xbl xml xsd), %w(text/plain), 'XML document'],
1351
+ 'application/xml-dtd' => [%w(dtd), %w(text/plain), 'DTD file'],
1352
+ 'application/xml-external-parsed-entity' => [%w(ent), %w(application/xml), 'XML entities document'],
1353
+ 'application/xslt+xml' => [%w(xsl xslt), %w(application/xml), 'XSLT stylesheet'],
1354
+ 'application/xspf+xml' => [%w(xspf), %w(application/xml), 'XSPF playlist'],
1355
+ 'application/zip' => [%w(zip), %w(), 'Zip archive'],
1356
+ 'application/zlib' => [%w(zz), %w(), 'Zlib archive'],
1357
+ 'audio/AMR' => [%w(amr), %w(), 'AMR audio'],
1358
+ 'audio/AMR-WB' => [%w(awb), %w(), 'AMR-WB audio'],
1359
+ 'audio/aac' => [%w(aac adts ass), %w(), 'AAC audio'],
1360
+ 'audio/ac3' => [%w(ac3), %w(), 'Dolby Digital audio'],
1361
+ 'audio/annodex' => [%w(axa), %w(application/annodex), 'Annodex Audio'],
1362
+ 'audio/basic' => [%w(au snd), %w(), 'ULAW (Sun) audio'],
1363
+ 'audio/flac' => [%w(flac), %w(), 'FLAC audio'],
1364
+ 'audio/midi' => [%w(kar mid midi), %w(), 'MIDI audio'],
1365
+ 'audio/mp2' => [%w(mp2), %w(), 'MP2 audio'],
1366
+ 'audio/mp4' => [%w(f4a m4a), %w(), 'MPEG-4 audio'],
1367
+ 'audio/mpeg' => [%w(mp3 mpga), %w(), 'MP3 audio'],
1368
+ 'audio/ogg' => [%w(oga ogg opus), %w(application/ogg), 'Ogg Audio'],
1369
+ 'audio/prs.sid' => [%w(psid sid), %w(), 'Commodore 64 audio'],
1370
+ 'audio/usac' => [%w(loas xhe), %w(), 'USAC audio'],
1371
+ 'audio/vnd.dts' => [%w(dts), %w(), 'DTS audio'],
1372
+ 'audio/vnd.dts.hd' => [%w(dtshd), %w(audio/vnd.dts), 'DTSHD audio'],
1373
+ 'audio/vnd.rn-realaudio' => [%w(ra rax), %w(), 'RealAudio document'],
1374
+ 'audio/x-aifc' => [%w(aifc aiffc), %w(application/x-iff), 'AIFC audio'],
1375
+ 'audio/x-aiff' => [%w(aif aiff), %w(application/x-iff), 'AIFF/Amiga/Mac audio'],
1376
+ 'audio/x-amzxml' => [%w(amz), %w(), 'AmazonMP3 download file'],
1377
+ 'audio/x-ape' => [%w(ape), %w(), "Monkey's audio"],
1378
+ 'audio/x-flac+ogg' => [%w(oga ogg), %w(audio/ogg), 'Ogg FLAC audio'],
1379
+ 'audio/x-gsm' => [%w(gsm), %w(), 'GSM 06.10 audio'],
1380
+ 'audio/x-iriver-pla' => [%w(pla), %w(), 'iRiver Playlist'],
1381
+ 'audio/x-it' => [%w(it), %w(), 'Impulse Tracker audio'],
1382
+ 'audio/x-m4b' => [%w(f4b m4b), %w(audio/mp4), 'MPEG-4 audio book'],
1383
+ 'audio/x-m4r' => [%w(m4r), %w(video/mp4), 'MPEG-4 Ringtone'],
1384
+ 'audio/x-matroska' => [%w(mka), %w(application/x-matroska), 'Matroska audio'],
1385
+ 'audio/x-minipsf' => [%w(minipsf), %w(audio/x-psf), 'MiniPSF audio'],
1386
+ 'audio/x-mo3' => [%w(mo3), %w(), 'compressed Tracker audio'],
1387
+ 'audio/x-mod' => [%w(669 m15 med mod mtm ult uni), %w(), 'Amiga SoundTracker audio'],
1388
+ 'audio/x-mpegurl' => [%w(m3u m3u8 vlc), %w(text/plain), 'MP3 audio (streamed)'],
1389
+ 'audio/x-ms-asx' => [%w(asx wax wmx wvx), %w(), 'Microsoft ASX playlist'],
1390
+ 'audio/x-ms-wma' => [%w(wma), %w(application/vnd.ms-asf), 'Windows Media audio'],
1391
+ 'audio/x-musepack' => [%w(mp+ mpc mpp), %w(), 'Musepack audio'],
1392
+ 'audio/x-opus+ogg' => [%w(opus), %w(audio/ogg), 'Opus audio'],
1393
+ 'audio/x-pn-audibleaudio' => [%w(aa aax), %w(), 'Audible.Com audio'],
1394
+ 'audio/x-psf' => [%w(psf), %w(), 'PSF audio'],
1395
+ 'audio/x-psflib' => [%w(psflib), %w(audio/x-psf), 'PSFlib audio library'],
1396
+ 'audio/x-s3m' => [%w(s3m), %w(), 'Scream Tracker 3 audio'],
1397
+ 'audio/x-scpls' => [%w(pls), %w(), 'MP3 ShoutCast playlist'],
1398
+ 'audio/x-speex' => [%w(spx), %w(), 'Speex audio'],
1399
+ 'audio/x-speex+ogg' => [%w(oga ogg), %w(audio/ogg), 'Ogg Speex audio'],
1400
+ 'audio/x-stm' => [%w(stm), %w(), 'Scream Tracker audio'],
1401
+ 'audio/x-tta' => [%w(tta), %w(), 'TrueAudio audio'],
1402
+ 'audio/x-voc' => [%w(voc), %w(), 'VOC audio'],
1403
+ 'audio/x-vorbis+ogg' => [%w(oga ogg), %w(audio/ogg), 'Ogg Vorbis audio'],
1404
+ 'audio/x-wav' => [%w(wav), %w(), 'WAV audio'],
1405
+ 'audio/x-wavpack' => [%w(wv wvp), %w(), 'WavPack audio'],
1406
+ 'audio/x-wavpack-correction' => [%w(wvc), %w(), 'WavPack audio correction file'],
1407
+ 'audio/x-xi' => [%w(xi), %w(), 'Scream Tracker instrument'],
1408
+ 'audio/x-xm' => [%w(xm), %w(), 'FastTracker II audio'],
1409
+ 'audio/x-xmf' => [%w(xmf), %w(), 'XMF audio'],
1410
+ 'font/collection' => [%w(ttc), %w(), 'Font collection'],
1411
+ 'font/otf' => [%w(otf), %w(font/ttf), 'OpenType font'],
1412
+ 'font/ttf' => [%w(ttf), %w(), 'TrueType font'],
1413
+ 'font/woff' => [%w(woff2), %w(), 'WOFF2 font'],
1414
+ 'image/bmp' => [%w(bmp dib), %w(), 'Windows BMP image'],
1415
+ 'image/cgm' => [%w(cgm), %w(), 'Computer Graphics Metafile'],
1416
+ 'image/emf' => [%w(emf), %w(), 'EMF image'],
1417
+ 'image/fax-g3' => [%w(g3), %w(), 'CCITT G3 fax'],
1418
+ 'image/fits' => [%w(fits), %w(), 'FITS document'],
1419
+ 'image/gif' => [%w(gif), %w(), 'GIF image'],
1420
+ 'image/heif' => [%w(heic heif), %w(), 'HEIF image'],
1421
+ 'image/ief' => [%w(ief), %w(), 'IEF image'],
1422
+ 'image/jp2' => [%w(jp2 jpg2), %w(), 'JPEG-2000 JP2 image'],
1423
+ 'image/jpeg' => [%w(jpe jpeg jpg), %w(), 'JPEG image'],
1424
+ 'image/jpm' => [%w(jpgm jpm), %w(), 'JPEG-2000 JPM image'],
1425
+ 'image/jpx' => [%w(jpf jpx), %w(), 'JPEG-2000 JPX image'],
1426
+ 'image/ktx' => [%w(ktx), %w(), 'Khronos texture image'],
1427
+ 'image/openraster' => [%w(ora), %w(application/zip), 'OpenRaster archiving image'],
1428
+ 'image/png' => [%w(png), %w(), 'PNG image'],
1429
+ 'image/rle' => [%w(rle), %w(), 'Run Length Encoded bitmap image'],
1430
+ 'image/svg+xml' => [%w(svg), %w(application/xml), 'SVG image'],
1431
+ 'image/svg+xml-compressed' => [%w(svgz), %w(application/gzip), 'compressed SVG image'],
1432
+ 'image/tiff' => [%w(tif tiff), %w(), 'TIFF image'],
1433
+ 'image/vnd.adobe.photoshop' => [%w(psd), %w(), 'Photoshop image'],
1434
+ 'image/vnd.djvu' => [%w(djv djvu), %w(), 'DjVu image'],
1435
+ 'image/vnd.djvu+multipage' => [%w(djv djvu), %w(image/vnd.djvu), 'DjVu document'],
1436
+ 'image/vnd.dwg' => [%w(dwg), %w(), 'AutoCAD image'],
1437
+ 'image/vnd.dxf' => [%w(dxf), %w(), 'DXF vector image'],
1438
+ 'image/vnd.microsoft.icon' => [%w(ico), %w(), 'Windows icon'],
1439
+ 'image/vnd.ms-modi' => [%w(mdi), %w(), 'Microsoft Document Imaging format'],
1440
+ 'image/vnd.rn-realpix' => [%w(rp), %w(), 'RealPix document'],
1441
+ 'image/vnd.wap.wbmp' => [%w(wbmp), %w(), 'WBMP image'],
1442
+ 'image/vnd.zbrush.pcx' => [%w(pcx), %w(), 'PCX image'],
1443
+ 'image/webp' => [%w(webp), %w(), 'WebP image'],
1444
+ 'image/wmf' => [%w(wmf), %w(), 'WMF image'],
1445
+ 'image/x-3ds' => [%w(3ds), %w(), '3D Studio image'],
1446
+ 'image/x-adobe-dng' => [%w(dng), %w(image/tiff image/x-dcraw), 'Adobe DNG negative'],
1447
+ 'image/x-applix-graphics' => [%w(ag), %w(), 'Applix Graphics image'],
1448
+ 'image/x-bzeps' => [%w(eps.bz2 epsf.bz2 epsi.bz2), %w(application/x-bzip), 'EPS image (bzip-compressed)'],
1449
+ 'image/x-canon-cr2' => [%w(cr2), %w(image/tiff image/x-dcraw), 'Canon CR2 raw image'],
1450
+ 'image/x-canon-crw' => [%w(crw), %w(image/x-dcraw), 'Canon CRW raw image'],
1451
+ 'image/x-cmu-raster' => [%w(ras), %w(), 'CMU raster image'],
1452
+ 'image/x-compressed-xcf' => [%w(xcf.bz2 xcf.gz), %w(), 'compressed GIMP image'],
1453
+ 'image/x-dds' => [%w(dds), %w(), 'DirectDraw surface'],
1454
+ 'image/x-eps' => [%w(eps epsf epsi), %w(application/postscript), 'EPS image'],
1455
+ 'image/x-exr' => [%w(exr), %w(), 'EXR image'],
1456
+ 'image/x-fuji-raf' => [%w(raf), %w(image/x-dcraw), 'Fuji RAF raw image'],
1457
+ 'image/x-gimp-gbr' => [%w(gbr), %w(), 'GIMP brush'],
1458
+ 'image/x-gimp-gih' => [%w(gih), %w(), 'GIMP brush pipe'],
1459
+ 'image/x-gimp-pat' => [%w(pat), %w(), 'GIMP pattern'],
1460
+ 'image/x-gzeps' => [%w(eps.gz epsf.gz epsi.gz), %w(application/gzip), 'EPS image (gzip-compressed)'],
1461
+ 'image/x-icns' => [%w(icns), %w(), 'MacOS X icon'],
1462
+ 'image/x-ilbm' => [%w(iff ilbm lbm), %w(application/x-iff), 'ILBM image'],
1463
+ 'image/x-jng' => [%w(jng), %w(), 'JNG image'],
1464
+ 'image/x-jp2-codestream' => [%w(j2c j2k jpc), %w(), 'JPEG-2000 codestream'],
1465
+ 'image/x-kodak-dcr' => [%w(dcr), %w(image/tiff image/x-dcraw), 'Kodak DCR raw image'],
1466
+ 'image/x-kodak-k25' => [%w(k25), %w(image/tiff image/x-dcraw), 'Kodak K25 raw image'],
1467
+ 'image/x-kodak-kdc' => [%w(kdc), %w(image/tiff image/x-dcraw), 'Kodak KDC raw image'],
1468
+ 'image/x-lwo' => [%w(lwo lwob), %w(), 'LightWave object'],
1469
+ 'image/x-lws' => [%w(lws), %w(), 'LightWave scene'],
1470
+ 'image/x-macpaint' => [%w(pntg), %w(), 'MacPaint Bitmap image'],
1471
+ 'image/x-minolta-mrw' => [%w(mrw), %w(image/x-dcraw), 'Minolta MRW raw image'],
1472
+ 'image/x-msod' => [%w(msod), %w(), 'Office drawing'],
1473
+ 'image/x-nikon-nef' => [%w(nef), %w(image/tiff image/x-dcraw), 'Nikon NEF raw image'],
1474
+ 'image/x-olympus-orf' => [%w(orf), %w(image/x-dcraw), 'Olympus ORF raw image'],
1475
+ 'image/x-panasonic-rw' => [%w(raw), %w(image/x-dcraw), 'Panasonic raw image'],
1476
+ 'image/x-panasonic-rw2' => [%w(rw2), %w(image/x-dcraw), 'Panasonic raw2 image'],
1477
+ 'image/x-pentax-pef' => [%w(pef), %w(image/tiff image/x-dcraw), 'Pentax PEF raw image'],
1478
+ 'image/x-photo-cd' => [%w(pcd), %w(), 'PCD image'],
1479
+ 'image/x-pict' => [%w(pct pict pict1 pict2), %w(), 'Macintosh Quickdraw/PICT drawing'],
1480
+ 'image/x-portable-anymap' => [%w(pnm), %w(), 'PNM image'],
1481
+ 'image/x-portable-bitmap' => [%w(pbm), %w(image/x-portable-anymap), 'PBM image'],
1482
+ 'image/x-portable-graymap' => [%w(pgm), %w(image/x-portable-anymap), 'PGM image'],
1483
+ 'image/x-portable-pixmap' => [%w(ppm), %w(image/x-portable-anymap), 'PPM image'],
1484
+ 'image/x-quicktime' => [%w(qif qtif), %w(), 'QuickTime image'],
1485
+ 'image/x-rgb' => [%w(rgb), %w(), 'RGB image'],
1486
+ 'image/x-sgi' => [%w(sgi), %w(), 'SGI image'],
1487
+ 'image/x-sigma-x3f' => [%w(x3f), %w(image/x-dcraw), 'Sigma X3F raw image'],
1488
+ 'image/x-skencil' => [%w(sk sk1), %w(), 'Skencil document'],
1489
+ 'image/x-sony-arw' => [%w(arw), %w(image/tiff image/x-dcraw), 'Sony ARW raw image'],
1490
+ 'image/x-sony-sr2' => [%w(sr2), %w(image/tiff image/x-dcraw), 'Sony SR2 raw image'],
1491
+ 'image/x-sony-srf' => [%w(srf), %w(image/tiff image/x-dcraw), 'Sony SRF raw image'],
1492
+ 'image/x-sun-raster' => [%w(sun), %w(), 'Sun raster image'],
1493
+ 'image/x-tga' => [%w(icb tga tpic vda vst), %w(), 'TGA image'],
1494
+ 'image/x-win-bitmap' => [%w(cur), %w(), 'Windows cursor'],
1495
+ 'image/x-xbitmap' => [%w(xbm), %w(), 'XBM image'],
1496
+ 'image/x-xcf' => [%w(xcf), %w(), 'GIMP image'],
1497
+ 'image/x-xfig' => [%w(fig), %w(), 'XFig image'],
1498
+ 'image/x-xpixmap' => [%w(xpm), %w(), 'XPM image'],
1499
+ 'image/x-xwindowdump' => [%w(xwd), %w(), 'X window image'],
1500
+ 'message/rfc822' => [%w(eml), %w(text/plain), 'email message'],
1501
+ 'model/iges' => [%w(iges igs), %w(text/plain), 'IGES document'],
1502
+ 'model/stl' => [%w(stl), %w(), 'STL 3D model'],
1503
+ 'model/vrml' => [%w(vrm vrml wrl), %w(text/plain), 'VRML document'],
1504
+ 'text/cache-manifest' => [%w(manifest), %w(text/plain), 'Web application cache manifest'],
1505
+ 'text/calendar' => [%w(ics vcs), %w(text/plain), 'VCS/ICS calendar'],
1506
+ 'text/css' => [%w(css), %w(text/plain), 'CSS stylesheet'],
1507
+ 'text/csv' => [%w(csv), %w(text/plain), 'CSV document'],
1508
+ 'text/csv-schema' => [%w(csvs), %w(text/plain), 'CSV Schema document'],
1509
+ 'text/html' => [%w(htm html), %w(text/plain), 'HTML document'],
1510
+ 'text/markdown' => [%w(markdown md mkd), %w(text/plain), 'Markdown document'],
1511
+ 'text/plain' => [%w(asc txt), %w(), 'plain text document'],
1512
+ 'text/richtext' => [%w(rtx), %w(text/plain), 'rich text document'],
1513
+ 'text/rust' => [%w(rs), %w(text/plain), 'Rust source code'],
1514
+ 'text/sgml' => [%w(sgm sgml), %w(text/plain), 'SGML document'],
1515
+ 'text/spreadsheet' => [%w(slk sylk), %w(text/plain), 'spreadsheet interchange document'],
1516
+ 'text/tab-separated-values' => [%w(tsv), %w(text/plain), 'TSV document'],
1517
+ 'text/troff' => [%w(roff t tr), %w(text/plain), 'Troff document'],
1518
+ 'text/turtle' => [%w(ttl), %w(text/plain), 'Turtle document'],
1519
+ 'text/vcard' => [%w(gcrd vcard vcf vct), %w(text/plain), 'electronic business card'],
1520
+ 'text/vnd.graphviz' => [%w(dot gv), %w(), 'Graphviz DOT graph'],
1521
+ 'text/vnd.qt.linguist' => [%w(ts), %w(application/xml), 'message catalog'],
1522
+ 'text/vnd.rn-realtext' => [%w(rt), %w(), 'RealText document'],
1523
+ 'text/vnd.sun.j2me.app-descriptor' => [%w(jad), %w(), 'JAD document'],
1524
+ 'text/vnd.wap.wml' => [%w(wml), %w(application/xml), 'WML document'],
1525
+ 'text/vnd.wap.wmlscript' => [%w(wmls), %w(), 'WMLScript program'],
1526
+ 'text/vtt' => [%w(vtt), %w(text/plain), 'WebVTT subtitles'],
1527
+ 'text/x-adasrc' => [%w(adb ads), %w(text/plain), 'Ada source code'],
1528
+ 'text/x-bibtex' => [%w(bib), %w(text/plain), 'BibTeX document'],
1529
+ 'text/x-c++hdr' => [%w(h++ hh hp hpp hxx), %w(text/x-chdr), 'C++ header'],
1530
+ 'text/x-c++src' => [%w(c c++ cc cpp cxx), %w(text/x-csrc), 'C++ source code'],
1531
+ 'text/x-chdr' => [%w(h), %w(text/x-csrc), 'C header'],
1532
+ 'text/x-cmake' => [%w(cmake), %w(text/plain), 'CMake source code'],
1533
+ 'text/x-cobol' => [%w(cbl cob), %w(text/plain), 'COBOL source file'],
1534
+ 'text/x-csharp' => [%w(cs), %w(text/x-csrc), 'C# source code'],
1535
+ 'text/x-csrc' => [%w(c), %w(text/plain), 'C source code'],
1536
+ 'text/x-dbus-service' => [%w(service), %w(text/plain), 'D-Bus service file'],
1537
+ 'text/x-dcl' => [%w(dcl), %w(text/plain), 'DCL script'],
1538
+ 'text/x-dsl' => [%w(dsl), %w(text/plain), 'DSSSL document'],
1539
+ 'text/x-dsrc' => [%w(d di), %w(text/x-csrc), 'D source code'],
1540
+ 'text/x-eiffel' => [%w(e eif), %w(text/plain), 'Eiffel source code'],
1541
+ 'text/x-emacs-lisp' => [%w(el), %w(text/plain), 'Emacs Lisp source code'],
1542
+ 'text/x-erlang' => [%w(erl), %w(text/plain), 'Erlang source code'],
1543
+ 'text/x-fortran' => [%w(f f90 f95 for), %w(text/plain), 'Fortran source code'],
1544
+ 'text/x-genie' => [%w(gs), %w(text/plain), 'Genie source code'],
1545
+ 'text/x-gettext-translation' => [%w(po), %w(text/plain), 'translation file'],
1546
+ 'text/x-gettext-translation-template' => [%w(pot), %w(text/plain), 'translation template'],
1547
+ 'text/x-gherkin' => [%w(feature), %w(text/plain), 'feature specification in Gherkin format'],
1548
+ 'text/x-go' => [%w(go), %w(text/plain), 'Go source code'],
1549
+ 'text/x-google-video-pointer' => [%w(gvp), %w(), 'Google Video Pointer'],
1550
+ 'text/x-haskell' => [%w(hs), %w(text/plain), 'Haskell source code'],
1551
+ 'text/x-iMelody' => [%w(ime imy), %w(), 'iMelody ringtone'],
1552
+ 'text/x-idl' => [%w(idl), %w(text/plain), 'IDL document'],
1553
+ 'text/x-iptables' => [%w(iptables), %w(text/plain), 'iptables configuration file'],
1554
+ 'text/x-java' => [%w(java), %w(text/x-csrc), 'Java source code'],
1555
+ 'text/x-ldif' => [%w(ldif), %w(text/plain), 'LDIF address book'],
1556
+ 'text/x-lilypond' => [%w(ly), %w(text/plain), 'Lilypond music sheet'],
1557
+ 'text/x-literate-haskell' => [%w(lhs), %w(text/plain), 'LHS source code'],
1558
+ 'text/x-log' => [%w(log), %w(text/plain), 'application log'],
1559
+ 'text/x-lua' => [%w(lua), %w(application/x-executable text/plain), 'Lua script'],
1560
+ 'text/x-makefile' => [%w(mak mk), %w(text/plain), 'Makefile'],
1561
+ 'text/x-matlab' => [%w(m), %w(text/plain), 'MATLAB script/function'],
1562
+ 'text/x-microdvd' => [%w(sub), %w(text/plain), 'MicroDVD subtitles'],
1563
+ 'text/x-moc' => [%w(moc), %w(text/plain), 'Qt MOC file'],
1564
+ 'text/x-modelica' => [%w(mo), %w(text/plain), 'Modelica model'],
1565
+ 'text/x-mof' => [%w(mof), %w(text/x-csrc), 'Managed Object Format'],
1566
+ 'text/x-mpsub' => [%w(sub), %w(text/plain), 'MPSub subtitles'],
1567
+ 'text/x-mrml' => [%w(mrl mrml), %w(), 'MRML playlist'],
1568
+ 'text/x-ms-regedit' => [%w(reg), %w(text/plain), 'Windows Registry extract'],
1569
+ 'text/x-mup' => [%w(mup not), %w(text/plain), 'Mup publication'],
1570
+ 'text/x-nfo' => [%w(nfo), %w(text/x-readme), 'NFO document'],
1571
+ 'text/x-objcsrc' => [%w(m), %w(text/x-csrc), 'Objective-C source code'],
1572
+ 'text/x-ocaml' => [%w(ml mli), %w(), 'OCaml source code'],
1573
+ 'text/x-ocl' => [%w(ocl), %w(text/plain), 'OCL file'],
1574
+ 'text/x-ooc' => [%w(ooc), %w(text/x-csrc), 'OOC source code'],
1575
+ 'text/x-opencl-src' => [%w(cl), %w(text/x-csrc), 'OpenCL source code'],
1576
+ 'text/x-opml+xml' => [%w(opml), %w(application/xml), 'OPML syndication feed'],
1577
+ 'text/x-pascal' => [%w(p pas), %w(text/plain), 'Pascal source code'],
1578
+ 'text/x-patch' => [%w(diff patch), %w(text/plain), 'differences between files'],
1579
+ 'text/x-python' => [%w(py pyx wsgi), %w(application/x-executable text/plain), 'Python script'],
1580
+ 'text/x-python3' => [%w(py py3 py3x), %w(text/x-python), 'Python 3 script'],
1581
+ 'text/x-qml' => [%w(qml qmlproject qmltypes), %w(), 'Qt Markup Language file'],
1582
+ 'text/x-reject' => [%w(rej), %w(text/plain), 'rejected patch'],
1583
+ 'text/x-rpm-spec' => [%w(spec), %w(text/plain), 'RPM spec file'],
1584
+ 'text/x-sass' => [%w(sass), %w(text/plain), 'Sass CSS pre-processor file'],
1585
+ 'text/x-scala' => [%w(scala), %w(text/plain), 'Scala source code'],
1586
+ 'text/x-scheme' => [%w(scm ss), %w(text/plain), 'Scheme source code'],
1587
+ 'text/x-scss' => [%w(scss), %w(text/plain), 'Sass CSS pre-processor file'],
1588
+ 'text/x-setext' => [%w(etx), %w(text/plain), 'Setext document'],
1589
+ 'text/x-ssa' => [%w(ass ssa), %w(text/plain), 'SSA subtitles'],
1590
+ 'text/x-subviewer' => [%w(sub), %w(text/plain), 'SubViewer subtitles'],
1591
+ 'text/x-svhdr' => [%w(svh), %w(text/x-verilog), 'SystemVerilog header'],
1592
+ 'text/x-svsrc' => [%w(sv), %w(text/x-verilog), 'SystemVerilog source code'],
1593
+ 'text/x-systemd-unit' => [%w(automount device mount path scope service slice socket swap target timer), %w(text/plain), 'systemd unit file'],
1594
+ 'text/x-tcl' => [%w(tcl tk), %w(text/plain), 'Tcl script'],
1595
+ 'text/x-tex' => [%w(cls dtx ins latex ltx sty tex), %w(text/plain), 'TeX document'],
1596
+ 'text/x-texinfo' => [%w(texi texinfo), %w(text/plain), 'TeXInfo document'],
1597
+ 'text/x-troff-me' => [%w(me), %w(text/plain), 'Troff ME input document'],
1598
+ 'text/x-troff-mm' => [%w(mm), %w(text/plain), 'Troff MM input document'],
1599
+ 'text/x-troff-ms' => [%w(ms), %w(text/plain), 'Troff MS input document'],
1600
+ 'text/x-twig' => [%w(twig), %w(text/plain), 'Twig template'],
1601
+ 'text/x-txt2tags' => [%w(t2t), %w(text/plain), 'txt2tags document'],
1602
+ 'text/x-uil' => [%w(uil), %w(text/plain), 'X-Motif UIL table'],
1603
+ 'text/x-uuencode' => [%w(uue), %w(text/plain), 'uuencoded file'],
1604
+ 'text/x-vala' => [%w(vala vapi), %w(text/x-csrc), 'Vala source code'],
1605
+ 'text/x-verilog' => [%w(v), %w(text/plain), 'Verilog source code'],
1606
+ 'text/x-vhdl' => [%w(vhd vhdl), %w(text/plain), 'VHDL source code'],
1607
+ 'text/x-xmi' => [%w(xmi), %w(application/xml), 'XMI file'],
1608
+ 'text/x-xslfo' => [%w(fo xslfo), %w(application/xml), 'XSL FO file'],
1609
+ 'text/x.gcode' => [%w(gcode), %w(text/plain), 'G-code file'],
1610
+ 'video/3gpp' => [%w(3ga 3gp 3gpp), %w(video/mp4), '3GPP multimedia file'],
1611
+ 'video/3gpp2' => [%w(3g2 3gp2 3gpp2), %w(video/mp4), '3GPP2 multimedia file'],
1612
+ 'video/annodex' => [%w(axv), %w(application/annodex), 'Annodex Video'],
1613
+ 'video/dv' => [%w(dv), %w(), 'DV video'],
1614
+ 'video/mj2' => [%w(mj2 mjp2), %w(), 'JPEG-2000 MJ2 video'],
1615
+ 'video/mp2t' => [%w(bdm bdmv clpi cpi m2t m2ts mpl mpls mts ts), %w(), 'MPEG-2 transport stream'],
1616
+ 'video/mp4' => [%w(f4v lrv m4v mp4), %w(), 'MPEG-4 video'],
1617
+ 'video/mpeg' => [%w(mp2 mpe mpeg mpg vob), %w(), 'MPEG video'],
1618
+ 'video/ogg' => [%w(ogg ogv), %w(application/ogg), 'Ogg Video'],
1619
+ 'video/quicktime' => [%w(moov mov qt qtvr), %w(), 'QuickTime video'],
1620
+ 'video/vnd.mpegurl' => [%w(m1u m4u mxu), %w(text/plain), 'MPEG video (streamed)'],
1621
+ 'video/vnd.rn-realvideo' => [%w(rv rvx), %w(), 'RealVideo document'],
1622
+ 'video/vnd.vivo' => [%w(viv vivo), %w(), 'Vivo video'],
1623
+ 'video/webm' => [%w(webm), %w(), 'WebM video'],
1624
+ 'video/x-flic' => [%w(flc fli), %w(), 'FLIC animation'],
1625
+ 'video/x-flv' => [%w(flv), %w(), 'Flash video'],
1626
+ 'video/x-javafx' => [%w(fxm), %w(video/x-flv), 'JavaFX video'],
1627
+ 'video/x-matroska' => [%w(mkv), %w(application/x-matroska), 'Matroska video'],
1628
+ 'video/x-matroska-3d' => [%w(mk3d), %w(application/x-matroska), 'Matroska 3D video'],
1629
+ 'video/x-mjpeg' => [%w(mjpeg mjpg), %w(image/jpeg), 'MJPEG video stream'],
1630
+ 'video/x-mng' => [%w(mng), %w(), 'MNG animation'],
1631
+ 'video/x-ms-wmv' => [%w(wmv), %w(application/vnd.ms-asf), 'Windows Media video'],
1632
+ 'video/x-msvideo' => [%w(avf avi divx), %w(), 'AVI video'],
1633
+ 'video/x-nsv' => [%w(nsv), %w(), 'NullSoft video'],
1634
+ 'video/x-ogm+ogg' => [%w(ogm), %w(video/ogg), 'OGM video'],
1635
+ 'video/x-sgi-movie' => [%w(movie), %w(), 'SGI video'],
1636
+ 'video/x-theora+ogg' => [%w(ogg), %w(video/ogg), 'Ogg Theora video'],
1637
+ 'x-epoc/x-sisx-app' => [%w(sisx), %w(), 'SISX package'],
1638
+ }
1639
+ # @private
1640
+ # :nodoc:
1641
+ MAGIC = [
1642
+ ['image/jpeg', [[0, "\377\330\377"], [0, "\377\330"]]],
1643
+ ['image/png', [[0, "\211PNG"]]],
1644
+ ['image/gif', [[0, 'GIF8']]],
1645
+ ['image/tiff', [[0, "MM\000*"], [0, "II*\000"]]],
1646
+ ['image/bmp', [[0, 'BM', [[14, "\f"], [14, '@'], [14, '(']]]]],
1647
+ ['image/vnd.adobe.photoshop', []],
1648
+ ['image/webp', [[0, 'RIFF', [[8, 'WEBP']]]]],
1649
+ ['image/svg+xml', [[0..256, '<!DOCTYPE svg'], [0..256, '<svg']]],
1650
+ ['video/x-msvideo', [[0, 'RIFF', [[8, 'AVI ']]], [0, 'AVF0', [[8, 'AVI ']]]]],
1651
+ ['video/mp4', [[4, 'ftypisom'], [4, 'ftypmp42'], [4, 'ftypMSNV'], [4, 'ftypM4V '], [4, 'ftypf4v ']]],
1652
+ ['video/quicktime', [[12, 'mdat'], [4, 'mdat'], [4, 'moov'], [4, 'ftypqt']]],
1653
+ ['video/mpeg', [[0, "G?\377\020"], [0, "\000\000\001\263"], [0, "\000\000\001\272"]]],
1654
+ ['video/ogg', [[0, 'OggS']]],
1655
+ ['video/webm', [[0, "\032E\337\243", [[5..65, "B\202", [[8..75, 'webm']]]]]]],
1656
+ ['video/x-flv', [[0, 'FLV']]],
1657
+ ['audio/mpeg', [[0, "\377\373"], [0, 'ID3']]],
1658
+ ['audio/x-wav', [[8, 'WAVE'], [8, 'WAV ']]],
1659
+ ['audio/aac', [[0, 'ADIF']]],
1660
+ ['audio/flac', [[0, 'fLaC']]],
1661
+ ['audio/mp4', [[4, 'ftypM4A']]],
1662
+ ['audio/ogg', [[0, 'OggS']]],
1663
+ ['application/pdf', [[0..1024, '%PDF-']]],
1664
+ ['application/msword', [[0, "1\276\000\000"], [0, 'PO^Q`'], [0, "\3767\000#"], [0, "\333\245-\000\000\000"], [2112, 'MSWordDoc'], [2108, 'MSWordDoc'], [2112, 'Microsoft Word document data'], [546, 'bjbj'], [546, 'jbjb']]],
1665
+ ['application/vnd.ms-excel', [[2080, 'Microsoft Excel 5.0 Worksheet']]],
1666
+ ['application/vnd.stardivision.writer', [[2089, 'StarWriter']]],
1667
+ ['application/x-docbook+xml', [[0, '<?xml', [[0..100, '-//OASIS//DTD DocBook XML'], [0..100, '-//KDE//DTD DocBook XML']]]]],
1668
+ ['image/x-eps', [[0, '%!', [[15, 'EPS']]], [0, "\004%!", [[16, 'EPS']]], [0, "\305\320\323\306"]]],
1669
+ ['application/prs.plucker', [[60, 'DataPlkr']]],
1670
+ ['application/vnd.corel-draw', []],
1671
+ ['application/x-fictionbook+xml', [[0..256, '<FictionBook']]],
1672
+ ['application/x-mobipocket-ebook', [[60, 'BOOKMOBI']]],
1673
+ ['application/x-mozilla-bookmarks', [[0..64, '<!DOCTYPE NETSCAPE-Bookmark-file-1>']]],
1674
+ ['application/x-nzb', [[0..256, '<nzb']]],
1675
+ ['application/x-pak', [[0, 'PACK']]],
1676
+ ['application/x-php', [[0..64, '<?php']]],
1677
+ ['application/xliff+xml', [[0..256, '<xliff']]],
1678
+ ['audio/x-flac+ogg', [[0, 'OggS', [[28, 'fLaC']]], [0, 'OggS', [[28, "\177FLAC"]]]]],
1679
+ ['audio/x-opus+ogg', [[0, 'OggS', [[28, 'OpusHead']]]]],
1680
+ ['audio/x-speex+ogg', [[0, 'OggS', [[28, 'Speex ']]]]],
1681
+ ['audio/x-vorbis+ogg', [[0, 'OggS', [[28, "\001vorbis"]]]]],
1682
+ ['image/ktx', [[0, "\253KTX", [[4, " 11\273", [[8, "\r\n\032\n"]]]]]]],
1683
+ ['image/vnd.djvu', [[0, 'AT&TFORM', [[12, 'DJVU']]], [0, 'FORM', [[8, 'DJVU']]]]],
1684
+ ['image/vnd.djvu+multipage', [[0, 'AT&TFORM', [[12, 'DJVM']]], [0, 'FORM', [[8, 'DJVM']]]]],
1685
+ ['image/x-kodak-kdc', [[242, 'EASTMAN KODAK COMPANY']]],
1686
+ ['image/x-niff', [[0, 'IIN1']]],
1687
+ ['text/x-qml', [[2..16, '/bin/env qml'], [0..3000, 'import Qt', [[9..3009, '{']]], [0..3000, 'import Qml', [[9..3009, '{']]]]],
1688
+ ['video/x-ogm+ogg', [[0, 'OggS', [[29, 'video']]]]],
1689
+ ['video/x-theora+ogg', [[0, 'OggS', [[28, "\200theora"]]]]],
1690
+ ['application/atom+xml', [[0..256, '<feed ']]],
1691
+ ['application/epub+zip', [[0, "PK\003\004", [[30, 'mimetype', [[38, 'application/epub+zip'], [43, 'application/epub+zip']]]]]]],
1692
+ ['application/rss+xml', [[0..256, '<rss '], [0..256, '<RSS ']]],
1693
+ ['application/vnd.apple.mpegurl', [[0, '#EXTM3U', [[0..128, '#EXT-X-TARGETDURATION'], [0..128, '#EXT-X-STREAM-INF']]]]],
1694
+ ['application/vnd.oasis.opendocument.chart', [[0, "PK\003\004", [[30, 'mimetype', [[38, 'application/vnd.oasis.opendocument.chart']]]]]]],
1695
+ ['application/vnd.oasis.opendocument.chart-template', [[0, "PK\003\004", [[30, 'mimetype', [[38, 'application/vnd.oasis.opendocument.chart-template']]]]]]],
1696
+ ['application/vnd.oasis.opendocument.database', [[0, "PK\003\004", [[30, 'mimetype', [[38, 'application/vnd.oasis.opendocument.base']]]]]]],
1697
+ ['application/vnd.oasis.opendocument.formula', [[0, "PK\003\004", [[30, 'mimetype', [[38, 'application/vnd.oasis.opendocument.formula']]]]]]],
1698
+ ['application/vnd.oasis.opendocument.formula-template', [[0, "PK\003\004", [[30, 'mimetype', [[38, 'application/vnd.oasis.opendocument.formula-template']]]]]]],
1699
+ ['application/vnd.oasis.opendocument.graphics', [[0, "PK\003\004", [[30, 'mimetype', [[38, 'application/vnd.oasis.opendocument.graphics']]]]]]],
1700
+ ['application/vnd.oasis.opendocument.graphics-template', [[0, "PK\003\004", [[30, 'mimetype', [[38, 'application/vnd.oasis.opendocument.graphics-template']]]]]]],
1701
+ ['application/vnd.oasis.opendocument.image', [[0, "PK\003\004", [[30, 'mimetype', [[38, 'application/vnd.oasis.opendocument.image']]]]]]],
1702
+ ['application/vnd.oasis.opendocument.presentation', [[0, "PK\003\004", [[30, 'mimetype', [[38, 'application/vnd.oasis.opendocument.presentation']]]]]]],
1703
+ ['application/vnd.oasis.opendocument.presentation-template', [[0, "PK\003\004", [[30, 'mimetype', [[38, 'application/vnd.oasis.opendocument.presentation-template']]]]]]],
1704
+ ['application/vnd.oasis.opendocument.spreadsheet', [[0, "PK\003\004", [[30, 'mimetype', [[38, 'application/vnd.oasis.opendocument.spreadsheet']]]]]]],
1705
+ ['application/vnd.oasis.opendocument.spreadsheet-template', [[0, "PK\003\004", [[30, 'mimetype', [[38, 'application/vnd.oasis.opendocument.spreadsheet-template']]]]]]],
1706
+ ['application/vnd.oasis.opendocument.text', [[0, "PK\003\004", [[30, 'mimetype', [[38, 'application/vnd.oasis.opendocument.text']]]]]]],
1707
+ ['application/vnd.oasis.opendocument.text-master', [[0, "PK\003\004", [[30, 'mimetype', [[38, 'application/vnd.oasis.opendocument.text-master']]]]]]],
1708
+ ['application/vnd.oasis.opendocument.text-template', [[0, "PK\003\004", [[30, 'mimetype', [[38, 'application/vnd.oasis.opendocument.text-template']]]]]]],
1709
+ ['application/vnd.oasis.opendocument.text-web', [[0, "PK\003\004", [[30, 'mimetype', [[38, 'application/vnd.oasis.opendocument.text-web']]]]]]],
1710
+ ['application/vnd.sun.xml.calc', [[0, "PK\003\004", [[30, 'mimetype', [[38, 'application/vnd.sun.xml.calc']]]]]]],
1711
+ ['application/vnd.sun.xml.calc.template', [[0, "PK\003\004", [[30, 'mimetype', [[38, 'application/vnd.sun.xml.calc']]]]]]],
1712
+ ['application/vnd.sun.xml.draw', [[0, "PK\003\004", [[30, 'mimetype', [[38, 'application/vnd.sun.xml.draw']]]]]]],
1713
+ ['application/vnd.sun.xml.draw.template', [[0, "PK\003\004", [[30, 'mimetype', [[38, 'application/vnd.sun.xml.draw']]]]]]],
1714
+ ['application/vnd.sun.xml.impress', [[0, "PK\003\004", [[30, 'mimetype', [[38, 'application/vnd.sun.xml.impress']]]]]]],
1715
+ ['application/vnd.sun.xml.impress.template', [[0, "PK\003\004", [[30, 'mimetype', [[38, 'application/vnd.sun.xml.impress']]]]]]],
1716
+ ['application/vnd.sun.xml.math', [[0, "PK\003\004", [[30, 'mimetype', [[38, 'application/vnd.sun.xml.math']]]]]]],
1717
+ ['application/vnd.sun.xml.writer', [[0, "PK\003\004", [[30, 'mimetype', [[38, 'application/vnd.sun.xml.writer']]]]]]],
1718
+ ['application/vnd.sun.xml.writer.global', [[0, "PK\003\004", [[30, 'mimetype', [[38, 'application/vnd.sun.xml.writer']]]]]]],
1719
+ ['application/vnd.sun.xml.writer.template', [[0, "PK\003\004", [[30, 'mimetype', [[38, 'application/vnd.sun.xml.writer']]]]]]],
1720
+ ['application/x-iwork-keynote-sffkey', [[0, "PK\003\004", [[30, 'index.apxl']]]]],
1721
+ ['application/x-zip-compressed-fb2', [[0, "PK\003\004", [[30..256, '.fb2']]]]],
1722
+ ['image/openraster', [[0, "PK\003\004", [[30, 'mimetype', [[38, 'image/openraster']]]]]]],
1723
+ ['text/x-opml+xml', [[0..256, '<opml ']]],
1724
+ ['application/vnd.ms-cab-compressed', [[0, "MSCF\000\000\000\000"]]],
1725
+ ['application/vnd.ms-wpl', [[0..256, '<?wpl']]],
1726
+ ['application/vnd.rar', [[0, 'Rar!']]],
1727
+ ['application/x-7z-compressed', [[0, "7z\274\257'\034"]]],
1728
+ ['application/x-ace', [[7, '**ACE**']]],
1729
+ ['application/x-arc', []],
1730
+ ['application/x-cpio', [[0, "\307q"], [0, '070701'], [0, '070702'], [0, "q\307"]]],
1731
+ ['application/x-font-type1', [[0, 'LWFN'], [65, 'LWFN'], [0, '%!PS-AdobeFont-1.'], [6, '%!PS-AdobeFont-1.'], [0, '%!FontType1-1.'], [6, '%!FontType1-1.']]],
1732
+ ['application/x-java-pack200', [[0, "\312\376\320\r"]]],
1733
+ ['application/x-karbon', [[0, "\037\213", [[10, 'KOffice', [[18, "application/x-karbon\004\006"]]]]], [0, "PK\003\004", [[30, 'mimetype', [[38, 'application/x-karbon']]]]]]],
1734
+ ['application/x-kchart', [[0, "\037\213", [[10, 'KOffice', [[18, "application/x-kchart\004\006"]]]]], [0, "PK\003\004", [[30, 'mimetype', [[38, 'application/x-kchart']]]]]]],
1735
+ ['application/x-kformula', [[0, "\037\213", [[10, 'KOffice', [[18, "application/x-kformula\004\006"]]]]], [0, "PK\003\004", [[30, 'mimetype', [[38, 'application/x-kformula']]]]]]],
1736
+ ['application/x-killustrator', [[0, "\037\213", [[10, 'KOffice', [[18, "application/x-killustrator\004\006"]]]]]]],
1737
+ ['application/x-kivio', [[0, "\037\213", [[10, 'KOffice', [[18, "application/x-kivio\004\006"]]]]], [0, "PK\003\004", [[30, 'mimetype', [[38, 'application/x-kivio']]]]]]],
1738
+ ['application/x-kontour', [[0, "\037\213", [[10, 'KOffice', [[18, "application/x-kontour\004\006"]]]]], [0, "PK\003\004", [[30, 'mimetype', [[38, 'application/x-kontour']]]]]]],
1739
+ ['application/x-kpresenter', [[0, "\037\213", [[10, 'KOffice', [[18, "application/x-kpresenter\004\006"]]]]], [0, "PK\003\004", [[30, 'mimetype', [[38, 'application/x-kpresenter']]]]]]],
1740
+ ['application/x-krita', [[0, "\037\213", [[10, 'KOffice', [[18, "application/x-krita\004\006"]]]]], [0, "PK\003\004", [[30, 'mimetype', [[38, 'application/x-krita']]]]]]],
1741
+ ['application/x-kspread', [[0, "\037\213", [[10, 'KOffice', [[18, "application/x-kspread\004\006"]]]]], [0, "PK\003\004", [[30, 'mimetype', [[38, 'application/x-kspread']]]]]]],
1742
+ ['application/x-kword', [[0, "\037\213", [[10, 'KOffice', [[18, "application/x-kword\004\006"]]]]], [0, "PK\003\004", [[30, 'mimetype', [[38, 'application/x-kword']]]]]]],
1743
+ ['application/x-lha', [[2, '-lh -'], [2, '-lh0-'], [2, '-lh1-'], [2, '-lh2-'], [2, '-lh3-'], [2, '-lh4-'], [2, '-lh5-'], [2, '-lh40-'], [2, '-lhd-'], [2, '-lz4-'], [2, '-lz5-'], [2, '-lzs-']]],
1744
+ ['application/x-lrzip', [[0, 'LRZI']]],
1745
+ ['application/x-lz4', [[0, "\004\"M\030"], [0, "\002!L\030"]]],
1746
+ ['application/x-lzip', [[0, 'LZIP']]],
1747
+ ['application/x-lzop', [[0, "\211LZO\000\r\n\032\n"]]],
1748
+ ['application/x-par2', [[0, 'PAR2']]],
1749
+ ['application/x-qpress', [[0, 'qpress10']]],
1750
+ ['application/x-quicktime-media-link', [[0, '<?xml', [[0..64, '<?quicktime']]], [0, 'RTSPtext'], [0, 'rtsptext'], [0, 'SMILtext']]],
1751
+ ['application/x-sega-cd-rom', [[0, 'SEGADISCSYSTEM', [[256, 'SEGA']]], [16, 'SEGADISCSYSTEM', [[272, 'SEGA']]]]],
1752
+ ['application/x-stuffit', [[0, 'StuffIt '], [0, 'SIT!']]],
1753
+ ['application/x-tar', [[257, "ustar\000"], [257, "ustar \000"]]],
1754
+ ['application/x-xar', [[0, 'xar!']]],
1755
+ ['application/x-xz', [[0, "\3757zXZ\000"]]],
1756
+ ['application/x-zoo', [[20, "\334\247\304\375"]]],
1757
+ ['application/xhtml+xml', [[0..256, '//W3C//DTD XHTML '], [0..256, 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'], [0..256, "<html xmlns=\"http://www.w3.org/1999/xhtml"], [0..256, "<HTML xmlns=\"http://www.w3.org/1999/xhtml"]]],
1758
+ ['application/zip', [[0, "PK\003\004"]]],
1759
+ ['audio/vnd.dts.hd', [[0..18725, 'dX %']]],
1760
+ ['text/x-python3', [[0, '#!/bin/python3'], [0, '#! /bin/python3'], [0, "eval \"exec /bin/python3"], [0, '#!/usr/bin/python3'], [0, '#! /usr/bin/python3'], [0, "eval \"exec /usr/bin/python3"], [0, '#!/usr/local/bin/python3'], [0, '#! /usr/local/bin/python3'], [0, "eval \"exec /usr/local/bin/python3"], [2..16, '/bin/env python3']]],
1761
+ ['text/x-txt2tags', [[0, '%!postproc'], [0, '%!encoding']]],
1762
+ ['application/smil+xml', [[0..256, '<smil']]],
1763
+ ['audio/x-ms-asx', [[0, 'ASF '], [0..64, '<ASX'], [0..64, '<asx'], [0..64, '<Asx']]],
1764
+ ['application/annodex', [[0, 'OggS', [[28, "fishead\000", [[56..512, "CMML\000\000\000\000"]]]]]]],
1765
+ ['application/dicom', [[128, 'DICM']]],
1766
+ ['application/gnunet-directory', [[0, "\211GND\r\n\032\n"]]],
1767
+ ['application/gzip', [[0, "\037\213"]]],
1768
+ ['application/javascript', [[0, '#!/bin/gjs'], [0, '#! /bin/gjs'], [0, "eval \"exec /bin/gjs"], [0, '#!/usr/bin/gjs'], [0, '#! /usr/bin/gjs'], [0, "eval \"exec /usr/bin/gjs"], [0, '#!/usr/local/bin/gjs'], [0, '#! /usr/local/bin/gjs'], [0, "eval \"exec /usr/local/bin/gjs"], [2..16, '/bin/env gjs']]],
1769
+ ['application/mac-binhex40', [[11, 'must be converted with BinHex']]],
1770
+ ['application/mathematica', [[0, '(************** Content-type: application/mathematica'], [100..256, 'This notebook can be used on any computer system with Mathematica'], [10..256, 'This is a Mathematica Notebook file. It contains ASCII text']]],
1771
+ ['application/metalink+xml', [[0..256, "<metalink version=\"3.0\""]]],
1772
+ ['application/metalink4+xml', [[0..256, "<metalink xmlns=\"urn"]]],
1773
+ ['application/mxf', [[0..256, "\006\016+4\002\005\001\001\r\001\002\001\001\002"]]],
1774
+ ['application/ogg', [[0, 'OggS']]],
1775
+ ['application/owl+xml', [[0..256, '<Ontology']]],
1776
+ ['application/pgp-encrypted', [[0, '-----BEGIN PGP MESSAGE-----']]],
1777
+ ['application/pgp-keys', [[0, '-----BEGIN PGP PUBLIC KEY BLOCK-----'], [0, '-----BEGIN PGP PRIVATE KEY BLOCK-----'], [0, "\225\001"], [0, "\225\000"], [0, "\231\000"], [0, "\231\001"]]],
1778
+ ['application/pgp-signature', [[0, '-----BEGIN PGP SIGNATURE-----']]],
1779
+ ['application/postscript', [[0, "\004%!"], [0, '%!']]],
1780
+ ['application/raml+yaml', [[0, '#%RAML ']]],
1781
+ ['application/rtf', [[0, "{\\rtf"]]],
1782
+ ['application/sdp', [[0, 'v=', [[0..256, 's=']]]]],
1783
+ ['application/vnd.adobe.flash.movie', [[0, 'FWS'], [0, 'CWS']]],
1784
+ ['application/vnd.appimage', [[1, 'ELF', [[8, 'A', [[9, 'I', [[10, "\002"]]]]]]]]],
1785
+ ['application/vnd.chess-pgn', [[0, '[Event ']]],
1786
+ ['application/vnd.debian.binary-package', [[0, '!<arch>', [[8, 'debian']]]]],
1787
+ ['application/vnd.emusic-emusic_package', [[0, 'nF7YLao']]],
1788
+ ['application/vnd.flatpak', [[0, "xdg-app\000\001\000\211\345"], [0, "flatpak\000\001\000\211\345"]]],
1789
+ ['application/vnd.flatpak.ref', [[0..256, '[Flatpak Ref]']]],
1790
+ ['application/vnd.flatpak.repo', [[0..256, '[Flatpak Repo]']]],
1791
+ ['application/vnd.framemaker', [[0, '<MakerFile'], [0, '<MIFFile'], [0, '<MakerDictionary'], [0, '<MakerScreenFon'], [0, '<MML'], [0, '<Book'], [0, '<Maker']]],
1792
+ ['application/vnd.iccprofile', [[36, 'acsp']]],
1793
+ ['application/vnd.lotus-1-2-3', [[0, "\000\000\002\000\006\004\006\000\b\000\000\000\000\000"]]],
1794
+ ['application/vnd.lotus-wordpro', [[0, 'WordPro']]],
1795
+ ['application/vnd.ms-access', [[0, "\000\001\000\000Standard Jet DB"]]],
1796
+ ['application/vnd.ms-asf', [[0, "0&\262u"], [0, '[Reference]']]],
1797
+ ['application/vnd.ms-tnef', [[0, "x\237>\""]]],
1798
+ ['application/vnd.rn-realmedia', [[0, '.RMF']]],
1799
+ ['application/vnd.sqlite3', [[0, 'SQLite format 3']]],
1800
+ ['application/vnd.squashfs', [[0, 'sqsh'], [0, 'hsqs']]],
1801
+ ['application/vnd.symbian.install', [[8, "\031\004\000\020"]]],
1802
+ ['application/vnd.tcpdump.pcap', [[0, "\324\303\262\241"], [0, "\241\262\303\324"]]],
1803
+ ['application/vnd.wordperfect', [[1, 'WPC']]],
1804
+ ['application/winhlp', [[0, "?_\003\000"]]],
1805
+ ['application/x-abiword', [[0..256, '<abiword'], [0..256, '<!DOCTYPE abiword']]],
1806
+ ['application/x-alz', [[0, 'ALZ']]],
1807
+ ['application/x-amiga-disk-format', [[0, "DOS\000"]]],
1808
+ ['application/x-aportisdoc', [[60, 'TEXtREAd'], [60, 'TEXtTlDc']]],
1809
+ ['application/x-applix-spreadsheet', [[0, '*BEGIN SPREADSHEETS'], [0, '*BEGIN', [[7, 'SPREADSHEETS']]]]],
1810
+ ['application/x-applix-word', [[0, '*BEGIN', [[7, 'WORDS']]]]],
1811
+ ['application/x-arj', [[0, "`\352"]]],
1812
+ ['application/x-atari-7800-rom', [[1, 'ATARI7800']]],
1813
+ ['application/x-atari-lynx-rom', [[0, 'LYNX']]],
1814
+ ['application/x-awk', [[0, '#!/bin/gawk'], [0, '#! /bin/gawk'], [0, '#!/usr/bin/gawk'], [0, '#! /usr/bin/gawk'], [0, '#!/usr/local/bin/gawk'], [0, '#! /usr/local/bin/gawk'], [0, '#!/bin/awk'], [0, '#! /bin/awk'], [0, '#!/usr/bin/awk'], [0, '#! /usr/bin/awk']]],
1815
+ ['application/x-bittorrent', [[0, 'd8:announce']]],
1816
+ ['application/x-blender', [[0, 'BLENDER']]],
1817
+ ['application/x-bsdiff', [[0, 'BSDIFF40'], [0, 'BSDIFN40']]],
1818
+ ['application/x-bzip', [[0, 'BZh']]],
1819
+ ['application/x-ccmx', [[0, 'CCMX']]],
1820
+ ['application/x-cdrdao-toc', [[0, "CD_ROM\n"], [0, "CD_DA\n"], [0, "CD_ROM_XA\n"], [0, 'CD_TEXT '], [0, "CATALOG \"", [[22, "\""]]]]],
1821
+ ['application/x-cisco-vpn-settings', [[0, '[main]', [[0..256, 'AuthType=']]]]],
1822
+ ['application/x-compress', [[0, "\037\235"]]],
1823
+ ['application/x-core', [[0, "\177ELF", [[5, "\001", [[16, "\004\000"]]]]], [0, "\177ELF", [[5, "\002", [[16, "\000\004"]]]]], [0, "Core\001"], [0, "Core\002"]]],
1824
+ ['application/x-csh', [[2..16, '/bin/tcsh'], [2..16, '/bin/csh'], [2..16, '/bin/env csh'], [2..16, '/bin/env tcsh']]],
1825
+ ['application/x-dar', [[0, "\000\000\000{"]]],
1826
+ ['application/x-designer', [[0..256, '<ui '], [0..256, '<UI ']]],
1827
+ ['application/x-desktop', [[0..32, '[Desktop Entry]'], [0, '[Desktop Action'], [0, '[KDE Desktop Entry]'], [0, '# Config File'], [0, '# KDE Config File']]],
1828
+ ['application/x-dia-diagram', [[5..100, '<dia:']]],
1829
+ ['application/x-dia-shape', [[5..100, '<shape']]],
1830
+ ['application/x-doom-wad', [[0, 'IWAD'], [0, 'PWAD']]],
1831
+ ['application/x-dvi', [[0, "\367\002"]]],
1832
+ ['application/x-fds-disk', [[1, '*NINTENDO-HVC*']]],
1833
+ ['application/x-fluid', [[0, '# data file for the Fltk']]],
1834
+ ['application/x-font-bdf', [[0, 'STARTFONT ']]],
1835
+ ['application/x-font-dos', [[0, "\377FON"], [7, "\000EGA"], [7, "\000VID"]]],
1836
+ ['application/x-font-framemaker', [[0, '<MakerScreenFont']]],
1837
+ ['application/x-font-libgrx', [[0, "\024\002Y\031"]]],
1838
+ ['application/x-font-linux-psf', [[0, "6\004"]]],
1839
+ ['application/x-font-pcf', [[0, "\001fcp"]]],
1840
+ ['application/x-font-speedo', [[0, "D1.0\r"]]],
1841
+ ['application/x-font-sunos-news', [[0, 'StartFont'], [0, "\023z)"], [8, "\023z+"]]],
1842
+ ['application/x-font-tex', [[0, "\367\203"], [0, "\367Y"], [0, "\367\312"]]],
1843
+ ['application/x-font-tex-tfm', [[2, "\000\021"], [2, "\000\022"]]],
1844
+ ['application/x-font-ttx', [[0..256, "<ttFont sfntVersion=\"\\000\\001\\000\\000\" ttLibVersion=\""]]],
1845
+ ['application/x-font-vfont', [[0, 'FONT']]],
1846
+ ['application/x-gameboy-color-rom', [[260, "\316\355ff\314\r\000\v\003s\000\203\000\f\000\r\000\b"]]],
1847
+ ['application/x-gameboy-rom', [[260, "\316\355ff\314\r\000\v\003s\000\203\000\f\000\r\000\b\021\037\210\211\000\016"]]],
1848
+ ['application/x-gamecube-rom', [[28, "\3023\237="]]],
1849
+ ['application/x-gdbm', [[0, "\023W\232\316"], [0, "\316\232W\023"], [0, 'GDBM']]],
1850
+ ['application/x-gedcom', [[0, '0 HEAD']]],
1851
+ ['application/x-genesis-32x-rom', [[256, 'SEGA 32X']]],
1852
+ ['application/x-genesis-rom', [[256, 'SEGA GENESIS'], [256, 'SEGA MEGA DRIVE'], [640, 'EAGN'], [640, 'EAMG']]],
1853
+ ['application/x-gettext-translation', [[0, "\336\022\004\225"], [0, "\225\004\022\336"]]],
1854
+ ['application/x-glade', [[0..256, '<glade-interface']]],
1855
+ ['application/x-gnumeric', [[0..64, 'gmr:Workbook'], [0..64, 'gnm:Workbook']]],
1856
+ ['application/x-go-sgf', [[0, '(;FF[3]'], [0, '(;FF[4]']]],
1857
+ ['application/x-gtk-builder', [[0..256, '<interface']]],
1858
+ ['application/x-gtktalog', [[4, 'gtktalog ']]],
1859
+ ['application/x-hdf', [[0, "\211HDF\r\n\032\n"], [0, "\016\003\023\001"]]],
1860
+ ['application/x-hfe-floppy-image', [[0, 'HXCPICFE']]],
1861
+ ['application/x-hwp', [[0, 'HWP Document File']]],
1862
+ ['application/x-ipod-firmware', [[0, 'S T O P']]],
1863
+ ['application/x-ipynb+json', [[0, '{', [[1..256, "\"cells\":"]]]]],
1864
+ ['application/x-iso9660-appimage', [[1, 'ELF', [[8, 'A', [[9, 'I', [[10, "\001"]]]]]]]]],
1865
+ ['application/x-it87', [[0, 'IT8.7']]],
1866
+ ['application/x-java', [[0, "\312\376\272\276"]]],
1867
+ ['application/x-java-jce-keystore', [[0, "\316\316\316\316"]]],
1868
+ ['application/x-java-jnlp-file', [[0..256, '<jnlp']]],
1869
+ ['application/x-java-keystore', [[0, "\376\355\376\355"]]],
1870
+ ['application/x-kspread-crypt', [[0, "\r\032'\002"]]],
1871
+ ['application/x-ksysv-package', [[4, 'KSysV', [[15, "\001"]]]]],
1872
+ ['application/x-kword-crypt', [[0, "\r\032'\001"]]],
1873
+ ['application/x-lyx', [[0, '#LyX']]],
1874
+ ['application/x-macbinary', [[102, 'mBIN']]],
1875
+ ['application/x-matroska', [[0, "\032E\337\243", [[5..65, "B\202", [[8..75, 'matroska']]]]]]],
1876
+ ['application/x-ms-dos-executable', [[0, 'MZ']]],
1877
+ ['application/x-ms-wim', [[0, "MSWIM\000\000\000"]]],
1878
+ ['application/x-mswinurl', [[1, 'InternetShortcut'], [1, 'DEFAULT', [[11, 'BASEURL=']]]]],
1879
+ ['application/x-n64-rom', [[0, "\2007\022@"], [0, "7\200@\022"], [0, "@\0227\200"]]],
1880
+ ['application/x-nautilus-link', [[0..32, '<nautilus_object nautilus_link']]],
1881
+ ['application/x-navi-animation', [[0, 'RIFF', [[8, 'ACON']]]]],
1882
+ ['application/x-neo-geo-pocket-color-rom', [[35, "\020", [[0, 'COPYRIGHT BY SNK CORPORATION'], [0, ' LICENSED BY SNK CORPORATION']]]]],
1883
+ ['application/x-neo-geo-pocket-rom', [[35, "\000", [[0, 'COPYRIGHT BY SNK CORPORATION'], [0, ' LICENSED BY SNK CORPORATION']]]]],
1884
+ ['application/x-netshow-channel', [[0, '[Address]']]],
1885
+ ['application/x-object', [[0, "\177ELF", [[5, "\001", [[16, "\001\000"]]]]], [0, "\177ELF", [[5, "\002", [[16, "\000\001"]]]]]]],
1886
+ ['application/x-ole-storage', [[0, "\320\317\021\340\241\261\032\341"], [0, "\320\317\021\340"]]],
1887
+ ['application/x-oleo', [[31, 'Oleo']]],
1888
+ ['application/x-pef-executable', [[0, 'Joy!']]],
1889
+ ['application/x-perl', [[0, "eval \"exec /usr/local/bin/perl"], [2..16, '/bin/perl'], [2..16, '/bin/env perl'], [0..256, 'use strict'], [0..256, 'use warnings'], [0..256, 'use diagnostics'], [0..256, 'use Test::'], [0..256, 'BEGIN {']]],
1890
+ ['application/x-pocket-word', [[0, "{\\pwi"]]],
1891
+ ['application/x-python-bytecode', [[0, "\231N\r\n"]]],
1892
+ ['application/x-qtiplot', [[0, 'QtiPlot']]],
1893
+ ['application/x-rpm', [[0, "\355\253\356\333"]]],
1894
+ ['application/x-ruby', [[2..16, '/bin/env ruby'], [2..16, '/bin/ruby']]],
1895
+ ['application/x-sami', [[0..256, '<SAMI>']]],
1896
+ ['application/x-saturn-rom', [[0, 'SEGA SEGASATURN'], [16, 'SEGA SEGASATURN']]],
1897
+ ['application/x-sc', [[38, 'Spreadsheet']]],
1898
+ ['application/x-sega-pico-rom', [[256, 'SEGA PICO']]],
1899
+ ['application/x-sharedlib', [[0, "\177ELF", [[5, "\001", [[16, "\003\000"]]]]], [0, "\177ELF", [[5, "\002", [[16, "\000\003"]]]]], [0, "\203\001"]]],
1900
+ ['application/x-shellscript', [[10, '# This is a shell archive'], [2..16, '/bin/bash'], [2..16, '/bin/nawk'], [2..16, '/bin/zsh'], [2..16, '/bin/sh'], [2..16, '/bin/ksh'], [2..16, '/bin/dash'], [2..16, '/bin/env sh'], [2..16, '/bin/env bash'], [2..16, '/bin/env zsh'], [2..16, '/bin/env ksh']]],
1901
+ ['application/x-shorten', [[0, 'ajkg']]],
1902
+ ['application/x-smaf', [[0, 'MMMD']]],
1903
+ ['application/x-spss-por', [[40, 'ASCII SPSS PORT FILE']]],
1904
+ ['application/x-spss-sav', [[0, '$FL2'], [0, '$FL3']]],
1905
+ ['application/x-sqlite2', [[0, '** This file contains an SQLite']]],
1906
+ ['application/x-subrip', [[0, '1', [[0..256, ' --> ']]]]],
1907
+ ['application/x-t602', [[0, '@CT 0'], [0, '@CT 1'], [0, '@CT 2']]],
1908
+ ['application/x-tgif', [[0, '%TGIF']]],
1909
+ ['application/x-thomson-sap-image', [[1, "SYSTEME D'ARCHIVAGE PUKALL S.A.P. (c) Alexandre PUKALL Avril 1998"]]],
1910
+ ['application/x-wii-rom', [[24, "]\034\236\243"], [0, 'WBFS'], [0, "WII\001DISC"]]],
1911
+ ['application/x-wii-wad', [[4, "Is\000\000"], [4, "ib\000\000"], [4, "Bk\000\000"]]],
1912
+ ['application/x-xbel', [[0..256, '<!DOCTYPE xbel']]],
1913
+ ['application/x-yaml', [[0, '%YAML']]],
1914
+ ['application/xslt+xml', [[0..256, '<xsl:stylesheet']]],
1915
+ ['application/xspf+xml', [[0..64, "<playlist version=\"1"], [0..64, "<playlist version='1"]]],
1916
+ ['audio/AMR', [[0, "#!AMR\n"], [0, "#!AMR_MC1.0\n"]]],
1917
+ ['audio/AMR-WB', [[0, "#!AMR-WB\n"], [0, "#!AMR-WB_MC1.0\n"]]],
1918
+ ['audio/ac3', [[0, "\vw"]]],
1919
+ ['audio/annodex', [[0, 'OggS', [[28, "fishead\000", [[56..512, "CMML\000\000\000\000"]]]]]]],
1920
+ ['audio/midi', [[0, 'MThd']]],
1921
+ ['audio/prs.sid', [[0, 'PSID']]],
1922
+ ['audio/vnd.dts', [[0, "\177\376\200\001"], [0, "\200\001\177\376"], [0, "\037\377\350\000"], [0, "\350\000\037\377"]]],
1923
+ ['audio/x-adpcm', [[0, '.snd', [[12, "\000\000\000\027"]]], [0, ".sd\000", [[12, "\001\000\000\000"], [12, "\002\000\000\000"], [12, "\003\000\000\000"], [12, "\004\000\000\000"], [12, "\005\000\000\000"], [12, "\006\000\000\000"], [12, "\a\000\000\000"], [12, "\027\000\000\000"]]]]],
1924
+ ['audio/x-aifc', [[8, 'AIFC']]],
1925
+ ['audio/x-aiff', [[8, 'AIFF'], [8, '8SVX']]],
1926
+ ['audio/x-ape', [[0, 'MAC ']]],
1927
+ ['audio/x-iriver-pla', [[4, 'iriver UMS PLA']]],
1928
+ ['audio/x-it', [[0, 'IMPM']]],
1929
+ ['audio/x-m4b', [[4, 'ftypM4B']]],
1930
+ ['audio/x-mo3', [[0, 'MO3']]],
1931
+ ['audio/x-mpegurl', [[0, '#EXTM3U']]],
1932
+ ['audio/x-musepack', [[0, 'MP+']]],
1933
+ ['audio/x-pn-audibleaudio', [[4, "W\220u6"], [8, 'aax ']]],
1934
+ ['audio/x-psf', [[0, 'PSF']]],
1935
+ ['audio/x-s3m', [[44, 'SCRM']]],
1936
+ ['audio/x-scpls', [[0, '[playlist]'], [0, '[Playlist]'], [0, '[PLAYLIST]']]],
1937
+ ['audio/x-speex', [[0, 'Speex']]],
1938
+ ['audio/x-stm', [[20, "!Scream!\032"], [20, "!SCREAM!\032"], [20, "BMOD2STM\032"]]],
1939
+ ['audio/x-tta', [[0, 'TTA1']]],
1940
+ ['audio/x-wavpack', [[0, 'wvpk']]],
1941
+ ['audio/x-wavpack-correction', [[0, 'wvpk']]],
1942
+ ['audio/x-xi', [[0, 'Extended Instrument:']]],
1943
+ ['audio/x-xm', [[0, 'Extended Module:']]],
1944
+ ['audio/x-xmf', [[0, 'XMF_'], [0, "XMF_2.00\000\000\000\002"]]],
1945
+ ['font/otf', [[0, 'OTTO']]],
1946
+ ['font/ttf', [[0, 'FFIL'], [65, 'FFIL'], [0, "\000\001\000\000\000"]]],
1947
+ ['font/woff', [[0, 'wOFF']]],
1948
+ ['font/woff', [[0, 'wOF2']]],
1949
+ ['image/dpx', [[0, 'SDPX']]],
1950
+ ['image/emf', [[0, "\001\000\000\000", [[40, ' EMF', [[44, "\000\000\001\000", [[58, "\000\000"]]]]]]]]],
1951
+ ['image/fits', [[0, 'SIMPLE =']]],
1952
+ ['image/jp2', []],
1953
+ ['image/jpm', []],
1954
+ ['image/jpx', []],
1955
+ ['image/vnd.dxf', [[0..64, "\nHEADER\n"], [0..64, "\r\nHEADER\r\n"]]],
1956
+ ['image/vnd.microsoft.icon', [[0, "\000\000\001\000", [[5, "\000"]]]]],
1957
+ ['image/vnd.ms-modi', [[0, "EP*\000"]]],
1958
+ ['image/vnd.zbrush.pcx', [[0, "\n", [[1, "\000"], [1, "\002"], [1, "\003"], [1, "\005"]]]]],
1959
+ ['image/wmf', [[0, "\327\315\306\232", [[22, "\001\000", [[24, "\t\000"]]]]], [0, "\001\000", [[2, "\t\000"]]]]],
1960
+ ['image/x-applix-graphics', [[0, '*BEGIN', [[7, 'GRAPHICS']]]]],
1961
+ ['image/x-canon-crw', [[0, "II\032\000\000\000HEAPCCDR"]]],
1962
+ ['image/x-dds', [[0, 'DDS']]],
1963
+ ['image/x-dib', [[0, "(\000\000\000"]]],
1964
+ ['image/x-exr', [[0, "v/1\001"]]],
1965
+ ['image/x-fpx', [[0, 'FPix']]],
1966
+ ['image/x-fuji-raf', [[0, 'FUJIFILMCCD-RAW ']]],
1967
+ ['image/x-gimp-gbr', [[20, 'GIMP']]],
1968
+ ['image/x-gimp-pat', [[20, 'GPAT']]],
1969
+ ['image/x-icns', [[0, 'icns']]],
1970
+ ['image/x-ilbm', [[8, 'ILBM'], [8, 'PBM ']]],
1971
+ ['image/x-jp2-codestream', [[0, "\377O\377Q"]]],
1972
+ ['image/x-minolta-mrw', [[0, "\000MRM"]]],
1973
+ ['image/x-olympus-orf', [[0, "IIRO\b\000\000\000"]]],
1974
+ ['image/x-panasonic-rw', [[0, "IIU\000\b\000\000\000"]]],
1975
+ ['image/x-panasonic-rw2', [[0, "IIU\000\030\000\000\000"]]],
1976
+ ['image/x-pict', [[10, "\000\021", [[12, "\002\377", [[14, "\f\000", [[16, "\377\376"]]]]]]]]],
1977
+ ['image/x-pict', [[522, "\000\021", [[524, "\002\377", [[526, "\f\000", [[528, "\377\376"]]]]]]]]],
1978
+ ['image/x-portable-bitmap', [[0, 'P1', [[2, "\n"], [2, ' '], [2, "\t"], [2, "\r"]]], [0, 'P4', [[2, "\n"], [2, ' '], [2, "\t"], [2, "\r"]]]]],
1979
+ ['image/x-portable-graymap', [[0, 'P2', [[2, "\n"], [2, ' '], [2, "\t"], [2, "\r"]]], [0, 'P5', [[2, "\n"], [2, ' '], [2, "\t"], [2, "\r"]]]]],
1980
+ ['image/x-portable-pixmap', [[0, 'P3', [[2, "\n"], [2, ' '], [2, "\t"], [2, "\r"]]], [0, 'P6', [[2, "\n"], [2, ' '], [2, "\t"], [2, "\r"]]]]],
1981
+ ['image/x-quicktime', [[4, 'idat']]],
1982
+ ['image/x-sigma-x3f', [[0, 'FOVb']]],
1983
+ ['image/x-skencil', [[0, '##Sketch']]],
1984
+ ['image/x-sun-raster', [[0, "Y\246j\225"]]],
1985
+ ['image/x-tga', [[1, "\000\002", [[16, "\b"], [16, "\020"], [16, "\030"], [16, ' ']]]]],
1986
+ ['image/x-win-bitmap', [[0, "\000\000\002\000", [[5, "\000"]]]]],
1987
+ ['image/x-xcf', [[0, 'gimp xcf file'], [0, 'gimp xcf v']]],
1988
+ ['image/x-xcursor', [[0, 'Xcur']]],
1989
+ ['image/x-xfig', [[0, '#FIG']]],
1990
+ ['image/x-xpixmap', [[0, '/* XPM']]],
1991
+ ['message/news', [[0, 'Article'], [0, 'Path:'], [0, 'Xref:']]],
1992
+ ['message/rfc822', [[0, '#! rnews'], [0, 'Forward to'], [0, 'From:'], [0, 'N#! rnews'], [0, 'Pipe to'], [0, 'Received:'], [0, 'Relay-Version:'], [0, 'Return-Path:'], [0, 'Return-path:'], [0, 'Subject: ']]],
1993
+ ['model/iges', [[72, "S 1\n"], [72, "S0000001\n"]]],
1994
+ ['model/stl', [[0, 'solid'], [0, 'SOLID']]],
1995
+ ['model/vrml', [[0, '#VRML ']]],
1996
+ ['text/cache-manifest', [[0, 'CACHE MANIFEST', [[14, ' '], [14, "\t"], [14, "\n"], [14, "\r"]]]]],
1997
+ ['text/calendar', [[0, 'BEGIN:VCALENDAR'], [0, 'begin:vcalendar']]],
1998
+ ['text/html', [[0..256, '<!DOCTYPE HTML'], [0..256, '<!doctype html'], [0..256, '<HEAD'], [0..256, '<head'], [0..256, '<TITLE'], [0..256, '<title'], [0..256, '<HTML'], [0..256, '<html'], [0..256, '<SCRIPT'], [0..256, '<script'], [0, '<BODY'], [0, '<body'], [0, '<!--'], [0, '<h1'], [0, '<H1'], [0, '<!doctype HTML'], [0, '<!DOCTYPE html']]],
1999
+ ['text/plain', [[0, 'This is TeX,'], [0, 'This is METAFONT,']]],
2000
+ ['text/spreadsheet', [[0, 'ID;']]],
2001
+ ['text/troff', [[0, ".\\\""], [0, "'\\\""], [0, "'.\\\""], [0, "\\\""]]],
2002
+ ['text/vcard', [[0, 'BEGIN:VCARD'], [0, 'begin:vcard']]],
2003
+ ['text/vnd.graphviz', [[0, 'digraph '], [0, 'strict digraph '], [0, 'graph '], [0, 'strict graph ']]],
2004
+ ['text/vnd.qt.linguist', [[0..256, '<TS']]],
2005
+ ['text/vnd.sun.j2me.app-descriptor', [[0, 'MIDlet-']]],
2006
+ ['text/vtt', [[0, 'WEBVTT']]],
2007
+ ['text/x-bibtex', [[0, '% This file was created with JabRef']]],
2008
+ ['text/x-dbus-service', [[0..256, "\n[D-BUS Service]\n"], [0, "[D-BUS Service]\n"]]],
2009
+ ['text/x-emacs-lisp', [[0, "\n("], [0, ";ELC\023\000\000\000"]]],
2010
+ ['text/x-gettext-translation-template', [[0..256, "#, fuzzy\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version:"]]],
2011
+ ['text/x-google-video-pointer', [[0, '#.download.the.free.Google.Video.Player'], [0, '# download the free Google Video Player']]],
2012
+ ['text/x-iMelody', [[0, 'BEGIN:IMELODY']]],
2013
+ ['text/x-iptables', [[0..256, '/etc/sysconfig/iptables'], [0..256, '*filter', [[0..256, ':INPUT', [[0..256, ':FORWARD', [[0..256, ':OUTPUT']]]]]]], [0..256, '-A INPUT', [[0..256, '-A FORWARD', [[0..256, '-A OUTPUT']]]]], [0..256, '-P INPUT', [[0..256, '-P FORWARD', [[0..256, '-P OUTPUT']]]]]]],
2014
+ ['text/x-ldif', [[0, 'dn: cn='], [0, 'dn: mail=']]],
2015
+ ['text/x-lua', [[2..16, '/bin/lua'], [2..16, '/bin/luajit'], [2..16, '/bin/env lua'], [2..16, '/bin/env luajit']]],
2016
+ ['text/x-makefile', [[0, '#!/usr/bin/make'], [0, '#! /usr/bin/make']]],
2017
+ ['text/x-matlab', [[0, 'function']]],
2018
+ ['text/x-microdvd', [[0, '{1}'], [0, '{0}'], [0..6, '}{']]],
2019
+ ['text/x-modelica', [[0, 'function']]],
2020
+ ['text/x-modelica', [[0, 'class']]],
2021
+ ['text/x-modelica', [[0, 'model']]],
2022
+ ['text/x-modelica', [[0, 'record']]],
2023
+ ['text/x-mpsub', [[0..256, 'FORMAT=']]],
2024
+ ['text/x-mrml', [[0, '<mrml ']]],
2025
+ ['text/x-ms-regedit', [[0, 'REGEDIT'], [0, 'Windows Registry Editor Version 5.00'], [0, "\377\376W\000i\000n\000d\000o\000w\000s\000 \000R\000e\000g\000i\000s\000t\000r\000y\000 \000E\000d\000i\000t\000o\000r\000"]]],
2026
+ ['text/x-mup', [[0, '//!Mup']]],
2027
+ ['text/x-patch', [[0, "diff\t"], [0, 'diff '], [0, "***\t"], [0, '*** '], [0, '=== '], [0, '--- '], [0, "Only in\t"], [0, 'Only in '], [0, 'Common subdirectories: '], [0, 'Index:']]],
2028
+ ['text/x-python', [[0, '#!/bin/python'], [0, '#! /bin/python'], [0, "eval \"exec /bin/python"], [0, '#!/usr/bin/python'], [0, '#! /usr/bin/python'], [0, "eval \"exec /usr/bin/python"], [0, '#!/usr/local/bin/python'], [0, '#! /usr/local/bin/python'], [0, "eval \"exec /usr/local/bin/python"], [2..16, '/bin/env python']]],
2029
+ ['text/x-rpm-spec', [[0, 'Summary: '], [0, '%define ']]],
2030
+ ['text/x-ssa', [[0..256, '[Script Info]'], [0..256, 'Dialogue: ']]],
2031
+ ['text/x-subviewer', [[0, '[INFORMATION]']]],
2032
+ ['text/x-systemd-unit', [[0..256, "\n[Unit]\n"], [0..256, "\n[Install]\n"], [0..256, "\n[Automount]\n"], [0..256, "\n[Mount]\n"], [0..256, "\n[Path]\n"], [0..256, "\n[Scope]\n"], [0..256, "\n[Service]\n"], [0..256, "\n[Slice]\n"], [0..256, "\n[Socket]\n"], [0..256, "\n[Swap]\n"], [0..256, "\n[Timer]\n"], [0, "[Unit]\n"], [0, "[Install]\n"], [0, "[Automount]\n"], [0, "[Mount]\n"], [0, "[Path]\n"], [0, "[Scope]\n"], [0, "[Service]\n"], [0, "[Slice]\n"], [0, "[Socket]\n"], [0, "[Swap]\n"], [0, "[Timer]\n"]]],
2033
+ ['text/x-tex', [[1, 'documentclass']]],
2034
+ ['text/x-uuencode', [[0, 'begin ']]],
2035
+ ['text/xmcd', [[0, '# xmcd']]],
2036
+ ['video/3gpp', [[4, 'ftyp3ge'], [4, 'ftyp3gg'], [4, 'ftyp3gp'], [4, 'ftyp3gs']]],
2037
+ ['video/3gpp2', [[4, 'ftyp3g2']]],
2038
+ ['video/annodex', [[0, 'OggS', [[28, "fishead\000", [[56..512, "CMML\000\000\000\000"]]]]]]],
2039
+ ['video/dv', []],
2040
+ ['video/mj2', []],
2041
+ ['video/mp2t', [[0, 'G', [[188, 'G', [[376, 'G', [[564, 'G', [[752, 'G']]]]]]]]], [4, 'G', [[196, 'G', [[388, 'G', [[580, 'G', [[772, 'G']]]]]]]]]]],
2042
+ ['video/vnd.mpegurl', [[0, '#EXTM4U']]],
2043
+ ['video/x-flic', [[0, "\021\257"], [0, "\022\257"]]],
2044
+ ['video/x-mng', [[0, "\212MNG\r\n\032\n"]]],
2045
+ ['video/x-nsv', [[0, 'NSVf']]],
2046
+ ['video/x-sgi-movie', [[0, 'MOVI']]],
2047
+ ['x-epoc/x-sisx-app', [[0, "z\032 \020"]]],
2048
+ ['application/x-archive', [[0, '<ar>'], [0, '!<arch>']]],
2049
+ ['application/x-riff', [[0, 'RIFF']]],
2050
+ ['application/x-executable', [[0, "\177ELF", [[5, "\001", [[16, "\002\000"]]]]], [0, "\177ELF", [[5, "\002", [[16, "\000\002"]]]]], [0, 'MZ'], [0, "\034R"], [0, "\020\001"], [0, "\021\001"], [0, "\203\001"]]],
2051
+ ['application/x-iff', [[0, 'FORM']]],
2052
+ ['application/x-perl', [[0..256, "\n=pod"], [0..256, "\n=head1 NAME"], [0..256, "\n=head1 DESCRIPTION"]]],
2053
+ ['application/xml', [[0, '<?xml'], [0, '<!--']]],
2054
+ ['audio/basic', [[0, '.snd']]],
2055
+ ['audio/x-mod', [[0, 'MTM'], [0, 'MMD0'], [0, 'MMD1'], [0, 'if', [[110, '@', [[111, "\200"]]]]], [0, 'JN', [[110, '@', [[111, "\200"]]]]], [0, 'MAS_UTrack_V00']]],
2056
+ ['video/x-javafx', [[0, 'FLV']]],
2057
+ ['application/x-mobipocket-ebook', [[60, 'TEXtREAd']]],
2058
+ ['text/x-csrc', [[0, '/*'], [0, '//'], [0, '#include']]],
2059
+ ['text/x-objcsrc', [[0, '#import']]],
2060
+ ['application/mbox', [[0, 'From ']]],
2061
+ ['image/x-tga', [[1, "\001\001"], [1, "\001\t"], [1, "\000\003"], [1, "\000\n"], [1, "\000\v"]]],
2062
+ ['text/x-matlab', [[0, '%']]],
2063
+ ['text/x-matlab', [[0, '##']]],
2064
+ ['text/x-modelica', [[0, '//']]],
2065
+ ['text/x-tex', [[0, '%']]],
2066
+ ]
2067
+ end