sorbet-rails 0.2.0 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (404) hide show
  1. checksums.yaml +4 -4
  2. data/.codecov.yml +4 -0
  3. data/.github/ISSUE_TEMPLATE/bug.md +26 -0
  4. data/.gitignore +5 -0
  5. data/.travis.yml +26 -7
  6. data/CONTRIBUTING.md +135 -0
  7. data/Gemfile +29 -11
  8. data/README.md +40 -7
  9. data/lib/sorbet-rails/custom_finder_methods.rb +1 -1
  10. data/lib/sorbet-rails/model_rbi_formatter.rb +72 -41
  11. data/lib/sorbet-rails/routes_rbi_formatter.rb +6 -14
  12. data/lib/sorbet-rails/tasks/rails_rbi.rake +13 -6
  13. data/rbi/activerecord.rbi +32 -7
  14. data/sorbet-rails.gemspec +2 -4
  15. data/spec/bin/install.sh +11 -0
  16. data/spec/bin/run_all_specs.sh +9 -5
  17. data/spec/bin/run_spec.sh +33 -0
  18. data/spec/bin/{reset_test_data.sh → update_test_data.sh} +2 -1
  19. data/spec/custom_finder_methods_spec.rb +75 -0
  20. data/spec/model_rbi_formatter_spec.rb +8 -6
  21. data/spec/rails_helper.rb +32 -5
  22. data/spec/rake_helper.rb +47 -0
  23. data/spec/rake_rails_rbi_models_spec.rb +64 -0
  24. data/spec/rake_rails_rbi_routes_spec.rb +15 -0
  25. data/spec/support/rails_shared/app/models/wizard.rb +4 -4
  26. data/spec/support/rails_shared/db/migrate/20190620001234_create_wizards.rb +1 -1
  27. data/spec/support/rails_shared/db/migrate/20190620003037_create_wands.rb +1 -1
  28. data/spec/support/rails_shared/db/migrate/20190620003739_create_spell_books.rb +1 -1
  29. data/spec/support/rails_shared/db/migrate/20190622000000_add_more_column_types_to_wands.rb +5 -3
  30. data/spec/support/rails_symlinks/app/controllers +1 -0
  31. data/spec/support/rails_symlinks/app/models +1 -0
  32. data/spec/support/rails_symlinks/config/routes.rb +5 -0
  33. data/spec/support/rails_symlinks/db/migrate +1 -0
  34. data/spec/support/v4.2/.gitignore +17 -0
  35. data/spec/support/v4.2/Gemfile +31 -0
  36. data/spec/support/v4.2/README.rdoc +28 -0
  37. data/spec/support/v4.2/Rakefile +6 -0
  38. data/spec/support/{5.1.7/lib/tasks → v4.2/app/assets/images}/.keep +0 -0
  39. data/spec/support/v4.2/app/assets/stylesheets/application.css +15 -0
  40. data/spec/support/v4.2/app/controllers/application_controller.rb +5 -0
  41. data/spec/support/{5.1.7/log → v4.2/app/controllers/concerns}/.keep +0 -0
  42. data/spec/support/v4.2/app/helpers/application_helper.rb +2 -0
  43. data/spec/support/{5.1.7/test/controllers → v4.2/app/mailers}/.keep +0 -0
  44. data/spec/support/v4.2/app/models +1 -0
  45. data/spec/support/v4.2/app/views/layouts/application.html.erb +13 -0
  46. data/spec/support/{5.1.7 → v4.2}/bin/bundle +0 -0
  47. data/spec/support/v4.2/bin/rails +4 -0
  48. data/spec/support/v4.2/bin/rake +4 -0
  49. data/spec/support/v4.2/bin/setup +29 -0
  50. data/spec/support/v4.2/config.ru +4 -0
  51. data/spec/support/v4.2/config/application.rb +35 -0
  52. data/spec/support/v4.2/config/boot.rb +3 -0
  53. data/spec/support/v4.2/config/database.yml +25 -0
  54. data/spec/support/v4.2/config/environment.rb +5 -0
  55. data/spec/support/v4.2/config/environments/development.rb +28 -0
  56. data/spec/support/v4.2/config/environments/production.rb +67 -0
  57. data/spec/support/v4.2/config/environments/test.rb +42 -0
  58. data/spec/support/{5.1.7 → v4.2}/config/initializers/backtrace_silencers.rb +0 -0
  59. data/spec/support/v4.2/config/initializers/cookies_serializer.rb +3 -0
  60. data/spec/support/{5.1.7 → v4.2}/config/initializers/filter_parameter_logging.rb +0 -0
  61. data/spec/support/{5.1.7 → v4.2}/config/initializers/inflections.rb +0 -0
  62. data/spec/support/{5.1.7 → v4.2}/config/initializers/mime_types.rb +0 -0
  63. data/spec/support/v4.2/config/initializers/session_store.rb +3 -0
  64. data/spec/support/v4.2/config/initializers/to_time_preserves_timezone.rb +10 -0
  65. data/spec/support/v4.2/config/initializers/wrap_parameters.rb +14 -0
  66. data/spec/support/v4.2/config/locales/en.yml +23 -0
  67. data/spec/support/v4.2/config/routes.rb +5 -0
  68. data/spec/support/v4.2/config/secrets.yml +22 -0
  69. data/spec/support/v4.2/db/migrate/20190620001234_create_wizards.rb +12 -0
  70. data/spec/support/v4.2/db/migrate/20190620003037_create_wands.rb +11 -0
  71. data/spec/support/v4.2/db/migrate/20190620003739_create_spell_books.rb +8 -0
  72. data/spec/support/v4.2/db/migrate/20190622000000_add_more_column_types_to_wands.rb +10 -0
  73. data/spec/support/v4.2/db/schema.rb +44 -0
  74. data/spec/support/v4.2/db/seeds.rb +7 -0
  75. data/spec/support/{5.1.7/test/fixtures → v4.2/lib/assets}/.keep +0 -0
  76. data/spec/support/{5.1.7/test/fixtures/files → v4.2/lib/tasks}/.keep +0 -0
  77. data/spec/support/{5.1.7/test/integration → v4.2/log}/.keep +0 -0
  78. data/spec/support/v4.2/public/404.html +67 -0
  79. data/spec/support/v4.2/public/422.html +67 -0
  80. data/spec/support/v4.2/public/500.html +66 -0
  81. data/spec/support/{5.1.7/test/mailers/.keep → v4.2/public/favicon.ico} +0 -0
  82. data/spec/support/v4.2/public/robots.txt +5 -0
  83. data/spec/support/{5.1.7/test/models → v4.2/test/controllers}/.keep +0 -0
  84. data/spec/support/{5.1.7/tmp → v4.2/test/fixtures}/.keep +0 -0
  85. data/spec/support/{5.1.7/vendor → v4.2/test/helpers}/.keep +0 -0
  86. data/spec/support/{5.2.3/lib/tasks → v4.2/test/integration}/.keep +0 -0
  87. data/spec/support/{5.2.3/log → v4.2/test/mailers}/.keep +0 -0
  88. data/spec/support/{5.2.3/storage → v4.2/test/models}/.keep +0 -0
  89. data/spec/support/{5.1.7 → v4.2}/test/test_helper.rb +0 -0
  90. data/spec/support/{5.2.3/test/controllers → v4.2/vendor/assets/stylesheets}/.keep +0 -0
  91. data/spec/support/v5.0/.gitignore +21 -0
  92. data/spec/support/v5.0/Gemfile +37 -0
  93. data/spec/support/{5.1.7 → v5.0}/README.md +0 -0
  94. data/spec/support/{5.1.7 → v5.0}/Rakefile +0 -0
  95. data/spec/support/{5.1.7 → v5.0}/app/channels/application_cable/channel.rb +0 -0
  96. data/spec/support/{5.1.7 → v5.0}/app/channels/application_cable/connection.rb +0 -0
  97. data/spec/support/v5.0/app/controllers +1 -0
  98. data/spec/support/{5.1.7 → v5.0}/app/jobs/application_job.rb +0 -0
  99. data/spec/support/{5.1.7 → v5.0}/app/mailers/application_mailer.rb +0 -0
  100. data/spec/support/v5.0/app/models +1 -0
  101. data/spec/support/{5.1.7 → v5.0}/app/views/layouts/mailer.html.erb +0 -0
  102. data/spec/support/{5.1.7 → v5.0}/app/views/layouts/mailer.text.erb +0 -0
  103. data/spec/support/v5.0/bin/bundle +3 -0
  104. data/spec/support/v5.0/bin/rails +4 -0
  105. data/spec/support/v5.0/bin/rake +4 -0
  106. data/spec/support/v5.0/bin/setup +34 -0
  107. data/spec/support/{5.1.7 → v5.0}/bin/update +0 -0
  108. data/spec/support/{5.1.7 → v5.0}/config.ru +0 -0
  109. data/spec/support/v5.0/config/application.rb +30 -0
  110. data/spec/support/{5.1.7 → v5.0}/config/boot.rb +0 -0
  111. data/spec/support/v5.0/config/cable.yml +9 -0
  112. data/spec/support/v5.0/config/database.yml +25 -0
  113. data/spec/support/{5.1.7 → v5.0}/config/environment.rb +0 -0
  114. data/spec/support/v5.0/config/environments/development.rb +47 -0
  115. data/spec/support/v5.0/config/environments/production.rb +78 -0
  116. data/spec/support/v5.0/config/environments/test.rb +42 -0
  117. data/spec/support/{5.1.7 → v5.0}/config/initializers/application_controller_renderer.rb +0 -0
  118. data/spec/support/{5.2.3 → v5.0}/config/initializers/backtrace_silencers.rb +0 -0
  119. data/spec/support/{5.1.7 → v5.0}/config/initializers/cors.rb +0 -0
  120. data/spec/support/{5.2.3 → v5.0}/config/initializers/filter_parameter_logging.rb +0 -0
  121. data/spec/support/{5.2.3 → v5.0}/config/initializers/inflections.rb +0 -0
  122. data/spec/support/{5.2.3 → v5.0}/config/initializers/mime_types.rb +0 -0
  123. data/spec/support/v5.0/config/initializers/new_framework_defaults.rb +18 -0
  124. data/spec/support/{5.1.7 → v5.0}/config/initializers/wrap_parameters.rb +0 -0
  125. data/spec/support/v5.0/config/locales/en.yml +23 -0
  126. data/spec/support/v5.0/config/puma.rb +47 -0
  127. data/spec/support/v5.0/config/routes.rb +5 -0
  128. data/spec/support/v5.0/config/secrets.yml +22 -0
  129. data/spec/support/v5.0/db/migrate +1 -0
  130. data/spec/support/v5.0/db/schema.rb +45 -0
  131. data/spec/support/{5.1.7 → v5.0}/db/seeds.rb +0 -0
  132. data/spec/support/{5.2.3/test/fixtures → v5.0/lib/tasks}/.keep +0 -0
  133. data/spec/support/{5.2.3/test/fixtures/files → v5.0/log}/.keep +0 -0
  134. data/spec/support/v5.0/public/robots.txt +5 -0
  135. data/spec/support/v5.0/rails_symlinks/app/controllers +1 -0
  136. data/spec/support/v5.0/rails_symlinks/app/models +1 -0
  137. data/spec/support/v5.0/rails_symlinks/config/routes.rb +5 -0
  138. data/spec/support/v5.0/rails_symlinks/db/migrate +1 -0
  139. data/spec/support/{5.2.3/test/integration → v5.0/test/controllers}/.keep +0 -0
  140. data/spec/support/{5.2.3/test/mailers → v5.0/test/fixtures}/.keep +0 -0
  141. data/spec/support/{5.2.3/test/models → v5.0/test/fixtures/files}/.keep +0 -0
  142. data/spec/support/{5.2.3/tmp → v5.0/test/integration}/.keep +0 -0
  143. data/spec/support/{5.2.3/vendor → v5.0/test/mailers}/.keep +0 -0
  144. data/spec/support/v5.0/test/models/.keep +0 -0
  145. data/spec/support/v5.0/test/test_helper.rb +10 -0
  146. data/spec/support/v5.0/tmp/.keep +0 -0
  147. data/spec/support/{5.1.7 → v5.1}/Gemfile +6 -6
  148. data/spec/support/{5.2.3 → v5.1}/README.md +0 -0
  149. data/spec/support/{5.2.3 → v5.1}/Rakefile +0 -0
  150. data/spec/support/{5.2.3 → v5.1}/app/channels/application_cable/channel.rb +0 -0
  151. data/spec/support/{5.2.3 → v5.1}/app/channels/application_cable/connection.rb +0 -0
  152. data/spec/support/v5.1/app/controllers +1 -0
  153. data/spec/support/{5.2.3 → v5.1}/app/jobs/application_job.rb +0 -0
  154. data/spec/support/{5.2.3 → v5.1}/app/mailers/application_mailer.rb +0 -0
  155. data/spec/support/v5.1/app/models +1 -0
  156. data/spec/support/{5.2.3 → v5.1}/app/views/layouts/mailer.html.erb +0 -0
  157. data/spec/support/{5.2.3 → v5.1}/app/views/layouts/mailer.text.erb +0 -0
  158. data/spec/support/v5.1/bin/bundle +3 -0
  159. data/spec/support/{5.1.7 → v5.1}/bin/rails +0 -0
  160. data/spec/support/{5.1.7 → v5.1}/bin/rake +0 -0
  161. data/spec/support/{5.1.7 → v5.1}/bin/setup +0 -0
  162. data/spec/support/{5.1.7 → v5.1}/bin/spring +0 -0
  163. data/spec/support/v5.1/bin/update +29 -0
  164. data/spec/support/{5.2.3 → v5.1}/config.ru +0 -0
  165. data/spec/support/{5.1.7 → v5.1}/config/application.rb +0 -0
  166. data/spec/support/{5.2.3 → v5.1}/config/boot.rb +0 -0
  167. data/spec/support/{5.1.7 → v5.1}/config/cable.yml +0 -0
  168. data/spec/support/{5.1.7 → v5.1}/config/database.yml +0 -0
  169. data/spec/support/{5.2.3 → v5.1}/config/environment.rb +0 -0
  170. data/spec/support/{5.1.7 → v5.1}/config/environments/development.rb +0 -0
  171. data/spec/support/{5.1.7 → v5.1}/config/environments/production.rb +0 -0
  172. data/spec/support/{5.1.7 → v5.1}/config/environments/test.rb +0 -0
  173. data/spec/support/{5.2.3 → v5.1}/config/initializers/application_controller_renderer.rb +0 -0
  174. data/spec/support/v5.1/config/initializers/backtrace_silencers.rb +7 -0
  175. data/spec/support/{5.2.3 → v5.1}/config/initializers/cors.rb +0 -0
  176. data/spec/support/v5.1/config/initializers/filter_parameter_logging.rb +4 -0
  177. data/spec/support/v5.1/config/initializers/inflections.rb +16 -0
  178. data/spec/support/v5.1/config/initializers/mime_types.rb +4 -0
  179. data/spec/support/{5.2.3 → v5.1}/config/initializers/wrap_parameters.rb +0 -0
  180. data/spec/support/{5.1.7 → v5.1}/config/locales/en.yml +0 -0
  181. data/spec/support/{5.1.7 → v5.1}/config/puma.rb +0 -0
  182. data/spec/support/v5.1/config/routes.rb +1 -0
  183. data/spec/support/{5.1.7 → v5.1}/config/secrets.yml +0 -0
  184. data/spec/support/{5.1.7 → v5.1}/config/spring.rb +0 -0
  185. data/spec/support/v5.1/db/migrate +1 -0
  186. data/spec/support/{5.1.7 → v5.1}/db/schema.rb +0 -0
  187. data/spec/support/{5.2.3 → v5.1}/db/seeds.rb +0 -0
  188. data/spec/support/v5.1/lib/tasks/.keep +0 -0
  189. data/spec/support/v5.1/log/.keep +0 -0
  190. data/spec/support/{5.1.7 → v5.1}/public/robots.txt +0 -0
  191. data/spec/support/v5.1/test/controllers/.keep +0 -0
  192. data/spec/support/v5.1/test/fixtures/.keep +0 -0
  193. data/spec/support/v5.1/test/fixtures/files/.keep +0 -0
  194. data/spec/support/v5.1/test/integration/.keep +0 -0
  195. data/spec/support/v5.1/test/mailers/.keep +0 -0
  196. data/spec/support/v5.1/test/models/.keep +0 -0
  197. data/spec/support/v5.1/test/test_helper.rb +10 -0
  198. data/spec/support/v5.1/tmp/.keep +0 -0
  199. data/spec/support/v5.1/vendor/.keep +0 -0
  200. data/spec/support/{5.2.3 → v5.2}/Gemfile +4 -15
  201. data/spec/support/v5.2/README.md +24 -0
  202. data/spec/support/v5.2/Rakefile +6 -0
  203. data/spec/support/v5.2/app/channels/application_cable/channel.rb +4 -0
  204. data/spec/support/v5.2/app/channels/application_cable/connection.rb +4 -0
  205. data/spec/support/v5.2/app/controllers +1 -0
  206. data/spec/support/v5.2/app/jobs/application_job.rb +2 -0
  207. data/spec/support/v5.2/app/mailers/application_mailer.rb +4 -0
  208. data/spec/support/v5.2/app/models +1 -0
  209. data/spec/support/v5.2/app/views/layouts/mailer.html.erb +13 -0
  210. data/spec/support/v5.2/app/views/layouts/mailer.text.erb +1 -0
  211. data/spec/support/{5.2.3 → v5.2}/bin/bundle +0 -0
  212. data/spec/support/{5.2.3 → v5.2}/bin/rails +0 -0
  213. data/spec/support/{5.2.3 → v5.2}/bin/rake +0 -0
  214. data/spec/support/{5.2.3 → v5.2}/bin/setup +0 -0
  215. data/spec/support/{5.2.3 → v5.2}/bin/spring +0 -0
  216. data/spec/support/{5.2.3 → v5.2}/bin/update +0 -0
  217. data/spec/support/v5.2/config.ru +5 -0
  218. data/spec/support/{5.2.3 → v5.2}/config/application.rb +0 -0
  219. data/spec/support/v5.2/config/boot.rb +3 -0
  220. data/spec/support/{5.2.3 → v5.2}/config/cable.yml +0 -0
  221. data/spec/support/{5.2.3 → v5.2}/config/credentials.yml.enc +0 -0
  222. data/spec/support/{5.2.3 → v5.2}/config/database.yml +0 -0
  223. data/spec/support/v5.2/config/environment.rb +5 -0
  224. data/spec/support/{5.2.3 → v5.2}/config/environments/development.rb +1 -1
  225. data/spec/support/{5.2.3 → v5.2}/config/environments/production.rb +0 -0
  226. data/spec/support/{5.2.3 → v5.2}/config/environments/test.rb +0 -0
  227. data/spec/support/v5.2/config/initializers/application_controller_renderer.rb +8 -0
  228. data/spec/support/v5.2/config/initializers/backtrace_silencers.rb +7 -0
  229. data/spec/support/v5.2/config/initializers/cors.rb +16 -0
  230. data/spec/support/v5.2/config/initializers/filter_parameter_logging.rb +4 -0
  231. data/spec/support/v5.2/config/initializers/inflections.rb +16 -0
  232. data/spec/support/v5.2/config/initializers/mime_types.rb +4 -0
  233. data/spec/support/v5.2/config/initializers/wrap_parameters.rb +14 -0
  234. data/spec/support/{5.2.3 → v5.2}/config/locales/en.yml +0 -0
  235. data/spec/support/{5.2.3 → v5.2}/config/puma.rb +0 -0
  236. data/spec/support/v5.2/config/routes.rb +1 -0
  237. data/spec/support/{5.2.3 → v5.2}/config/spring.rb +0 -0
  238. data/spec/support/{5.2.3 → v5.2}/config/storage.yml +0 -0
  239. data/spec/support/v5.2/db/migrate +1 -0
  240. data/spec/support/{5.2.3 → v5.2}/db/schema.rb +4 -4
  241. data/spec/support/v5.2/db/seeds.rb +7 -0
  242. data/spec/support/v5.2/lib/tasks/.keep +0 -0
  243. data/spec/support/v5.2/log/.keep +0 -0
  244. data/spec/support/{5.2.3 → v5.2}/public/robots.txt +0 -0
  245. data/spec/support/v5.2/sorbet/.keep +0 -0
  246. data/spec/support/v5.2/sorbet/config +2 -0
  247. data/spec/support/v5.2/sorbet/rbi/gems/actioncable.rbi +309 -0
  248. data/spec/support/v5.2/sorbet/rbi/gems/actionmailer.rbi +439 -0
  249. data/spec/support/v5.2/sorbet/rbi/gems/actionpack.rbi +3245 -0
  250. data/spec/support/v5.2/sorbet/rbi/gems/actionview.rbi +1129 -0
  251. data/spec/support/v5.2/sorbet/rbi/gems/activejob.rbi +281 -0
  252. data/spec/support/v5.2/sorbet/rbi/gems/activemodel.rbi +740 -0
  253. data/spec/support/v5.2/sorbet/rbi/gems/activerecord.rbi +3996 -0
  254. data/spec/support/v5.2/sorbet/rbi/gems/activestorage.rbi +173 -0
  255. data/spec/support/v5.2/sorbet/rbi/gems/activesupport.rbi +2309 -0
  256. data/spec/support/v5.2/sorbet/rbi/gems/arel.rbi +1248 -0
  257. data/spec/support/v5.2/sorbet/rbi/gems/byebug.rbi +1039 -0
  258. data/spec/support/v5.2/sorbet/rbi/gems/concurrent-ruby.rbi +1583 -0
  259. data/spec/support/v5.2/sorbet/rbi/gems/crass.rbi +92 -0
  260. data/spec/support/v5.2/sorbet/rbi/gems/erubi.rbi +26 -0
  261. data/spec/support/v5.2/sorbet/rbi/gems/globalid.rbi +98 -0
  262. data/spec/support/v5.2/sorbet/rbi/gems/i18n.rbi +191 -0
  263. data/spec/support/v5.2/sorbet/rbi/gems/loofah.rbi +129 -0
  264. data/spec/support/v5.2/sorbet/rbi/gems/mail.rbi +1091 -0
  265. data/spec/support/v5.2/sorbet/rbi/gems/marcel.rbi +12 -0
  266. data/spec/support/v5.2/sorbet/rbi/gems/method_source.rbi +63 -0
  267. data/spec/support/v5.2/sorbet/rbi/gems/mini_mime.rbi +45 -0
  268. data/spec/support/v5.2/sorbet/rbi/gems/minitest.rbi +276 -0
  269. data/spec/support/v5.2/sorbet/rbi/gems/nokogiri.rbi +1006 -0
  270. data/spec/support/v5.2/sorbet/rbi/gems/puma.rbi +570 -0
  271. data/spec/support/v5.2/sorbet/rbi/gems/rack-test.rbi +161 -0
  272. data/spec/support/v5.2/sorbet/rbi/gems/rack.rbi +534 -0
  273. data/spec/support/v5.2/sorbet/rbi/gems/rails-dom-testing.rbi +67 -0
  274. data/spec/support/v5.2/sorbet/rbi/gems/rails-html-sanitizer.rbi +90 -0
  275. data/spec/support/v5.2/sorbet/rbi/gems/railties.rbi +722 -0
  276. data/spec/support/v5.2/sorbet/rbi/gems/rake.rbi +251 -0
  277. data/spec/support/v5.2/sorbet/rbi/gems/sqlite3.rbi +353 -0
  278. data/spec/support/v5.2/sorbet/rbi/gems/thor.rbi +449 -0
  279. data/spec/support/v5.2/sorbet/rbi/gems/thread_safe.rbi +81 -0
  280. data/spec/support/v5.2/sorbet/rbi/gems/tzinfo.rbi +407 -0
  281. data/spec/support/v5.2/sorbet/rbi/hidden-definitions/errors.txt +10040 -0
  282. data/spec/support/v5.2/sorbet/rbi/hidden-definitions/hidden.rbi +24386 -0
  283. data/spec/support/v5.2/sorbet/rbi/sorbet-typed/lib/actionmailer/all/actionmailer.rbi +13 -0
  284. data/spec/support/v5.2/sorbet/rbi/sorbet-typed/lib/actionpack/all/actionpack.rbi +13 -0
  285. data/spec/support/v5.2/sorbet/rbi/sorbet-typed/lib/activerecord/all/activerecord.rbi +51 -0
  286. data/spec/support/v5.2/sorbet/rbi/sorbet-typed/lib/activerecord/~>5.2/activerecord.rbi +10 -0
  287. data/spec/support/v5.2/sorbet/rbi/sorbet-typed/lib/activesupport/all/activesupport.rbi +107 -0
  288. data/spec/support/v5.2/sorbet/rbi/sorbet-typed/lib/bundler/all/bundler.rbi +8547 -0
  289. data/spec/support/v5.2/sorbet/rbi/sorbet-typed/lib/railties/all/railties.rbi +22 -0
  290. data/spec/support/v5.2/sorbet/rbi/sorbet-typed/lib/ruby/all/open3.rbi +111 -0
  291. data/spec/support/v5.2/sorbet/rbi/sorbet-typed/lib/ruby/all/resolv.rbi +543 -0
  292. data/spec/support/v5.2/sorbet/rbi/todo.rbi +11 -0
  293. data/spec/support/v5.2/storage/.keep +0 -0
  294. data/spec/support/v5.2/test/controllers/.keep +0 -0
  295. data/spec/support/v5.2/test/fixtures/.keep +0 -0
  296. data/spec/support/v5.2/test/fixtures/files/.keep +0 -0
  297. data/spec/support/v5.2/test/integration/.keep +0 -0
  298. data/spec/support/v5.2/test/mailers/.keep +0 -0
  299. data/spec/support/v5.2/test/models/.keep +0 -0
  300. data/spec/support/{5.2.3 → v5.2}/test/test_helper.rb +0 -0
  301. data/spec/support/v5.2/tmp/.keep +0 -0
  302. data/spec/support/v5.2/vendor/.keep +0 -0
  303. data/spec/support/v6.0/.gitignore +26 -0
  304. data/spec/support/v6.0/Gemfile +35 -0
  305. data/spec/support/v6.0/README.md +24 -0
  306. data/spec/support/v6.0/Rakefile +6 -0
  307. data/spec/support/v6.0/app/channels/application_cable/channel.rb +4 -0
  308. data/spec/support/v6.0/app/channels/application_cable/connection.rb +4 -0
  309. data/spec/support/v6.0/app/controllers +1 -0
  310. data/spec/support/v6.0/app/jobs/application_job.rb +7 -0
  311. data/spec/support/v6.0/app/mailers/application_mailer.rb +4 -0
  312. data/spec/support/v6.0/app/models +1 -0
  313. data/spec/support/v6.0/app/views/layouts/mailer.html.erb +13 -0
  314. data/spec/support/v6.0/app/views/layouts/mailer.text.erb +1 -0
  315. data/spec/support/v6.0/bin/bundle +105 -0
  316. data/spec/support/v6.0/bin/rails +4 -0
  317. data/spec/support/v6.0/bin/rake +4 -0
  318. data/spec/support/v6.0/bin/setup +33 -0
  319. data/spec/support/v6.0/config.ru +5 -0
  320. data/spec/support/v6.0/config/application.rb +37 -0
  321. data/spec/support/v6.0/config/boot.rb +3 -0
  322. data/spec/support/v6.0/config/cable.yml +10 -0
  323. data/spec/support/v6.0/config/credentials.yml.enc +1 -0
  324. data/spec/support/v6.0/config/database.yml +25 -0
  325. data/spec/support/v6.0/config/environment.rb +5 -0
  326. data/spec/support/v6.0/config/environments/development.rb +52 -0
  327. data/spec/support/v6.0/config/environments/production.rb +105 -0
  328. data/spec/support/v6.0/config/environments/test.rb +48 -0
  329. data/spec/support/v6.0/config/initializers/application_controller_renderer.rb +8 -0
  330. data/spec/support/v6.0/config/initializers/backtrace_silencers.rb +7 -0
  331. data/spec/support/v6.0/config/initializers/cors.rb +16 -0
  332. data/spec/support/v6.0/config/initializers/filter_parameter_logging.rb +4 -0
  333. data/spec/support/v6.0/config/initializers/inflections.rb +16 -0
  334. data/spec/support/v6.0/config/initializers/mime_types.rb +4 -0
  335. data/spec/support/v6.0/config/initializers/wrap_parameters.rb +14 -0
  336. data/spec/support/v6.0/config/locales/en.yml +33 -0
  337. data/spec/support/v6.0/config/puma.rb +35 -0
  338. data/spec/support/v6.0/config/routes.rb +5 -0
  339. data/spec/support/v6.0/config/storage.yml +34 -0
  340. data/spec/support/v6.0/db/migrate +1 -0
  341. data/spec/support/v6.0/db/schema.rb +47 -0
  342. data/spec/support/v6.0/db/seeds.rb +7 -0
  343. data/spec/support/v6.0/lib/tasks/.keep +0 -0
  344. data/spec/support/v6.0/log/.keep +0 -0
  345. data/spec/support/v6.0/public/robots.txt +1 -0
  346. data/spec/support/v6.0/storage/.keep +0 -0
  347. data/spec/support/v6.0/test/channels/application_cable/connection_test.rb +11 -0
  348. data/spec/support/v6.0/test/controllers/.keep +0 -0
  349. data/spec/support/v6.0/test/fixtures/.keep +0 -0
  350. data/spec/support/v6.0/test/fixtures/files/.keep +0 -0
  351. data/spec/support/v6.0/test/integration/.keep +0 -0
  352. data/spec/support/v6.0/test/mailers/.keep +0 -0
  353. data/spec/support/v6.0/test/models/.keep +0 -0
  354. data/spec/support/v6.0/test/test_helper.rb +13 -0
  355. data/spec/support/v6.0/tmp/.keep +0 -0
  356. data/spec/support/v6.0/vendor/.keep +0 -0
  357. data/spec/test_data/{5.2.3 → v4.2}/expected_no_routes.rbi +1 -1
  358. data/spec/test_data/v4.2/expected_potion.rbi +113 -0
  359. data/spec/test_data/{5.1.7 → v4.2}/expected_routes.rbi +0 -0
  360. data/spec/test_data/v4.2/expected_spell_book.rbi +146 -0
  361. data/spec/test_data/v4.2/expected_wand.rbi +278 -0
  362. data/spec/test_data/v4.2/expected_wizard.rbi +239 -0
  363. data/spec/test_data/v4.2/expected_wizard_wo_spellbook.rbi +239 -0
  364. data/spec/test_data/{5.1.7 → v5.0}/expected_no_routes.rbi +1 -1
  365. data/spec/test_data/{5.2.3 → v5.0}/expected_potion.rbi +58 -62
  366. data/spec/test_data/v5.0/expected_routes.rbi +13 -0
  367. data/spec/test_data/v5.0/expected_spell_book.rbi +155 -0
  368. data/spec/test_data/{5.1.7 → v5.0}/expected_wand.rbi +125 -72
  369. data/spec/test_data/v5.0/expected_wizard.rbi +248 -0
  370. data/spec/test_data/v5.0/expected_wizard_wo_spellbook.rbi +248 -0
  371. data/spec/test_data/v5.1/expected_no_routes.rbi +11 -0
  372. data/spec/test_data/{5.1.7 → v5.1}/expected_potion.rbi +62 -60
  373. data/spec/test_data/v5.1/expected_routes.rbi +13 -0
  374. data/spec/test_data/v5.1/expected_spell_book.rbi +161 -0
  375. data/spec/test_data/v5.1/expected_wand.rbi +293 -0
  376. data/spec/test_data/v5.1/expected_wizard.rbi +254 -0
  377. data/spec/test_data/v5.1/expected_wizard_wo_spellbook.rbi +254 -0
  378. data/spec/test_data/v5.2/expected_no_routes.rbi +11 -0
  379. data/spec/test_data/v5.2/expected_potion.rbi +128 -0
  380. data/spec/test_data/{5.2.3 → v5.2}/expected_routes.rbi +0 -0
  381. data/spec/test_data/v5.2/expected_spell_book.rbi +161 -0
  382. data/spec/test_data/{5.2.3 → v5.2}/expected_wand.rbi +135 -70
  383. data/spec/test_data/v5.2/expected_wizard.rbi +254 -0
  384. data/spec/test_data/v5.2/expected_wizard_wo_spellbook.rbi +254 -0
  385. data/spec/test_data/v6.0/expected_no_routes.rbi +11 -0
  386. data/spec/test_data/v6.0/expected_potion.rbi +140 -0
  387. data/spec/test_data/v6.0/expected_routes.rbi +91 -0
  388. data/spec/test_data/v6.0/expected_spell_book.rbi +173 -0
  389. data/spec/test_data/v6.0/expected_wand.rbi +335 -0
  390. data/spec/test_data/v6.0/expected_wizard.rbi +278 -0
  391. data/spec/test_data/v6.0/expected_wizard_wo_spellbook.rbi +278 -0
  392. metadata +752 -281
  393. data/spec/support/5.1.7/app/controllers +0 -1
  394. data/spec/support/5.1.7/app/models +0 -1
  395. data/spec/support/5.1.7/config/routes.rb +0 -1
  396. data/spec/support/5.1.7/db/migrate +0 -1
  397. data/spec/support/5.2.3/app/controllers +0 -1
  398. data/spec/support/5.2.3/app/models +0 -1
  399. data/spec/support/5.2.3/config/routes.rb +0 -1
  400. data/spec/support/5.2.3/db/migrate +0 -1
  401. data/spec/test_data/5.1.7/expected_wizard.rbi +0 -207
  402. data/spec/test_data/5.1.7/expected_wizard_wo_spellbook.rbi +0 -207
  403. data/spec/test_data/5.2.3/expected_wizard.rbi +0 -207
  404. data/spec/test_data/5.2.3/expected_wizard_wo_spellbook.rbi +0 -207
