decidim-participatory_documents 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (559) hide show
  1. checksums.yaml +7 -0
  2. data/.erb-lint.yml +30 -0
  3. data/.eslintignore +3 -0
  4. data/.eslintrc.json +3 -0
  5. data/.github/workflows/lint.yml +43 -0
  6. data/.github/workflows/test.yml +60 -0
  7. data/.gitignore +27 -0
  8. data/.rspec +3 -0
  9. data/.rubocop-disabled.yml +11 -0
  10. data/.rubocop.yml +4 -0
  11. data/.rubocop_rails.yml +91 -0
  12. data/.rubocop_ruby.yml +1768 -0
  13. data/.ruby-version +1 -0
  14. data/.simplecov +13 -0
  15. data/CODE_OF_CONDUCT.md +74 -0
  16. data/Gemfile +39 -0
  17. data/Gemfile.lock +817 -0
  18. data/LICENSE-AGPLv3.txt +661 -0
  19. data/README.md +166 -0
  20. data/Rakefile +44 -0
  21. data/app/cells/decidim/participatory_documents/edit_suggestion_note_modal/show.erb +20 -0
  22. data/app/cells/decidim/participatory_documents/edit_suggestion_note_modal_cell.rb +35 -0
  23. data/app/cells/decidim/participatory_documents/suggestion/admin_answer.erb +7 -0
  24. data/app/cells/decidim/participatory_documents/suggestion/show.erb +11 -0
  25. data/app/cells/decidim/participatory_documents/suggestion_author/avatar.erb +3 -0
  26. data/app/cells/decidim/participatory_documents/suggestion_author/date.erb +1 -0
  27. data/app/cells/decidim/participatory_documents/suggestion_author/name.erb +3 -0
  28. data/app/cells/decidim/participatory_documents/suggestion_author/show.erb +9 -0
  29. data/app/cells/decidim/participatory_documents/suggestion_author_cell.rb +50 -0
  30. data/app/cells/decidim/participatory_documents/suggestion_cell.rb +41 -0
  31. data/app/commands/decidim/participatory_documents/admin/answer_suggestion.rb +62 -0
  32. data/app/commands/decidim/participatory_documents/admin/assign_suggestions_to_valuator.rb +59 -0
  33. data/app/commands/decidim/participatory_documents/admin/create_document.rb +55 -0
  34. data/app/commands/decidim/participatory_documents/admin/create_suggestion_note.rb +49 -0
  35. data/app/commands/decidim/participatory_documents/admin/destroy_annotation.rb +67 -0
  36. data/app/commands/decidim/participatory_documents/admin/notify_suggestion_answer.rb +52 -0
  37. data/app/commands/decidim/participatory_documents/admin/publish_answers.rb +59 -0
  38. data/app/commands/decidim/participatory_documents/admin/publish_document.rb +26 -0
  39. data/app/commands/decidim/participatory_documents/admin/unassign_suggestions_from_valuator.rb +60 -0
  40. data/app/commands/decidim/participatory_documents/admin/update_document.rb +85 -0
  41. data/app/commands/decidim/participatory_documents/admin/update_or_create_annotation.rb +98 -0
  42. data/app/commands/decidim/participatory_documents/admin/update_section.rb +52 -0
  43. data/app/commands/decidim/participatory_documents/admin/update_suggestion_note.rb +36 -0
  44. data/app/commands/decidim/participatory_documents/create_suggestion.rb +65 -0
  45. data/app/controllers/concerns/decidim/participatory_documents/admin/needs_admin_snippets.rb +25 -0
  46. data/app/controllers/concerns/decidim/participatory_documents/needs_pdf_document.rb +105 -0
  47. data/app/controllers/decidim/participatory_documents/admin/annotations_controller.rb +51 -0
  48. data/app/controllers/decidim/participatory_documents/admin/application_controller.rb +18 -0
  49. data/app/controllers/decidim/participatory_documents/admin/documents_controller.rb +104 -0
  50. data/app/controllers/decidim/participatory_documents/admin/sections_controller.rb +39 -0
  51. data/app/controllers/decidim/participatory_documents/admin/suggestion_notes_controller.rb +59 -0
  52. data/app/controllers/decidim/participatory_documents/admin/suggestions_controller.rb +160 -0
  53. data/app/controllers/decidim/participatory_documents/admin/valuation_assignments_controller.rb +58 -0
  54. data/app/controllers/decidim/participatory_documents/application_controller.rb +14 -0
  55. data/app/controllers/decidim/participatory_documents/document_suggestions_controller.rb +40 -0
  56. data/app/controllers/decidim/participatory_documents/documents_controller.rb +18 -0
  57. data/app/controllers/decidim/participatory_documents/section_suggestions_controller.rb +40 -0
  58. data/app/events/decidim/participatory_documents/suggestion_answer_event.rb +43 -0
  59. data/app/forms/decidim/participatory_documents/admin/annotation_form.rb +26 -0
  60. data/app/forms/decidim/participatory_documents/admin/answer_suggestion_form.rb +21 -0
  61. data/app/forms/decidim/participatory_documents/admin/document_form.rb +29 -0
  62. data/app/forms/decidim/participatory_documents/admin/section_form.rb +17 -0
  63. data/app/forms/decidim/participatory_documents/admin/suggestion_note_form.rb +15 -0
  64. data/app/forms/decidim/participatory_documents/admin/valuation_assignment_form.rb +38 -0
  65. data/app/forms/decidim/participatory_documents/suggestion_form.rb +39 -0
  66. data/app/helpers/decidim/participatory_documents/admin/button_helper.rb +17 -0
  67. data/app/helpers/decidim/participatory_documents/admin/documents_helper.rb +71 -0
  68. data/app/helpers/decidim/participatory_documents/admin/suggestion_helper.rb +54 -0
  69. data/app/helpers/decidim/participatory_documents/documents_helper.rb +41 -0
  70. data/app/models/concerns/decidim/participatory_documents/participatory_space_user_role_override.rb +19 -0
  71. data/app/models/concerns/decidim/participatory_documents/valuator_override.rb +18 -0
  72. data/app/models/decidim/participatory_documents/annotation.rb +28 -0
  73. data/app/models/decidim/participatory_documents/application_record.rb +10 -0
  74. data/app/models/decidim/participatory_documents/document.rb +67 -0
  75. data/app/models/decidim/participatory_documents/section.rb +44 -0
  76. data/app/models/decidim/participatory_documents/suggestion.rb +167 -0
  77. data/app/models/decidim/participatory_documents/suggestion_note.rb +18 -0
  78. data/app/models/decidim/participatory_documents/valuation_assignment.rb +21 -0
  79. data/app/packs/entrypoints/decidim_participatory_documents.js +6 -0
  80. data/app/packs/entrypoints/decidim_participatory_documents.scss +18 -0
  81. data/app/packs/entrypoints/decidim_participatory_documents_admin.js +7 -0
  82. data/app/packs/entrypoints/decidim_participatory_documents_admin.scss +69 -0
  83. data/app/packs/entrypoints/decidim_participatory_documents_editor.js +12 -0
  84. data/app/packs/entrypoints/decidim_participatory_documents_editor.scss +33 -0
  85. data/app/packs/entrypoints/decidim_participatory_documents_viewer.js +6 -0
  86. data/app/packs/entrypoints/decidim_participatory_documents_viewer.scss +11 -0
  87. data/app/packs/images/.keep +0 -0
  88. data/app/packs/images/badge.svg +6 -0
  89. data/app/packs/images/fullscreen.svg +6 -0
  90. data/app/packs/images/fullscreen_exit.svg +14 -0
  91. data/app/packs/images/group.svg +1 -0
  92. data/app/packs/images/move.svg +49 -0
  93. data/app/packs/images/participatory_documents.svg +14 -0
  94. data/app/packs/src/decidim/participatory_documents/admin/manage_bulk_suggestions.js +133 -0
  95. data/app/packs/src/decidim/participatory_documents/admin/preview_box_color.js +14 -0
  96. data/app/packs/src/decidim/participatory_documents/global.js +22 -0
  97. data/app/packs/src/decidim/participatory_documents/pdf/box.js +234 -0
  98. data/app/packs/src/decidim/participatory_documents/pdf/box_control_group.js +80 -0
  99. data/app/packs/src/decidim/participatory_documents/pdf/box_control_move.js +55 -0
  100. data/app/packs/src/decidim/participatory_documents/pdf/box_controls.js +18 -0
  101. data/app/packs/src/decidim/participatory_documents/pdf/pdf_modal_manager.js +129 -0
  102. data/app/packs/src/decidim/participatory_documents/pdf/pdf_state_manager.js +141 -0
  103. data/app/packs/src/decidim/participatory_documents/pdf/polygon_editor.js +99 -0
  104. data/app/packs/src/decidim/participatory_documents/pdf/polygon_viewer.js +55 -0
  105. data/app/packs/src/decidim/participatory_documents/pdf/suggestion_form.js +142 -0
  106. data/app/packs/src/decidim/participatory_documents/pdf.js +37 -0
  107. data/app/packs/src/decidim/participatory_documents/pdf_admin.js +60 -0
  108. data/app/packs/src/decidim/participatory_documents/pdf_notifications.js +20 -0
  109. data/app/packs/src/decidim/participatory_documents/skip_cookie_warning.js +10 -0
  110. data/app/packs/stylesheets/decidim/participatory_documents/decidim_admin_classes.scss +13 -0
  111. data/app/packs/stylesheets/decidim/participatory_documents/pdf/admin_modals.scss +41 -0
  112. data/app/packs/stylesheets/decidim/participatory_documents/pdf/admin_polygons.scss +131 -0
  113. data/app/packs/stylesheets/decidim/participatory_documents/pdf/admin_tweaks.scss +44 -0
  114. data/app/packs/stylesheets/decidim/participatory_documents/pdf/defaults.scss +7 -0
  115. data/app/packs/stylesheets/decidim/participatory_documents/pdf/document.scss +7 -0
  116. data/app/packs/stylesheets/decidim/participatory_documents/pdf/modals.scss +152 -0
  117. data/app/packs/stylesheets/decidim/participatory_documents/pdf/notifications.scss +31 -0
  118. data/app/packs/stylesheets/decidim/participatory_documents/pdf/polygons.scss +80 -0
  119. data/app/packs/stylesheets/decidim/participatory_documents/pdf/tweaks.scss +147 -0
  120. data/app/permissions/decidim/participatory_documents/admin/permissions.rb +118 -0
  121. data/app/permissions/decidim/participatory_documents/permissions.rb +16 -0
  122. data/app/presenters/decidim/participatory_documents/admin_log/annotation_presenter.rb +25 -0
  123. data/app/presenters/decidim/participatory_documents/admin_log/document_presenter.rb +13 -0
  124. data/app/presenters/decidim/participatory_documents/admin_log/section_presenter.rb +25 -0
  125. data/app/presenters/decidim/participatory_documents/admin_log/suggestion_note_presenter.rb +49 -0
  126. data/app/serializers/decidim/participatory_documents/suggestion_serializer.rb +67 -0
  127. data/app/uploaders/decidim/participatory_documents/pdf_document_uploader.rb +11 -0
  128. data/app/views/decidim/admin/exports/_dropdown.html.erb +16 -0
  129. data/app/views/decidim/participatory_documents/admin/documents/_editor_modal.html.erb +3 -0
  130. data/app/views/decidim/participatory_documents/admin/documents/_form.html.erb +39 -0
  131. data/app/views/decidim/participatory_documents/admin/documents/_title.html.erb +7 -0
  132. data/app/views/decidim/participatory_documents/admin/documents/edit.html.erb +18 -0
  133. data/app/views/decidim/participatory_documents/admin/documents/edit_pdf.html.erb +15 -0
  134. data/app/views/decidim/participatory_documents/admin/documents/index.html.erb +11 -0
  135. data/app/views/decidim/participatory_documents/admin/documents/new.html.erb +17 -0
  136. data/app/views/decidim/participatory_documents/admin/documents/pdf_viewer.html.erb +105 -0
  137. data/app/views/decidim/participatory_documents/admin/sections/_form.html.erb +24 -0
  138. data/app/views/decidim/participatory_documents/admin/suggestion_notes/_editing_suggestion_note.html.erb +18 -0
  139. data/app/views/decidim/participatory_documents/admin/suggestion_notes/_form.html.erb +8 -0
  140. data/app/views/decidim/participatory_documents/admin/suggestion_notes/_suggestion_notes.html.erb +46 -0
  141. data/app/views/decidim/participatory_documents/admin/suggestions/_add_valuators.html.erb +17 -0
  142. data/app/views/decidim/participatory_documents/admin/suggestions/_bulk-actions.html.erb +7 -0
  143. data/app/views/decidim/participatory_documents/admin/suggestions/_form.html.erb +30 -0
  144. data/app/views/decidim/participatory_documents/admin/suggestions/_js-callout.html.erb +6 -0
  145. data/app/views/decidim/participatory_documents/admin/suggestions/_suggestion.html.erb +33 -0
  146. data/app/views/decidim/participatory_documents/admin/suggestions/_valuators.html.erb +43 -0
  147. data/app/views/decidim/participatory_documents/admin/suggestions/bulk_actions/_assign_to_valuator.html.erb +15 -0
  148. data/app/views/decidim/participatory_documents/admin/suggestions/bulk_actions/_dropdown.html.erb +36 -0
  149. data/app/views/decidim/participatory_documents/admin/suggestions/bulk_actions/_publish_answers.html.erb +14 -0
  150. data/app/views/decidim/participatory_documents/admin/suggestions/bulk_actions/_unassign_from_valuator.html.erb +15 -0
  151. data/app/views/decidim/participatory_documents/admin/suggestions/index.html.erb +45 -0
  152. data/app/views/decidim/participatory_documents/admin/suggestions/publish_answers.js.erb +17 -0
  153. data/app/views/decidim/participatory_documents/admin/suggestions/show.html.erb +55 -0
  154. data/app/views/decidim/participatory_documents/document_suggestions/_form.html.erb +29 -0
  155. data/app/views/decidim/participatory_documents/document_suggestions/index.html.erb +14 -0
  156. data/app/views/decidim/participatory_documents/documents/_pdfjs_base.html.erb +428 -0
  157. data/app/views/decidim/participatory_documents/documents/index.html.erb +27 -0
  158. data/app/views/decidim/participatory_documents/documents/pdf_viewer.html.erb +63 -0
  159. data/app/views/decidim/participatory_documents/section_suggestions/_form.html.erb +8 -0
  160. data/app/views/decidim/participatory_documents/section_suggestions/index.html.erb +14 -0
  161. data/babel.config.json +25 -0
  162. data/bin/bundle +62 -0
  163. data/bin/rails +6 -0
  164. data/bin/webpack-dev-server +6 -0
  165. data/codecov.yml +11 -0
  166. data/config/assets.rb +11 -0
  167. data/config/i18n-tasks.yml +12 -0
  168. data/config/locales/en.yml +266 -0
  169. data/crowdin.yml +45 -0
  170. data/db/migrate/20221018112720_create_decidim_participatory_documents_document.rb +17 -0
  171. data/db/migrate/20221115233021_create_decidim_participatory_documents_participation_sections.rb +12 -0
  172. data/db/migrate/20221115233022_create_decidim_participatory_documents_annotations.rb +13 -0
  173. data/db/migrate/20221115233023_create_decidim_participatory_documents_suggestions.rb +17 -0
  174. data/db/migrate/20221115233024_create_decidim_participatory_documents_suggestion_notes.rb +15 -0
  175. data/db/migrate/20221115233024_create_decidim_participatory_documents_valuation_assignments.rb +12 -0
  176. data/db/migrate/20230616100340_add_published_at_to_decidim_participatory_documents_documents.rb +8 -0
  177. data/db/migrate/20230622081831_add_decidim_participatory_documents_box_positions.rb +37 -0
  178. data/decidim-participatory_documents.gemspec +30 -0
  179. data/lib/decidim/participatory_documents/admin.rb +8 -0
  180. data/lib/decidim/participatory_documents/admin_engine.rb +45 -0
  181. data/lib/decidim/participatory_documents/component.rb +202 -0
  182. data/lib/decidim/participatory_documents/engine.rb +46 -0
  183. data/lib/decidim/participatory_documents/seeds/Exampledocument.pdf +0 -0
  184. data/lib/decidim/participatory_documents/test/factories.rb +144 -0
  185. data/lib/decidim/participatory_documents/version.rb +9 -0
  186. data/lib/decidim/participatory_documents.rb +29 -0
  187. data/lib/tasks/decidim_participatory_documents.rake +27 -0
  188. data/package-lock.json +12687 -0
  189. data/package.json +52 -0
  190. data/pdfjs/LICENSE +177 -0
  191. data/pdfjs/README.md +12 -0
  192. data/pdfjs/build/pdf.js +15629 -0
  193. data/pdfjs/build/pdf.js.map +1 -0
  194. data/pdfjs/build/pdf.sandbox.js +280 -0
  195. data/pdfjs/build/pdf.sandbox.js.map +1 -0
  196. data/pdfjs/build/pdf.worker.js +64496 -0
  197. data/pdfjs/build/pdf.worker.js.map +1 -0
  198. data/pdfjs/web/cmaps/78-EUC-H.bcmap +0 -0
  199. data/pdfjs/web/cmaps/78-EUC-V.bcmap +0 -0
  200. data/pdfjs/web/cmaps/78-H.bcmap +0 -0
  201. data/pdfjs/web/cmaps/78-RKSJ-H.bcmap +0 -0
  202. data/pdfjs/web/cmaps/78-RKSJ-V.bcmap +0 -0
  203. data/pdfjs/web/cmaps/78-V.bcmap +0 -0
  204. data/pdfjs/web/cmaps/78ms-RKSJ-H.bcmap +0 -0
  205. data/pdfjs/web/cmaps/78ms-RKSJ-V.bcmap +0 -0
  206. data/pdfjs/web/cmaps/83pv-RKSJ-H.bcmap +0 -0
  207. data/pdfjs/web/cmaps/90ms-RKSJ-H.bcmap +0 -0
  208. data/pdfjs/web/cmaps/90ms-RKSJ-V.bcmap +0 -0
  209. data/pdfjs/web/cmaps/90msp-RKSJ-H.bcmap +0 -0
  210. data/pdfjs/web/cmaps/90msp-RKSJ-V.bcmap +0 -0
  211. data/pdfjs/web/cmaps/90pv-RKSJ-H.bcmap +0 -0
  212. data/pdfjs/web/cmaps/90pv-RKSJ-V.bcmap +0 -0
  213. data/pdfjs/web/cmaps/Add-H.bcmap +0 -0
  214. data/pdfjs/web/cmaps/Add-RKSJ-H.bcmap +0 -0
  215. data/pdfjs/web/cmaps/Add-RKSJ-V.bcmap +0 -0
  216. data/pdfjs/web/cmaps/Add-V.bcmap +0 -0
  217. data/pdfjs/web/cmaps/Adobe-CNS1-0.bcmap +0 -0
  218. data/pdfjs/web/cmaps/Adobe-CNS1-1.bcmap +0 -0
  219. data/pdfjs/web/cmaps/Adobe-CNS1-2.bcmap +0 -0
  220. data/pdfjs/web/cmaps/Adobe-CNS1-3.bcmap +0 -0
  221. data/pdfjs/web/cmaps/Adobe-CNS1-4.bcmap +0 -0
  222. data/pdfjs/web/cmaps/Adobe-CNS1-5.bcmap +0 -0
  223. data/pdfjs/web/cmaps/Adobe-CNS1-6.bcmap +0 -0
  224. data/pdfjs/web/cmaps/Adobe-CNS1-UCS2.bcmap +0 -0
  225. data/pdfjs/web/cmaps/Adobe-GB1-0.bcmap +0 -0
  226. data/pdfjs/web/cmaps/Adobe-GB1-1.bcmap +0 -0
  227. data/pdfjs/web/cmaps/Adobe-GB1-2.bcmap +0 -0
  228. data/pdfjs/web/cmaps/Adobe-GB1-3.bcmap +0 -0
  229. data/pdfjs/web/cmaps/Adobe-GB1-4.bcmap +0 -0
  230. data/pdfjs/web/cmaps/Adobe-GB1-5.bcmap +0 -0
  231. data/pdfjs/web/cmaps/Adobe-GB1-UCS2.bcmap +0 -0
  232. data/pdfjs/web/cmaps/Adobe-Japan1-0.bcmap +0 -0
  233. data/pdfjs/web/cmaps/Adobe-Japan1-1.bcmap +0 -0
  234. data/pdfjs/web/cmaps/Adobe-Japan1-2.bcmap +0 -0
  235. data/pdfjs/web/cmaps/Adobe-Japan1-3.bcmap +0 -0
  236. data/pdfjs/web/cmaps/Adobe-Japan1-4.bcmap +0 -0
  237. data/pdfjs/web/cmaps/Adobe-Japan1-5.bcmap +0 -0
  238. data/pdfjs/web/cmaps/Adobe-Japan1-6.bcmap +0 -0
  239. data/pdfjs/web/cmaps/Adobe-Japan1-UCS2.bcmap +0 -0
  240. data/pdfjs/web/cmaps/Adobe-Korea1-0.bcmap +0 -0
  241. data/pdfjs/web/cmaps/Adobe-Korea1-1.bcmap +0 -0
  242. data/pdfjs/web/cmaps/Adobe-Korea1-2.bcmap +0 -0
  243. data/pdfjs/web/cmaps/Adobe-Korea1-UCS2.bcmap +0 -0
  244. data/pdfjs/web/cmaps/B5-H.bcmap +0 -0
  245. data/pdfjs/web/cmaps/B5-V.bcmap +0 -0
  246. data/pdfjs/web/cmaps/B5pc-H.bcmap +0 -0
  247. data/pdfjs/web/cmaps/B5pc-V.bcmap +0 -0
  248. data/pdfjs/web/cmaps/CNS-EUC-H.bcmap +0 -0
  249. data/pdfjs/web/cmaps/CNS-EUC-V.bcmap +0 -0
  250. data/pdfjs/web/cmaps/CNS1-H.bcmap +0 -0
  251. data/pdfjs/web/cmaps/CNS1-V.bcmap +0 -0
  252. data/pdfjs/web/cmaps/CNS2-H.bcmap +0 -0
  253. data/pdfjs/web/cmaps/CNS2-V.bcmap +3 -0
  254. data/pdfjs/web/cmaps/ETHK-B5-H.bcmap +0 -0
  255. data/pdfjs/web/cmaps/ETHK-B5-V.bcmap +0 -0
  256. data/pdfjs/web/cmaps/ETen-B5-H.bcmap +0 -0
  257. data/pdfjs/web/cmaps/ETen-B5-V.bcmap +0 -0
  258. data/pdfjs/web/cmaps/ETenms-B5-H.bcmap +3 -0
  259. data/pdfjs/web/cmaps/ETenms-B5-V.bcmap +0 -0
  260. data/pdfjs/web/cmaps/EUC-H.bcmap +0 -0
  261. data/pdfjs/web/cmaps/EUC-V.bcmap +0 -0
  262. data/pdfjs/web/cmaps/Ext-H.bcmap +0 -0
  263. data/pdfjs/web/cmaps/Ext-RKSJ-H.bcmap +0 -0
  264. data/pdfjs/web/cmaps/Ext-RKSJ-V.bcmap +0 -0
  265. data/pdfjs/web/cmaps/Ext-V.bcmap +0 -0
  266. data/pdfjs/web/cmaps/GB-EUC-H.bcmap +0 -0
  267. data/pdfjs/web/cmaps/GB-EUC-V.bcmap +0 -0
  268. data/pdfjs/web/cmaps/GB-H.bcmap +4 -0
  269. data/pdfjs/web/cmaps/GB-V.bcmap +0 -0
  270. data/pdfjs/web/cmaps/GBK-EUC-H.bcmap +0 -0
  271. data/pdfjs/web/cmaps/GBK-EUC-V.bcmap +0 -0
  272. data/pdfjs/web/cmaps/GBK2K-H.bcmap +0 -0
  273. data/pdfjs/web/cmaps/GBK2K-V.bcmap +0 -0
  274. data/pdfjs/web/cmaps/GBKp-EUC-H.bcmap +0 -0
  275. data/pdfjs/web/cmaps/GBKp-EUC-V.bcmap +0 -0
  276. data/pdfjs/web/cmaps/GBT-EUC-H.bcmap +0 -0
  277. data/pdfjs/web/cmaps/GBT-EUC-V.bcmap +0 -0
  278. data/pdfjs/web/cmaps/GBT-H.bcmap +0 -0
  279. data/pdfjs/web/cmaps/GBT-V.bcmap +0 -0
  280. data/pdfjs/web/cmaps/GBTpc-EUC-H.bcmap +0 -0
  281. data/pdfjs/web/cmaps/GBTpc-EUC-V.bcmap +0 -0
  282. data/pdfjs/web/cmaps/GBpc-EUC-H.bcmap +0 -0
  283. data/pdfjs/web/cmaps/GBpc-EUC-V.bcmap +0 -0
  284. data/pdfjs/web/cmaps/H.bcmap +0 -0
  285. data/pdfjs/web/cmaps/HKdla-B5-H.bcmap +0 -0
  286. data/pdfjs/web/cmaps/HKdla-B5-V.bcmap +0 -0
  287. data/pdfjs/web/cmaps/HKdlb-B5-H.bcmap +0 -0
  288. data/pdfjs/web/cmaps/HKdlb-B5-V.bcmap +0 -0
  289. data/pdfjs/web/cmaps/HKgccs-B5-H.bcmap +0 -0
  290. data/pdfjs/web/cmaps/HKgccs-B5-V.bcmap +0 -0
  291. data/pdfjs/web/cmaps/HKm314-B5-H.bcmap +0 -0
  292. data/pdfjs/web/cmaps/HKm314-B5-V.bcmap +0 -0
  293. data/pdfjs/web/cmaps/HKm471-B5-H.bcmap +0 -0
  294. data/pdfjs/web/cmaps/HKm471-B5-V.bcmap +0 -0
  295. data/pdfjs/web/cmaps/HKscs-B5-H.bcmap +0 -0
  296. data/pdfjs/web/cmaps/HKscs-B5-V.bcmap +0 -0
  297. data/pdfjs/web/cmaps/Hankaku.bcmap +0 -0
  298. data/pdfjs/web/cmaps/Hiragana.bcmap +0 -0
  299. data/pdfjs/web/cmaps/KSC-EUC-H.bcmap +0 -0
  300. data/pdfjs/web/cmaps/KSC-EUC-V.bcmap +0 -0
  301. data/pdfjs/web/cmaps/KSC-H.bcmap +0 -0
  302. data/pdfjs/web/cmaps/KSC-Johab-H.bcmap +0 -0
  303. data/pdfjs/web/cmaps/KSC-Johab-V.bcmap +0 -0
  304. data/pdfjs/web/cmaps/KSC-V.bcmap +0 -0
  305. data/pdfjs/web/cmaps/KSCms-UHC-H.bcmap +0 -0
  306. data/pdfjs/web/cmaps/KSCms-UHC-HW-H.bcmap +0 -0
  307. data/pdfjs/web/cmaps/KSCms-UHC-HW-V.bcmap +0 -0
  308. data/pdfjs/web/cmaps/KSCms-UHC-V.bcmap +0 -0
  309. data/pdfjs/web/cmaps/KSCpc-EUC-H.bcmap +0 -0
  310. data/pdfjs/web/cmaps/KSCpc-EUC-V.bcmap +0 -0
  311. data/pdfjs/web/cmaps/Katakana.bcmap +0 -0
  312. data/pdfjs/web/cmaps/LICENSE +36 -0
  313. data/pdfjs/web/cmaps/NWP-H.bcmap +0 -0
  314. data/pdfjs/web/cmaps/NWP-V.bcmap +0 -0
  315. data/pdfjs/web/cmaps/RKSJ-H.bcmap +0 -0
  316. data/pdfjs/web/cmaps/RKSJ-V.bcmap +0 -0
  317. data/pdfjs/web/cmaps/Roman.bcmap +0 -0
  318. data/pdfjs/web/cmaps/UniCNS-UCS2-H.bcmap +0 -0
  319. data/pdfjs/web/cmaps/UniCNS-UCS2-V.bcmap +0 -0
  320. data/pdfjs/web/cmaps/UniCNS-UTF16-H.bcmap +0 -0
  321. data/pdfjs/web/cmaps/UniCNS-UTF16-V.bcmap +0 -0
  322. data/pdfjs/web/cmaps/UniCNS-UTF32-H.bcmap +0 -0
  323. data/pdfjs/web/cmaps/UniCNS-UTF32-V.bcmap +0 -0
  324. data/pdfjs/web/cmaps/UniCNS-UTF8-H.bcmap +0 -0
  325. data/pdfjs/web/cmaps/UniCNS-UTF8-V.bcmap +0 -0
  326. data/pdfjs/web/cmaps/UniGB-UCS2-H.bcmap +0 -0
  327. data/pdfjs/web/cmaps/UniGB-UCS2-V.bcmap +0 -0
  328. data/pdfjs/web/cmaps/UniGB-UTF16-H.bcmap +0 -0
  329. data/pdfjs/web/cmaps/UniGB-UTF16-V.bcmap +0 -0
  330. data/pdfjs/web/cmaps/UniGB-UTF32-H.bcmap +0 -0
  331. data/pdfjs/web/cmaps/UniGB-UTF32-V.bcmap +0 -0
  332. data/pdfjs/web/cmaps/UniGB-UTF8-H.bcmap +0 -0
  333. data/pdfjs/web/cmaps/UniGB-UTF8-V.bcmap +0 -0
  334. data/pdfjs/web/cmaps/UniJIS-UCS2-H.bcmap +0 -0
  335. data/pdfjs/web/cmaps/UniJIS-UCS2-HW-H.bcmap +0 -0
  336. data/pdfjs/web/cmaps/UniJIS-UCS2-HW-V.bcmap +0 -0
  337. data/pdfjs/web/cmaps/UniJIS-UCS2-V.bcmap +0 -0
  338. data/pdfjs/web/cmaps/UniJIS-UTF16-H.bcmap +0 -0
  339. data/pdfjs/web/cmaps/UniJIS-UTF16-V.bcmap +0 -0
  340. data/pdfjs/web/cmaps/UniJIS-UTF32-H.bcmap +0 -0
  341. data/pdfjs/web/cmaps/UniJIS-UTF32-V.bcmap +0 -0
  342. data/pdfjs/web/cmaps/UniJIS-UTF8-H.bcmap +0 -0
  343. data/pdfjs/web/cmaps/UniJIS-UTF8-V.bcmap +0 -0
  344. data/pdfjs/web/cmaps/UniJIS2004-UTF16-H.bcmap +0 -0
  345. data/pdfjs/web/cmaps/UniJIS2004-UTF16-V.bcmap +0 -0
  346. data/pdfjs/web/cmaps/UniJIS2004-UTF32-H.bcmap +0 -0
  347. data/pdfjs/web/cmaps/UniJIS2004-UTF32-V.bcmap +0 -0
  348. data/pdfjs/web/cmaps/UniJIS2004-UTF8-H.bcmap +0 -0
  349. data/pdfjs/web/cmaps/UniJIS2004-UTF8-V.bcmap +0 -0
  350. data/pdfjs/web/cmaps/UniJISPro-UCS2-HW-V.bcmap +0 -0
  351. data/pdfjs/web/cmaps/UniJISPro-UCS2-V.bcmap +0 -0
  352. data/pdfjs/web/cmaps/UniJISPro-UTF8-V.bcmap +0 -0
  353. data/pdfjs/web/cmaps/UniJISX0213-UTF32-H.bcmap +0 -0
  354. data/pdfjs/web/cmaps/UniJISX0213-UTF32-V.bcmap +0 -0
  355. data/pdfjs/web/cmaps/UniJISX02132004-UTF32-H.bcmap +0 -0
  356. data/pdfjs/web/cmaps/UniJISX02132004-UTF32-V.bcmap +0 -0
  357. data/pdfjs/web/cmaps/UniKS-UCS2-H.bcmap +0 -0
  358. data/pdfjs/web/cmaps/UniKS-UCS2-V.bcmap +0 -0
  359. data/pdfjs/web/cmaps/UniKS-UTF16-H.bcmap +0 -0
  360. data/pdfjs/web/cmaps/UniKS-UTF16-V.bcmap +0 -0
  361. data/pdfjs/web/cmaps/UniKS-UTF32-H.bcmap +0 -0
  362. data/pdfjs/web/cmaps/UniKS-UTF32-V.bcmap +0 -0
  363. data/pdfjs/web/cmaps/UniKS-UTF8-H.bcmap +0 -0
  364. data/pdfjs/web/cmaps/UniKS-UTF8-V.bcmap +0 -0
  365. data/pdfjs/web/cmaps/V.bcmap +0 -0
  366. data/pdfjs/web/cmaps/WP-Symbol.bcmap +0 -0
  367. data/pdfjs/web/compressed.tracemonkey-pldi-09.pdf +0 -0
  368. data/pdfjs/web/debugger.css +113 -0
  369. data/pdfjs/web/debugger.js +612 -0
  370. data/pdfjs/web/images/annotation-check.svg +11 -0
  371. data/pdfjs/web/images/annotation-comment.svg +16 -0
  372. data/pdfjs/web/images/annotation-help.svg +26 -0
  373. data/pdfjs/web/images/annotation-insert.svg +10 -0
  374. data/pdfjs/web/images/annotation-key.svg +11 -0
  375. data/pdfjs/web/images/annotation-newparagraph.svg +11 -0
  376. data/pdfjs/web/images/annotation-noicon.svg +7 -0
  377. data/pdfjs/web/images/annotation-note.svg +42 -0
  378. data/pdfjs/web/images/annotation-paperclip.svg +6 -0
  379. data/pdfjs/web/images/annotation-paragraph.svg +16 -0
  380. data/pdfjs/web/images/annotation-pushpin.svg +7 -0
  381. data/pdfjs/web/images/cursor-editorFreeText.svg +3 -0
  382. data/pdfjs/web/images/cursor-editorInk.svg +4 -0
  383. data/pdfjs/web/images/findbarButton-next.svg +3 -0
  384. data/pdfjs/web/images/findbarButton-previous.svg +3 -0
  385. data/pdfjs/web/images/loading-dark.svg +24 -0
  386. data/pdfjs/web/images/loading-icon.gif +0 -0
  387. data/pdfjs/web/images/loading.svg +1 -0
  388. data/pdfjs/web/images/secondaryToolbarButton-documentProperties.svg +3 -0
  389. data/pdfjs/web/images/secondaryToolbarButton-firstPage.svg +3 -0
  390. data/pdfjs/web/images/secondaryToolbarButton-handTool.svg +3 -0
  391. data/pdfjs/web/images/secondaryToolbarButton-lastPage.svg +3 -0
  392. data/pdfjs/web/images/secondaryToolbarButton-rotateCcw.svg +3 -0
  393. data/pdfjs/web/images/secondaryToolbarButton-rotateCw.svg +3 -0
  394. data/pdfjs/web/images/secondaryToolbarButton-scrollHorizontal.svg +3 -0
  395. data/pdfjs/web/images/secondaryToolbarButton-scrollPage.svg +3 -0
  396. data/pdfjs/web/images/secondaryToolbarButton-scrollVertical.svg +3 -0
  397. data/pdfjs/web/images/secondaryToolbarButton-scrollWrapped.svg +3 -0
  398. data/pdfjs/web/images/secondaryToolbarButton-selectTool.svg +3 -0
  399. data/pdfjs/web/images/secondaryToolbarButton-spreadEven.svg +3 -0
  400. data/pdfjs/web/images/secondaryToolbarButton-spreadNone.svg +3 -0
  401. data/pdfjs/web/images/secondaryToolbarButton-spreadOdd.svg +3 -0
  402. data/pdfjs/web/images/shadow.png +0 -0
  403. data/pdfjs/web/images/toolbarButton-bookmark.svg +3 -0
  404. data/pdfjs/web/images/toolbarButton-currentOutlineItem.svg +3 -0
  405. data/pdfjs/web/images/toolbarButton-download.svg +4 -0
  406. data/pdfjs/web/images/toolbarButton-editorFreeText.svg +3 -0
  407. data/pdfjs/web/images/toolbarButton-editorInk.svg +4 -0
  408. data/pdfjs/web/images/toolbarButton-menuArrow.svg +3 -0
  409. data/pdfjs/web/images/toolbarButton-openFile.svg +3 -0
  410. data/pdfjs/web/images/toolbarButton-pageDown.svg +3 -0
  411. data/pdfjs/web/images/toolbarButton-pageUp.svg +3 -0
  412. data/pdfjs/web/images/toolbarButton-presentationMode.svg +3 -0
  413. data/pdfjs/web/images/toolbarButton-print.svg +3 -0
  414. data/pdfjs/web/images/toolbarButton-search.svg +3 -0
  415. data/pdfjs/web/images/toolbarButton-secondaryToolbarToggle.svg +3 -0
  416. data/pdfjs/web/images/toolbarButton-sidebarToggle.svg +3 -0
  417. data/pdfjs/web/images/toolbarButton-viewAttachments.svg +3 -0
  418. data/pdfjs/web/images/toolbarButton-viewLayers.svg +3 -0
  419. data/pdfjs/web/images/toolbarButton-viewOutline.svg +3 -0
  420. data/pdfjs/web/images/toolbarButton-viewThumbnail.svg +3 -0
  421. data/pdfjs/web/images/toolbarButton-zoomIn.svg +3 -0
  422. data/pdfjs/web/images/toolbarButton-zoomOut.svg +3 -0
  423. data/pdfjs/web/images/treeitem-collapsed.svg +1 -0
  424. data/pdfjs/web/images/treeitem-expanded.svg +1 -0
  425. data/pdfjs/web/locale/ach/viewer.properties +200 -0
  426. data/pdfjs/web/locale/af/viewer.properties +177 -0
  427. data/pdfjs/web/locale/an/viewer.properties +243 -0
  428. data/pdfjs/web/locale/ar/viewer.properties +247 -0
  429. data/pdfjs/web/locale/ast/viewer.properties +207 -0
  430. data/pdfjs/web/locale/az/viewer.properties +243 -0
  431. data/pdfjs/web/locale/be/viewer.properties +274 -0
  432. data/pdfjs/web/locale/bg/viewer.properties +235 -0
  433. data/pdfjs/web/locale/bn/viewer.properties +239 -0
  434. data/pdfjs/web/locale/bo/viewer.properties +238 -0
  435. data/pdfjs/web/locale/br/viewer.properties +247 -0
  436. data/pdfjs/web/locale/brx/viewer.properties +205 -0
  437. data/pdfjs/web/locale/bs/viewer.properties +194 -0
  438. data/pdfjs/web/locale/ca/viewer.properties +251 -0
  439. data/pdfjs/web/locale/cak/viewer.properties +249 -0
  440. data/pdfjs/web/locale/ckb/viewer.properties +234 -0
  441. data/pdfjs/web/locale/cs/viewer.properties +274 -0
  442. data/pdfjs/web/locale/cy/viewer.properties +274 -0
  443. data/pdfjs/web/locale/da/viewer.properties +274 -0
  444. data/pdfjs/web/locale/de/viewer.properties +274 -0
  445. data/pdfjs/web/locale/dsb/viewer.properties +274 -0
  446. data/pdfjs/web/locale/el/viewer.properties +274 -0
  447. data/pdfjs/web/locale/en-CA/viewer.properties +274 -0
  448. data/pdfjs/web/locale/en-GB/viewer.properties +274 -0
  449. data/pdfjs/web/locale/en-US/viewer.properties +253 -0
  450. data/pdfjs/web/locale/eo/viewer.properties +274 -0
  451. data/pdfjs/web/locale/es-AR/viewer.properties +274 -0
  452. data/pdfjs/web/locale/es-CL/viewer.properties +274 -0
  453. data/pdfjs/web/locale/es-ES/viewer.properties +274 -0
  454. data/pdfjs/web/locale/es-MX/viewer.properties +274 -0
  455. data/pdfjs/web/locale/et/viewer.properties +262 -0
  456. data/pdfjs/web/locale/eu/viewer.properties +272 -0
  457. data/pdfjs/web/locale/fa/viewer.properties +216 -0
  458. data/pdfjs/web/locale/ff/viewer.properties +235 -0
  459. data/pdfjs/web/locale/fi/viewer.properties +274 -0
  460. data/pdfjs/web/locale/fr/viewer.properties +274 -0
  461. data/pdfjs/web/locale/fy-NL/viewer.properties +274 -0
  462. data/pdfjs/web/locale/ga-IE/viewer.properties +202 -0
  463. data/pdfjs/web/locale/gd/viewer.properties +249 -0
  464. data/pdfjs/web/locale/gl/viewer.properties +249 -0
  465. data/pdfjs/web/locale/gn/viewer.properties +274 -0
  466. data/pdfjs/web/locale/gu-IN/viewer.properties +235 -0
  467. data/pdfjs/web/locale/he/viewer.properties +274 -0
  468. data/pdfjs/web/locale/hi-IN/viewer.properties +235 -0
  469. data/pdfjs/web/locale/hr/viewer.properties +249 -0
  470. data/pdfjs/web/locale/hsb/viewer.properties +274 -0
  471. data/pdfjs/web/locale/hu/viewer.properties +274 -0
  472. data/pdfjs/web/locale/hy-AM/viewer.properties +239 -0
  473. data/pdfjs/web/locale/hye/viewer.properties +252 -0
  474. data/pdfjs/web/locale/ia/viewer.properties +274 -0
  475. data/pdfjs/web/locale/id/viewer.properties +274 -0
  476. data/pdfjs/web/locale/is/viewer.properties +274 -0
  477. data/pdfjs/web/locale/it/viewer.properties +215 -0
  478. data/pdfjs/web/locale/ja/viewer.properties +274 -0
  479. data/pdfjs/web/locale/ka/viewer.properties +274 -0
  480. data/pdfjs/web/locale/kab/viewer.properties +274 -0
  481. data/pdfjs/web/locale/kk/viewer.properties +274 -0
  482. data/pdfjs/web/locale/km/viewer.properties +210 -0
  483. data/pdfjs/web/locale/kn/viewer.properties +187 -0
  484. data/pdfjs/web/locale/ko/viewer.properties +274 -0
  485. data/pdfjs/web/locale/lij/viewer.properties +235 -0
  486. data/pdfjs/web/locale/lo/viewer.properties +145 -0
  487. data/pdfjs/web/locale/locale.properties +327 -0
  488. data/pdfjs/web/locale/lt/viewer.properties +260 -0
  489. data/pdfjs/web/locale/ltg/viewer.properties +213 -0
  490. data/pdfjs/web/locale/lv/viewer.properties +235 -0
  491. data/pdfjs/web/locale/meh/viewer.properties +111 -0
  492. data/pdfjs/web/locale/mk/viewer.properties +139 -0
  493. data/pdfjs/web/locale/mr/viewer.properties +231 -0
  494. data/pdfjs/web/locale/ms/viewer.properties +235 -0
  495. data/pdfjs/web/locale/my/viewer.properties +191 -0
  496. data/pdfjs/web/locale/nb-NO/viewer.properties +274 -0
  497. data/pdfjs/web/locale/ne-NP/viewer.properties +218 -0
  498. data/pdfjs/web/locale/nl/viewer.properties +274 -0
  499. data/pdfjs/web/locale/nn-NO/viewer.properties +274 -0
  500. data/pdfjs/web/locale/oc/viewer.properties +274 -0
  501. data/pdfjs/web/locale/pa-IN/viewer.properties +285 -0
  502. data/pdfjs/web/locale/pl/viewer.properties +274 -0
  503. data/pdfjs/web/locale/pt-BR/viewer.properties +274 -0
  504. data/pdfjs/web/locale/pt-PT/viewer.properties +274 -0
  505. data/pdfjs/web/locale/rm/viewer.properties +274 -0
  506. data/pdfjs/web/locale/ro/viewer.properties +241 -0
  507. data/pdfjs/web/locale/ru/viewer.properties +274 -0
  508. data/pdfjs/web/locale/sat/viewer.properties +198 -0
  509. data/pdfjs/web/locale/sc/viewer.properties +240 -0
  510. data/pdfjs/web/locale/scn/viewer.properties +101 -0
  511. data/pdfjs/web/locale/sco/viewer.properties +249 -0
  512. data/pdfjs/web/locale/si/viewer.properties +237 -0
  513. data/pdfjs/web/locale/sk/viewer.properties +274 -0
  514. data/pdfjs/web/locale/sl/viewer.properties +274 -0
  515. data/pdfjs/web/locale/son/viewer.properties +173 -0
  516. data/pdfjs/web/locale/sq/viewer.properties +267 -0
  517. data/pdfjs/web/locale/sr/viewer.properties +253 -0
  518. data/pdfjs/web/locale/sv-SE/viewer.properties +274 -0
  519. data/pdfjs/web/locale/szl/viewer.properties +245 -0
  520. data/pdfjs/web/locale/ta/viewer.properties +194 -0
  521. data/pdfjs/web/locale/te/viewer.properties +237 -0
  522. data/pdfjs/web/locale/tg/viewer.properties +274 -0
  523. data/pdfjs/web/locale/th/viewer.properties +274 -0
  524. data/pdfjs/web/locale/tl/viewer.properties +243 -0
  525. data/pdfjs/web/locale/tr/viewer.properties +274 -0
  526. data/pdfjs/web/locale/trs/viewer.properties +206 -0
  527. data/pdfjs/web/locale/uk/viewer.properties +274 -0
  528. data/pdfjs/web/locale/ur/viewer.properties +239 -0
  529. data/pdfjs/web/locale/uz/viewer.properties +163 -0
  530. data/pdfjs/web/locale/vi/viewer.properties +274 -0
  531. data/pdfjs/web/locale/wo/viewer.properties +123 -0
  532. data/pdfjs/web/locale/xh/viewer.properties +177 -0
  533. data/pdfjs/web/locale/zh-CN/viewer.properties +274 -0
  534. data/pdfjs/web/locale/zh-TW/viewer.properties +274 -0
  535. data/pdfjs/web/standard_fonts/FoxitDingbats.pfb +0 -0
  536. data/pdfjs/web/standard_fonts/FoxitFixed.pfb +0 -0
  537. data/pdfjs/web/standard_fonts/FoxitFixedBold.pfb +0 -0
  538. data/pdfjs/web/standard_fonts/FoxitFixedBoldItalic.pfb +0 -0
  539. data/pdfjs/web/standard_fonts/FoxitFixedItalic.pfb +0 -0
  540. data/pdfjs/web/standard_fonts/FoxitSans.pfb +0 -0
  541. data/pdfjs/web/standard_fonts/FoxitSansBold.pfb +0 -0
  542. data/pdfjs/web/standard_fonts/FoxitSansBoldItalic.pfb +0 -0
  543. data/pdfjs/web/standard_fonts/FoxitSansItalic.pfb +0 -0
  544. data/pdfjs/web/standard_fonts/FoxitSerif.pfb +0 -0
  545. data/pdfjs/web/standard_fonts/FoxitSerifBold.pfb +0 -0
  546. data/pdfjs/web/standard_fonts/FoxitSerifBoldItalic.pfb +0 -0
  547. data/pdfjs/web/standard_fonts/FoxitSerifItalic.pfb +0 -0
  548. data/pdfjs/web/standard_fonts/FoxitSymbol.pfb +0 -0
  549. data/pdfjs/web/standard_fonts/LICENSE_FOXIT +27 -0
  550. data/pdfjs/web/standard_fonts/LICENSE_LIBERATION +102 -0
  551. data/pdfjs/web/standard_fonts/LiberationSans-Bold.ttf +0 -0
  552. data/pdfjs/web/standard_fonts/LiberationSans-BoldItalic.ttf +0 -0
  553. data/pdfjs/web/standard_fonts/LiberationSans-Italic.ttf +0 -0
  554. data/pdfjs/web/standard_fonts/LiberationSans-Regular.ttf +0 -0
  555. data/pdfjs/web/viewer.css +3029 -0
  556. data/pdfjs/web/viewer.html +433 -0
  557. data/pdfjs/web/viewer.js +13566 -0
  558. data/pdfjs/web/viewer.js.map +1 -0
  559. metadata +643 -0
data/.rubocop_ruby.yml ADDED
@@ -0,0 +1,1768 @@
1
+ require:
2
+ - rubocop-rspec
3
+ - rubocop-faker
4
+
5
+ # Common configuration.
6
+ AllCops:
7
+ Include:
8
+ - .simplecov
9
+ - "**/*.rb"
10
+ - "**/*.rake"
11
+ - "**/*.gemspec"
12
+ - "**/*.ru"
13
+ - "**/Gemfile"
14
+ - "**/Rakefile"
15
+ Exclude:
16
+ - "**/node_modules/**/*"
17
+ - "**/vendor/**/*"
18
+ - "development_app/**/*"
19
+ - "decidim_app-design/node_modules/**/*"
20
+ - "spec/decidim_dummy_app/**/*"
21
+ - "node_modules/**/*"
22
+ - "decidim-initiatives/lib/gem_overrides/origami/date.rb"
23
+ # Default formatter will be used if no -f/--format option is given.
24
+ DefaultFormatter: progress
25
+ # Cop names are not displayed in offense messages by default. Change behavior
26
+ # by overriding DisplayCopNames, or by giving the -D/--display-cop-names
27
+ # option.
28
+ DisplayCopNames: true
29
+ # Style guide URLs are not displayed in offense messages by default. Change
30
+ # behavior by overriding DisplayStyleGuide, or by giving the
31
+ # -S/--display-style-guide option.
32
+ DisplayStyleGuide: false
33
+ # Extra details are not displayed in offense messages by default. Change
34
+ # behavior by overriding ExtraDetails, or by giving the
35
+ # -E/--extra-details option.
36
+ ExtraDetails: false
37
+ NewCops: enable
38
+ # Additional cops that do not reference a style guide rule may be enabled by
39
+ # default. Change behavior by overriding StyleGuideCopsOnly, or by giving
40
+ # the --only-guide-cops option.
41
+ StyleGuideCopsOnly: false
42
+ # All cops except the ones in disabled.yml are enabled by default. Change
43
+ # this behavior by overriding DisabledByDefault. When DisabledByDefault is
44
+ # true, all cops in the default configuration are disabled, and and only cops
45
+ # in user configuration are enabled. This makes cops opt-in instead of
46
+ # opt-out. Note that when DisabledByDefault is true, cops in user
47
+ # configuration will be enabled even if they don't set the Enabled parameter.
48
+ DisabledByDefault: false
49
+ # Enables the result cache if true. Can be overridden by the --cache command
50
+ # line option.
51
+ UseCache: true
52
+ # Threshold for how many files can be stored in the result cache before some
53
+ # of the files are automatically removed.
54
+ MaxFilesInCache: 20000
55
+ # The cache will be stored in "rubocop_cache" under this directory. The name
56
+ # "/tmp" is special and will be converted to the system temporary directory,
57
+ # which is "/tmp" on Unix-like systems, but could be something else on other
58
+ # systems.
59
+ CacheRootDirectory: /tmp
60
+ # The default cache root directory is /tmp, which on most systems is
61
+ # writable by any system user. This means that it is possible for a
62
+ # malicious user to anticipate the location of Rubocop's cache directory,
63
+ # and create a symlink in its place that could cause Rubocop to overwrite
64
+ # unintended files, or read malicious input. If you are certain that your
65
+ # cache location is secure from this kind of attack, and wish to use a
66
+ # symlinked cache location, set this value to "true".
67
+ AllowSymlinksInCacheRootDirectory: true
68
+ # What MRI version of the Ruby interpreter is the inspected code intended to
69
+ # run on? (If there is more than one, set this to the lowest version.)
70
+ # If a value is specified for TargetRubyVersion then it is used.
71
+ # Else if .ruby-version exists and it contains an MRI version it is used.
72
+ # Otherwise we fallback to the oldest officially supported Ruby version (2.0).
73
+ TargetRubyVersion: 3.0
74
+
75
+ # RSpec:
76
+ # Patterns:
77
+ # - "(?:^|/)spec/"
78
+ # - "(?:^|/)test/"
79
+
80
+ # Indent private/protected/public as deep as method definitions
81
+ Layout/AccessModifierIndentation:
82
+ EnforcedStyle: indent
83
+ SupportedStyles:
84
+ - outdent
85
+ - indent
86
+ # By default, the indentation width from Style/IndentationWidth is used
87
+ # But it can be overridden by setting this parameter
88
+ IndentationWidth: ~
89
+
90
+ Style/Alias:
91
+ EnforcedStyle: prefer_alias
92
+ SupportedStyles:
93
+ - prefer_alias
94
+ - prefer_alias_method
95
+
96
+ # Align the elements of a hash literal if they span more than one line.
97
+ Layout/HashAlignment:
98
+ # Alignment of entries using hash rocket as separator. Valid values are:
99
+ #
100
+ # key - left alignment of keys
101
+ # "a" => 2
102
+ # "bb" => 3
103
+ # separator - alignment of hash rockets, keys are right aligned
104
+ # "a" => 2
105
+ # "bb" => 3
106
+ # table - left alignment of keys, hash rockets, and values
107
+ # "a" => 2
108
+ # "bb" => 3
109
+ EnforcedHashRocketStyle: key
110
+ # Alignment of entries using colon as separator. Valid values are:
111
+ #
112
+ # key - left alignment of keys
113
+ # a: 0
114
+ # bb: 1
115
+ # separator - alignment of colons, keys are right aligned
116
+ # a: 0
117
+ # bb: 1
118
+ # table - left alignment of keys and values
119
+ # a: 0
120
+ # bb: 1
121
+ EnforcedColonStyle: key
122
+ # Select whether hashes that are the last argument in a method call should be
123
+ # inspected? Valid values are:
124
+ #
125
+ # always_inspect - Inspect both implicit and explicit hashes.
126
+ # Registers an offense for:
127
+ # function(a: 1,
128
+ # b: 2)
129
+ # Registers an offense for:
130
+ # function({a: 1,
131
+ # b: 2})
132
+ # always_ignore - Ignore both implicit and explicit hashes.
133
+ # Accepts:
134
+ # function(a: 1,
135
+ # b: 2)
136
+ # Accepts:
137
+ # function({a: 1,
138
+ # b: 2})
139
+ # ignore_implicit - Ignore only implicit hashes.
140
+ # Accepts:
141
+ # function(a: 1,
142
+ # b: 2)
143
+ # Registers an offense for:
144
+ # function({a: 1,
145
+ # b: 2})
146
+ # ignore_explicit - Ignore only explicit hashes.
147
+ # Accepts:
148
+ # function({a: 1,
149
+ # b: 2})
150
+ # Registers an offense for:
151
+ # function(a: 1,
152
+ # b: 2)
153
+ EnforcedLastArgumentHashStyle: always_inspect
154
+ SupportedLastArgumentHashStyles:
155
+ - always_inspect
156
+ - always_ignore
157
+ - ignore_implicit
158
+ - ignore_explicit
159
+
160
+ Layout/ParameterAlignment:
161
+ # Alignment of parameters in multi-line method calls.
162
+ #
163
+ # The `with_first_parameter` style aligns the following lines along the same
164
+ # column as the first parameter.
165
+ #
166
+ # method_call(a,
167
+ # b)
168
+ #
169
+ # The `with_fixed_indentation` style aligns the following lines with one
170
+ # level of indentation relative to the start of the line with the method call.
171
+ #
172
+ # method_call(a,
173
+ # b)
174
+ EnforcedStyle: with_first_parameter
175
+ SupportedStyles:
176
+ - with_first_parameter
177
+ - with_fixed_indentation
178
+ # By default, the indentation width from Style/IndentationWidth is used
179
+ # But it can be overridden by setting this parameter
180
+ IndentationWidth: ~
181
+
182
+ Style/ArrayCoercion:
183
+ Description: >-
184
+ Use Array() instead of explicit Array check or [*var], when dealing
185
+ with a variable you want to treat as an Array, but you're not certain it's an array.
186
+ StyleGuide: '#array-coercion'
187
+ Safe: false
188
+ Enabled: false
189
+ VersionAdded: '0.88'
190
+
191
+ Style/AndOr:
192
+ # Whether `and` and `or` are banned only in conditionals (conditionals)
193
+ # or completely (always).
194
+ EnforcedStyle: always
195
+ SupportedStyles:
196
+ - always
197
+ - conditionals
198
+
199
+ Style/AsciiComments:
200
+ Enabled: false
201
+
202
+ # Checks if usage of %() or %Q() matches configuration.
203
+ Style/BarePercentLiterals:
204
+ EnforcedStyle: bare_percent
205
+ SupportedStyles:
206
+ - percent_q
207
+ - bare_percent
208
+
209
+ Style/BlockDelimiters:
210
+ EnforcedStyle: line_count_based
211
+ SupportedStyles:
212
+ # The `line_count_based` style enforces braces around single line blocks and
213
+ # do..end around multi-line blocks.
214
+ - line_count_based
215
+ # The `semantic` style enforces braces around functional blocks, where the
216
+ # primary purpose of the block is to return a value and do..end for
217
+ # procedural blocks, where the primary purpose of the block is its
218
+ # side-effects.
219
+ #
220
+ # This looks at the usage of a block's method to determine its type (e.g. is
221
+ # the result of a `map` assigned to a variable or passed to another
222
+ # method) but exceptions are permitted in the `ProceduralMethods`,
223
+ # `FunctionalMethods` and `IgnoredMethods` sections below.
224
+ - semantic
225
+ # The `braces_for_chaining` style enforces braces around single line blocks
226
+ # and do..end around multi-line blocks, except for multi-line blocks whose
227
+ # return value is being chained with another method (in which case braces
228
+ # are enforced).
229
+ - braces_for_chaining
230
+ ProceduralMethods:
231
+ # Methods that are known to be procedural in nature but look functional from
232
+ # their usage, e.g.
233
+ #
234
+ # time = Benchmark.realtime do
235
+ # foo.bar
236
+ # end
237
+ #
238
+ # Here, the return value of the block is discarded but the return value of
239
+ # `Benchmark.realtime` is used.
240
+ - benchmark
241
+ - bm
242
+ - bmbm
243
+ - create
244
+ - each_with_object
245
+ - measure
246
+ - new
247
+ - realtime
248
+ - tap
249
+ - with_object
250
+ FunctionalMethods:
251
+ # Methods that are known to be functional in nature but look procedural from
252
+ # their usage, e.g.
253
+ #
254
+ # let(:foo) { Foo.new }
255
+ #
256
+ # Here, the return value of `Foo.new` is used to define a `foo` helper but
257
+ # doesn't appear to be used from the return value of `let`.
258
+ - let
259
+ - let!
260
+ - subject
261
+ - watch
262
+ IgnoredMethods:
263
+ # Methods that can be either procedural or functional and cannot be
264
+ # categorised from their usage alone, e.g.
265
+ #
266
+ # foo = lambda do |x|
267
+ # puts "Hello, #{x}"
268
+ # end
269
+ #
270
+ # foo = lambda do |x|
271
+ # x * 100
272
+ # end
273
+ #
274
+ # Here, it is impossible to tell from the return value of `lambda` whether
275
+ # the inner block's return value is significant.
276
+ - lambda
277
+ - proc
278
+ - it
279
+
280
+ Style/ExplicitBlockArgument:
281
+ Enabled: false
282
+
283
+ Style/HashEachMethods:
284
+ Enabled: false
285
+
286
+ Style/HashLikeCase:
287
+ MinBranchesCount: 5
288
+
289
+ # Indentation of `when`.
290
+ Layout/CaseIndentation:
291
+ EnforcedStyle: case
292
+ SupportedStyles:
293
+ - case
294
+ - end
295
+ IndentOneStep: false
296
+ # By default, the indentation width from Style/IndentationWidth is used
297
+ # But it can be overridden by setting this parameter
298
+ # This only matters if IndentOneStep is true
299
+ IndentationWidth: ~
300
+
301
+ Style/ClassAndModuleChildren:
302
+ Enabled: false
303
+ # Checks the style of children definitions at classes and modules.
304
+ #
305
+ # Basically there are two different styles:
306
+ #
307
+ # `nested` - have each child on a separate line
308
+ # class Foo
309
+ # class Bar
310
+ # end
311
+ # end
312
+ #
313
+ # `compact` - combine definitions as much as possible
314
+ # class Foo::Bar
315
+ # end
316
+ #
317
+ # The compact style is only forced, for classes / modules with one child.
318
+ EnforcedStyle: nested
319
+ SupportedStyles:
320
+ - nested
321
+ - compact
322
+
323
+ Style/ClassCheck:
324
+ EnforcedStyle: is_a?
325
+ SupportedStyles:
326
+ - is_a?
327
+ - kind_of?
328
+
329
+ # Align with the style guide.
330
+ Style/CollectionMethods:
331
+ # Mapping from undesired method to desired_method
332
+ # e.g. to use `detect` over `find`:
333
+ #
334
+ # CollectionMethods:
335
+ # PreferredMethods:
336
+ # find: detect
337
+ PreferredMethods:
338
+ collect: "map"
339
+ collect!: "map!"
340
+ inject: "reduce"
341
+ detect: "find"
342
+ find_all: "select"
343
+
344
+ # Use ` or %x around command literals.
345
+ Style/CommandLiteral:
346
+ EnforcedStyle: backticks
347
+ # backticks: Always use backticks.
348
+ # percent_x: Always use %x.
349
+ # mixed: Use backticks on single-line commands, and %x on multi-line commands.
350
+ SupportedStyles:
351
+ - backticks
352
+ - percent_x
353
+ - mixed
354
+ # If false, the cop will always recommend using %x if one or more backticks
355
+ # are found in the command string.
356
+ AllowInnerBackticks: false
357
+
358
+ # Checks formatting of special comments
359
+ Style/CommentAnnotation:
360
+ Keywords:
361
+ - TODO
362
+ - FIXME
363
+ - OPTIMIZE
364
+ - HACK
365
+ - REVIEW
366
+
367
+ Style/ConditionalAssignment:
368
+ EnforcedStyle: assign_to_condition
369
+ SupportedStyles:
370
+ - assign_to_condition
371
+ - assign_inside_condition
372
+ # When configured to `assign_to_condition`, `SingleLineConditionsOnly`
373
+ # will only register an offense when all branches of a condition are
374
+ # a single line.
375
+ # When configured to `assign_inside_condition`, `SingleLineConditionsOnly`
376
+ # will only register an offense for assignment to a condition that has
377
+ # at least one multiline branch.
378
+ SingleLineConditionsOnly: true
379
+
380
+ # Checks that you have put a copyright in a comment before any code.
381
+ #
382
+ # You can override the default Notice in your .rubocop.yml file.
383
+ #
384
+ # In order to use autocorrect, you must supply a value for the
385
+ # AutocorrectNotice key that matches the regexp Notice. A blank
386
+ # AutocorrectNotice will cause an error during autocorrect.
387
+ #
388
+ # Autocorrect will add a copyright notice in a comment at the top
389
+ # of the file immediately after any shebang or encoding comments.
390
+ #
391
+ # Example rubocop.yml:
392
+ #
393
+ # Style/Copyright:
394
+ # Enabled: true
395
+ # Notice: 'Copyright (\(c\) )?2015 Yahoo! Inc'
396
+ # AutocorrectNotice: "# Copyright (c) 2015 Yahoo! Inc."
397
+ #
398
+ Style/Copyright:
399
+ Notice: '^Copyright (\(c\) )?2[0-9]{3} .+'
400
+ AutocorrectNotice: ""
401
+
402
+ Style/DocumentationMethod:
403
+ RequireForNonPublicMethods: false
404
+
405
+ # Multi-line method chaining should be done with leading dots.
406
+ Layout/DotPosition:
407
+ EnforcedStyle: leading
408
+ SupportedStyles:
409
+ - leading
410
+ - trailing
411
+
412
+ # Warn on empty else statements
413
+ # empty - warn only on empty else
414
+ # nil - warn on else with nil in it
415
+ # both - warn on empty else and else with nil in it
416
+ Style/EmptyElse:
417
+ EnforcedStyle: both
418
+ SupportedStyles:
419
+ - empty
420
+ - nil
421
+ - both
422
+
423
+ # Use empty lines between defs.
424
+ Layout/EmptyLineBetweenDefs:
425
+ # If true, this parameter means that single line method definitions don't
426
+ # need an empty line between them.
427
+ AllowAdjacentOneLineDefs: false
428
+
429
+ Layout/EmptyLinesAroundBlockBody:
430
+ EnforcedStyle: no_empty_lines
431
+ SupportedStyles:
432
+ - empty_lines
433
+ - no_empty_lines
434
+
435
+ Layout/EmptyLinesAroundClassBody:
436
+ EnforcedStyle: no_empty_lines
437
+ SupportedStyles:
438
+ - empty_lines
439
+ - no_empty_lines
440
+
441
+ Layout/EmptyLinesAroundModuleBody:
442
+ EnforcedStyle: no_empty_lines
443
+ SupportedStyles:
444
+ - empty_lines
445
+ - no_empty_lines
446
+
447
+ # Checks whether the source file has a utf-8 encoding comment or not
448
+ # AutoCorrectEncodingComment must match the regex
449
+ # /#.*coding\s?[:=]\s?(?:UTF|utf)-8/
450
+ Style/Encoding:
451
+ Enabled: true
452
+
453
+ Layout/ExtraSpacing:
454
+ # When true, allows most uses of extra spacing if the intent is to align
455
+ # things with the previous or next line, not counting empty lines or comment
456
+ # lines.
457
+ AllowForAlignment: false
458
+ # When true, forces the alignment of = in assignments on consecutive lines.
459
+ ForceEqualSignAlignment: false
460
+
461
+ Naming/FileName:
462
+ Exclude:
463
+ - "**/Gemfile"
464
+ - "**/Rakefile"
465
+ - "**/*.gemspec"
466
+ - "decidim-dev/lib/decidim-dev.rb"
467
+ # When true, requires that each source file should define a class or module
468
+ # with a name which matches the file name (converted to ... case).
469
+ # It further expects it to be nested inside modules which match the names
470
+ # of subdirectories in its path.
471
+ ExpectMatchingDefinition: false
472
+ # If non-nil, expect all source file names to match the following regex.
473
+ # Only the file name itself is matched, not the entire file path.
474
+ # Use anchors as necessary if you want to match the entire name rather than
475
+ # just a part of it.
476
+ Regex: ~
477
+ # With `IgnoreExecutableScripts` set to `true`, this cop does not
478
+ # report offending filenames for executable scripts (i.e. source
479
+ # files with a shebang in the first line).
480
+ IgnoreExecutableScripts: true
481
+
482
+ Layout/FirstArgumentIndentation:
483
+ EnforcedStyle: special_for_inner_method_call_in_parentheses
484
+ SupportedStyles:
485
+ # The first parameter should always be indented one step more than the
486
+ # preceding line.
487
+ - consistent
488
+ # The first parameter should normally be indented one step more than the
489
+ # preceding line, but if it's a parameter for a method call that is itself
490
+ # a parameter in a method call, then the inner parameter should be indented
491
+ # relative to the inner method.
492
+ - special_for_inner_method_call
493
+ # Same as special_for_inner_method_call except that the special rule only
494
+ # applies if the outer method call encloses its arguments in parentheses.
495
+ - special_for_inner_method_call_in_parentheses
496
+ # By default, the indentation width from Style/IndentationWidth is used
497
+ # But it can be overridden by setting this parameter
498
+ IndentationWidth: ~
499
+
500
+ # Checks use of for or each in multiline loops.
501
+ Style/For:
502
+ EnforcedStyle: each
503
+ SupportedStyles:
504
+ - for
505
+ - each
506
+
507
+ # Enforce the method used for string formatting.
508
+ Style/FormatString:
509
+ EnforcedStyle: format
510
+ SupportedStyles:
511
+ - format
512
+ - sprintf
513
+ - percent
514
+
515
+ Style/FormatStringToken:
516
+ EnforcedStyle: template
517
+
518
+ Style/FrozenStringLiteralComment:
519
+ EnforcedStyle: always
520
+ SupportedStyles:
521
+ - never
522
+ # `always` will always add the frozen string literal comment to a file
523
+ # regardless of the Ruby version or if `freeze` or `<<` are called on a
524
+ # string literal. If you run code against multiple versions of Ruby, it is
525
+ # possible that this will create errors in Ruby 2.3.0+.
526
+ - always
527
+
528
+ # Built-in global variables are allowed by default.
529
+ Style/GlobalVars:
530
+ AllowedVariables: []
531
+
532
+ # `MinBodyLength` defines the number of lines of the a body of an if / unless
533
+ # needs to have to trigger this cop
534
+ Style/GuardClause:
535
+ MinBodyLength: 6
536
+
537
+ Style/HashSyntax:
538
+ EnforcedStyle: ruby19
539
+ SupportedStyles:
540
+ # checks for 1.9 syntax (e.g. {a: 1}) for all symbol keys
541
+ - ruby19
542
+ # checks for hash rocket syntax for all hashes
543
+ - hash_rockets
544
+ # forbids mixed key syntaxes (e.g. {a: 1, :b => 2})
545
+ - no_mixed_keys
546
+ # enforces both ruby19 and no_mixed_keys styles
547
+ - ruby19_no_mixed_keys
548
+ # Force hashes that have a symbol value to use hash rockets
549
+ UseHashRocketsWithSymbolValues: false
550
+ # Do not suggest { a?: 1 } over { :a? => 1 } in ruby19 style
551
+ PreferHashRocketsForNonAlnumEndingSymbols: false
552
+
553
+ Layout/IndentationConsistency:
554
+ # The difference between `rails` and `normal` is that the `rails` style
555
+ # prescribes that in classes and modules the `protected` and `private`
556
+ # modifier keywords shall be indented the same as public methods and that
557
+ # protected and private members shall be indented one step more than the
558
+ # modifiers. Other than that, both styles mean that entities on the same
559
+ # logical depth shall have the same indentation.
560
+ EnforcedStyle: normal
561
+ SupportedStyles:
562
+ - normal
563
+ - rails
564
+
565
+ Layout/IndentationWidth:
566
+ # Number of spaces for each indentation level.
567
+ Width: 2
568
+
569
+ # Checks the indentation of the first element in an array literal.
570
+ Layout/FirstArrayElementIndentation:
571
+ # The value `special_inside_parentheses` means that array literals with
572
+ # brackets that have their opening bracket on the same line as a surrounding
573
+ # opening round parenthesis, shall have their first element indented relative
574
+ # to the first position inside the parenthesis.
575
+ #
576
+ # The value `consistent` means that the indentation of the first element shall
577
+ # always be relative to the first position of the line where the opening
578
+ # bracket is.
579
+ #
580
+ # The value `align_brackets` means that the indentation of the first element
581
+ # shall always be relative to the position of the opening bracket.
582
+ EnforcedStyle: special_inside_parentheses
583
+ SupportedStyles:
584
+ - special_inside_parentheses
585
+ - consistent
586
+ - align_brackets
587
+ # By default, the indentation width from Style/IndentationWidth is used
588
+ # But it can be overridden by setting this parameter
589
+ IndentationWidth: ~
590
+
591
+ # Checks the indentation of assignment RHS, when on a different line from LHS
592
+ Layout/AssignmentIndentation:
593
+ # By default, the indentation width from Style/IndentationWidth is used
594
+ # But it can be overridden by setting this parameter
595
+ IndentationWidth: ~
596
+
597
+ # Checks the indentation of the first key in a hash literal.
598
+ Layout/FirstHashElementIndentation:
599
+ # The value `special_inside_parentheses` means that hash literals with braces
600
+ # that have their opening brace on the same line as a surrounding opening
601
+ # round parenthesis, shall have their first key indented relative to the
602
+ # first position inside the parenthesis.
603
+ #
604
+ # The value `consistent` means that the indentation of the first key shall
605
+ # always be relative to the first position of the line where the opening
606
+ # brace is.
607
+ #
608
+ # The value `align_braces` means that the indentation of the first key shall
609
+ # always be relative to the position of the opening brace.
610
+ EnforcedStyle: special_inside_parentheses
611
+ SupportedStyles:
612
+ - special_inside_parentheses
613
+ - consistent
614
+ - align_braces
615
+ # By default, the indentation width from Style/IndentationWidth is used
616
+ # But it can be overridden by setting this parameter
617
+ IndentationWidth: ~
618
+
619
+ Style/Lambda:
620
+ EnforcedStyle: line_count_dependent
621
+ SupportedStyles:
622
+ - line_count_dependent
623
+ - lambda
624
+ - literal
625
+ Exclude:
626
+ - "**/types/**/*"
627
+ - "**/*_interface.rb"
628
+
629
+ Style/LambdaCall:
630
+ EnforcedStyle: call
631
+ SupportedStyles:
632
+ - call
633
+ - braces
634
+
635
+ Style/Next:
636
+ # With `always` all conditions at the end of an iteration needs to be
637
+ # replaced by next - with `skip_modifier_ifs` the modifier if like this one
638
+ # are ignored: [1, 2].each { |a| return "yes" if a == 1 }
639
+ EnforcedStyle: skip_modifier_ifs
640
+ # `MinBodyLength` defines the number of lines of the a body of an if / unless
641
+ # needs to have to trigger this cop
642
+ MinBodyLength: 3
643
+ SupportedStyles:
644
+ - skip_modifier_ifs
645
+ - always
646
+
647
+ Style/NonNilCheck:
648
+ # With `IncludeSemanticChanges` set to `true`, this cop reports offenses for
649
+ # `!x.nil?` and autocorrects that and `x != nil` to solely `x`, which is
650
+ # **usually** OK, but might change behavior.
651
+ #
652
+ # With `IncludeSemanticChanges` set to `false`, this cop does not report
653
+ # offenses for `!x.nil?` and does no changes that might change behavior.
654
+ IncludeSemanticChanges: false
655
+
656
+ Style/NumericPredicate:
657
+ EnforcedStyle: predicate
658
+ SupportedStyles:
659
+ - predicate
660
+ - comparison
661
+
662
+ Style/MethodDefParentheses:
663
+ EnforcedStyle: require_parentheses
664
+ SupportedStyles:
665
+ - require_parentheses
666
+ - require_no_parentheses
667
+ - require_no_parentheses_except_multiline
668
+
669
+ Naming/MethodName:
670
+ EnforcedStyle: snake_case
671
+ SupportedStyles:
672
+ - snake_case
673
+ - camelCase
674
+
675
+ Style/ModuleFunction:
676
+ EnforcedStyle: module_function
677
+ SupportedStyles:
678
+ - module_function
679
+ - extend_self
680
+
681
+ Layout/MultilineArrayBraceLayout:
682
+ EnforcedStyle: symmetrical
683
+ SupportedStyles:
684
+ # symmetrical: closing brace is positioned in same way as opening brace
685
+ # new_line: closing brace is always on a new line
686
+ # same_line: closing brace is always on the same line as last element
687
+ - symmetrical
688
+ - new_line
689
+ - same_line
690
+
691
+ Layout/MultilineAssignmentLayout:
692
+ # The types of assignments which are subject to this rule.
693
+ SupportedTypes:
694
+ - block
695
+ - case
696
+ - class
697
+ - if
698
+ - kwbegin
699
+ - module
700
+ EnforcedStyle: new_line
701
+ SupportedStyles:
702
+ # Ensures that the assignment operator and the rhs are on the same line for
703
+ # the set of supported types.
704
+ - same_line
705
+ # Ensures that the assignment operator and the rhs are on separate lines
706
+ # for the set of supported types.
707
+ - new_line
708
+
709
+ Layout/MultilineHashBraceLayout:
710
+ EnforcedStyle: symmetrical
711
+ SupportedStyles:
712
+ # symmetrical: closing brace is positioned in same way as opening brace
713
+ # new_line: closing brace is always on a new line
714
+ # same_line: closing brace is always on same line as last element
715
+ - symmetrical
716
+ - new_line
717
+ - same_line
718
+
719
+ Layout/MultilineMethodCallBraceLayout:
720
+ EnforcedStyle: symmetrical
721
+ SupportedStyles:
722
+ # symmetrical: closing brace is positioned in same way as opening brace
723
+ # new_line: closing brace is always on a new line
724
+ # same_line: closing brace is always on the same line as last argument
725
+ - symmetrical
726
+ - new_line
727
+ - same_line
728
+
729
+ Layout/MultilineMethodCallIndentation:
730
+ EnforcedStyle: aligned
731
+ SupportedStyles:
732
+ - aligned
733
+ - indented
734
+ - indented_relative_to_receiver
735
+ # By default, the indentation width from Style/IndentationWidth is used
736
+ # But it can be overridden by setting this parameter
737
+ IndentationWidth: ~
738
+
739
+ Layout/MultilineMethodDefinitionBraceLayout:
740
+ EnforcedStyle: symmetrical
741
+ SupportedStyles:
742
+ # symmetrical: closing brace is positioned in same way as opening brace
743
+ # new_line: closing brace is always on a new line
744
+ # same_line: closing brace is always on the same line as last parameter
745
+ - symmetrical
746
+ - new_line
747
+ - same_line
748
+
749
+ Layout/MultilineOperationIndentation:
750
+ EnforcedStyle: aligned
751
+ SupportedStyles:
752
+ - aligned
753
+ - indented
754
+ # By default, the indentation width from Style/IndentationWidth is used
755
+ # But it can be overridden by setting this parameter
756
+ IndentationWidth: ~
757
+
758
+ Style/NumericLiterals:
759
+ MinDigits: 5
760
+
761
+ Style/NumericLiteralPrefix:
762
+ EnforcedOctalStyle: zero_with_o
763
+ SupportedOctalStyles:
764
+ - zero_with_o
765
+ - zero_only
766
+
767
+ Style/OptionHash:
768
+ # A list of parameter names that will be flagged by this cop.
769
+ SuspiciousParamNames:
770
+ - options
771
+ - opts
772
+ - args
773
+ - params
774
+ - parameters
775
+
776
+ # Allow safe assignment in conditions.
777
+ Style/ParenthesesAroundCondition:
778
+ AllowSafeAssignment: true
779
+
780
+ Style/PercentLiteralDelimiters:
781
+ PreferredDelimiters:
782
+ "%": ()
783
+ "%i": ()
784
+ "%q": ()
785
+ "%Q": ()
786
+ "%r": "{}"
787
+ "%s": ()
788
+ "%w": ()
789
+ "%W": ()
790
+ "%x": ()
791
+
792
+ Style/PercentQLiterals:
793
+ EnforcedStyle: lower_case_q
794
+ SupportedStyles:
795
+ - lower_case_q # Use %q when possible, %Q when necessary
796
+ - upper_case_q # Always use %Q
797
+
798
+ Style/SlicingWithRange:
799
+ Enabled: false
800
+
801
+ Naming/PredicateName:
802
+ # Predicate name prefixes.
803
+ NamePrefix:
804
+ - is_
805
+ - has_
806
+ - have_
807
+ # Predicate name prefixes that should be removed.
808
+ ForbiddenPrefixes:
809
+ - is_
810
+ - have_
811
+ # Predicate names which, despite having a blacklisted prefix, or no ?,
812
+ # should still be accepted
813
+ AllowedMethods:
814
+ - is_a?
815
+ # Exclude Rspec specs because there is a strong convetion to write spec
816
+ # helpers in the form of `have_something` or `be_something`.
817
+ Exclude:
818
+ - "**/spec/**/*"
819
+ - "**/test/**/*"
820
+
821
+ Style/PreferredHashMethods:
822
+ Enabled: true
823
+ EnforcedStyle: verbose
824
+
825
+ Style/DateTime:
826
+ Enabled: true
827
+
828
+ Style/Documentation:
829
+ Enabled: false
830
+
831
+ Style/RaiseArgs:
832
+ EnforcedStyle: exploded
833
+ SupportedStyles:
834
+ - compact # raise Exception.new(msg)
835
+ - exploded # raise Exception, msg
836
+
837
+ Style/RedundantReturn:
838
+ # When true allows code like `return x, y`.
839
+ AllowMultipleReturnValues: false
840
+
841
+ # Use / or %r around regular expressions.
842
+ Style/RegexpLiteral:
843
+ EnforcedStyle: slashes
844
+ # slashes: Always use slashes.
845
+ # percent_r: Always use %r.
846
+ # mixed: Use slashes on single-line regexes, and %r on multi-line regexes.
847
+ SupportedStyles:
848
+ - slashes
849
+ - percent_r
850
+ - mixed
851
+ # If false, the cop will always recommend using %r if one or more slashes
852
+ # are found in the regexp string.
853
+ AllowInnerSlashes: false
854
+
855
+ Style/SafeNavigation:
856
+ Enabled: false
857
+
858
+ Style/Semicolon:
859
+ # Allow ; to separate several expressions on the same line.
860
+ AllowAsExpressionSeparator: false
861
+
862
+ Style/SignalException:
863
+ EnforcedStyle: only_raise
864
+ SupportedStyles:
865
+ - only_raise
866
+ - only_fail
867
+ - semantic
868
+
869
+ Style/SingleLineBlockParams:
870
+ Methods:
871
+ - reduce:
872
+ - a
873
+ - e
874
+ - inject:
875
+ - a
876
+ - e
877
+
878
+ Style/SingleLineMethods:
879
+ AllowIfMethodIsEmpty: true
880
+
881
+ Layout/SpaceBeforeFirstArg:
882
+ # When true, allows most uses of extra spacing if the intent is to align
883
+ # things with the previous or next line, not counting empty lines or comment
884
+ # lines.
885
+ AllowForAlignment: true
886
+
887
+ Style/SpecialGlobalVars:
888
+ EnforcedStyle: use_english_names
889
+ SupportedStyles:
890
+ - use_perl_names
891
+ - use_english_names
892
+
893
+ Style/StabbyLambdaParentheses:
894
+ EnforcedStyle: require_parentheses
895
+ SupportedStyles:
896
+ - require_parentheses
897
+ - require_no_parentheses
898
+
899
+ Style/StringLiterals:
900
+ EnforcedStyle: double_quotes
901
+ SupportedStyles:
902
+ - single_quotes
903
+ - double_quotes
904
+ # If true, strings which span multiple lines using \ for continuation must
905
+ # use the same type of quotes on each line.
906
+ ConsistentQuotesInMultiline: false
907
+
908
+ Style/StringLiteralsInInterpolation:
909
+ EnforcedStyle: double_quotes
910
+ SupportedStyles:
911
+ - single_quotes
912
+ - double_quotes
913
+
914
+ Style/StringMethods:
915
+ # Mapping from undesired method to desired_method
916
+ # e.g. to use `to_sym` over `intern`:
917
+ #
918
+ # StringMethods:
919
+ # PreferredMethods:
920
+ # intern: to_sym
921
+ PreferredMethods:
922
+ intern: to_sym
923
+
924
+ Layout/SpaceAroundBlockParameters:
925
+ EnforcedStyleInsidePipes: no_space
926
+
927
+ Layout/SpaceAroundEqualsInParameterDefault:
928
+ EnforcedStyle: space
929
+ SupportedStyles:
930
+ - space
931
+ - no_space
932
+
933
+ Layout/SpaceAroundOperators:
934
+ # When true, allows most uses of extra spacing if the intent is to align
935
+ # with an operator on the previous or next line, not counting empty lines
936
+ # or comment lines.
937
+ AllowForAlignment: true
938
+
939
+ Layout/SpaceBeforeBlockBraces:
940
+ EnforcedStyle: space
941
+ SupportedStyles:
942
+ - space
943
+ - no_space
944
+
945
+ Layout/SpaceInsideBlockBraces:
946
+ EnforcedStyle: space
947
+ SupportedStyles:
948
+ - space
949
+ - no_space
950
+ # Valid values are: space, no_space
951
+ EnforcedStyleForEmptyBraces: no_space
952
+ # Space between { and |. Overrides EnforcedStyle if there is a conflict.
953
+ SpaceBeforeBlockParameters: true
954
+
955
+ Layout/SpaceInsideHashLiteralBraces:
956
+ EnforcedStyle: space
957
+ EnforcedStyleForEmptyBraces: no_space
958
+ SupportedStyles:
959
+ - space
960
+ - no_space
961
+ # "compact" normally requires a space inside hash braces, with the exception
962
+ # that successive left braces or right braces are collapsed together
963
+ - compact
964
+
965
+ Layout/SpaceInsideStringInterpolation:
966
+ EnforcedStyle: no_space
967
+ SupportedStyles:
968
+ - space
969
+ - no_space
970
+
971
+ Style/AccessModifierDeclarations:
972
+ Enabled: false
973
+
974
+ Style/SymbolArray:
975
+ EnforcedStyle: brackets
976
+ SupportedStyles:
977
+ - percent
978
+ - brackets
979
+
980
+ Style/SymbolProc:
981
+ # A list of method names to be ignored by the check.
982
+ # The names should be fairly unique, otherwise you'll end up ignoring lots of code.
983
+ IgnoredMethods:
984
+ - respond_to
985
+ - define_method
986
+
987
+ Style/TernaryParentheses:
988
+ EnforcedStyle: require_no_parentheses
989
+ SupportedStyles:
990
+ - require_parentheses
991
+ - require_no_parentheses
992
+ AllowSafeAssignment: true
993
+
994
+ Layout/TrailingEmptyLines:
995
+ EnforcedStyle: final_newline
996
+ SupportedStyles:
997
+ - final_newline
998
+ - final_blank_line
999
+
1000
+ Style/TrailingCommaInArguments:
1001
+ # If `comma`, the cop requires a comma after the last argument, but only for
1002
+ # parenthesized method calls where each argument is on its own line.
1003
+ # If `consistent_comma`, the cop requires a comma after the last argument,
1004
+ # for all parenthesized method calls with arguments.
1005
+ EnforcedStyleForMultiline: no_comma
1006
+
1007
+ Style/TrailingCommaInArrayLiteral:
1008
+ # If `comma`, the cop requires a comma after the last item in an array or
1009
+ # hash, but only when each item is on its own line.
1010
+ # If `consistent_comma`, the cop requires a comma after the last item of all
1011
+ # non-empty array and hash literals.
1012
+ EnforcedStyleForMultiline: no_comma
1013
+
1014
+ Style/TrailingCommaInHashLiteral:
1015
+ # If `comma`, the cop requires a comma after the last item in an array or
1016
+ # hash, but only when each item is on its own line.
1017
+ # If `consistent_comma`, the cop requires a comma after the last item of all
1018
+ # non-empty array and hash literals.
1019
+ EnforcedStyleForMultiline: no_comma
1020
+
1021
+ # TrivialAccessors requires exact name matches and doesn't allow
1022
+ # predicated methods by default.
1023
+ Style/TrivialAccessors:
1024
+ # When set to false the cop will suggest the use of accessor methods
1025
+ # in situations like:
1026
+ #
1027
+ # def name
1028
+ # @other_name
1029
+ # end
1030
+ #
1031
+ # This way you can uncover "hidden" attributes in your code.
1032
+ ExactNameMatch: true
1033
+ AllowPredicates: true
1034
+ # Allows trivial writers that don't end in an equal sign. e.g.
1035
+ #
1036
+ # def on_exception(action)
1037
+ # @on_exception=action
1038
+ # end
1039
+ # on_exception :restart
1040
+ #
1041
+ # Commonly used in DSLs
1042
+ AllowDSLWriters: false
1043
+ IgnoreClassMethods: false
1044
+ AllowedMethods:
1045
+ - to_ary
1046
+ - to_a
1047
+ - to_c
1048
+ - to_enum
1049
+ - to_h
1050
+ - to_hash
1051
+ - to_i
1052
+ - to_int
1053
+ - to_io
1054
+ - to_open
1055
+ - to_path
1056
+ - to_proc
1057
+ - to_r
1058
+ - to_regexp
1059
+ - to_str
1060
+ - to_s
1061
+ - to_sym
1062
+
1063
+ Naming/VariableName:
1064
+ EnforcedStyle: snake_case
1065
+ SupportedStyles:
1066
+ - snake_case
1067
+ - camelCase
1068
+
1069
+ Naming/VariableNumber:
1070
+ EnforcedStyle: normalcase
1071
+ SupportedStyles:
1072
+ - snake_case
1073
+ - normalcase
1074
+ - non_integer
1075
+
1076
+ # WordArray enforces how array literals of word-like strings should be expressed.
1077
+ Style/WordArray:
1078
+ EnforcedStyle: percent
1079
+ SupportedStyles:
1080
+ # percent style: %w(word1 word2)
1081
+ - percent
1082
+ # bracket style: ["word1", "word2"]
1083
+ - brackets
1084
+ # The MinSize option causes the WordArray rule to be ignored for arrays
1085
+ # smaller than a certain size. The rule is only applied to arrays
1086
+ # whose element count is greater than or equal to MinSize.
1087
+ MinSize: 2
1088
+ # The regular expression WordRegex decides what is considered a word.
1089
+ WordRegex: !ruby/regexp '/\A[\p{Word}\n\t]+\z/'
1090
+
1091
+ ##################### Metrics ##################################
1092
+
1093
+ Metrics/AbcSize:
1094
+ # The ABC size is a calculated magnitude, so this number can be an Integer or
1095
+ # a Float.
1096
+ Max: 15
1097
+ Enabled: false
1098
+
1099
+ Metrics/BlockNesting:
1100
+ Max: 3
1101
+
1102
+ Metrics/ClassLength:
1103
+ CountComments: false # count full line comments?
1104
+ Max: 100
1105
+ Enabled: false
1106
+
1107
+ Metrics/ModuleLength:
1108
+ CountComments: false # count full line comments?
1109
+ Max: 100
1110
+ Enabled: false
1111
+
1112
+ # Avoid complex methods.
1113
+ Metrics/CyclomaticComplexity:
1114
+ Max: 9
1115
+ Exclude:
1116
+ - "bin/bundle"
1117
+ - "decidim-admin/app/queries/decidim/admin/newsletter_recipients.rb"
1118
+ - "**/*/dummy_authorization_handler.rb"
1119
+ - "**/*/permissions.rb"
1120
+
1121
+ Metrics/MethodLength:
1122
+ CountComments: false # count full line comments?
1123
+ Max: 15
1124
+ Enabled: false
1125
+
1126
+ Metrics/ParameterLists:
1127
+ Max: 5
1128
+ CountKeywordArgs: true
1129
+ Exclude:
1130
+ - "decidim-core/lib/decidim/filter_form_builder.rb"
1131
+
1132
+ Metrics/PerceivedComplexity:
1133
+ Max: 10
1134
+ Exclude:
1135
+ - "decidim-admin/app/queries/decidim/admin/newsletter_recipients.rb"
1136
+ - "**/*/dummy_authorization_handler.rb"
1137
+ - "**/*/permissions.rb"
1138
+
1139
+ ##################### Lint ##################################
1140
+
1141
+ Lint/AmbiguousBlockAssociation:
1142
+ Enabled: true
1143
+ Exclude:
1144
+ - "**/abilities/**/*"
1145
+
1146
+ # Allow safe assignment in conditions.
1147
+ Lint/AssignmentInCondition:
1148
+ AllowSafeAssignment: true
1149
+
1150
+ Lint/ConstantDefinitionInBlock:
1151
+ Enabled: false
1152
+
1153
+ # Call super to initialize state of the parent class.
1154
+ Lint/MissingSuper:
1155
+ Enabled: false
1156
+
1157
+ # checks whether the end keywords are aligned properly for `do` `end` blocks.
1158
+ Layout/BlockAlignment:
1159
+ # The value `start_of_block` means that the `end` should be aligned with line
1160
+ # where the `do` keyword appears.
1161
+ # The value `start_of_line` means it should be aligned with the whole
1162
+ # expression's starting line.
1163
+ # The value `either` means both are allowed.
1164
+ EnforcedStyleAlignWith: either
1165
+
1166
+ # Align ends correctly.
1167
+ Layout/EndAlignment:
1168
+ # The value `keyword` means that `end` should be aligned with the matching
1169
+ # keyword (if, while, etc.).
1170
+ # The value `variable` means that in assignments, `end` should be aligned
1171
+ # with the start of the variable on the left hand side of `=`. In all other
1172
+ # situations, `end` should still be aligned with the keyword.
1173
+ # The value `start_of_line` means that `end` should be aligned with the start
1174
+ # of the line which the matching keyword appears on.
1175
+ EnforcedStyleAlignWith: keyword
1176
+ AutoCorrect: false
1177
+
1178
+ Layout/DefEndAlignment:
1179
+ # The value `def` means that `end` should be aligned with the def keyword.
1180
+ # The value `start_of_line` means that `end` should be aligned with method
1181
+ # calls like `private`, `public`, etc, if present in front of the `def`
1182
+ # keyword on the same line.
1183
+ EnforcedStyleAlignWith: start_of_line
1184
+ AutoCorrect: false
1185
+
1186
+ Lint/InheritException:
1187
+ # The default base class in favour of `Exception`.
1188
+ EnforcedStyle: runtime_error
1189
+ SupportedStyles:
1190
+ - runtime_error
1191
+ - standard_error
1192
+
1193
+ Layout/LineLength:
1194
+ Max: 180
1195
+ # To make it possible to copy or click on URIs in the code, we allow lines
1196
+ # containing a URI to be longer than Max.
1197
+ AllowHeredoc: true
1198
+ AllowURI: true
1199
+ URISchemes:
1200
+ - http
1201
+ - https
1202
+ Exclude:
1203
+ - "**/spec/**/*"
1204
+
1205
+ # Checks for unused block arguments
1206
+ Lint/UnusedBlockArgument:
1207
+ IgnoreEmptyBlocks: true
1208
+ AllowUnusedKeywordArguments: false
1209
+
1210
+ # Checks for unused method arguments.
1211
+ Lint/UnusedMethodArgument:
1212
+ AllowUnusedKeywordArguments: false
1213
+ IgnoreEmptyMethods: true
1214
+
1215
+ ##################### Performance ############################
1216
+
1217
+ Metrics/BlockLength:
1218
+ Enabled: false
1219
+
1220
+ RSpec/BeforeAfterAll:
1221
+ Enabled: true
1222
+
1223
+ RSpec/ContextWording:
1224
+ Enabled: true
1225
+ Prefixes:
1226
+ - when
1227
+ - with
1228
+ - without
1229
+ - and
1230
+
1231
+ RSpec/DescribeClass:
1232
+ Exclude:
1233
+ - spec/gemfiles_spec.rb
1234
+ - spec/webpacker_spec.rb
1235
+ - spec/i18n_spec.rb
1236
+ - "**/*/spec/**/*_badge_spec.rb"
1237
+ - decidim-core/spec/lib/global_engines_spec.rb
1238
+ - "**/tasks/**/*"
1239
+
1240
+ RSpec/EmptyExampleGroup:
1241
+ Exclude:
1242
+ - decidim-core/spec/lib/participatory_space_manifest_spec.rb
1243
+
1244
+ RSpec/ExampleLength:
1245
+ Max: 49
1246
+
1247
+ RSpec/ExpectInHook:
1248
+ Enabled: false
1249
+
1250
+ RSpec/IteratedExpectation:
1251
+ Enabled: true
1252
+
1253
+ RSpec/LetSetup:
1254
+ Enabled: false
1255
+
1256
+ RSpec/MessageSpies:
1257
+ Enabled: false
1258
+
1259
+ RSpec/MultipleExpectations:
1260
+ Enabled: false
1261
+
1262
+ RSpec/MultipleMemoizedHelpers:
1263
+ Max: 35
1264
+ Exclude:
1265
+ - decidim-assemblies/spec/forms/assembly_form_spec.rb
1266
+
1267
+ RSpec/NestedGroups:
1268
+ Max: 7
1269
+
1270
+ RSpec/NamedSubject:
1271
+ Enabled: false
1272
+
1273
+ RSpec/RepeatedExampleGroupDescription:
1274
+ Enabled: true
1275
+
1276
+ RSpec/RepeatedExampleGroupBody:
1277
+ Enabled: true
1278
+
1279
+ RSpec/VerifiedDoubles:
1280
+ Enabled: false
1281
+
1282
+ RSpec/LeakyConstantDeclaration:
1283
+ Enabled: false
1284
+
1285
+ RSpec/DescribedClass:
1286
+ Enabled: false
1287
+
1288
+ # This is the default configuration file.
1289
+
1290
+ Faker/DeprecatedArguments:
1291
+ Description: 'Checks that Faker arguments style is based on Faker 2.'
1292
+ Enabled: true
1293
+ VersionAdded: '0.1'
1294
+ Reference: 'https://github.com/faker-ruby/faker/blob/master/CHANGELOG.md#v20-2019-31-07'
1295
+ ArgumentKeywords:
1296
+ #
1297
+ # FakerClassName:
1298
+ # method_name:
1299
+ # - keyword_name_for_first_argument
1300
+ # - keyword_name_for_second_argument
1301
+ # - keyword_name_for_third_argument
1302
+ #
1303
+ Faker::Dune:
1304
+ quote:
1305
+ - character
1306
+ saying:
1307
+ - source
1308
+ Faker::Books::Lovecraft:
1309
+ fhtagn:
1310
+ - number
1311
+ sentence:
1312
+ - word_count
1313
+ - random_words_to_add
1314
+ words:
1315
+ - number
1316
+ - spaces_allowed
1317
+ sentences:
1318
+ - number
1319
+ paragraph:
1320
+ - sentence_count
1321
+ - random_sentences_to_add
1322
+ paragraphs:
1323
+ - number
1324
+ paragraph_by_chars:
1325
+ - characters
1326
+ Faker::Address:
1327
+ city:
1328
+ - options
1329
+ street_address:
1330
+ - include_secondary
1331
+ zip_code:
1332
+ - state_abbreviation
1333
+ country_by_code:
1334
+ - code
1335
+ country_name_to_code:
1336
+ - name
1337
+ Faker::Alphanumeric:
1338
+ alpha:
1339
+ - number
1340
+ alphanumeric:
1341
+ - number
1342
+ Faker::App:
1343
+ semantic_version:
1344
+ - major
1345
+ - minor
1346
+ - patch
1347
+ Faker::Avatar:
1348
+ image:
1349
+ - slug
1350
+ - size
1351
+ - format
1352
+ - set
1353
+ - bgset
1354
+ Faker::Bank:
1355
+ account_number:
1356
+ - digits
1357
+ iban:
1358
+ - country_code
1359
+ Faker::Boolean:
1360
+ boolean:
1361
+ - true_ratio
1362
+ Faker::ChileRut:
1363
+ rut:
1364
+ - min_rut
1365
+ - fixed
1366
+ full_rut:
1367
+ - min_rut
1368
+ - fixed
1369
+ Faker::Code:
1370
+ isbn:
1371
+ - base
1372
+ ean:
1373
+ - base
1374
+ nric:
1375
+ - min_age
1376
+ - max_age
1377
+ Faker::Commerce:
1378
+ promotion_code:
1379
+ - digits
1380
+ department:
1381
+ - max
1382
+ - fixed_amount
1383
+ price:
1384
+ - range
1385
+ - as_string
1386
+ Faker::Company:
1387
+ polish_register_of_national_economy:
1388
+ - length
1389
+ brazilian_company_number:
1390
+ - formatted
1391
+ Faker::CryptoCoin:
1392
+ coin_name:
1393
+ - coin
1394
+ acronym:
1395
+ - coin
1396
+ url_logo:
1397
+ - coin
1398
+ Faker::Date:
1399
+ between:
1400
+ - from
1401
+ - to
1402
+ between_except:
1403
+ - from
1404
+ - to
1405
+ - excepted
1406
+ forward:
1407
+ - days
1408
+ backward:
1409
+ - days
1410
+ birthday:
1411
+ - min_age
1412
+ - max_age
1413
+ Faker::Demographic:
1414
+ height:
1415
+ - unit
1416
+ Faker::DrivingLicence:
1417
+ british_driving_licence:
1418
+ - last_name
1419
+ - initials
1420
+ - gender
1421
+ - date_of_birth
1422
+ Faker::File:
1423
+ dir:
1424
+ - segment_count
1425
+ - root
1426
+ - directory_separator
1427
+ file_name:
1428
+ - dir
1429
+ - name
1430
+ - ext
1431
+ - directory_separator
1432
+ Faker::Fillmurray:
1433
+ image:
1434
+ - grayscale
1435
+ - width
1436
+ - height
1437
+ Faker::Finance:
1438
+ vat_number:
1439
+ - country
1440
+ Faker::Hipster:
1441
+ words:
1442
+ - number
1443
+ - supplemental
1444
+ - spaces_allowed
1445
+ sentence:
1446
+ - word_count
1447
+ - supplemental
1448
+ - random_words_to_add
1449
+ sentences:
1450
+ - number
1451
+ - supplemental
1452
+ paragraph:
1453
+ - sentence_count
1454
+ - supplemental
1455
+ - random_sentences_to_add
1456
+ paragraphs:
1457
+ - number
1458
+ - supplemental
1459
+ paragraph_by_chars:
1460
+ - characters
1461
+ - supplemental
1462
+ Faker::IDNumber:
1463
+ brazilian_citizen_number:
1464
+ - formatted
1465
+ brazilian_id:
1466
+ - formatted
1467
+ Faker::Internet:
1468
+ email:
1469
+ - name
1470
+ - separators
1471
+ free_email:
1472
+ - name
1473
+ safe_email:
1474
+ - name
1475
+ username:
1476
+ - specifier
1477
+ - separators
1478
+ password:
1479
+ - min_length
1480
+ - max_length
1481
+ - mix_case
1482
+ - special_characters
1483
+ domain_name:
1484
+ - subdomain
1485
+ fix_umlauts:
1486
+ - string
1487
+ mac_address:
1488
+ - prefix
1489
+ url:
1490
+ - host
1491
+ - path
1492
+ - scheme
1493
+ slug:
1494
+ - words
1495
+ - glue
1496
+ user_agent:
1497
+ - vendor
1498
+ Faker::Invoice:
1499
+ amount_between:
1500
+ - from
1501
+ - to
1502
+ creditor_reference:
1503
+ - ref
1504
+ reference:
1505
+ - ref
1506
+ Faker::Json:
1507
+ shallow_json:
1508
+ - width
1509
+ - options
1510
+ add_depth_to_json:
1511
+ - json
1512
+ - width
1513
+ - options
1514
+ Faker::Lorem:
1515
+ words:
1516
+ - number
1517
+ - supplemental
1518
+ characters:
1519
+ - number
1520
+ sentence:
1521
+ - word_count
1522
+ - supplemental
1523
+ - random_words_to_add
1524
+ sentences:
1525
+ - number
1526
+ - supplemental
1527
+ paragraph:
1528
+ - sentence_count
1529
+ - supplemental
1530
+ - random_sentences_to_add
1531
+ paragraphs:
1532
+ - number
1533
+ - supplemental
1534
+ paragraph_by_chars:
1535
+ - number
1536
+ - supplemental
1537
+ question:
1538
+ - word_count
1539
+ - supplemental
1540
+ - random_words_to_add
1541
+ questions:
1542
+ - number
1543
+ - supplemental
1544
+ Faker::LoremFlickr:
1545
+ image:
1546
+ - size
1547
+ - search_terms
1548
+ - match_all
1549
+ grayscale_image:
1550
+ - size
1551
+ - search_terms
1552
+ - match_all
1553
+ pixelated_image:
1554
+ - size
1555
+ - search_terms
1556
+ - match_all
1557
+ colorized_image:
1558
+ - size
1559
+ - color
1560
+ - search_terms
1561
+ - match_all
1562
+ Faker::LoremPixel:
1563
+ image:
1564
+ - size
1565
+ - is_gray
1566
+ - category
1567
+ - number
1568
+ - text
1569
+ - secure
1570
+ Faker::Markdown:
1571
+ sandwich:
1572
+ - sentences
1573
+ - repeat
1574
+ Faker::Measurement:
1575
+ height:
1576
+ - amount
1577
+ length:
1578
+ - amount
1579
+ volume:
1580
+ - amount
1581
+ weight:
1582
+ - amount
1583
+ metric_height:
1584
+ - amount
1585
+ metric_length:
1586
+ - amount
1587
+ metric_volume:
1588
+ - amount
1589
+ metric_weight:
1590
+ - amount
1591
+ Faker::Name:
1592
+ initials:
1593
+ - number
1594
+ Faker::NationalHealthService:
1595
+ check_digit:
1596
+ - number
1597
+ Faker::Number:
1598
+ number:
1599
+ - digits
1600
+ leading_zero_number:
1601
+ - digits
1602
+ decimal_part:
1603
+ - digits
1604
+ decimal:
1605
+ - l_digits
1606
+ - r_digits
1607
+ hexadecimal:
1608
+ - digits
1609
+ normal:
1610
+ - mean
1611
+ - standard_deviation
1612
+ between:
1613
+ - from
1614
+ - to
1615
+ within:
1616
+ - range
1617
+ positive:
1618
+ - from
1619
+ - to
1620
+ negative:
1621
+ - from
1622
+ - to
1623
+ Faker::Omniauth:
1624
+ google:
1625
+ - name
1626
+ - email
1627
+ - uid
1628
+ facebook:
1629
+ - name
1630
+ - email
1631
+ - username
1632
+ - uid
1633
+ twitter:
1634
+ - name
1635
+ - nickname
1636
+ - uid
1637
+ linkedin:
1638
+ - name
1639
+ - email
1640
+ - uid
1641
+ github:
1642
+ - name
1643
+ - email
1644
+ - uid
1645
+ Faker::PhoneNumber:
1646
+ subscriber_number:
1647
+ - length
1648
+ Faker::Placeholdit:
1649
+ image:
1650
+ - size
1651
+ - format
1652
+ - background_color
1653
+ - text_color
1654
+ - text
1655
+ Faker::Relationship:
1656
+ familial:
1657
+ - connection
1658
+ Faker::Source:
1659
+ hello_world:
1660
+ - lang
1661
+ print:
1662
+ - str
1663
+ - lang
1664
+ print_1_to_10:
1665
+ - lang
1666
+ Faker::String:
1667
+ random:
1668
+ - length
1669
+ Faker::Stripe:
1670
+ valid_card:
1671
+ - card_type
1672
+ valid_token:
1673
+ - card_type
1674
+ invalid_card:
1675
+ - card_error
1676
+ ccv:
1677
+ - card_type
1678
+ Faker::Time:
1679
+ between:
1680
+ - from
1681
+ - to
1682
+ - format
1683
+ between_dates:
1684
+ - from
1685
+ - to
1686
+ - period
1687
+ - format
1688
+ forward:
1689
+ - days
1690
+ - period
1691
+ - format
1692
+ backward:
1693
+ - days
1694
+ - period
1695
+ - format
1696
+ Faker::Twitter:
1697
+ user:
1698
+ - include_status
1699
+ - include_email
1700
+ status:
1701
+ - include_user
1702
+ - include_photo
1703
+ status_entities:
1704
+ - include_photo
1705
+ Faker::Types:
1706
+ rb_string:
1707
+ - words
1708
+ rb_integer:
1709
+ - from
1710
+ - to
1711
+ rb_hash:
1712
+ - number
1713
+ - type
1714
+ complex_rb_hash:
1715
+ - number
1716
+ rb_array:
1717
+ - len
1718
+ Faker::Vehicle:
1719
+ model:
1720
+ - make_of_model
1721
+ mileage:
1722
+ - min
1723
+ - max
1724
+ license_plate:
1725
+ - state_abbreviation
1726
+ Faker::WorldCup:
1727
+ group:
1728
+ - group
1729
+ roster:
1730
+ - country
1731
+ - type
1732
+ Faker::Dota:
1733
+ quote:
1734
+ - hero
1735
+ Faker::Movies::StarWars:
1736
+ quote:
1737
+ - character
1738
+ Decidim::Faker::Localized:
1739
+ words:
1740
+ - number
1741
+ - supplemental
1742
+ characters:
1743
+ - number
1744
+ sentence:
1745
+ - word_count
1746
+ - supplemental
1747
+ - random_words_to_add
1748
+ sentences:
1749
+ - number
1750
+ - supplemental
1751
+ paragraph:
1752
+ - sentence_count
1753
+ - supplemental
1754
+ - random_sentences_to_add
1755
+ paragraphs:
1756
+ - number
1757
+ - supplemental
1758
+ paragraph_by_chars:
1759
+ - number
1760
+ - supplemental
1761
+ question:
1762
+ - word_count
1763
+ - supplemental
1764
+ - random_words_to_add
1765
+ questions:
1766
+ - number
1767
+ - supplemental
1768
+