@@ -0,0 +1,173 @@
1
+ # This file is autogenerated. Do not edit it by hand. Regenerate it with:
2
+ # srb rbi gems
3
+
4
+ # typed: strong
5
+ #
6
+ # If you would like to make changes to this file, great! Please create the gem's shim here:
7
+ #
8
+ # https://github.com/sorbet/sorbet-typed/new/master?filename=lib/activestorage/all/activestorage.rbi
9
+ #
10
+ # activestorage-5.2.3
11
+ module ActiveStorage
12
+ def analyzers; end
13
+ def analyzers=(obj); end
14
+ def binary_content_type; end
15
+ def binary_content_type=(obj); end
16
+ def content_types_allowed_inline; end
17
+ def content_types_allowed_inline=(obj); end
18
+ def content_types_to_serve_as_binary; end
19
+ def content_types_to_serve_as_binary=(obj); end
20
+ def logger; end
21
+ def logger=(obj); end
22
+ def paths; end
23
+ def paths=(obj); end
24
+ def previewers; end
25
+ def previewers=(obj); end
26
+ def queue; end
27
+ def queue=(obj); end
28
+ def self.analyzers; end
29
+ def self.analyzers=(obj); end
30
+ def self.binary_content_type; end
31
+ def self.binary_content_type=(obj); end
32
+ def self.content_types_allowed_inline; end
33
+ def self.content_types_allowed_inline=(obj); end
34
+ def self.content_types_to_serve_as_binary; end
35
+ def self.content_types_to_serve_as_binary=(obj); end
36
+ def self.gem_version; end
37
+ def self.logger; end
38
+ def self.logger=(obj); end
39
+ def self.paths; end
40
+ def self.paths=(obj); end
41
+ def self.previewers; end
42
+ def self.previewers=(obj); end
43
+ def self.queue; end
44
+ def self.queue=(obj); end
45
+ def self.railtie_helpers_paths; end
46
+ def self.railtie_namespace; end
47
+ def self.railtie_routes_url_helpers(include_path_helpers = nil); end
48
+ def self.table_name_prefix; end
49
+ def self.use_relative_model_naming?; end
50
+ def self.variable_content_types; end
51
+ def self.variable_content_types=(obj); end
52
+ def self.verifier; end
53
+ def self.verifier=(obj); end
54
+ def self.version; end
55
+ def variable_content_types; end
56
+ def variable_content_types=(obj); end
57
+ def verifier; end
58
+ def verifier=(obj); end
59
+ extend ActiveSupport::Autoload
60
+ end
61
+ module ActiveStorage::VERSION
62
+ end
63
+ class ActiveStorage::InvariableError < StandardError
64
+ end
65
+ class ActiveStorage::UnpreviewableError < StandardError
66
+ end
67
+ class ActiveStorage::UnrepresentableError < StandardError
68
+ end
69
+ module ActiveStorage::Downloading
70
+ def download_blob_to(file); end
71
+ def download_blob_to_tempfile; end
72
+ def open_tempfile_for_blob; end
73
+ def tempdir; end
74
+ end
75
+ class ActiveStorage::Previewer
76
+ def blob; end
77
+ def capture(*argv, to:); end
78
+ def draw(*argv); end
79
+ def initialize(blob); end
80
+ def logger; end
81
+ def open_tempfile_for_drawing; end
82
+ def preview; end
83
+ def self.accept?(blob); end
84
+ include ActiveStorage::Downloading
85
+ end
86
+ class ActiveStorage::Previewer::PopplerPDFPreviewer < ActiveStorage::Previewer
87
+ def draw_first_page_from(file, &block); end
88
+ def preview; end
89
+ def self.accept?(blob); end
90
+ def self.pdftoppm_exists?; end
91
+ def self.pdftoppm_path; end
92
+ end
93
+ class ActiveStorage::Previewer::MuPDFPreviewer < ActiveStorage::Previewer
94
+ def draw_first_page_from(file, &block); end
95
+ def preview; end
96
+ def self.accept?(blob); end
97
+ def self.mutool_exists?; end
98
+ def self.mutool_path; end
99
+ end
100
+ class ActiveStorage::Previewer::VideoPreviewer < ActiveStorage::Previewer
101
+ def draw_relevant_frame_from(file, &block); end
102
+ def ffmpeg_path; end
103
+ def preview; end
104
+ def self.accept?(blob); end
105
+ end
106
+ class ActiveStorage::Analyzer
107
+ def blob; end
108
+ def initialize(blob); end
109
+ def logger; end
110
+ def metadata; end
111
+ def self.accept?(blob); end
112
+ include ActiveStorage::Downloading
113
+ end
114
+ class ActiveStorage::Analyzer::ImageAnalyzer < ActiveStorage::Analyzer
115
+ def metadata; end
116
+ def read_image; end
117
+ def rotated_image?(image); end
118
+ def self.accept?(blob); end
119
+ end
120
+ class ActiveStorage::Analyzer::VideoAnalyzer < ActiveStorage::Analyzer
121
+ def angle; end
122
+ def computed_height; end
123
+ def display_aspect_ratio; end
124
+ def display_height_scale; end
125
+ def duration; end
126
+ def encoded_height; end
127
+ def encoded_width; end
128
+ def ffprobe_path; end
129
+ def height; end
130
+ def metadata; end
131
+ def probe; end
132
+ def probe_from(file); end
133
+ def rotated?; end
134
+ def self.accept?(blob); end
135
+ def streams; end
136
+ def tags; end
137
+ def video_stream; end
138
+ def width; end
139
+ end
140
+ class ActiveStorage::Engine < Rails::Engine
141
+ end
142
+ class ActiveStorage::Attached::One < ActiveStorage::Attached
143
+ def attach(attachable); end
144
+ def attached?; end
145
+ def attachment; end
146
+ def build_attachment(blob:); end
147
+ def detach; end
148
+ def method_missing(method, *args, &block); end
149
+ def purge; end
150
+ def purge_later; end
151
+ def respond_to_missing?(name, include_private = nil); end
152
+ def transaction(*args, &block); end
153
+ def write_attachment(attachment); end
154
+ end
155
+ class ActiveStorage::Attached::Many < ActiveStorage::Attached
156
+ def attach(*attachables); end
157
+ def attached?; end
158
+ def attachments; end
159
+ def detach; end
160
+ def method_missing(method, *args, &block); end
161
+ def respond_to_missing?(name, include_private = nil); end
162
+ end
163
+ module ActiveStorage::Attached::Macros
164
+ def has_many_attached(name, dependent: nil); end
165
+ def has_one_attached(name, dependent: nil); end
166
+ end
167
+ class ActiveStorage::Attached
168
+ def create_blob_from(attachable); end
169
+ def dependent; end
170
+ def initialize(name, record, dependent:); end
171
+ def name; end
172
+ def record; end
173
+ end
@@ -0,0 +1,2309 @@
1
+ # This file is autogenerated. Do not edit it by hand. Regenerate it with:
2
+ # srb rbi gems
3
+
4
+ # typed: true
5
+ #
6
+ # If you would like to make changes to this file, great! Please create the gem's shim here:
7
+ #
8
+ # https://github.com/sorbet/sorbet-typed/new/master?filename=lib/activesupport/all/activesupport.rbi
9
+ #
10
+ # activesupport-5.2.3
11
+ class Array
12
+ def append(*arg0); end
13
+ def as_json(options = nil); end
14
+ def blank?; end
15
+ def deep_dup; end
16
+ def extract_options!; end
17
+ def fifth; end
18
+ def forty_two; end
19
+ def fourth; end
20
+ def from(position); end
21
+ def in_groups(number, fill_with = nil); end
22
+ def in_groups_of(number, fill_with = nil); end
23
+ def inquiry; end
24
+ def prepend(*arg0); end
25
+ def second; end
26
+ def second_to_last; end
27
+ def self.[](*arg0); end
28
+ def split(value = nil); end
29
+ def third; end
30
+ def third_to_last; end
31
+ def to(position); end
32
+ def to_default_s; end
33
+ def to_formatted_s(format = nil); end
34
+ def to_param; end
35
+ def to_query(key); end
36
+ def to_sentence(options = nil); end
37
+ def to_xml(options = nil); end
38
+ def without(*elements); end
39
+ end
40
+ class Regexp
41
+ def as_json(options = nil); end
42
+ def multiline?; end
43
+ end
44
+ class Hash
45
+ def _deep_transform_keys_in_object!(object, &block); end
46
+ def _deep_transform_keys_in_object(object, &block); end
47
+ def as_json(options = nil); end
48
+ def assert_valid_keys(*valid_keys); end
49
+ def blank?; end
50
+ def deep_dup; end
51
+ def deep_merge!(other_hash, &block); end
52
+ def deep_merge(other_hash, &block); end
53
+ def deep_stringify_keys!; end
54
+ def deep_stringify_keys; end
55
+ def deep_symbolize_keys!; end
56
+ def deep_symbolize_keys; end
57
+ def deep_transform_keys!(&block); end
58
+ def deep_transform_keys(&block); end
59
+ def except!(*keys); end
60
+ def except(*keys); end
61
+ def extract!(*keys); end
62
+ def extractable_options?; end
63
+ def nested_under_indifferent_access; end
64
+ def reverse_merge!(other_hash); end
65
+ def reverse_merge(other_hash); end
66
+ def reverse_update(other_hash); end
67
+ def self.[](*arg0); end
68
+ def self.try_convert(arg0); end
69
+ def slice!(*keys); end
70
+ def slice(*keys); end
71
+ def stringify_keys!; end
72
+ def stringify_keys; end
73
+ def symbolize_keys!; end
74
+ def symbolize_keys; end
75
+ def to_options!; end
76
+ def to_options; end
77
+ def to_param(namespace = nil); end
78
+ def to_query(namespace = nil); end
79
+ def to_xml(options = nil); end
80
+ def transform_keys!; end
81
+ def transform_keys; end
82
+ def with_defaults!(other_hash); end
83
+ def with_defaults(other_hash); end
84
+ def with_indifferent_access; end
85
+ end
86
+ module ActiveSupport
87
+ def parse_json_times; end
88
+ def parse_json_times=(obj); end
89
+ def self.eager_load!; end
90
+ def self.escape_html_entities_in_json(*args, &block); end
91
+ def self.escape_html_entities_in_json=(arg); end
92
+ def self.gem_version; end
93
+ def self.json_encoder(*args, &block); end
94
+ def self.json_encoder=(arg); end
95
+ def self.parse_json_times; end
96
+ def self.parse_json_times=(obj); end
97
+ def self.test_order; end
98
+ def self.test_order=(obj); end
99
+ def self.time_precision(*args, &block); end
100
+ def self.time_precision=(arg); end
101
+ def self.to_time_preserves_timezone; end
102
+ def self.to_time_preserves_timezone=(value); end
103
+ def self.use_standard_json_time_format(*args, &block); end
104
+ def self.use_standard_json_time_format=(arg); end
105
+ def self.version; end
106
+ def test_order; end
107
+ def test_order=(obj); end
108
+ extend ActiveSupport::Autoload
109
+ extend ActiveSupport::LazyLoadHooks
110
+ end
111
+ module ActiveSupport::LazyLoadHooks
112
+ def execute_hook(name, base, options, block); end
113
+ def on_load(name, options = nil, &block); end
114
+ def run_load_hooks(name, base = nil); end
115
+ def self.extended(base); end
116
+ def with_execution_control(name, block, once); end
117
+ end
118
+ module Kernel
119
+ def class_eval(*args, &block); end
120
+ def concern(topic, &module_definition); end
121
+ def enable_warnings; end
122
+ def self.concern(topic, &module_definition); end
123
+ def self.enable_warnings; end
124
+ def self.silence_warnings; end
125
+ def self.suppress(*exception_classes); end
126
+ def self.with_warnings(flag); end
127
+ def silence_warnings; end
128
+ def suppress(*exception_classes); end
129
+ def with_warnings(flag); end
130
+ end
131
+ class Module
132
+ def alias_attribute(new_name, old_name); end
133
+ def anonymous?; end
134
+ def attr_internal(*attrs); end
135
+ def attr_internal_accessor(*attrs); end
136
+ def attr_internal_define(attr_name, type); end
137
+ def attr_internal_ivar_name(attr); end
138
+ def attr_internal_reader(*attrs); end
139
+ def attr_internal_writer(*attrs); end
140
+ def cattr_accessor(*syms, instance_reader: nil, instance_writer: nil, instance_accessor: nil, default: nil, &blk); end
141
+ def cattr_reader(*syms, instance_reader: nil, instance_accessor: nil, default: nil); end
142
+ def cattr_writer(*syms, instance_writer: nil, instance_accessor: nil, default: nil); end
143
+ def delegate(*methods, to: nil, prefix: nil, allow_nil: nil); end
144
+ def delegate_missing_to(target); end
145
+ def deprecate(*method_names); end
146
+ def mattr_accessor(*syms, instance_reader: nil, instance_writer: nil, instance_accessor: nil, default: nil, &blk); end
147
+ def mattr_reader(*syms, instance_reader: nil, instance_accessor: nil, default: nil); end
148
+ def mattr_writer(*syms, instance_writer: nil, instance_accessor: nil, default: nil); end
149
+ def method_visibility(method); end
150
+ def parent; end
151
+ def parent_name; end
152
+ def parents; end
153
+ def reachable?(*args, &block); end
154
+ def reachable_with_deprecation?(*args, &block); end
155
+ def reachable_without_deprecation?; end
156
+ def redefine_method(method, &block); end
157
+ def redefine_singleton_method(method, &block); end
158
+ def remove_possible_method(method); end
159
+ def remove_possible_singleton_method(method); end
160
+ def self.attr_internal_naming_format; end
161
+ def self.attr_internal_naming_format=(arg0); end
162
+ def silence_redefinition_of_method(method); end
163
+ def thread_cattr_accessor(*syms); end
164
+ def thread_cattr_reader(*syms); end
165
+ def thread_cattr_writer(*syms); end
166
+ def thread_mattr_accessor(*syms); end
167
+ def thread_mattr_reader(*syms); end
168
+ def thread_mattr_writer(*syms); end
169
+ include ActiveSupport::Dependencies::ModuleConstMissing
170
+ include Module::Concerning
171
+ end
172
+ class Module::DelegationError < NoMethodError
173
+ end
174
+ class ActiveSupport::Deprecation
175
+ def self.allocate; end
176
+ def self.behavior(*args, &block); end
177
+ def self.behavior=(arg); end
178
+ def self.debug(*args, &block); end
179
+ def self.debug=(arg); end
180
+ def self.deprecate_methods(*args, &block); end
181
+ def self.deprecation_horizon(*args, &block); end
182
+ def self.deprecation_horizon=(arg); end
183
+ def self.deprecation_warning(deprecated_method_name, message = nil, caller_backtrace = nil); end
184
+ def self.gem_name(*args, &block); end
185
+ def self.gem_name=(arg); end
186
+ def self.initialize(*args, &block); end
187
+ def self.instance; end
188
+ def self.new(*arg0); end
189
+ def self.silence(*args, &block); end
190
+ def self.silenced(*args, &block); end
191
+ def self.silenced=(arg); end
192
+ def self.warn(message = nil, callstack = nil); end
193
+ extend ActiveSupport::Deprecation::InstanceDelegator::ClassMethods
194
+ extend Singleton::SingletonClassMethods
195
+ include ActiveSupport::Deprecation::Behavior
196
+ include ActiveSupport::Deprecation::InstanceDelegator
197
+ include ActiveSupport::Deprecation::MethodWrapper
198
+ include ActiveSupport::Deprecation::Reporting
199
+ include Singleton
200
+ end
201
+ module ActiveSupport::Deprecation::InstanceDelegator
202
+ def self.included(base); end
203
+ end
204
+ module ActiveSupport::Deprecation::InstanceDelegator::ClassMethods
205
+ def include(included_module); end
206
+ def method_added(method_name); end
207
+ end
208
+ module ActiveSupport::Deprecation::InstanceDelegator::OverrideDelegators
209
+ def deprecation_warning(deprecated_method_name, message = nil, caller_backtrace = nil); end
210
+ def warn(message = nil, callstack = nil); end
211
+ end
212
+ module ActiveSupport::Notifications
213
+ def self.instrument(name, payload = nil); end
214
+ def self.instrumenter; end
215
+ def self.notifier; end
216
+ def self.notifier=(arg0); end
217
+ def self.publish(name, *args); end
218
+ def self.subscribe(*args, &block); end
219
+ def self.subscribed(callback, *args, &block); end
220
+ def self.unsubscribe(subscriber_or_name); end
221
+ end
222
+ class ActiveSupport::Notifications::Instrumenter
223
+ def finish(name, payload); end
224
+ def finish_with_state(listeners_state, name, payload); end
225
+ def id; end
226
+ def initialize(notifier); end
227
+ def instrument(name, payload = nil); end
228
+ def start(name, payload); end
229
+ def unique_id; end
230
+ end
231
+ class ActiveSupport::Notifications::Event
232
+ def <<(event); end
233
+ def children; end
234
+ def duration; end
235
+ def end; end
236
+ def end=(arg0); end
237
+ def initialize(name, start, ending, transaction_id, payload); end
238
+ def name; end
239
+ def parent_of?(event); end
240
+ def payload; end
241
+ def time; end
242
+ def transaction_id; end
243
+ end
244
+ class ActiveSupport::Notifications::Fanout
245
+ def finish(name, id, payload, listeners = nil); end
246
+ def initialize; end
247
+ def listeners_for(name); end
248
+ def listening?(name); end
249
+ def lock; end
250
+ def locked?; end
251
+ def publish(name, *args); end
252
+ def start(name, id, payload); end
253
+ def subscribe(pattern = nil, block = nil); end
254
+ def synchronize(&block); end
255
+ def try_lock; end
256
+ def unlock; end
257
+ def unsubscribe(subscriber_or_name); end
258
+ def wait; end
259
+ include Mutex_m
260
+ end
261
+ module ActiveSupport::Notifications::Fanout::Subscribers
262
+ def self.new(pattern, listener); end
263
+ end
264
+ class ActiveSupport::Notifications::Fanout::Subscribers::Evented
265
+ def finish(name, id, payload); end
266
+ def initialize(pattern, delegate); end
267
+ def matches?(name); end
268
+ def publish(name, *args); end
269
+ def start(name, id, payload); end
270
+ def subscribed_to?(name); end
271
+ end
272
+ class ActiveSupport::Notifications::Fanout::Subscribers::Timed < ActiveSupport::Notifications::Fanout::Subscribers::Evented
273
+ def finish(name, id, payload); end
274
+ def publish(name, *args); end
275
+ def start(name, id, payload); end
276
+ end
277
+ class ActiveSupport::Notifications::Fanout::Subscribers::AllMessages
278
+ def finish(name, id, payload); end
279
+ def initialize(delegate); end
280
+ def matches?(arg0); end
281
+ def publish(name, *args); end
282
+ def start(name, id, payload); end
283
+ def subscribed_to?(name); end
284
+ end
285
+ module ActiveSupport::PerThreadRegistry
286
+ def instance; end
287
+ def method_missing(name, *args, &block); end
288
+ def self.extended(object); end
289
+ end
290
+ class ActiveSupport::Notifications::InstrumentationRegistry
291
+ def initialize; end
292
+ def instrumenter_for(notifier); end
293
+ extend ActiveSupport::PerThreadRegistry
294
+ end
295
+ class ActiveSupport::DeprecationException < StandardError
296
+ end
297
+ module ActiveSupport::Deprecation::Behavior
298
+ def arity_coerce(behavior); end
299
+ def behavior; end
300
+ def behavior=(behavior); end
301
+ def debug; end
302
+ def debug=(arg0); end
303
+ end
304
+ module ActiveSupport::Deprecation::Reporting
305
+ def _extract_callstack(callstack); end
306
+ def deprecated_method_warning(method_name, message = nil); end
307
+ def deprecation_caller_message(callstack); end
308
+ def deprecation_message(callstack, message = nil); end
309
+ def deprecation_warning(deprecated_method_name, message = nil, caller_backtrace = nil); end
310
+ def extract_callstack(callstack); end
311
+ def gem_name; end
312
+ def gem_name=(arg0); end
313
+ def ignored_callstack(path); end
314
+ def silence; end
315
+ def silenced; end
316
+ def silenced=(arg0); end
317
+ def warn(message = nil, callstack = nil); end
318
+ end
319
+ module ActiveSupport::Deprecation::DeprecatedConstantAccessor
320
+ def self.included(base); end
321
+ end
322
+ module ActiveSupport::Deprecation::MethodWrapper
323
+ def deprecate_methods(target_module, *method_names); end
324
+ end
325
+ class ActiveSupport::Deprecation::DeprecationProxy
326
+ def inspect; end
327
+ def method_missing(called, *args, &block); end
328
+ def self.new(*args, &block); end
329
+ end
330
+ class ActiveSupport::Deprecation::DeprecatedObjectProxy < ActiveSupport::Deprecation::DeprecationProxy
331
+ def initialize(object, message, deprecator = nil); end
332
+ def target; end
333
+ def warn(callstack, called, args); end
334
+ end
335
+ class ActiveSupport::Deprecation::DeprecatedInstanceVariableProxy < ActiveSupport::Deprecation::DeprecationProxy
336
+ def initialize(instance, method, var = nil, deprecator = nil); end
337
+ def target; end
338
+ def warn(callstack, called, args); end
339
+ end
340
+ class ActiveSupport::Deprecation::DeprecatedConstantProxy < ActiveSupport::Deprecation::DeprecationProxy
341
+ def class; end
342
+ def initialize(old_const, new_const, deprecator = nil, message: nil); end
343
+ def target; end
344
+ def warn(callstack, called, args); end
345
+ end
346
+ module ActiveSupport::Inflector
347
+ def apply_inflections(word, rules, locale = nil); end
348
+ def camelize(term, uppercase_first_letter = nil); end
349
+ def classify(table_name); end
350
+ def const_regexp(camel_cased_word); end
351
+ def constantize(camel_cased_word); end
352
+ def dasherize(underscored_word); end
353
+ def deconstantize(path); end
354
+ def demodulize(path); end
355
+ def foreign_key(class_name, separate_class_name_and_id_with_underscore = nil); end
356
+ def humanize(lower_case_and_underscored_word, capitalize: nil, keep_id_suffix: nil); end
357
+ def inflections(locale = nil); end
358
+ def ordinal(number); end
359
+ def ordinalize(number); end
360
+ def parameterize(string, separator: nil, preserve_case: nil); end
361
+ def pluralize(word, locale = nil); end
362
+ def safe_constantize(camel_cased_word); end
363
+ def singularize(word, locale = nil); end
364
+ def tableize(class_name); end
365
+ def titleize(word, keep_id_suffix: nil); end
366
+ def transliterate(string, replacement = nil); end
367
+ def underscore(camel_cased_word); end
368
+ def upcase_first(string); end
369
+ extend ActiveSupport::Inflector
370
+ extend ActiveSupport::Inflector
371
+ end
372
+ class ActiveSupport::Inflector::Inflections
373
+ def acronym(word); end
374
+ def acronym_regex(*args, &block); end
375
+ def acronym_regex_with_deprecation(*args, &block); end
376
+ def acronym_regex_without_deprecation; end
377
+ def acronyms; end
378
+ def acronyms_camelize_regex; end
379
+ def acronyms_underscore_regex; end
380
+ def clear(scope = nil); end
381
+ def define_acronym_regex_patterns; end
382
+ def human(rule, replacement); end
383
+ def humans; end
384
+ def initialize; end
385
+ def initialize_dup(orig); end
386
+ def irregular(singular, plural); end
387
+ def plural(rule, replacement); end
388
+ def plurals; end
389
+ def self.instance(locale = nil); end
390
+ def singular(rule, replacement); end
391
+ def singulars; end
392
+ def uncountable(*words); end
393
+ def uncountables; end
394
+ end
395
+ class ActiveSupport::Inflector::Inflections::Uncountables < Array
396
+ def <<(*word); end
397
+ def add(words); end
398
+ def delete(entry); end
399
+ def initialize; end
400
+ def to_regex(string); end
401
+ def uncountable?(str); end
402
+ end
403
+ module ActiveSupport::Autoload
404
+ def autoload(const_name, path = nil); end
405
+ def autoload_at(path); end
406
+ def autoload_under(path); end
407
+ def autoloads; end
408
+ def eager_autoload; end
409
+ def eager_load!; end
410
+ def self.extended(base); end
411
+ end
412
+ module ActiveSupport::VERSION
413
+ end
414
+ module ActiveSupport::Concern
415
+ def append_features(base); end
416
+ def class_methods(&class_methods_module_definition); end
417
+ def included(base = nil, &block); end
418
+ def self.extended(base); end
419
+ end
420
+ class ActiveSupport::Concern::MultipleIncludedBlocks < StandardError
421
+ def initialize; end
422
+ end
423
+ module LoggerSilence
424
+ def silence(temporary_level = nil); end
425
+ extend ActiveSupport::Concern
426
+ end
427
+ module ActiveSupport::LoggerThreadSafeLevel
428
+ def after_initialize; end
429
+ def level; end
430
+ def local_level; end
431
+ def local_level=(level); end
432
+ def local_log_id; end
433
+ extend ActiveSupport::Concern
434
+ end
435
+ class ActiveSupport::Logger < Logger
436
+ def add(severity, message = nil, progname = nil, &block); end
437
+ def debug?; end
438
+ def error?; end
439
+ def fatal?; end
440
+ def info?; end
441
+ def initialize(*args); end
442
+ def self.broadcast(logger); end
443
+ def self.logger_outputs_to?(logger, *sources); end
444
+ def self.silencer; end
445
+ def self.silencer=(obj); end
446
+ def silencer; end
447
+ def silencer=(obj); end
448
+ def unknown?; end
449
+ def warn?; end
450
+ include ActiveSupport::LoggerThreadSafeLevel
451
+ include LoggerSilence
452
+ end
453
+ class ActiveSupport::Logger::SimpleFormatter < Logger::Formatter
454
+ def call(severity, timestamp, progname, msg); end
455
+ end
456
+ module DateAndTime
457
+ end
458
+ module DateAndTime::Compatibility
459
+ def preserve_timezone; end
460
+ def self.preserve_timezone; end
461
+ def self.preserve_timezone=(obj); end
462
+ end
463
+ class Object < BasicObject
464
+ def `(command); end
465
+ def acts_like?(duck); end
466
+ def as_json(options = nil); end
467
+ def blank?; end
468
+ def deep_dup; end
469
+ def duplicable?; end
470
+ def html_safe?; end
471
+ def in?(another_object); end
472
+ def instance_values; end
473
+ def instance_variable_names; end
474
+ def presence; end
475
+ def presence_in(another_object); end
476
+ def present?; end
477
+ def to_param; end
478
+ def to_query(key); end
479
+ def with_options(options, &block); end
480
+ include ActiveSupport::Dependencies::Loadable
481
+ include ActiveSupport::Tryable
482
+ end
483
+ class NilClass
484
+ def as_json(options = nil); end
485
+ def blank?; end
486
+ def to_param; end
487
+ def try!(*args); end
488
+ def try(*args); end
489
+ end
490
+ class FalseClass
491
+ def as_json(options = nil); end
492
+ def blank?; end
493
+ def to_param; end
494
+ end
495
+ class TrueClass
496
+ def as_json(options = nil); end
497
+ def blank?; end
498
+ def to_param; end
499
+ end
500
+ class String
501
+ def acts_like_string?; end
502
+ def as_json(options = nil); end
503
+ def at(position); end
504
+ def blank?; end
505
+ def camelcase(first_letter = nil); end
506
+ def camelize(first_letter = nil); end
507
+ def classify; end
508
+ def constantize; end
509
+ def dasherize; end
510
+ def deconstantize; end
511
+ def demodulize; end
512
+ def ends_with?(*arg0); end
513
+ def exclude?(string); end
514
+ def first(limit = nil); end
515
+ def foreign_key(separate_class_name_and_id_with_underscore = nil); end
516
+ def from(position); end
517
+ def html_safe; end
518
+ def humanize(capitalize: nil, keep_id_suffix: nil); end
519
+ def in_time_zone(zone = nil); end
520
+ def indent!(amount, indent_string = nil, indent_empty_lines = nil); end
521
+ def indent(amount, indent_string = nil, indent_empty_lines = nil); end
522
+ def inquiry; end
523
+ def is_utf8?; end
524
+ def last(limit = nil); end
525
+ def mb_chars; end
526
+ def parameterize(separator: nil, preserve_case: nil); end
527
+ def pluralize(count = nil, locale = nil); end
528
+ def remove!(*patterns); end
529
+ def remove(*patterns); end
530
+ def safe_constantize; end
531
+ def singularize(locale = nil); end
532
+ def squish!; end
533
+ def squish; end
534
+ def starts_with?(*arg0); end
535
+ def strip_heredoc; end
536
+ def tableize; end
537
+ def titlecase(keep_id_suffix: nil); end
538
+ def titleize(keep_id_suffix: nil); end
539
+ def to(position); end
540
+ def to_date; end
541
+ def to_datetime; end
542
+ def to_time(form = nil); end
543
+ def truncate(truncate_at, options = nil); end
544
+ def truncate_words(words_count, options = nil); end
545
+ def underscore; end
546
+ def upcase_first; end
547
+ end
548
+ class Numeric
549
+ def as_json(options = nil); end
550
+ def blank?; end
551
+ def byte; end
552
+ def bytes; end
553
+ def day; end
554
+ def days; end
555
+ def exabyte; end
556
+ def exabytes; end
557
+ def fortnight; end
558
+ def fortnights; end
559
+ def gigabyte; end
560
+ def gigabytes; end
561
+ def hour; end
562
+ def hours; end
563
+ def html_safe?; end
564
+ def in_milliseconds; end
565
+ def kilobyte; end
566
+ def kilobytes; end
567
+ def megabyte; end
568
+ def megabytes; end
569
+ def minute; end
570
+ def minutes; end
571
+ def petabyte; end
572
+ def petabytes; end
573
+ def second; end
574
+ def seconds; end
575
+ def terabyte; end
576
+ def terabytes; end
577
+ def week; end
578
+ def weeks; end
579
+ end
580
+ class Time
581
+ def acts_like_time?; end
582
+ def advance(options); end
583
+ def ago(seconds); end
584
+ def as_json(options = nil); end
585
+ def at_beginning_of_day; end
586
+ def at_beginning_of_hour; end
587
+ def at_beginning_of_minute; end
588
+ def at_end_of_day; end
589
+ def at_end_of_hour; end
590
+ def at_end_of_minute; end
591
+ def at_midday; end
592
+ def at_middle_of_day; end
593
+ def at_midnight; end
594
+ def at_noon; end
595
+ def beginning_of_day; end
596
+ def beginning_of_hour; end
597
+ def beginning_of_minute; end
598
+ def blank?; end
599
+ def change(options); end
600
+ def compare_with_coercion(other); end
601
+ def compare_without_coercion(arg0); end
602
+ def end_of_day; end
603
+ def end_of_hour; end
604
+ def end_of_minute; end
605
+ def eql_with_coercion(other); end
606
+ def eql_without_coercion(arg0); end
607
+ def formatted_offset(colon = nil, alternate_utc_string = nil); end
608
+ def in(seconds); end
609
+ def midday; end
610
+ def middle_of_day; end
611
+ def midnight; end
612
+ def minus_with_coercion(other); end
613
+ def minus_with_duration(other); end
614
+ def minus_without_coercion(other); end
615
+ def minus_without_duration(arg0); end
616
+ def noon; end
617
+ def plus_with_duration(other); end
618
+ def plus_without_duration(arg0); end
619
+ def rfc3339(fraction_digits = nil); end
620
+ def sec_fraction; end
621
+ def seconds_since_midnight; end
622
+ def seconds_until_end_of_day; end
623
+ def self.===(other); end
624
+ def self.at_with_coercion(*args); end
625
+ def self.at_without_coercion(*arg0); end
626
+ def self.current; end
627
+ def self.days_in_month(month, year = nil); end
628
+ def self.days_in_year(year = nil); end
629
+ def self.find_zone!(time_zone); end
630
+ def self.find_zone(time_zone); end
631
+ def self.rfc3339(str); end
632
+ def self.use_zone(time_zone); end
633
+ def self.zone; end
634
+ def self.zone=(time_zone); end
635
+ def self.zone_default; end
636
+ def self.zone_default=(arg0); end
637
+ def since(seconds); end
638
+ def to_default_s; end
639
+ def to_formatted_s(format = nil); end
640
+ include DateAndTime::Calculations
641
+ include DateAndTime::Compatibility
642
+ include DateAndTime::Zones
643
+ end
644
+ class ActiveSupport::KeyGenerator
645
+ def generate_key(salt, key_size = nil); end
646
+ def initialize(secret, options = nil); end
647
+ end
648
+ class ActiveSupport::CachingKeyGenerator
649
+ def generate_key(*args); end
650
+ def initialize(key_generator); end
651
+ end
652
+ class ActiveSupport::LegacyKeyGenerator
653
+ def ensure_secret_secure(secret); end
654
+ def generate_key(salt); end
655
+ def initialize(secret); end
656
+ end
657
+ module ActiveSupport::SecurityUtils
658
+ def fixed_length_secure_compare(a, b); end
659
+ def secure_compare(a, b); end
660
+ def self.fixed_length_secure_compare(a, b); end
661
+ def self.secure_compare(a, b); end
662
+ end
663
+ module ActiveSupport::Messages
664
+ end
665
+ class ActiveSupport::Messages::Metadata
666
+ def as_json(options = nil); end
667
+ def fresh?; end
668
+ def initialize(message, expires_at = nil, purpose = nil); end
669
+ def match?(purpose); end
670
+ def self.decode(message); end
671
+ def self.encode(message); end
672
+ def self.extract_metadata(message); end
673
+ def self.pick_expiry(expires_at, expires_in); end
674
+ def self.verify(message, purpose); end
675
+ def self.wrap(message, expires_at: nil, expires_in: nil, purpose: nil); end
676
+ def verify(purpose); end
677
+ end
678
+ module ActiveSupport::Messages::Rotator
679
+ def initialize(*arg0, **options); end
680
+ def rotate(*secrets, **options); end
681
+ def run_rotations(on_rotation); end
682
+ end
683
+ module ActiveSupport::Messages::Rotator::Encryptor
684
+ def build_rotation(secret = nil, sign_secret = nil, options); end
685
+ def decrypt_and_verify(*args, on_rotation: nil, **options); end
686
+ include ActiveSupport::Messages::Rotator
687
+ end
688
+ module ActiveSupport::Messages::Rotator::Verifier
689
+ def build_rotation(secret = nil, options); end
690
+ def verified(*args, on_rotation: nil, **options); end
691
+ include ActiveSupport::Messages::Rotator
692
+ end
693
+ class ActiveSupport::MessageVerifier
694
+ def decode(data); end
695
+ def encode(data); end
696
+ def generate(value, expires_at: nil, expires_in: nil, purpose: nil); end
697
+ def generate_digest(data); end
698
+ def initialize(*arg0, **options); end
699
+ def valid_message?(signed_message); end
700
+ def verified(*args, on_rotation: nil, **options); end
701
+ def verify(*args); end
702
+ end
703
+ class ActiveSupport::MessageVerifier::InvalidSignature < StandardError
704
+ end
705
+ class ActiveSupport::MessageEncryptor
706
+ def _decrypt(encrypted_message, purpose); end
707
+ def _encrypt(value, **metadata_options); end
708
+ def aead_mode?; end
709
+ def decrypt_and_verify(*args, on_rotation: nil, **options); end
710
+ def encrypt_and_sign(value, expires_at: nil, expires_in: nil, purpose: nil); end
711
+ def initialize(*arg0, **options); end
712
+ def new_cipher; end
713
+ def resolve_verifier; end
714
+ def self.default_cipher; end
715
+ def self.key_len(cipher = nil); end
716
+ def self.use_authenticated_message_encryption; end
717
+ def self.use_authenticated_message_encryption=(obj); end
718
+ def verifier; end
719
+ end
720
+ module ActiveSupport::MessageEncryptor::NullSerializer
721
+ def self.dump(value); end
722
+ def self.load(value); end
723
+ end
724
+ module ActiveSupport::MessageEncryptor::NullVerifier
725
+ def self.generate(value); end
726
+ def self.verify(value); end
727
+ end
728
+ class ActiveSupport::MessageEncryptor::InvalidMessage < StandardError
729
+ end
730
+ class ActiveSupport::EncryptedFile
731
+ def change(&block); end
732
+ def content_path; end
733
+ def decrypt(contents); end
734
+ def encrypt(contents); end
735
+ def encryptor; end
736
+ def env_key; end
737
+ def handle_missing_key; end
738
+ def initialize(content_path:, key_path:, env_key:, raise_if_missing_key:); end
739
+ def key; end
740
+ def key_path; end
741
+ def raise_if_missing_key; end
742
+ def read; end
743
+ def read_env_key; end
744
+ def read_key_file; end
745
+ def self.generate_key; end
746
+ def write(contents); end
747
+ def writing(contents); end
748
+ end
749
+ class ActiveSupport::EncryptedFile::MissingContentError < RuntimeError
750
+ def initialize(content_path); end
751
+ end
752
+ class ActiveSupport::EncryptedFile::MissingKeyError < RuntimeError
753
+ def initialize(key_path:, env_key:); end
754
+ end
755
+ class ActiveSupport::OrderedOptions < Hash
756
+ def [](key); end
757
+ def []=(key, value); end
758
+ def _get(arg0); end
759
+ def method_missing(name, *args); end
760
+ def respond_to_missing?(name, include_private); end
761
+ end
762
+ class ActiveSupport::InheritableOptions < ActiveSupport::OrderedOptions
763
+ def inheritable_copy; end
764
+ def initialize(parent = nil); end
765
+ end
766
+ class ActiveSupport::EncryptedConfiguration < ActiveSupport::EncryptedFile
767
+ def [](*args, &block); end
768
+ def config; end
769
+ def deserialize(config); end
770
+ def fetch(*args, &block); end
771
+ def initialize(config_path:, key_path:, env_key:, raise_if_missing_key:); end
772
+ def method_missing(method, *args, &block); end
773
+ def options; end
774
+ def read; end
775
+ def respond_to_missing?(name, include_private = nil); end
776
+ def serialize(config); end
777
+ def write(contents); end
778
+ end
779
+ module ActiveSupport::Multibyte
780
+ def self.proxy_class; end
781
+ def self.proxy_class=(klass); end
782
+ end
783
+ class DateTime < Date
784
+ def <=>(other); end
785
+ def acts_like_date?; end
786
+ def acts_like_time?; end
787
+ def advance(options); end
788
+ def ago(seconds); end
789
+ def as_json(options = nil); end
790
+ def at_beginning_of_day; end
791
+ def at_beginning_of_hour; end
792
+ def at_beginning_of_minute; end
793
+ def at_end_of_day; end
794
+ def at_end_of_hour; end
795
+ def at_end_of_minute; end
796
+ def at_midday; end
797
+ def at_middle_of_day; end
798
+ def at_midnight; end
799
+ def at_noon; end
800
+ def beginning_of_day; end
801
+ def beginning_of_hour; end
802
+ def beginning_of_minute; end
803
+ def blank?; end
804
+ def change(options); end
805
+ def default_inspect; end
806
+ def end_of_day; end
807
+ def end_of_hour; end
808
+ def end_of_minute; end
809
+ def formatted_offset(colon = nil, alternate_utc_string = nil); end
810
+ def getgm; end
811
+ def getlocal(utc_offset = nil); end
812
+ def getutc; end
813
+ def gmtime; end
814
+ def in(seconds); end
815
+ def inspect; end
816
+ def localtime(utc_offset = nil); end
817
+ def midday; end
818
+ def middle_of_day; end
819
+ def midnight; end
820
+ def noon; end
821
+ def nsec; end
822
+ def offset_in_seconds; end
823
+ def readable_inspect; end
824
+ def seconds_since_midnight; end
825
+ def seconds_since_unix_epoch; end
826
+ def seconds_until_end_of_day; end
827
+ def self.civil_from_format(utc_or_local, year, month = nil, day = nil, hour = nil, min = nil, sec = nil); end
828
+ def self.current; end
829
+ def since(seconds); end
830
+ def subsec; end
831
+ def to_default_s; end
832
+ def to_f; end
833
+ def to_formatted_s(format = nil); end
834
+ def to_i; end
835
+ def usec; end
836
+ def utc; end
837
+ def utc?; end
838
+ def utc_offset; end
839
+ include DateAndTime::Compatibility
840
+ end
841
+ module ActiveSupport::XmlMini_REXML
842
+ def collapse(element, depth); end
843
+ def empty_content?(element); end
844
+ def get_attributes(element); end
845
+ def merge!(hash, key, value); end
846
+ def merge_element!(hash, element, depth); end
847
+ def merge_texts!(hash, element); end
848
+ def parse(data); end
849
+ extend ActiveSupport::XmlMini_REXML
850
+ end
851
+ module ActiveSupport::XmlMini
852
+ def _dasherize(key); end
853
+ def _parse_binary(bin, entity); end
854
+ def _parse_file(file, entity); end
855
+ def backend; end
856
+ def backend=(name); end
857
+ def cast_backend_name_to_module(name); end
858
+ def current_thread_backend; end
859
+ def current_thread_backend=(name); end
860
+ def depth; end
861
+ def depth=(arg0); end
862
+ def parse(*args, &block); end
863
+ def rename_key(key, options = nil); end
864
+ def to_tag(key, value, options); end
865
+ def with_backend(name); end
866
+ extend ActiveSupport::XmlMini
867
+ end
868
+ module ActiveSupport::XmlMini::FileLike
869
+ def content_type; end
870
+ def content_type=(arg0); end
871
+ def original_filename; end
872
+ def original_filename=(arg0); end
873
+ end
874
+ class ActiveSupport::Duration
875
+ def %(other); end
876
+ def *(other); end
877
+ def +(other); end
878
+ def -(other); end
879
+ def -@; end
880
+ def /(other); end
881
+ def <=>(other); end
882
+ def ==(other); end
883
+ def after(time = nil); end
884
+ def ago(time = nil); end
885
+ def as_json(options = nil); end
886
+ def before(time = nil); end
887
+ def coerce(other); end
888
+ def encode_with(coder); end
889
+ def eql?(other); end
890
+ def from_now(time = nil); end
891
+ def hash; end
892
+ def init_with(coder); end
893
+ def initialize(value, parts); end
894
+ def inspect; end
895
+ def instance_of?(klass); end
896
+ def is_a?(klass); end
897
+ def iso8601(precision: nil); end
898
+ def kind_of?(klass); end
899
+ def method_missing(method, *args, &block); end
900
+ def parts; end
901
+ def parts=(arg0); end
902
+ def raise_type_error(other); end
903
+ def respond_to_missing?(method, _); end
904
+ def self.===(other); end
905
+ def self.build(value); end
906
+ def self.calculate_total_seconds(parts); end
907
+ def self.days(value); end
908
+ def self.hours(value); end
909
+ def self.minutes(value); end
910
+ def self.months(value); end
911
+ def self.parse(iso8601duration); end
912
+ def self.seconds(value); end
913
+ def self.weeks(value); end
914
+ def self.years(value); end
915
+ def since(time = nil); end
916
+ def sum(sign, time = nil); end
917
+ def to_i; end
918
+ def to_s; end
919
+ def until(time = nil); end
920
+ def value; end
921
+ def value=(arg0); end
922
+ end
923
+ class ActiveSupport::Duration::Scalar < Numeric
924
+ def %(other); end
925
+ def *(other); end
926
+ def +(other); end
927
+ def -(other); end
928
+ def -@; end
929
+ def /(other); end
930
+ def <=>(other); end
931
+ def calculate(op, other); end
932
+ def coerce(other); end
933
+ def initialize(value); end
934
+ def raise_type_error(other); end
935
+ def to_f(*args, &block); end
936
+ def to_i(*args, &block); end
937
+ def to_s(*args, &block); end
938
+ def value; end
939
+ end
940
+ class ActiveSupport::TimeZone
941
+ def <=>(zone); end
942
+ def =~(re); end
943
+ def at(secs); end
944
+ def encode_with(coder); end
945
+ def formatted_offset(colon = nil, alternate_utc_string = nil); end
946
+ def init_with(coder); end
947
+ def initialize(name, utc_offset = nil, tzinfo = nil); end
948
+ def iso8601(str); end
949
+ def local(*args); end
950
+ def local_to_utc(time, dst = nil); end
951
+ def name; end
952
+ def now; end
953
+ def parse(str, now = nil); end
954
+ def parts_to_time(parts, now); end
955
+ def period_for_local(time, dst = nil); end
956
+ def period_for_utc(time); end
957
+ def periods_for_local(time); end
958
+ def rfc3339(str); end
959
+ def self.[](arg); end
960
+ def self.all; end
961
+ def self.clear; end
962
+ def self.country_zones(country_code); end
963
+ def self.create(*arg0); end
964
+ def self.find_tzinfo(name); end
965
+ def self.load_country_zones(code); end
966
+ def self.new(name); end
967
+ def self.seconds_to_utc_offset(seconds, colon = nil); end
968
+ def self.us_zones; end
969
+ def self.zones_map; end
970
+ def strptime(str, format, now = nil); end
971
+ def time_now; end
972
+ def to_s; end
973
+ def today; end
974
+ def tomorrow; end
975
+ def tzinfo; end
976
+ def utc_offset; end
977
+ def utc_to_local(time); end
978
+ def yesterday; end
979
+ include Comparable
980
+ end
981
+ class ActiveSupport::TimeWithZone
982
+ def +(other); end
983
+ def -(other); end
984
+ def <=>(other); end
985
+ def acts_like_time?; end
986
+ def advance(options); end
987
+ def ago(other); end
988
+ def as_json(options = nil); end
989
+ def between?(min, max); end
990
+ def blank?; end
991
+ def change(options); end
992
+ def comparable_time; end
993
+ def day; end
994
+ def dst?; end
995
+ def duration_of_variable_length?(obj); end
996
+ def encode_with(coder); end
997
+ def eql?(other); end
998
+ def formatted_offset(colon = nil, alternate_utc_string = nil); end
999
+ def freeze; end
1000
+ def future?; end
1001
+ def get_period_and_ensure_valid_local_time(period); end
1002
+ def getgm; end
1003
+ def getlocal(utc_offset = nil); end
1004
+ def getutc; end
1005
+ def gmt?; end
1006
+ def gmt_offset; end
1007
+ def gmtime; end
1008
+ def gmtoff; end
1009
+ def hash; end
1010
+ def hour; end
1011
+ def httpdate; end
1012
+ def in(other); end
1013
+ def in_time_zone(new_zone = nil); end
1014
+ def init_with(coder); end
1015
+ def initialize(utc_time, time_zone, local_time = nil, period = nil); end
1016
+ def inspect; end
1017
+ def is_a?(klass); end
1018
+ def isdst; end
1019
+ def iso8601(fraction_digits = nil); end
1020
+ def kind_of?(klass); end
1021
+ def localtime(utc_offset = nil); end
1022
+ def marshal_dump; end
1023
+ def marshal_load(variables); end
1024
+ def mday; end
1025
+ def method_missing(sym, *args, &block); end
1026
+ def min; end
1027
+ def mon; end
1028
+ def month; end
1029
+ def nsec; end
1030
+ def past?; end
1031
+ def period; end
1032
+ def respond_to?(sym, include_priv = nil); end
1033
+ def respond_to_missing?(sym, include_priv); end
1034
+ def rfc2822; end
1035
+ def rfc3339(fraction_digits = nil); end
1036
+ def rfc822; end
1037
+ def sec; end
1038
+ def self.name; end
1039
+ def since(other); end
1040
+ def strftime(format); end
1041
+ def time; end
1042
+ def time_zone; end
1043
+ def to_a; end
1044
+ def to_date; end
1045
+ def to_datetime; end
1046
+ def to_f; end
1047
+ def to_formatted_s(format = nil); end
1048
+ def to_i; end
1049
+ def to_r; end
1050
+ def to_s(format = nil); end
1051
+ def to_time; end
1052
+ def today?; end
1053
+ def transfer_time_values_to_utc_constructor(time); end
1054
+ def tv_sec; end
1055
+ def usec; end
1056
+ def utc; end
1057
+ def utc?; end
1058
+ def utc_offset; end
1059
+ def wday; end
1060
+ def wrap_with_time_zone(time); end
1061
+ def xmlschema(fraction_digits = nil); end
1062
+ def yday; end
1063
+ def year; end
1064
+ def zone; end
1065
+ include Comparable
1066
+ end
1067
+ module DateAndTime::Zones
1068
+ def in_time_zone(zone = nil); end
1069
+ def time_with_zone(time, zone); end
1070
+ end
1071
+ module ActiveSupport::Tryable
1072
+ def try!(*a, &b); end
1073
+ def try(*a, &b); end
1074
+ end
1075
+ class Delegator < BasicObject
1076
+ include ActiveSupport::Tryable
1077
+ end
1078
+ module DateAndTime::Calculations
1079
+ def all_day; end
1080
+ def all_month; end
1081
+ def all_quarter; end
1082
+ def all_week(start_day = nil); end
1083
+ def all_year; end
1084
+ def at_beginning_of_month; end
1085
+ def at_beginning_of_quarter; end
1086
+ def at_beginning_of_week(start_day = nil); end
1087
+ def at_beginning_of_year; end
1088
+ def at_end_of_month; end
1089
+ def at_end_of_quarter; end
1090
+ def at_end_of_week(start_day = nil); end
1091
+ def at_end_of_year; end
1092
+ def beginning_of_month; end
1093
+ def beginning_of_quarter; end
1094
+ def beginning_of_week(start_day = nil); end
1095
+ def beginning_of_year; end
1096
+ def copy_time_to(other); end
1097
+ def days_ago(days); end
1098
+ def days_since(days); end
1099
+ def days_span(day); end
1100
+ def days_to_week_start(start_day = nil); end
1101
+ def end_of_month; end
1102
+ def end_of_quarter; end
1103
+ def end_of_week(start_day = nil); end
1104
+ def end_of_year; end
1105
+ def first_hour(date_or_time); end
1106
+ def future?; end
1107
+ def last_hour(date_or_time); end
1108
+ def last_month; end
1109
+ def last_quarter; end
1110
+ def last_week(start_day = nil, same_time: nil); end
1111
+ def last_weekday; end
1112
+ def last_year; end
1113
+ def monday; end
1114
+ def months_ago(months); end
1115
+ def months_since(months); end
1116
+ def next_day(days = nil); end
1117
+ def next_month(months = nil); end
1118
+ def next_occurring(day_of_week); end
1119
+ def next_quarter; end
1120
+ def next_week(given_day_in_next_week = nil, same_time: nil); end
1121
+ def next_weekday; end
1122
+ def next_year(years = nil); end
1123
+ def on_weekday?; end
1124
+ def on_weekend?; end
1125
+ def past?; end
1126
+ def prev_day(days = nil); end
1127
+ def prev_month(months = nil); end
1128
+ def prev_occurring(day_of_week); end
1129
+ def prev_quarter; end
1130
+ def prev_week(start_day = nil, same_time: nil); end
1131
+ def prev_weekday; end
1132
+ def prev_year(years = nil); end
1133
+ def sunday; end
1134
+ def today?; end
1135
+ def tomorrow; end
1136
+ def weeks_ago(weeks); end
1137
+ def weeks_since(weeks); end
1138
+ def years_ago(years); end
1139
+ def years_since(years); end
1140
+ def yesterday; end
1141
+ end
1142
+ class Date
1143
+ def acts_like_date?; end
1144
+ def advance(options); end
1145
+ def ago(seconds); end
1146
+ def as_json(options = nil); end
1147
+ def at_beginning_of_day; end
1148
+ def at_end_of_day; end
1149
+ def at_midday; end
1150
+ def at_middle_of_day; end
1151
+ def at_midnight; end
1152
+ def at_noon; end
1153
+ def beginning_of_day; end
1154
+ def blank?; end
1155
+ def change(options); end
1156
+ def compare_with_coercion(other); end
1157
+ def compare_without_coercion(arg0); end
1158
+ def default_inspect; end
1159
+ def end_of_day; end
1160
+ def in(seconds); end
1161
+ def midday; end
1162
+ def middle_of_day; end
1163
+ def midnight; end
1164
+ def minus_with_duration(other); end
1165
+ def minus_without_duration(arg0); end
1166
+ def noon; end
1167
+ def plus_with_duration(other); end
1168
+ def plus_without_duration(arg0); end
1169
+ def readable_inspect; end
1170
+ def self.beginning_of_week; end
1171
+ def self.beginning_of_week=(week_start); end
1172
+ def self.beginning_of_week_default; end
1173
+ def self.beginning_of_week_default=(arg0); end
1174
+ def self.current; end
1175
+ def self.find_beginning_of_week!(week_start); end
1176
+ def self.tomorrow; end
1177
+ def self.yesterday; end
1178
+ def since(seconds); end
1179
+ def to_default_s; end
1180
+ def to_formatted_s(format = nil); end
1181
+ include DateAndTime::Calculations
1182
+ include DateAndTime::Zones
1183
+ end
1184
+ class ActiveSupport::FileUpdateChecker
1185
+ def compile_ext(array); end
1186
+ def compile_glob(hash); end
1187
+ def escape(key); end
1188
+ def execute; end
1189
+ def execute_if_updated; end
1190
+ def initialize(files, dirs = nil, &block); end
1191
+ def max_mtime(paths); end
1192
+ def updated?; end
1193
+ def updated_at(paths); end
1194
+ def watched; end
1195
+ end
1196
+ class Symbol
1197
+ def as_json(options = nil); end
1198
+ end
1199
+ class BigDecimal < Numeric
1200
+ def as_json(options = nil); end
1201
+ def duplicable?; end
1202
+ end
1203
+ class Method
1204
+ def duplicable?; end
1205
+ end
1206
+ class Complex < Numeric
1207
+ def duplicable?; end
1208
+ end
1209
+ class Rational < Numeric
1210
+ def duplicable?; end
1211
+ end
1212
+ class Integer < Numeric
1213
+ def month; end
1214
+ def months; end
1215
+ def multiple_of?(number); end
1216
+ def ordinal; end
1217
+ def ordinalize; end
1218
+ def year; end
1219
+ def years; end
1220
+ end
1221
+ class ActiveSupport::XMLConverter
1222
+ def become_array?(value); end
1223
+ def become_content?(value); end
1224
+ def become_empty_string?(value); end
1225
+ def become_hash?(value); end
1226
+ def deep_to_h(value); end
1227
+ def garbage?(value); end
1228
+ def initialize(xml, disallowed_types = nil); end
1229
+ def normalize_keys(params); end
1230
+ def nothing?(value); end
1231
+ def process_array(value); end
1232
+ def process_content(value); end
1233
+ def process_hash(value); end
1234
+ def to_h; end
1235
+ end
1236
+ class ActiveSupport::XMLConverter::DisallowedType < StandardError
1237
+ def initialize(type); end
1238
+ end
1239
+ module ActiveSupport::BigDecimalWithDefaultFormat
1240
+ def to_s(format = nil); end
1241
+ end
1242
+ module ActiveSupport::ToJsonWithActiveSupportEncoder
1243
+ def to_json(options = nil); end
1244
+ end
1245
+ class Struct
1246
+ def as_json(options = nil); end
1247
+ end
1248
+ class Float < Numeric
1249
+ def as_json(options = nil); end
1250
+ end
1251
+ module Enumerable
1252
+ def _original_sum_with_required_identity(*arg0); end
1253
+ def as_json(options = nil); end
1254
+ def exclude?(object); end
1255
+ def index_by; end
1256
+ def many?; end
1257
+ def pluck(*keys); end
1258
+ def without(*elements); end
1259
+ end
1260
+ class IO
1261
+ def as_json(options = nil); end
1262
+ end
1263
+ class Range
1264
+ def as_json(options = nil); end
1265
+ def overlaps?(other); end
1266
+ def sum(identity = nil); end
1267
+ end
1268
+ class URI::Generic
1269
+ def as_json(options = nil); end
1270
+ end
1271
+ class Pathname
1272
+ def as_json(options = nil); end
1273
+ end
1274
+ class Process::Status
1275
+ def as_json(options = nil); end
1276
+ end
1277
+ class Exception
1278
+ def as_json(options = nil); end
1279
+ include ActiveSupport::Dependencies::Blamable
1280
+ end
1281
+ class ActiveSupport::OptionMerger
1282
+ def initialize(context, options); end
1283
+ def method_missing(method, *arguments, &block); end
1284
+ end
1285
+ module I18n
1286
+ end
1287
+ class I18n::Railtie < Rails::Railtie
1288
+ def self.include_fallbacks_module; end
1289
+ def self.init_fallbacks(fallbacks); end
1290
+ def self.initialize_i18n(app); end
1291
+ def self.validate_fallbacks(fallbacks); end
1292
+ def self.watched_dirs_with_extensions(paths); end
1293
+ end
1294
+ class ActiveSupport::Railtie < Rails::Railtie
1295
+ end
1296
+ class Class < Module
1297
+ def class_attribute(*attrs); end
1298
+ def descendants; end
1299
+ def subclasses; end
1300
+ end
1301
+ class ActiveSupport::Messages::RotationConfiguration
1302
+ def encrypted; end
1303
+ def initialize; end
1304
+ def rotate(kind, *args); end
1305
+ def signed; end
1306
+ end
1307
+ class ActiveSupport::HashWithIndifferentAccess < Hash
1308
+ def [](key); end
1309
+ def []=(key, value); end
1310
+ def assoc(key); end
1311
+ def compact; end
1312
+ def convert_key(key); end
1313
+ def convert_value(value, options = nil); end
1314
+ def deep_stringify_keys!; end
1315
+ def deep_stringify_keys; end
1316
+ def deep_symbolize_keys; end
1317
+ def default(*args); end
1318
+ def delete(key); end
1319
+ def dig(*args); end
1320
+ def dup; end
1321
+ def extractable_options?; end
1322
+ def fetch(key, *extras); end
1323
+ def fetch_values(*indices, &block); end
1324
+ def has_key?(key); end
1325
+ def include?(key); end
1326
+ def initialize(constructor = nil); end
1327
+ def key?(key); end
1328
+ def member?(key); end
1329
+ def merge!(other_hash); end
1330
+ def merge(hash, &block); end
1331
+ def nested_under_indifferent_access; end
1332
+ def regular_update(arg0); end
1333
+ def regular_writer(arg0, arg1); end
1334
+ def reject(*args, &block); end
1335
+ def replace(other_hash); end
1336
+ def reverse_merge!(other_hash); end
1337
+ def reverse_merge(other_hash); end
1338
+ def select(*args, &block); end
1339
+ def self.[](*args); end
1340
+ def set_defaults(target); end
1341
+ def slice!(*keys); end
1342
+ def slice(*keys); end
1343
+ def store(key, value); end
1344
+ def stringify_keys!; end
1345
+ def stringify_keys; end
1346
+ def symbolize_keys; end
1347
+ def to_hash; end
1348
+ def to_options!; end
1349
+ def to_options; end
1350
+ def transform_keys!; end
1351
+ def transform_keys(*args, &block); end
1352
+ def transform_values(*args, &block); end
1353
+ def update(other_hash); end
1354
+ def values_at(*indices); end
1355
+ def with_defaults!(other_hash); end
1356
+ def with_defaults(other_hash); end
1357
+ def with_indifferent_access; end
1358
+ end
1359
+ module ActiveSupport::Concurrency
1360
+ end
1361
+ class ActiveSupport::Concurrency::LoadInterlockAwareMonitor < Monitor
1362
+ def mon_enter; end
1363
+ end
1364
+ module ActiveSupport::DescendantsTracker
1365
+ def descendants; end
1366
+ def direct_descendants; end
1367
+ def inherited(base); end
1368
+ def self.accumulate_descendants(klass, acc); end
1369
+ def self.clear; end
1370
+ def self.descendants(klass); end
1371
+ def self.direct_descendants(klass); end
1372
+ def self.store_inherited(klass, descendant); end
1373
+ end
1374
+ module ActiveSupport::Callbacks
1375
+ def halted_callback_hook(filter); end
1376
+ def run_callbacks(kind); end
1377
+ extend ActiveSupport::Concern
1378
+ end
1379
+ module ActiveSupport::Callbacks::Conditionals
1380
+ end
1381
+ class ActiveSupport::Callbacks::Conditionals::Value
1382
+ def call(target, value); end
1383
+ def initialize(&block); end
1384
+ end
1385
+ module ActiveSupport::Callbacks::Filters
1386
+ end
1387
+ class ActiveSupport::Callbacks::Filters::Environment < Struct
1388
+ def halted; end
1389
+ def halted=(_); end
1390
+ def self.[](*arg0); end
1391
+ def self.members; end
1392
+ def self.new(*arg0); end
1393
+ def target; end
1394
+ def target=(_); end
1395
+ def value; end
1396
+ def value=(_); end
1397
+ end
1398
+ class ActiveSupport::Callbacks::Filters::Before
1399
+ def self.build(callback_sequence, user_callback, user_conditions, chain_config, filter); end
1400
+ def self.halting(callback_sequence, user_callback, halted_lambda, filter); end
1401
+ def self.halting_and_conditional(callback_sequence, user_callback, user_conditions, halted_lambda, filter); end
1402
+ end
1403
+ class ActiveSupport::Callbacks::Filters::After
1404
+ def self.build(callback_sequence, user_callback, user_conditions, chain_config); end
1405
+ def self.conditional(callback_sequence, user_callback, user_conditions); end
1406
+ def self.halting(callback_sequence, user_callback); end
1407
+ def self.halting_and_conditional(callback_sequence, user_callback, user_conditions); end
1408
+ def self.simple(callback_sequence, user_callback); end
1409
+ end
1410
+ class ActiveSupport::Callbacks::Callback
1411
+ def apply(callback_sequence); end
1412
+ def chain_config; end
1413
+ def check_conditionals(conditionals); end
1414
+ def compute_identifier(filter); end
1415
+ def conditions_lambdas; end
1416
+ def current_scopes; end
1417
+ def duplicates?(other); end
1418
+ def filter; end
1419
+ def initialize(name, filter, kind, options, chain_config); end
1420
+ def kind; end
1421
+ def kind=(arg0); end
1422
+ def matches?(_kind, _filter); end
1423
+ def merge_conditional_options(chain, if_option:, unless_option:); end
1424
+ def name; end
1425
+ def name=(arg0); end
1426
+ def raw_filter; end
1427
+ def self.build(chain, filter, kind, options); end
1428
+ end
1429
+ class ActiveSupport::Callbacks::CallTemplate
1430
+ def expand(target, value, block); end
1431
+ def initialize(target, method, arguments, block); end
1432
+ def inverted_lambda; end
1433
+ def make_lambda; end
1434
+ def self.build(filter, callback); end
1435
+ end
1436
+ class ActiveSupport::Callbacks::CallbackSequence
1437
+ def after(&after); end
1438
+ def around(call_template, user_conditions); end
1439
+ def before(&before); end
1440
+ def expand_call_template(arg, block); end
1441
+ def final?; end
1442
+ def initialize(nested = nil, call_template = nil, user_conditions = nil); end
1443
+ def invoke_after(arg); end
1444
+ def invoke_before(arg); end
1445
+ def nested; end
1446
+ def skip?(arg); end
1447
+ end
1448
+ class ActiveSupport::Callbacks::CallbackChain
1449
+ def append(*callbacks); end
1450
+ def append_one(callback); end
1451
+ def chain; end
1452
+ def clear; end
1453
+ def compile; end
1454
+ def config; end
1455
+ def default_terminator; end
1456
+ def delete(o); end
1457
+ def each(&block); end
1458
+ def empty?; end
1459
+ def index(o); end
1460
+ def initialize(name, config); end
1461
+ def initialize_copy(other); end
1462
+ def insert(index, o); end
1463
+ def name; end
1464
+ def prepend(*callbacks); end
1465
+ def prepend_one(callback); end
1466
+ def remove_duplicates(callback); end
1467
+ include Enumerable
1468
+ end
1469
+ module ActiveSupport::Callbacks::ClassMethods
1470
+ def __update_callbacks(name); end
1471
+ def define_callbacks(*names); end
1472
+ def get_callbacks(name); end
1473
+ def normalize_callback_params(filters, block); end
1474
+ def reset_callbacks(name); end
1475
+ def set_callback(name, *filter_list, &block); end
1476
+ def set_callbacks(name, callbacks); end
1477
+ def skip_callback(name, *filter_list, &block); end
1478
+ end
1479
+ module ActiveSupport::JSON
1480
+ def self.convert_dates_from(data); end
1481
+ def self.decode(json); end
1482
+ def self.encode(value, options = nil); end
1483
+ def self.parse_error; end
1484
+ end
1485
+ module ActiveSupport::JSON::Encoding
1486
+ def self.escape_html_entities_in_json; end
1487
+ def self.escape_html_entities_in_json=(arg0); end
1488
+ def self.json_encoder; end
1489
+ def self.json_encoder=(arg0); end
1490
+ def self.time_precision; end
1491
+ def self.time_precision=(arg0); end
1492
+ def self.use_standard_json_time_format; end
1493
+ def self.use_standard_json_time_format=(arg0); end
1494
+ end
1495
+ class ActiveSupport::JSON::Encoding::JSONGemEncoder
1496
+ def encode(value); end
1497
+ def initialize(options = nil); end
1498
+ def jsonify(value); end
1499
+ def options; end
1500
+ def stringify(jsonified); end
1501
+ end
1502
+ class ActiveSupport::JSON::Encoding::JSONGemEncoder::EscapedString < String
1503
+ def to_json(*arg0); end
1504
+ def to_s; end
1505
+ end
1506
+ class ActiveSupport::Multibyte::Chars
1507
+ def <=>(*args, &block); end
1508
+ def =~(*args, &block); end
1509
+ def acts_like_string?(*args, &block); end
1510
+ def as_json(options = nil); end
1511
+ def capitalize!(*args); end
1512
+ def capitalize; end
1513
+ def chars(string); end
1514
+ def compose; end
1515
+ def decompose; end
1516
+ def downcase!(*args); end
1517
+ def downcase; end
1518
+ def grapheme_length; end
1519
+ def initialize(string); end
1520
+ def limit(limit); end
1521
+ def method_missing(method, *args, &block); end
1522
+ def normalize(form = nil); end
1523
+ def respond_to_missing?(method, include_private); end
1524
+ def reverse!(*args); end
1525
+ def reverse; end
1526
+ def self.consumes?(string); end
1527
+ def slice!(*args); end
1528
+ def split(*args); end
1529
+ def swapcase; end
1530
+ def tidy_bytes!(*args); end
1531
+ def tidy_bytes(force = nil); end
1532
+ def titlecase; end
1533
+ def titleize; end
1534
+ def to_s; end
1535
+ def to_str; end
1536
+ def translate_offset(byte_offset); end
1537
+ def upcase!(*args); end
1538
+ def upcase; end
1539
+ def wrapped_string; end
1540
+ include Comparable
1541
+ end
1542
+ module ActiveSupport::Rescuable
1543
+ def handler_for_rescue(exception); end
1544
+ def rescue_with_handler(exception); end
1545
+ extend ActiveSupport::Concern
1546
+ end
1547
+ module ActiveSupport::Rescuable::ClassMethods
1548
+ def constantize_rescue_handler_class(class_or_name); end
1549
+ def find_rescue_handler(exception); end
1550
+ def handler_for_rescue(exception, object: nil); end
1551
+ def rescue_from(*klasses, with: nil, &block); end
1552
+ def rescue_with_handler(exception, object: nil, visited_exceptions: nil); end
1553
+ end
1554
+ class LoadError < ScriptError
1555
+ def is_missing?(location); end
1556
+ end
1557
+ class NameError < StandardError
1558
+ def missing_name; end
1559
+ def missing_name?(name); end
1560
+ end
1561
+ module URI
1562
+ def self.parser; end
1563
+ end
1564
+ module ActiveSupport::Multibyte::Unicode
1565
+ def apply_mapping(string, mapping); end
1566
+ def compose(codepoints); end
1567
+ def database; end
1568
+ def decompose(type, codepoints); end
1569
+ def default_normalization_form; end
1570
+ def default_normalization_form=(arg0); end
1571
+ def downcase(string); end
1572
+ def in_char_class?(codepoint, classes); end
1573
+ def normalize(string, form = nil); end
1574
+ def pack_graphemes(unpacked); end
1575
+ def recode_windows1252_chars(string); end
1576
+ def reorder_characters(codepoints); end
1577
+ def swapcase(string); end
1578
+ def tidy_bytes(string, force = nil); end
1579
+ def unpack_graphemes(string); end
1580
+ def upcase(string); end
1581
+ extend ActiveSupport::Multibyte::Unicode
1582
+ end
1583
+ class ActiveSupport::Multibyte::Unicode::Codepoint
1584
+ def code; end
1585
+ def code=(arg0); end
1586
+ def combining_class; end
1587
+ def combining_class=(arg0); end
1588
+ def decomp_mapping; end
1589
+ def decomp_mapping=(arg0); end
1590
+ def decomp_type; end
1591
+ def decomp_type=(arg0); end
1592
+ def initialize; end
1593
+ def lowercase_mapping; end
1594
+ def lowercase_mapping=(arg0); end
1595
+ def swapcase_mapping; end
1596
+ def uppercase_mapping; end
1597
+ def uppercase_mapping=(arg0); end
1598
+ end
1599
+ class ActiveSupport::Multibyte::Unicode::UnicodeDatabase
1600
+ def boundary; end
1601
+ def boundary=(arg0); end
1602
+ def codepoints; end
1603
+ def codepoints=(arg0); end
1604
+ def composition_exclusion; end
1605
+ def composition_exclusion=(arg0); end
1606
+ def composition_map; end
1607
+ def composition_map=(arg0); end
1608
+ def cp1252; end
1609
+ def cp1252=(arg0); end
1610
+ def initialize; end
1611
+ def load; end
1612
+ def self.dirname; end
1613
+ def self.filename; end
1614
+ end
1615
+ class ERB
1616
+ end
1617
+ module ERB::Util
1618
+ def html_escape_once(s); end
1619
+ def json_escape(s); end
1620
+ def self.html_escape_once(s); end
1621
+ def self.json_escape(s); end
1622
+ def self.unwrapped_html_escape(s); end
1623
+ def unwrapped_html_escape(s); end
1624
+ end
1625
+ class ActiveSupport::SafeBuffer < String
1626
+ def %(args); end
1627
+ def +(other); end
1628
+ def <<(value); end
1629
+ def [](*args); end
1630
+ def capitalize!(*args); end
1631
+ def capitalize(*args, &block); end
1632
+ def chomp!(*args); end
1633
+ def chomp(*args, &block); end
1634
+ def chop!(*args); end
1635
+ def chop(*args, &block); end
1636
+ def clone_empty; end
1637
+ def concat(value); end
1638
+ def delete!(*args); end
1639
+ def delete(*args, &block); end
1640
+ def downcase!(*args); end
1641
+ def downcase(*args, &block); end
1642
+ def encode_with(coder); end
1643
+ def gsub!(*args); end
1644
+ def gsub(*args, &block); end
1645
+ def html_escape_interpolated_argument(arg); end
1646
+ def html_safe?; end
1647
+ def initialize(str = nil); end
1648
+ def initialize_copy(other); end
1649
+ def lstrip!(*args); end
1650
+ def lstrip(*args, &block); end
1651
+ def next!(*args); end
1652
+ def next(*args, &block); end
1653
+ def original_concat(*arg0); end
1654
+ def prepend(value); end
1655
+ def reverse!(*args); end
1656
+ def reverse(*args, &block); end
1657
+ def rstrip!(*args); end
1658
+ def rstrip(*args, &block); end
1659
+ def safe_concat(value); end
1660
+ def slice!(*args); end
1661
+ def slice(*args, &block); end
1662
+ def squeeze!(*args); end
1663
+ def squeeze(*args, &block); end
1664
+ def strip!(*args); end
1665
+ def strip(*args, &block); end
1666
+ def sub!(*args); end
1667
+ def sub(*args, &block); end
1668
+ def succ!(*args); end
1669
+ def succ(*args, &block); end
1670
+ def swapcase!(*args); end
1671
+ def swapcase(*args, &block); end
1672
+ def to_param; end
1673
+ def to_s; end
1674
+ def tr!(*args); end
1675
+ def tr(*args, &block); end
1676
+ def tr_s!(*args); end
1677
+ def tr_s(*args, &block); end
1678
+ def upcase!(*args); end
1679
+ def upcase(*args, &block); end
1680
+ end
1681
+ class ActiveSupport::SafeBuffer::SafeConcatError < StandardError
1682
+ def initialize; end
1683
+ end
1684
+ class ActiveSupport::StringInquirer < String
1685
+ def method_missing(method_name, *arguments); end
1686
+ def respond_to_missing?(method_name, include_private = nil); end
1687
+ end
1688
+ class ActiveSupport::ExecutionWrapper
1689
+ def __callbacks; end
1690
+ def __callbacks?; end
1691
+ def _complete_callbacks; end
1692
+ def _run_callbacks; end
1693
+ def _run_complete_callbacks(&block); end
1694
+ def _run_run_callbacks(&block); end
1695
+ def complete!; end
1696
+ def hook_state; end
1697
+ def run!; end
1698
+ def self.__callbacks; end
1699
+ def self.__callbacks=(val); end
1700
+ def self.__callbacks?; end
1701
+ def self._complete_callbacks; end
1702
+ def self._complete_callbacks=(value); end
1703
+ def self._run_callbacks; end
1704
+ def self._run_callbacks=(value); end
1705
+ def self.active; end
1706
+ def self.active=(arg0); end
1707
+ def self.active?; end
1708
+ def self.inherited(other); end
1709
+ def self.register_hook(hook, outer: nil); end
1710
+ def self.run!; end
1711
+ def self.to_complete(*args, &block); end
1712
+ def self.to_run(*args, &block); end
1713
+ def self.wrap; end
1714
+ extend ActiveSupport::Callbacks::ClassMethods
1715
+ extend ActiveSupport::DescendantsTracker
1716
+ include ActiveSupport::Callbacks
1717
+ end
1718
+ class ActiveSupport::ExecutionWrapper::RunHook < Struct
1719
+ def before(target); end
1720
+ def hook; end
1721
+ def hook=(_); end
1722
+ def self.[](*arg0); end
1723
+ def self.members; end
1724
+ def self.new(*arg0); end
1725
+ end
1726
+ class ActiveSupport::ExecutionWrapper::CompleteHook < Struct
1727
+ def after(target); end
1728
+ def before(target); end
1729
+ def hook; end
1730
+ def hook=(_); end
1731
+ def self.[](*arg0); end
1732
+ def self.members; end
1733
+ def self.new(*arg0); end
1734
+ end
1735
+ class ActiveSupport::Executor < ActiveSupport::ExecutionWrapper
1736
+ end
1737
+ class ActiveSupport::Reloader < ActiveSupport::ExecutionWrapper
1738
+ def _class_unload_callbacks; end
1739
+ def _prepare_callbacks; end
1740
+ def _run_class_unload_callbacks(&block); end
1741
+ def _run_prepare_callbacks(&block); end
1742
+ def check; end
1743
+ def check=(val); end
1744
+ def check?; end
1745
+ def class_unload!(&block); end
1746
+ def complete!; end
1747
+ def executor; end
1748
+ def executor=(val); end
1749
+ def executor?; end
1750
+ def initialize; end
1751
+ def release_unload_lock!; end
1752
+ def require_unload_lock!; end
1753
+ def run!; end
1754
+ def self.__callbacks; end
1755
+ def self._class_unload_callbacks; end
1756
+ def self._class_unload_callbacks=(value); end
1757
+ def self._prepare_callbacks; end
1758
+ def self._prepare_callbacks=(value); end
1759
+ def self.after_class_unload(*args, &block); end
1760
+ def self.before_class_unload(*args, &block); end
1761
+ def self.check!; end
1762
+ def self.check; end
1763
+ def self.check=(val); end
1764
+ def self.check?; end
1765
+ def self.executor; end
1766
+ def self.executor=(val); end
1767
+ def self.executor?; end
1768
+ def self.prepare!; end
1769
+ def self.reload!; end
1770
+ def self.reloaded!; end
1771
+ def self.run!; end
1772
+ def self.to_prepare(*args, &block); end
1773
+ def self.wrap; end
1774
+ end
1775
+ class ActiveSupport::Concurrency::ShareLock
1776
+ def busy_for_exclusive?(purpose); end
1777
+ def busy_for_sharing?(purpose); end
1778
+ def eligible_waiters?(compatible); end
1779
+ def exclusive(purpose: nil, compatible: nil, after_compatible: nil, no_wait: nil); end
1780
+ def initialize; end
1781
+ def raw_state; end
1782
+ def sharing; end
1783
+ def start_exclusive(purpose: nil, compatible: nil, no_wait: nil); end
1784
+ def start_sharing; end
1785
+ def stop_exclusive(compatible: nil); end
1786
+ def stop_sharing; end
1787
+ def wait_for(method); end
1788
+ def yield_shares(purpose: nil, compatible: nil, block_share: nil); end
1789
+ include MonitorMixin
1790
+ end
1791
+ module ActiveSupport::Dependencies
1792
+ def autoload_module!(into, const_name, qualified_name, path_suffix); end
1793
+ def autoload_once_paths; end
1794
+ def autoload_once_paths=(obj); end
1795
+ def autoload_paths; end
1796
+ def autoload_paths=(obj); end
1797
+ def autoloadable_module?(path_suffix); end
1798
+ def autoloaded?(desc); end
1799
+ def autoloaded_constants; end
1800
+ def autoloaded_constants=(obj); end
1801
+ def clear; end
1802
+ def constant_watch_stack; end
1803
+ def constant_watch_stack=(obj); end
1804
+ def constantize(name); end
1805
+ def depend_on(file_name, message = nil); end
1806
+ def explicitly_unloadable_constants; end
1807
+ def explicitly_unloadable_constants=(obj); end
1808
+ def history; end
1809
+ def history=(obj); end
1810
+ def hook!; end
1811
+ def interlock; end
1812
+ def interlock=(obj); end
1813
+ def load?; end
1814
+ def load_file(path, const_paths = nil); end
1815
+ def load_missing_constant(from_mod, const_name); end
1816
+ def load_once_path?(path); end
1817
+ def loadable_constants_for_path(path, bases = nil); end
1818
+ def loaded; end
1819
+ def loaded=(obj); end
1820
+ def loading; end
1821
+ def loading=(obj); end
1822
+ def mark_for_unload(const_desc); end
1823
+ def mechanism; end
1824
+ def mechanism=(obj); end
1825
+ def new_constants_in(*descs); end
1826
+ def qualified_const_defined?(path); end
1827
+ def qualified_name_for(mod, name); end
1828
+ def reference(klass); end
1829
+ def remove_constant(const); end
1830
+ def remove_unloadable_constants!; end
1831
+ def require_or_load(file_name, const_path = nil); end
1832
+ def safe_constantize(name); end
1833
+ def search_for_file(path_suffix); end
1834
+ def self.autoload_once_paths; end
1835
+ def self.autoload_once_paths=(obj); end
1836
+ def self.autoload_paths; end
1837
+ def self.autoload_paths=(obj); end
1838
+ def self.autoloaded_constants; end
1839
+ def self.autoloaded_constants=(obj); end
1840
+ def self.constant_watch_stack; end
1841
+ def self.constant_watch_stack=(obj); end
1842
+ def self.explicitly_unloadable_constants; end
1843
+ def self.explicitly_unloadable_constants=(obj); end
1844
+ def self.history; end
1845
+ def self.history=(obj); end
1846
+ def self.interlock; end
1847
+ def self.interlock=(obj); end
1848
+ def self.load_interlock; end
1849
+ def self.loaded; end
1850
+ def self.loaded=(obj); end
1851
+ def self.loading; end
1852
+ def self.loading=(obj); end
1853
+ def self.mechanism; end
1854
+ def self.mechanism=(obj); end
1855
+ def self.run_interlock; end
1856
+ def self.unload_interlock; end
1857
+ def self.warnings_on_first_load; end
1858
+ def self.warnings_on_first_load=(obj); end
1859
+ def to_constant_name(desc); end
1860
+ def unhook!; end
1861
+ def warnings_on_first_load; end
1862
+ def warnings_on_first_load=(obj); end
1863
+ def will_unload?(const_desc); end
1864
+ extend ActiveSupport::Dependencies
1865
+ end
1866
+ class ActiveSupport::Dependencies::Interlock
1867
+ def done_running; end
1868
+ def done_unloading; end
1869
+ def initialize; end
1870
+ def loading; end
1871
+ def permit_concurrent_loads; end
1872
+ def raw_state(&block); end
1873
+ def running; end
1874
+ def start_running; end
1875
+ def start_unloading; end
1876
+ def unloading; end
1877
+ end
1878
+ class ActiveSupport::Dependencies::WatchStack
1879
+ def each(&block); end
1880
+ def initialize; end
1881
+ def new_constants; end
1882
+ def pop_modules(modules); end
1883
+ def watch_namespaces(namespaces); end
1884
+ def watching; end
1885
+ def watching?; end
1886
+ include Enumerable
1887
+ end
1888
+ module ActiveSupport::Dependencies::ModuleConstMissing
1889
+ def const_missing(const_name); end
1890
+ def guess_for_anonymous(const_name); end
1891
+ def self.append_features(base); end
1892
+ def self.exclude_from(base); end
1893
+ def unloadable(const_desc = nil); end
1894
+ end
1895
+ module ActiveSupport::Dependencies::Loadable
1896
+ def load(file, wrap = nil); end
1897
+ def load_dependency(file); end
1898
+ def require(file); end
1899
+ def require_dependency(file_name, message = nil); end
1900
+ def require_or_load(file_name); end
1901
+ def self.exclude_from(base); end
1902
+ def unloadable(const_desc); end
1903
+ end
1904
+ module ActiveSupport::Dependencies::Blamable
1905
+ def blame_file!(file); end
1906
+ def blamed_files; end
1907
+ def copy_blame!(exc); end
1908
+ def describe_blame; end
1909
+ end
1910
+ class ActiveSupport::Dependencies::ClassCache
1911
+ def [](key); end
1912
+ def clear!; end
1913
+ def empty?; end
1914
+ def get(key); end
1915
+ def initialize; end
1916
+ def key?(key); end
1917
+ def safe_get(key); end
1918
+ def store(klass); end
1919
+ end
1920
+ module ActiveSupport::NumberHelper
1921
+ def number_to_currency(number, options = nil); end
1922
+ def number_to_delimited(number, options = nil); end
1923
+ def number_to_human(number, options = nil); end
1924
+ def number_to_human_size(number, options = nil); end
1925
+ def number_to_percentage(number, options = nil); end
1926
+ def number_to_phone(number, options = nil); end
1927
+ def number_to_rounded(number, options = nil); end
1928
+ extend ActiveSupport::Autoload
1929
+ extend ActiveSupport::NumberHelper
1930
+ end
1931
+ module ActiveSupport::NumericWithFormat
1932
+ def to_s(format = nil, options = nil); end
1933
+ end
1934
+ module ActiveSupport::RangeWithFormat
1935
+ def to_default_s(format = nil); end
1936
+ def to_formatted_s(format = nil); end
1937
+ def to_s(format = nil); end
1938
+ end
1939
+ module ActiveSupport::CompareWithRange
1940
+ def ===(value); end
1941
+ def cover?(value); end
1942
+ def include?(value); end
1943
+ end
1944
+ module ActiveSupport::IncludeTimeWithZone
1945
+ def include?(value); end
1946
+ end
1947
+ module ActiveSupport::EachTimeWithZone
1948
+ def each(&block); end
1949
+ def ensure_iteration_allowed; end
1950
+ def step(n = nil, &block); end
1951
+ end
1952
+ module SecureRandom
1953
+ def self.base58(n = nil); end
1954
+ end
1955
+ module Module::Concerning
1956
+ def concern(topic, &module_definition); end
1957
+ def concerning(topic, &block); end
1958
+ end
1959
+ module Benchmark
1960
+ def self.ms; end
1961
+ end
1962
+ module ActiveSupport::MarshalWithAutoloading
1963
+ def load(source, proc = nil); end
1964
+ end
1965
+ class ActiveSupport::ArrayInquirer < Array
1966
+ def any?(*candidates); end
1967
+ def method_missing(name, *args); end
1968
+ def respond_to_missing?(name, include_private = nil); end
1969
+ end
1970
+ class File < IO
1971
+ def self.empty?(arg0); end
1972
+ def self.size(arg0); end
1973
+ end
1974
+ module ActiveSupport::TaggedLogging
1975
+ def clear_tags!(*args, &block); end
1976
+ def flush; end
1977
+ def pop_tags(*args, &block); end
1978
+ def push_tags(*args, &block); end
1979
+ def self.new(logger); end
1980
+ def tagged(*tags); end
1981
+ end
1982
+ module ActiveSupport::TaggedLogging::Formatter
1983
+ def call(severity, timestamp, progname, msg); end
1984
+ def clear_tags!; end
1985
+ def current_tags; end
1986
+ def pop_tags(size = nil); end
1987
+ def push_tags(*tags); end
1988
+ def tagged(*tags); end
1989
+ def tags_text; end
1990
+ end
1991
+ module ActiveSupport::Cache
1992
+ def self.expand_cache_key(key, namespace = nil); end
1993
+ def self.lookup_store(*store_option); end
1994
+ def self.retrieve_cache_key(key); end
1995
+ def self.retrieve_store_class(store); end
1996
+ end
1997
+ module ActiveSupport::Cache::Strategy
1998
+ end
1999
+ class ActiveSupport::Cache::Store
2000
+ def cleanup(options = nil); end
2001
+ def clear(options = nil); end
2002
+ def decrement(name, amount = nil, options = nil); end
2003
+ def delete(name, options = nil); end
2004
+ def delete_entry(key, options); end
2005
+ def delete_matched(matcher, options = nil); end
2006
+ def exist?(name, options = nil); end
2007
+ def expanded_key(key); end
2008
+ def expanded_version(key); end
2009
+ def fetch(name, options = nil); end
2010
+ def fetch_multi(*names); end
2011
+ def get_entry_value(entry, name, options); end
2012
+ def handle_expired_entry(entry, key, options); end
2013
+ def increment(name, amount = nil, options = nil); end
2014
+ def initialize(options = nil); end
2015
+ def instrument(operation, key, options = nil); end
2016
+ def key_matcher(pattern, options); end
2017
+ def log; end
2018
+ def logger; end
2019
+ def logger=(obj); end
2020
+ def merged_options(call_options); end
2021
+ def mute; end
2022
+ def namespace_key(key, options = nil); end
2023
+ def normalize_key(key, options = nil); end
2024
+ def normalize_version(key, options = nil); end
2025
+ def options; end
2026
+ def read(name, options = nil); end
2027
+ def read_entry(key, options); end
2028
+ def read_multi(*names); end
2029
+ def read_multi_entries(names, options); end
2030
+ def save_block_result_to_cache(name, options); end
2031
+ def self.ensure_connection_pool_added!; end
2032
+ def self.logger; end
2033
+ def self.logger=(obj); end
2034
+ def self.retrieve_pool_options(options); end
2035
+ def silence!; end
2036
+ def silence; end
2037
+ def silence?; end
2038
+ def write(name, value, options = nil); end
2039
+ def write_entry(key, entry, options); end
2040
+ def write_multi(hash, options = nil); end
2041
+ def write_multi_entries(hash, options); end
2042
+ end
2043
+ class ActiveSupport::Cache::Entry
2044
+ def compress!(compress_threshold); end
2045
+ def compressed?; end
2046
+ def dup_value!; end
2047
+ def expired?; end
2048
+ def expires_at; end
2049
+ def expires_at=(value); end
2050
+ def initialize(value, compress: nil, compress_threshold: nil, version: nil, expires_in: nil, **arg5); end
2051
+ def mismatched?(version); end
2052
+ def size; end
2053
+ def uncompress(value); end
2054
+ def value; end
2055
+ def version; end
2056
+ end
2057
+ module ActiveSupport::Cache::Strategy::LocalCache
2058
+ def bypass_local_cache; end
2059
+ def cleanup(options = nil); end
2060
+ def clear(options = nil); end
2061
+ def decrement(name, amount = nil, options = nil); end
2062
+ def delete_entry(key, options); end
2063
+ def increment(name, amount = nil, options = nil); end
2064
+ def local_cache; end
2065
+ def local_cache_key; end
2066
+ def middleware; end
2067
+ def read_entry(key, options); end
2068
+ def read_multi_entries(keys, options); end
2069
+ def use_temporary_local_cache(temporary_cache); end
2070
+ def with_local_cache; end
2071
+ def write_cache_value(name, value, options); end
2072
+ def write_entry(key, entry, options); end
2073
+ end
2074
+ class ActiveSupport::Cache::Strategy::LocalCache::LocalCacheRegistry
2075
+ def cache_for(local_cache_key); end
2076
+ def initialize; end
2077
+ def self.cache_for(l); end
2078
+ def self.set_cache_for(l, v); end
2079
+ def set_cache_for(local_cache_key, value); end
2080
+ extend ActiveSupport::PerThreadRegistry
2081
+ end
2082
+ class ActiveSupport::Cache::Strategy::LocalCache::LocalStore < ActiveSupport::Cache::Store
2083
+ def clear(options = nil); end
2084
+ def delete_entry(key, options); end
2085
+ def fetch_entry(key, options = nil); end
2086
+ def initialize; end
2087
+ def read_entry(key, options); end
2088
+ def read_multi_entries(keys, options); end
2089
+ def synchronize; end
2090
+ def write_entry(key, value, options); end
2091
+ end
2092
+ class ActiveSupport::Cache::NullStore < ActiveSupport::Cache::Store
2093
+ def cleanup(options = nil); end
2094
+ def clear(options = nil); end
2095
+ def decrement(name, amount = nil, options = nil); end
2096
+ def delete_entry(key, options); end
2097
+ def delete_matched(matcher, options = nil); end
2098
+ def increment(name, amount = nil, options = nil); end
2099
+ def read_entry(key, options); end
2100
+ def write_entry(key, entry, options); end
2101
+ end
2102
+ class ActiveSupport::Cache::Strategy::LocalCache::Middleware
2103
+ def call(env); end
2104
+ def initialize(name, local_cache_key); end
2105
+ def local_cache_key; end
2106
+ def name; end
2107
+ def new(app); end
2108
+ end
2109
+ class ActiveSupport::Subscriber
2110
+ def self.add_event_subscriber(event); end
2111
+ def self.attach_to(namespace, subscriber = nil, notifier = nil); end
2112
+ def self.method_added(event); end
2113
+ def self.namespace; end
2114
+ def self.notifier; end
2115
+ def self.subscriber; end
2116
+ def self.subscribers; end
2117
+ end
2118
+ class ActiveSupport::SubscriberQueueRegistry
2119
+ def get_queue(queue_key); end
2120
+ def initialize; end
2121
+ extend ActiveSupport::PerThreadRegistry
2122
+ end
2123
+ class ActiveSupport::LogSubscriber < ActiveSupport::Subscriber
2124
+ def self.colorize_logging; end
2125
+ def self.colorize_logging=(obj); end
2126
+ def self.flush_all!; end
2127
+ def self.log_subscribers; end
2128
+ def self.logger; end
2129
+ def self.logger=(arg0); end
2130
+ end
2131
+ class ActiveSupport::Cache::MemoryStore < ActiveSupport::Cache::Store
2132
+ def cached_size(key, entry); end
2133
+ def cleanup(options = nil); end
2134
+ def clear(options = nil); end
2135
+ def decrement(name, amount = nil, options = nil); end
2136
+ def delete_entry(key, options); end
2137
+ def delete_matched(matcher, options = nil); end
2138
+ def increment(name, amount = nil, options = nil); end
2139
+ def initialize(options = nil); end
2140
+ def inspect; end
2141
+ def modify_value(name, amount, options); end
2142
+ def prune(target_size, max_time = nil); end
2143
+ def pruning?; end
2144
+ def read_entry(key, options); end
2145
+ def synchronize(&block); end
2146
+ def write_entry(key, entry, options); end
2147
+ end
2148
+ module ActiveSupport::Benchmarkable
2149
+ def benchmark(message = nil, options = nil); end
2150
+ end
2151
+ class ActiveSupport::Digest
2152
+ def self.hash_digest_class; end
2153
+ def self.hash_digest_class=(klass); end
2154
+ def self.hexdigest(arg); end
2155
+ end
2156
+ module ActiveSupport::Configurable
2157
+ def config; end
2158
+ extend ActiveSupport::Concern
2159
+ end
2160
+ class ActiveSupport::Configurable::Configuration < ActiveSupport::InheritableOptions
2161
+ def compile_methods!; end
2162
+ def self.compile_methods!(keys); end
2163
+ end
2164
+ module ActiveSupport::Configurable::ClassMethods
2165
+ def config; end
2166
+ def config_accessor(*names); end
2167
+ def configure; end
2168
+ end
2169
+ module ActiveSupport::Testing
2170
+ end
2171
+ module ActiveSupport::Testing::TaggedLogging
2172
+ def before_setup; end
2173
+ def tagged_logger; end
2174
+ def tagged_logger=(arg0); end
2175
+ end
2176
+ module ActiveSupport::Testing::SetupAndTeardown
2177
+ def after_teardown; end
2178
+ def before_setup; end
2179
+ def self.prepended(klass); end
2180
+ end
2181
+ module ActiveSupport::Testing::SetupAndTeardown::ClassMethods
2182
+ def setup(*args, &block); end
2183
+ def teardown(*args, &block); end
2184
+ end
2185
+ module ActiveSupport::Testing::Assertions
2186
+ def assert_changes(expression, message = nil, from: nil, to: nil, &block); end
2187
+ def assert_difference(expression, *args, &block); end
2188
+ def assert_no_changes(expression, message = nil, &block); end
2189
+ def assert_no_difference(expression, message = nil, &block); end
2190
+ def assert_not(object, message = nil); end
2191
+ def assert_nothing_raised; end
2192
+ end
2193
+ module ActiveSupport::Testing::Deprecation
2194
+ def assert_deprecated(match = nil, deprecator = nil, &block); end
2195
+ def assert_not_deprecated(deprecator = nil, &block); end
2196
+ def collect_deprecations(deprecator = nil); end
2197
+ end
2198
+ module ActiveSupport::Testing::Declarative
2199
+ def test(name, &block); end
2200
+ end
2201
+ module ActiveSupport::Testing::Isolation
2202
+ def run; end
2203
+ def self.forking_env?; end
2204
+ def self.included(klass); end
2205
+ include ActiveSupport::Testing::Isolation::Forking
2206
+ end
2207
+ module ActiveSupport::Testing::Isolation::Forking
2208
+ def run_in_isolation(&blk); end
2209
+ end
2210
+ module ActiveSupport::Testing::Isolation::Subprocess
2211
+ def run_in_isolation(&blk); end
2212
+ end
2213
+ module ActiveSupport::Testing::ConstantLookup
2214
+ extend ActiveSupport::Concern
2215
+ end
2216
+ module ActiveSupport::Testing::ConstantLookup::ClassMethods
2217
+ def determine_constant_from_test_name(test_name); end
2218
+ end
2219
+ class ActiveSupport::Testing::SimpleStubs
2220
+ def initialize; end
2221
+ def stub_object(object, method_name, &block); end
2222
+ def stubbing(object, method_name); end
2223
+ def unstub_all!; end
2224
+ def unstub_object(stub); end
2225
+ end
2226
+ class ActiveSupport::Testing::SimpleStubs::Stub < Struct
2227
+ def method_name; end
2228
+ def method_name=(_); end
2229
+ def object; end
2230
+ def object=(_); end
2231
+ def original_method; end
2232
+ def original_method=(_); end
2233
+ def self.[](*arg0); end
2234
+ def self.members; end
2235
+ def self.new(*arg0); end
2236
+ end
2237
+ module ActiveSupport::Testing::TimeHelpers
2238
+ def after_teardown; end
2239
+ def freeze_time(&block); end
2240
+ def simple_stubs; end
2241
+ def travel(duration, &block); end
2242
+ def travel_back; end
2243
+ def travel_to(date_or_time); end
2244
+ end
2245
+ module ActiveSupport::Testing::FileFixtures
2246
+ def file_fixture(fixture_name); end
2247
+ extend ActiveSupport::Concern
2248
+ end
2249
+ class ActiveSupport::TestCase < Minitest::Test
2250
+ def __callbacks; end
2251
+ def __callbacks?; end
2252
+ def _run_setup_callbacks(&block); end
2253
+ def _run_teardown_callbacks(&block); end
2254
+ def _setup_callbacks; end
2255
+ def _teardown_callbacks; end
2256
+ def assert_no_match(matcher, obj, msg = nil); end
2257
+ def assert_not_empty(obj, msg = nil); end
2258
+ def assert_not_equal(exp, act, msg = nil); end
2259
+ def assert_not_in_delta(exp, act, delta = nil, msg = nil); end
2260
+ def assert_not_in_epsilon(a, b, epsilon = nil, msg = nil); end
2261
+ def assert_not_includes(collection, obj, msg = nil); end
2262
+ def assert_not_instance_of(cls, obj, msg = nil); end
2263
+ def assert_not_kind_of(cls, obj, msg = nil); end
2264
+ def assert_not_nil(obj, msg = nil); end
2265
+ def assert_not_operator(o1, op, o2 = nil, msg = nil); end
2266
+ def assert_not_predicate(o1, op, msg = nil); end
2267
+ def assert_not_respond_to(obj, meth, msg = nil); end
2268
+ def assert_not_same(exp, act, msg = nil); end
2269
+ def assert_raise(*exp); end
2270
+ def file_fixture_path; end
2271
+ def file_fixture_path?; end
2272
+ def method_name; end
2273
+ def self.__callbacks; end
2274
+ def self.__callbacks=(val); end
2275
+ def self.__callbacks?; end
2276
+ def self._setup_callbacks; end
2277
+ def self._setup_callbacks=(value); end
2278
+ def self._teardown_callbacks; end
2279
+ def self._teardown_callbacks=(value); end
2280
+ def self.file_fixture_path; end
2281
+ def self.file_fixture_path=(val); end
2282
+ def self.file_fixture_path?; end
2283
+ def self.test_order; end
2284
+ def self.test_order=(new_order); end
2285
+ extend ActiveSupport::Callbacks::ClassMethods
2286
+ extend ActiveSupport::DescendantsTracker
2287
+ extend ActiveSupport::Testing::Declarative
2288
+ extend ActiveSupport::Testing::SetupAndTeardown::ClassMethods
2289
+ extend Rails::LineFiltering
2290
+ include ActiveSupport::Callbacks
2291
+ include ActiveSupport::Testing::Assertions
2292
+ include ActiveSupport::Testing::Deprecation
2293
+ include ActiveSupport::Testing::FileFixtures
2294
+ include ActiveSupport::Testing::TaggedLogging
2295
+ include ActiveSupport::Testing::TimeHelpers
2296
+ end
2297
+ module ActiveSupport::Testing::Stream
2298
+ def capture(stream); end
2299
+ def quietly; end
2300
+ def silence_stream(stream); end
2301
+ end
2302
+ module Digest
2303
+ end
2304
+ module Digest::UUID
2305
+ def self.uuid_from_hash(hash_class, uuid_namespace, name); end
2306
+ def self.uuid_v3(uuid_namespace, name); end
2307
+ def self.uuid_v4; end
2308
+ def self.uuid_v5(uuid_namespace, name); end
2309
+ end