ckeditor 4.2.4 → 5.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (685) hide show
  1. checksums.yaml +5 -5
  2. data/Gemfile +15 -12
  3. data/README.md +65 -75
  4. data/Rakefile +17 -9
  5. data/app/assets/javascripts/ckeditor/config.js +1 -0
  6. data/app/controllers/ckeditor/application_controller.rb +3 -0
  7. data/app/controllers/ckeditor/attachment_files_controller.rb +2 -0
  8. data/app/controllers/ckeditor/pictures_controller.rb +2 -0
  9. data/app/helpers/ckeditor/application_helper.rb +2 -0
  10. data/app/views/ckeditor/attachment_files/index.html.erb +1 -1
  11. data/config/locales/da.ckeditor.yml +9 -0
  12. data/config/routes.rb +2 -0
  13. data/lib/ckeditor/asset_response.rb +15 -4
  14. data/lib/ckeditor/backend/active_storage.rb +68 -0
  15. data/lib/ckeditor/backend/carrierwave.rb +2 -12
  16. data/lib/ckeditor/backend/dragonfly.rb +2 -0
  17. data/lib/ckeditor/backend/paperclip.rb +2 -15
  18. data/lib/ckeditor/backend/shrine.rb +29 -0
  19. data/lib/ckeditor/helpers/controllers.rb +2 -2
  20. data/lib/ckeditor/helpers/form_builder.rb +2 -2
  21. data/lib/ckeditor/helpers/form_helper.rb +2 -2
  22. data/lib/ckeditor/helpers/view_helper.rb +2 -2
  23. data/lib/ckeditor/hooks/action_policy.rb +41 -0
  24. data/lib/ckeditor/hooks/cancan.rb +4 -1
  25. data/lib/ckeditor/hooks/formtastic.rb +2 -0
  26. data/lib/ckeditor/hooks/pundit.rb +2 -0
  27. data/lib/ckeditor/hooks/simple_form.rb +2 -0
  28. data/lib/ckeditor/http.rb +8 -5
  29. data/lib/ckeditor/orm/active_record.rb +2 -0
  30. data/lib/ckeditor/orm/base.rb +2 -0
  31. data/lib/ckeditor/orm/mongoid.rb +2 -0
  32. data/lib/ckeditor/paginatable.rb +2 -0
  33. data/lib/ckeditor/rails.rb +3 -0
  34. data/lib/ckeditor/text_area.rb +3 -1
  35. data/lib/ckeditor/utils/javascript_code.rb +1 -1
  36. data/lib/ckeditor/utils.rb +1 -39
  37. data/lib/ckeditor/version.rb +4 -2
  38. data/lib/ckeditor.rb +10 -16
  39. data/lib/generators/ckeditor/action_policy_generator.rb +22 -0
  40. data/lib/generators/ckeditor/install_generator.rb +16 -6
  41. data/lib/generators/ckeditor/pundit_policy_generator.rb +2 -0
  42. data/lib/generators/ckeditor/templates/action_policy/attachment_file_policy.rb +18 -0
  43. data/lib/generators/ckeditor/templates/action_policy/picture_policy.rb +18 -0
  44. data/lib/generators/ckeditor/templates/active_record/active_storage/ckeditor/asset.rb +10 -0
  45. data/lib/generators/ckeditor/templates/active_record/{refile → active_storage}/ckeditor/attachment_file.rb +3 -1
  46. data/lib/generators/ckeditor/templates/active_record/active_storage/ckeditor/picture.rb +13 -0
  47. data/lib/generators/ckeditor/templates/active_record/{refile → active_storage}/migration.rb +10 -8
  48. data/lib/generators/ckeditor/templates/active_record/carrierwave/ckeditor/asset.rb +2 -0
  49. data/lib/generators/ckeditor/templates/active_record/carrierwave/ckeditor/attachment_file.rb +2 -0
  50. data/lib/generators/ckeditor/templates/active_record/carrierwave/ckeditor/picture.rb +2 -0
  51. data/lib/generators/ckeditor/templates/active_record/carrierwave/migration.rb +7 -5
  52. data/lib/generators/ckeditor/templates/active_record/dragonfly/ckeditor/asset.rb +2 -0
  53. data/lib/generators/ckeditor/templates/active_record/dragonfly/ckeditor/attachment_file.rb +2 -0
  54. data/lib/generators/ckeditor/templates/active_record/dragonfly/ckeditor/picture.rb +2 -0
  55. data/lib/generators/ckeditor/templates/active_record/dragonfly/migration.rb +7 -5
  56. data/lib/generators/ckeditor/templates/active_record/paperclip/ckeditor/asset.rb +2 -0
  57. data/lib/generators/ckeditor/templates/active_record/paperclip/ckeditor/attachment_file.rb +2 -0
  58. data/lib/generators/ckeditor/templates/active_record/paperclip/ckeditor/picture.rb +2 -0
  59. data/lib/generators/ckeditor/templates/active_record/paperclip/migration.rb +8 -6
  60. data/lib/generators/ckeditor/templates/base/carrierwave/uploaders/ckeditor_attachment_file_uploader.rb +2 -1
  61. data/lib/generators/ckeditor/templates/base/carrierwave/uploaders/ckeditor_picture_uploader.rb +2 -3
  62. data/lib/generators/ckeditor/templates/base/dragonfly/initializer.rb +2 -0
  63. data/lib/generators/ckeditor/templates/base/shrine/initializer.rb +25 -0
  64. data/lib/generators/ckeditor/templates/ckeditor.rb +3 -6
  65. data/lib/generators/ckeditor/templates/mongoid/carrierwave/ckeditor/asset.rb +2 -0
  66. data/lib/generators/ckeditor/templates/mongoid/carrierwave/ckeditor/attachment_file.rb +2 -0
  67. data/lib/generators/ckeditor/templates/mongoid/carrierwave/ckeditor/picture.rb +2 -0
  68. data/lib/generators/ckeditor/templates/mongoid/paperclip/ckeditor/asset.rb +2 -0
  69. data/lib/generators/ckeditor/templates/mongoid/paperclip/ckeditor/attachment_file.rb +2 -0
  70. data/lib/generators/ckeditor/templates/mongoid/paperclip/ckeditor/picture.rb +2 -0
  71. data/lib/generators/ckeditor/templates/mongoid/shrine/ckeditor/asset.rb +8 -0
  72. data/lib/generators/ckeditor/templates/mongoid/shrine/ckeditor/attachment_file.rb +21 -0
  73. data/lib/generators/ckeditor/templates/mongoid/shrine/ckeditor/picture.rb +51 -0
  74. data/lib/generators/ckeditor/templates/pundit_policy/attachment_file_policy.rb +2 -0
  75. data/lib/generators/ckeditor/templates/pundit_policy/picture_policy.rb +2 -0
  76. data/lib/tasks/ckeditor.rake +2 -0
  77. data/test/controllers/attachment_files_controller_test.rb +17 -15
  78. data/test/controllers/pictures_controller_test.rb +17 -15
  79. data/test/dummy/Rakefile +2 -0
  80. data/test/dummy/app/assets/javascripts/application.js +0 -2
  81. data/test/dummy/app/controllers/application_controller.rb +2 -0
  82. data/test/dummy/app/controllers/posts_controller.rb +2 -0
  83. data/test/dummy/app/helpers/application_helper.rb +2 -0
  84. data/test/dummy/app/helpers/posts_helper.rb +2 -0
  85. data/test/dummy/app/models/post.rb +2 -0
  86. data/test/dummy/app/views/posts/index.html.erb +0 -3
  87. data/test/dummy/app/views/posts/show.html.erb +3 -0
  88. data/test/dummy/config/application.rb +5 -1
  89. data/test/dummy/config/boot.rb +2 -0
  90. data/test/dummy/config/environment.rb +2 -0
  91. data/test/dummy/config/environments/development.rb +2 -0
  92. data/test/dummy/config/environments/production.rb +2 -0
  93. data/test/dummy/config/environments/test.rb +5 -3
  94. data/test/dummy/config/initializers/assets.rb +2 -0
  95. data/test/dummy/config/initializers/backtrace_silencers.rb +2 -0
  96. data/test/dummy/config/initializers/ckeditor.rb +2 -0
  97. data/test/dummy/config/initializers/cookies_serializer.rb +2 -0
  98. data/test/dummy/config/initializers/inflections.rb +2 -0
  99. data/test/dummy/config/initializers/mime_types.rb +2 -0
  100. data/test/dummy/config/initializers/paperclip.rb +2 -0
  101. data/test/dummy/config/initializers/session_store.rb +2 -0
  102. data/test/dummy/config/initializers/wrap_parameters.rb +2 -0
  103. data/test/dummy/config/routes.rb +2 -0
  104. data/test/dummy/config/storage.yml +3 -0
  105. data/test/dummy/config.ru +2 -0
  106. data/test/dummy/db/migrate/20110623120047_create_posts.rb +5 -3
  107. data/test/dummy/db/migrate/20170806125915_create_active_storage_tables.rb +26 -0
  108. data/test/dummy/log/test.log +539 -0
  109. data/test/dummy/script/rails +2 -0
  110. data/test/dummy/tmp/cache/assets/sprockets/v3.0/-d/-dBqueNlS8WwuPraBl4IkbfQRL93pVKQvYJ-zSKRKxU.cache +2 -0
  111. data/test/dummy/tmp/cache/assets/sprockets/v3.0/-f/-fyTq7_I0HC-1OsK08Hj6mGMvCIifWgY8Qri65a094A.cache +3 -0
  112. data/test/dummy/tmp/cache/assets/sprockets/v3.0/04/04ewZ0c1q_zE-xyp1_tu63iQ08Zc487NAJXCiHxKqCs.cache +3 -0
  113. data/test/dummy/tmp/cache/assets/sprockets/v3.0/05/053vWA3kmu4-6v32aM64Pwcd_LdIf_3lsrDSuGparNE.cache +1 -0
  114. data/test/dummy/tmp/cache/assets/sprockets/v3.0/08/08WCRw3WlsP1fILmwynQ8HaeL3mN5xQV8RsV-OpCR84.cache +1 -0
  115. data/test/dummy/tmp/cache/assets/sprockets/v3.0/0F/0FLX257BoU4j7TvAGAqmKK7M4JK8lPYWt8un9-GElUE.cache +1 -0
  116. data/test/dummy/tmp/cache/assets/sprockets/v3.0/0_/0_RwuQhVhuz2Zj6cyW1Qrg1wmAy9jf_TbrWm30CNHwM.cache +4 -0
  117. data/test/dummy/tmp/cache/assets/sprockets/v3.0/0c/0cpHzwSwJiYcbgcK2pD0vXwKP2VM1owgdYZr4ejiLfI.cache +0 -0
  118. data/test/dummy/tmp/cache/assets/sprockets/v3.0/0v/0vzBAlV2TqPJ14G3w9RBBQaFnUaM4_DAV7_fvNQKK-M.cache +3 -0
  119. data/test/dummy/tmp/cache/assets/sprockets/v3.0/15/15kTYHJ9YGIbASZaM7epQZZNu7Fjx93C9YcSeGbURSM.cache +0 -0
  120. data/test/dummy/tmp/cache/assets/sprockets/v3.0/1L/1LzUbGbE3gxsOFwMWWvg7rbCKWcSXx3ikLrP176lXvw.cache +0 -0
  121. data/test/dummy/tmp/cache/assets/sprockets/v3.0/1s/1sXde7PzLPTWbUz4TxQj1XtFcTUsn-ojYQHOBNmc3eY.cache +0 -0
  122. data/test/dummy/tmp/cache/assets/sprockets/v3.0/2i/2i9A4OM8yFNZvNJjen7ywQCA8YUoxnPoVy2aiXupbCg.cache +4 -0
  123. data/test/dummy/tmp/cache/assets/sprockets/v3.0/2n/2nLwAurhvsqUvixh2bPQw-EUkt5JWr9XHyfoEzEEtBs.cache +1 -0
  124. data/test/dummy/tmp/cache/assets/sprockets/v3.0/2o/2o8J2-5zLYcqYc4HmspjYoHJGOiwjk0oKA7p-WYhU6k.cache +0 -0
  125. data/test/dummy/tmp/cache/assets/sprockets/v3.0/3D/3DzwHWCow-x5X9Wpkg5ZCH3RqQlpZ6G3Qo6hvMYtanc.cache +1 -0
  126. data/test/dummy/tmp/cache/assets/sprockets/v3.0/3d/3dmugBqWzGPHNnc8FEqDvHfFYpKJbAziKxIf7veqCOw.cache +1 -0
  127. data/test/dummy/tmp/cache/assets/sprockets/v3.0/3s/3ss6YahyYEb0qLAV8864wv9pJxbGvaMr2gPjI8FPo_4.cache +3 -0
  128. data/test/dummy/tmp/cache/assets/sprockets/v3.0/4I/4IQZgALzTTT6ZQIK0WwW1zO54x5J1KKPbB-DfiGIb00.cache +3 -0
  129. data/test/dummy/tmp/cache/assets/sprockets/v3.0/4j/4j7x99qNyXvE-LyUyEJ59JT-OaB4CfqjVCaoaRqWxHY.cache +3 -0
  130. data/test/dummy/tmp/cache/assets/sprockets/v3.0/5s/5sf_1So_2TzJhgV9CwZM6iCCfLnz76wdN4yAbVQ3xvg.cache +0 -0
  131. data/test/dummy/tmp/cache/assets/sprockets/v3.0/5w/5wYq7JIx5EMI40F3-Np0vuSwqq5AbsM1M7Z02ubK_Zs.cache +3 -0
  132. data/test/dummy/tmp/cache/assets/sprockets/v3.0/5z/5zzxntCI3GPFcP-dfgOc86Ajp1jgBaj2ESaz4cO9oIc.cache +0 -0
  133. data/test/dummy/tmp/cache/assets/sprockets/v3.0/6G/6GlNQ20eeXzca9VGo0hCliNy33gq2QqzC5_o1IjUrZw.cache +1 -0
  134. data/test/dummy/tmp/cache/assets/sprockets/v3.0/6I/6I3t_d6wk7buUIh3xThJ6H3WZTVnn5V7gIJBIl1jfSY.cache +3 -0
  135. data/test/dummy/tmp/cache/assets/sprockets/v3.0/6J/6JN4ZmYR_lrkbDiMIsrtw6_IGsGkNNJhUgmlVFZFki8.cache +3 -0
  136. data/test/dummy/tmp/cache/assets/sprockets/v3.0/6L/6L0_bpdm_t1xV1LSElTd4EiwZmDbfImqgNOP44oY4Fg.cache +1 -0
  137. data/test/dummy/tmp/cache/assets/sprockets/v3.0/6r/6rRvrDpqz6FBD-NUHBvGh8o1Os4tCO9hjOpM0LcqD6Q.cache +1 -0
  138. data/test/dummy/tmp/cache/assets/sprockets/v3.0/6y/6yLbSHho8x8T9bFbe5z6A6GSXRtIlu6-MMBP51MpuVQ.cache +3 -0
  139. data/test/dummy/tmp/cache/assets/sprockets/v3.0/7B/7BS88BiOyR7L5EgLvnb2cNG_eC7dZP-TaFbT1u14YfI.cache +3 -0
  140. data/test/dummy/tmp/cache/assets/sprockets/v3.0/7L/7LI10ckVJmn25-bsvE-zOANz2by_rfrzndpbz_0M3IA.cache +1 -0
  141. data/test/dummy/tmp/cache/assets/sprockets/v3.0/7M/7MnhqviqKpQp4a6wlaqaGhyHxO_7fumN8XNbgTyefGo.cache +1 -0
  142. data/test/dummy/tmp/cache/assets/sprockets/v3.0/7a/7a_aF8iQYuIK9pnWRrnBM4bGcvaW7B7KGiqxdGPrABE.cache +1 -0
  143. data/test/dummy/tmp/cache/assets/sprockets/v3.0/8d/8dK01tNjVZOkAv12c7NbQ9M95iiLjRUHvn8_vQZFLC8.cache +5 -0
  144. data/test/dummy/tmp/cache/assets/sprockets/v3.0/93/930-vFx7yFTnr3WLd3kATLnNsdxrmPLNDAJlgPMSia8.cache +1 -0
  145. data/test/dummy/tmp/cache/assets/sprockets/v3.0/AK/AK3qK8yEs07-d1XF4nIIK-4r5Bae3biMoXTH-XimcIk.cache +3 -0
  146. data/test/dummy/tmp/cache/assets/sprockets/v3.0/AP/AP8aU7CCks37uIRxKXMzD6WbSYsrqlQVLuhOHYrZM70.cache +3 -0
  147. data/test/dummy/tmp/cache/assets/sprockets/v3.0/B6/B60PzutJO4bVi4HpUZrFVrpcrNiBllTtUuDHmCANe4g.cache +6 -0
  148. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Bi/BidoqWHH9nqc490f8yoQGbijq0_eHWA21nVyVDLIKG0.cache +0 -0
  149. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Bu/BujNz6G7IUtmYGCIKckBJwkoWo42olu6npeyPUjZK3M.cache +0 -0
  150. data/test/dummy/tmp/cache/assets/sprockets/v3.0/CV/CV7HIa3sfMBoB2Iak0KlcMe2CgrlP3KycILium6_rvg.cache +1 -0
  151. data/test/dummy/tmp/cache/assets/sprockets/v3.0/DF/DFl6sNWFwAG371Exi_W7tO72hRJKBO18TGmgDwRl5T8.cache +1 -0
  152. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Dm/DmmfrCpXtt74Hr6NO54lxyOCDv6klnDyBqeDFR7oDU8.cache +3 -0
  153. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ee/EeJgeYVT_CZY1OzmZRpaZpwSCdpiI_kGLaZyp0Lx0z0.cache +0 -0
  154. data/test/dummy/tmp/cache/assets/sprockets/v3.0/F-/F-mRXZF1KeR-VvdE94qLvfQ7G4tYqETlWPdhw0ktOpE.cache +3 -0
  155. data/test/dummy/tmp/cache/assets/sprockets/v3.0/F4/F4obfNmo-wutrSru1b2HuBT0ru_64CzGsup4A9kP_8w.cache +0 -0
  156. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Gh/GhvM2-MuVU_HNVX1clAXt359AJIcJU5n8YI3boG-6RA.cache +3 -0
  157. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Go/GogfiSOr9ALlZL8yRf8sY-qJt52NT1sNItvg2IRbEhQ.cache +1 -0
  158. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Gv/GvoRTz1WzfS40w8mlkZuGKYVMryiv7uFPO5AAWbU24c.cache +1 -0
  159. data/test/dummy/tmp/cache/assets/sprockets/v3.0/HC/HCF8cWFjuzdewkC9MR_Gcqb67OnqDAwYJp2lSDV8p14.cache +3 -0
  160. data/test/dummy/tmp/cache/assets/sprockets/v3.0/HT/HToXd6N9BdjuaIfhJw4T6kU3K4erf6L5Zs2ueeZEtIc.cache +1 -0
  161. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Hp/HpI4DVES2KTfRomEwW8II9vDXyyEe7l_7hImKJVoSsQ.cache +0 -0
  162. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Hu/Hu2TRCk8fVVZKSxUqbu8-2aqv5WaFckjbOIYPeVG6rE.cache +1 -0
  163. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Iw/IwnxC7SnRH6xsVsIU77ajeY3wU3VgmFmYLA67RAkyB0.cache +1 -0
  164. data/test/dummy/tmp/cache/assets/sprockets/v3.0/J-/J-27mU8JDzKZkGLimdmK3wnjKTz2ek_eGRsV6Sx5SfI.cache +0 -0
  165. data/test/dummy/tmp/cache/assets/sprockets/v3.0/JX/JXOdZ4crBS7WZXI04yj4_Kx2Bihs7WfBV5eV7utJkus.cache +5 -0
  166. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Jp/JpeAXRxkp45Ez2YpDSX7odrxvwES3hXR1eofCSTDlCA.cache +0 -0
  167. data/test/dummy/tmp/cache/assets/sprockets/v3.0/KD/KDQQKO-9XB9j2jrauksdDASKO3M2EjFlU7YxNsCuTC4.cache +1 -0
  168. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Kb/KbtoOF2L9wfndqHkMPAXW-ygqLRoawx6iQOx5qozg44.cache +1 -0
  169. data/test/dummy/tmp/cache/assets/sprockets/v3.0/LA/LA6X678QgeRBLF8c0bPiZP5BJSJIVM6DzB5-SO49W_E.cache +0 -0
  170. data/test/dummy/tmp/cache/assets/sprockets/v3.0/LF/LFI2nxI8wama02WD6drIwzwpfToiO8WBSjaNw0gUxHU.cache +1 -0
  171. data/test/dummy/tmp/cache/assets/sprockets/v3.0/LM/LMkoH8G88hsoVlg2reWs5yn3aTvP3ri6X60VliTesQ0.cache +1 -0
  172. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ls/LsGB6rbumOWBPBSGbvzGm9GnX1N-hluqCr3eCmRVUP8.cache +0 -0
  173. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Lx/LxE1TCMSj5X6GY2HAoIgSCphYVJw3joMIgJy0AladIM.cache +3 -0
  174. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ly/LyU_a18GYQo-r9NjeP0s8quyyhInekhZRIBHJz_jT_A.cache +1 -0
  175. data/test/dummy/tmp/cache/assets/sprockets/v3.0/MV/MVJnuzWbanuxqW14Dc8Y78-M8Wi65wLSlCc8Wq49NZw.cache +1 -0
  176. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Mo/MofjNnOqCS7WlmuCoJ8OwcR4P0o6Y7mPtRa-hVz-RWE.cache +1 -0
  177. data/test/dummy/tmp/cache/assets/sprockets/v3.0/N1/N19o30SdBrcqxzPFFb8TfCDRSI2Ufsev3FDMgGjuPIo.cache +0 -0
  178. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ng/Nge8YQeDgbFwrlL8feny1ICqk32DcsNYzcSz0CjcWD4.cache +4 -0
  179. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Nq/NqedKG2c6jsceuP2uhnKqQmoyWVcFM3cmIkRCv0F-PY.cache +0 -0
  180. data/test/dummy/tmp/cache/assets/sprockets/v3.0/On/OnMLw3lNhWehiCR4-8vVkwnE0-ijIqhyFtA5vn4HcGI.cache +5 -0
  181. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ov/Ovk6Og38upK7ebMdnjglXiiIWrBEX5smzQXQ_dEiiEE.cache +1 -0
  182. data/test/dummy/tmp/cache/assets/sprockets/v3.0/P0/P0qk9upwDGzYJ923EAuUTbCuu1ymuoJabO8Qznsp8D4.cache +0 -0
  183. data/test/dummy/tmp/cache/assets/sprockets/v3.0/P7/P7pJR0M3wKV-yEunRosFcJX4QQgWy7ifJMlTKXWCd7E.cache +2 -0
  184. data/test/dummy/tmp/cache/assets/sprockets/v3.0/PL/PLXqKdFjQPq1gG8MxkJDd034AGrOmlP42lNttsKRNVo.cache +1 -0
  185. data/test/dummy/tmp/cache/assets/sprockets/v3.0/PT/PTVUf7xyaFbCSvcQQS6baLxtS8Bhte_NUCiUxGXq3RE.cache +1 -0
  186. data/test/dummy/tmp/cache/assets/sprockets/v3.0/PU/PUCBOw7REdP4zl3q099sKBit47suWaK8rbjNVtLUCkA.cache +1 -0
  187. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Q1/Q1mnnVNVktIvFYfFKFv5gBaHJxHrvUhQVS2s-GyXsZg.cache +4 -0
  188. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Qm/QmfJnJlv-UeE5U5-dy10ddCGxsyEccCwm8rlSfbMQWg.cache +3 -0
  189. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Qs/QssGIs6hD9knPyadpRNYFqAEaPjIyBWHLvdLhtj01DQ.cache +1 -0
  190. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Qw/Qwsr6MU-j_a5wWaRoGNRGKc5JNIM7xEVY3TbTGmdbd4.cache +2 -0
  191. data/test/dummy/tmp/cache/assets/sprockets/v3.0/R5/R5ng3VLTDnoUI-pznc7CN8O-eOp6uAz37kiabllbgWk.cache +1 -0
  192. data/test/dummy/tmp/cache/assets/sprockets/v3.0/RS/RSQ4sWSaWJyZXl_vfRrU7XEmXaNiQL4fMldJ1_DmOqQ.cache +0 -0
  193. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Rx/RxtO8tM6L0cocpDr1jv2Z4HX8XWqnzTPJjJmA4oFt6U.cache +0 -0
  194. data/test/dummy/tmp/cache/assets/sprockets/v3.0/SJ/SJJOHM7e3gxOVnyy408rn8A376ehBdI69AJIdTdqISM.cache +4 -0
  195. data/test/dummy/tmp/cache/assets/sprockets/v3.0/SO/SO8HufFJWm0rbsJXVsRurZibwFbbCCMMPdp0yjQlqjQ.cache +1 -0
  196. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Sk/SkKTg6-wnERrIvPIbEvfEBwo6h01DChWrXsj4QM61vU.cache +0 -0
  197. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Sn/SnneONwbfZdkgXIrIsPDnNxDb2aBY83Ea0e7WboKZ0A.cache +1 -0
  198. data/test/dummy/tmp/cache/assets/sprockets/v3.0/TV/TVDhf7ZxMs_Oov5iDATk8se3-2zK8Yvg9-gvrnuGHXc.cache +1 -0
  199. data/test/dummy/tmp/cache/assets/sprockets/v3.0/TZ/TZiQSFmcqgsCteB5wJhqefkgWHVDI18yyz_Og5I19ik.cache +2 -0
  200. data/test/dummy/tmp/cache/assets/sprockets/v3.0/U7/U7Z6P2gy-gFd0rlSilzfYFNlAfmAODBgOU_f7Q0vVvs.cache +1 -0
  201. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ue/UeAZe1xqNjtzc63YDKyd5eqo4OMQ4yfiLlxK9aRvKB8.cache +2 -0
  202. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Uo/UofS0cqKwZpmrXESj48fTq4w4aeea0UszZv_1umJt_I.cache +1 -0
  203. data/test/dummy/tmp/cache/assets/sprockets/v3.0/VK/VK_uz7ZwmPAKPQfL-tCEPIQ0_2o4cY_5QKX_8HldmmM.cache +0 -0
  204. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Vk/VkV7pbT1hx8yaop4NiDn1kMR7MwS_VjDYNPHQWQOO7E.cache +3 -0
  205. data/test/dummy/tmp/cache/assets/sprockets/v3.0/WS/WShNZpE9_w8EMfkXTaye8MNmuDHrLltlcwPIptKTCao.cache +0 -0
  206. data/test/dummy/tmp/cache/assets/sprockets/v3.0/W_/W_HCQ-NoqY6LFvWJqI7Dxpauna6rDadRWwPYumXhIIM.cache +1 -0
  207. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Xe/XeODfy0gnLbSsviQI9sx8KqYuV7_t_6GfabdB7-NB7s.cache +1 -0
  208. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Y8/Y8ekK4ZkAoQpC2Q0MtxNBTkGhYhmBbHMrD6vFMvKsAo.cache +1 -0
  209. data/test/dummy/tmp/cache/assets/sprockets/v3.0/YD/YDL_VgvgExnwrajYeJLrzifB9dktBwDqzNtyzUtCD3Q.cache +0 -0
  210. data/test/dummy/tmp/cache/assets/sprockets/v3.0/YS/YStJFI5718x9-8P5pafLnelgTxmna9x4IbZdhs3YeOk.cache +1 -0
  211. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Y_/Y_OlVACK6j5lr-2QVZMaU8cF-Dz1S_T2TZ86vN6PJJw.cache +1 -0
  212. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Yb/YbAK65K3suwQEaHCdlXIRDkEuwX9DlYOxixaW07hcg4.cache +4 -0
  213. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ys/YsncDM5rDIeiBNnJwZyWqSu7-fLu8nQPHiSxcKNtRlw.cache +3 -0
  214. data/test/dummy/tmp/cache/assets/sprockets/v3.0/_T/_ThR31O-Iv0N9azSBsaq8YMNCZS0HtNOdVUNhufNXqQ.cache +0 -0
  215. data/test/dummy/tmp/cache/assets/sprockets/v3.0/_W/_WIOqpnSoDe30Uiwc3u9ca1Yf0ygrAdkiz1oenJ9rIc.cache +1 -0
  216. data/test/dummy/tmp/cache/assets/sprockets/v3.0/a9/a9Ndc4oxVRT9YmbyC1t6eAMps_QBsPEyzgfosMs_ckc.cache +1 -0
  217. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ah/ahINRHBr4OBNS6Ev96ytwFu4Lllhejr5UfwHq62_6F8.cache +1 -0
  218. data/test/dummy/tmp/cache/assets/sprockets/v3.0/an/anaBKbCx7jOFT835cgqX0qxCfQWgrUwV8MN48mg136A.cache +1 -0
  219. data/test/dummy/tmp/cache/assets/sprockets/v3.0/b6/b6ctzSonpQ3RSo-USlxPZ2o51cMq7G0j_n2UP5SPK9g.cache +0 -0
  220. data/test/dummy/tmp/cache/assets/sprockets/v3.0/bU/bU2MPAAPSo5Q9uII3DGJLnVmpnQaruoUpBe36In7L_c.cache +1 -0
  221. data/test/dummy/tmp/cache/assets/sprockets/v3.0/bb/bbZFJ3rtnAZP8x3-JUVnid9NsB7Ff1zTuFHxn7iW8Cc.cache +1 -0
  222. data/test/dummy/tmp/cache/assets/sprockets/v3.0/bs/bsTZHkPBfjgJJ2bpQqBSWywtikZk0kwL0nl315LSj34.cache +1 -0
  223. data/test/dummy/tmp/cache/assets/sprockets/v3.0/bz/bzx9c8FLtzNokI1rMWlgCOhK7ZyRZSmpJxAbR40lMUc.cache +5 -0
  224. data/test/dummy/tmp/cache/assets/sprockets/v3.0/c9/c9nQO7jCnRjJKRDITo6nng557fFIp9YwmqA4xlNx-Cc.cache +0 -0
  225. data/test/dummy/tmp/cache/assets/sprockets/v3.0/cj/cjaZOYTjEMptRd8RaY0aujOSTeN4Fyo7tRti_SZEERk.cache +0 -0
  226. data/test/dummy/tmp/cache/assets/sprockets/v3.0/dX/dXO4TJtTYlA_7BjfdzdlW__MyZh56Dx5UdjcZomT4ZU.cache +1 -0
  227. data/test/dummy/tmp/cache/assets/sprockets/v3.0/dj/dj0sh0-NeIakN5o7gtB6MzonGSfAE6aSAOGXcquLJVU.cache +0 -0
  228. data/test/dummy/tmp/cache/assets/sprockets/v3.0/dj/djpmLvcEUPPF44GeZjEzf-jWZlc43XiLngR0P6gsQzU.cache +1 -0
  229. data/test/dummy/tmp/cache/assets/sprockets/v3.0/do/donDLRkEPz9EI7K96pZGvNqvQbn-Zt8pg2bFQehKF4Y.cache +0 -0
  230. data/test/dummy/tmp/cache/assets/sprockets/v3.0/eD/eDN9FOZjukdumjpRxy1tDpIQg0sTdzyuhBMUyz7Pz4U.cache +1 -0
  231. data/test/dummy/tmp/cache/assets/sprockets/v3.0/eM/eMVK5ougZydBZd-IFAJzjaqAoDNJDp8Nm0oBdhlOv6s.cache +1 -0
  232. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ee/eeDN6LD9G2ZAgTdcEL9_ZQiXSI6Jzuhv5KbW9Svj88c.cache +0 -0
  233. data/test/dummy/tmp/cache/assets/sprockets/v3.0/f3/f3wGcAzcwR7I9M4vVSdMvKlbHNGKB0OcwcC2rIf_u58.cache +1 -0
  234. data/test/dummy/tmp/cache/assets/sprockets/v3.0/fS/fSgu2am11_zgLAKnTUnylmTiVzFQB77Z-eN62d88XwI.cache +0 -0
  235. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ff/ffM8QR3UUdE3AiPSVMzQK8MNI2C1oOblPKve3hyihoo.cache +0 -0
  236. data/test/dummy/tmp/cache/assets/sprockets/v3.0/fj/fjaG6x1t7euwaWpHAXwTw1pZJtYG75K7QurK7WV67YA.cache +1 -0
  237. data/test/dummy/tmp/cache/assets/sprockets/v3.0/fq/fqTBZznNgZs-NP6pZ74WUtbDbZRAkI4w979R64f5XHg.cache +2 -0
  238. data/test/dummy/tmp/cache/assets/sprockets/v3.0/h8/h8sGT3_wLt8J2pgHahjWvnn0LoMdD11mHQRMfhWVI2k.cache +3 -0
  239. data/test/dummy/tmp/cache/assets/sprockets/v3.0/hI/hIQZbwjIE-fff8Nh4CiPwqWX0PQdtLh17GomAFE85QU.cache +0 -0
  240. data/test/dummy/tmp/cache/assets/sprockets/v3.0/hY/hYGLA_7mx6SXKXIUKMLJHBbim2gPLx9mYGyCqOc0aes.cache +1 -0
  241. data/test/dummy/tmp/cache/assets/sprockets/v3.0/hu/huoCxkTn25xVdE8qEIejwda9aqbGvP59sq280V686Jg.cache +2 -0
  242. data/test/dummy/tmp/cache/assets/sprockets/v3.0/i2/i2U8mHjJazWLJXeYa7Hcm0-KV3SMr1Nf_VQ-wUuMKjY.cache +0 -0
  243. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ir/irDLGExxBttMiQTc_vLJLSI_d7WIDKbcuHBryvJZCJk.cache +1 -0
  244. data/test/dummy/tmp/cache/assets/sprockets/v3.0/j7/j7iaQzvTc-zrBhXlfNVdmYrLxRxmsFmV9jJN5uqqVlA.cache +1 -0
  245. data/test/dummy/tmp/cache/assets/sprockets/v3.0/jC/jCMuwPHJykKL72ahWss8nfPend5gDfz6pffXbVZb0SQ.cache +2 -0
  246. data/test/dummy/tmp/cache/assets/sprockets/v3.0/jG/jG9xx8asJ-QgTwP6NEhmkP5DSyThNsc6uInt9qologY.cache +1 -0
  247. data/test/dummy/tmp/cache/assets/sprockets/v3.0/jL/jLEJNDJIeSEhhThblk5gUv2g-CMijgdeNx095kk9_os.cache +1 -0
  248. data/test/dummy/tmp/cache/assets/sprockets/v3.0/kS/kSXrNqbjB2VH3IOyTGrAYSGttB7BoB9bj6-BQSCs_hI.cache +1 -0
  249. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ka/kaNVZlAtVg3t0BmMjOH8ZCHkrezmFy_sME1Hw8Mrfew.cache +1 -0
  250. data/test/dummy/tmp/cache/assets/sprockets/v3.0/kn/kn8Xx6CH8r-3h4p_tbEVHnFaA4j34VRYFr8VmgiqTLQ.cache +0 -0
  251. data/test/dummy/tmp/cache/assets/sprockets/v3.0/kr/krlmMov27lpasITgeAiFvUhUp9yCr-5LWxBeRtMPwfs.cache +1 -0
  252. data/test/dummy/tmp/cache/assets/sprockets/v3.0/lH/lHdb_PeCgraahSNfhufdF5kLuIosrzrYwpcSZXywlPc.cache +3 -0
  253. data/test/dummy/tmp/cache/assets/sprockets/v3.0/lN/lN2qsMU1zXlSuoInbefVqrNTK1V2SEzSN1yqZfU9Ru0.cache +2 -0
  254. data/test/dummy/tmp/cache/assets/sprockets/v3.0/lb/lbnm5U7Gc44KazG1ygxKg-VJZlsxiKs8bCG16FrK7jI.cache +2 -0
  255. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ll/lltp1XFfKQGeq6WKJMN-CriKVEps7jmtmU-XI7EhTUw.cache +3 -0
  256. data/test/dummy/tmp/cache/assets/sprockets/v3.0/mJ/mJFbTtnJshoNhVmVi9S9jG2aUTioPSxms_kGk5nyhKw.cache +3 -0
  257. data/test/dummy/tmp/cache/assets/sprockets/v3.0/mK/mKSHnoDeWz42GN5sMeRKn7fKoZB-2BxxLkob6rAveh4.cache +3 -0
  258. data/test/dummy/tmp/cache/assets/sprockets/v3.0/m_/m__FoNXoU2ztoyz-ek6W7hzQ-6132ydpKlf1xmtDXgg.cache +0 -0
  259. data/test/dummy/tmp/cache/assets/sprockets/v3.0/mx/mxirVMN-incSwDxg8-429kTSg4efU3tISnX6VUojUZU.cache +0 -0
  260. data/test/dummy/tmp/cache/assets/sprockets/v3.0/n8/n8v5QNtmkANjHzhzKlmk3rW9CPcjOcuBF8jLGQUnb28.cache +0 -0
  261. data/test/dummy/tmp/cache/assets/sprockets/v3.0/nn/nnxK8B35jBT31MZrxryKytxAhZVhDWrRxvVO_2NvRw4.cache +1 -0
  262. data/test/dummy/tmp/cache/assets/sprockets/v3.0/o8/o8KD_tJYoRXEbO4jLMzJhtX6pOqnfhiEMRDj5ghHTS4.cache +1 -0
  263. data/test/dummy/tmp/cache/assets/sprockets/v3.0/oG/oGGbOH0hayY6D5txd3QtccbRigWVxB19fvWJP8O54vM.cache +1 -0
  264. data/test/dummy/tmp/cache/assets/sprockets/v3.0/pC/pCfash9WTrrfv9yfQQwyLt9f7SObtMriLlo_QkWE1p8.cache +1 -0
  265. data/test/dummy/tmp/cache/assets/sprockets/v3.0/pS/pSDc64mPPrsJBsMdeoB71e7NlSvg60IUQVxCWg2TDU0.cache +3 -0
  266. data/test/dummy/tmp/cache/assets/sprockets/v3.0/pl/plxe4bdnRdiniGrjkXXUjSoYZ9v7bXVTxBns7IX5LNY.cache +3 -0
  267. data/test/dummy/tmp/cache/assets/sprockets/v3.0/pm/pmHrrifNbYp5V3uylbmaHIXbyDDGVEGvB7xfLPuKwbs.cache +4 -0
  268. data/test/dummy/tmp/cache/assets/sprockets/v3.0/py/py9y20elSXBr1-Fif8v5Z0aLwHfPrkEG34K9pThNoNk.cache +2 -0
  269. data/test/dummy/tmp/cache/assets/sprockets/v3.0/qC/qCimPuombih_K1Y6U-YS-ySAHCUNTvYPZ_N6-DWDl_k.cache +3 -0
  270. data/test/dummy/tmp/cache/assets/sprockets/v3.0/qG/qGjYU5rc4whNqGbZ-Ev-sFFYZDTXZpOhnHRswH81VQI.cache +3 -0
  271. data/test/dummy/tmp/cache/assets/sprockets/v3.0/qY/qYHktjZeTVYyIeVzmSIgG2JV42fyTV0TzIwUkxbYZSQ.cache +0 -0
  272. data/test/dummy/tmp/cache/assets/sprockets/v3.0/qj/qjlULgrZuuzCTNHTNE3IvsI88IhYpf5DLwzbRg7as3U.cache +1 -0
  273. data/test/dummy/tmp/cache/assets/sprockets/v3.0/qo/qoDAyevKyArNmynPNuCh-sSSEpD4jVGF8vBJGSLM42I.cache +3 -0
  274. data/test/dummy/tmp/cache/assets/sprockets/v3.0/qp/qpsGPYK_DEnlbfAV1B10gzf85X2fjUVuKcaShGwFAR8.cache +3 -0
  275. data/test/dummy/tmp/cache/assets/sprockets/v3.0/rr/rrMhNNXPFintjn_ZP5RMFZmX5q_4J2rvzVr516oVuZY.cache +1 -0
  276. data/test/dummy/tmp/cache/assets/sprockets/v3.0/sH/sHEfrMxYcpqzAw9Xv5yKd-ImHdYH4dw3LRhAzLtNwbQ.cache +3 -0
  277. data/test/dummy/tmp/cache/assets/sprockets/v3.0/sH/sHfCg4WEOfg53iPAv44uwp5mNK6HqvMyWeKmGwAboII.cache +0 -0
  278. data/test/dummy/tmp/cache/assets/sprockets/v3.0/sO/sOkgigzpw9yHTJg1R-bsV_50W9L_p9MTv6CSwUMz_Ps.cache +1 -0
  279. data/test/dummy/tmp/cache/assets/sprockets/v3.0/sP/sPb7jxWOfAHmE_llKwieoJexagI5CQl9F25-09UhQCM.cache +2 -0
  280. data/test/dummy/tmp/cache/assets/sprockets/v3.0/t2/t2AGtm95zgEC1ymTx-cF4Gky6yXKjqMM4BXuQxMYhFU.cache +1 -0
  281. data/test/dummy/tmp/cache/assets/sprockets/v3.0/t3/t3rIl0sKxtbuOdKHOKqe6PtzY-mEAmGMAy0S0te2eyo.cache +0 -0
  282. data/test/dummy/tmp/cache/assets/sprockets/v3.0/tB/tBmy1XTnr--22LM6Zitujx92I1dfh3m1RH3Hhwks3V4.cache +0 -0
  283. data/test/dummy/tmp/cache/assets/sprockets/v3.0/tk/tkYfC9_v7qC9g2yfxRD8SNXVpb9703C5rhHXs3ET7_E.cache +1 -0
  284. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ts/tsSAxcVtdRaxifKEGGehVyZ2rLzQJJ3dc0DXnmPwO8M.cache +0 -0
  285. data/test/dummy/tmp/cache/assets/sprockets/v3.0/u-/u-V0RvPZjM64X8dX6_bn3jtIvQfG75OKy9zuIF6Jtg0.cache +3 -0
  286. data/test/dummy/tmp/cache/assets/sprockets/v3.0/uA/uA7RfNzNOTNRm3jkZG14w8hjSC4pJRn1ZVs0ec_OPMo.cache +2 -0
  287. data/test/dummy/tmp/cache/assets/sprockets/v3.0/uI/uI_EOGimZCd_E1CgRv5ifLYmSxuP0i4sNiF2WXvP3sg.cache +0 -0
  288. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ux/uxR005Y05Jhl50Mw1ufdKt3V984bimlyEX5akB_YAFI.cache +1 -0
  289. data/test/dummy/tmp/cache/assets/sprockets/v3.0/uy/uyyADGu_J8RFP7jMFgLJqNnknx-Oz400wn381wWVZW4.cache +1 -0
  290. data/test/dummy/tmp/cache/assets/sprockets/v3.0/v-/v-gtNgPSykhFBuKgDhi-xeCf3tbEBQUjY1qKPXMISlM.cache +1 -0
  291. data/test/dummy/tmp/cache/assets/sprockets/v3.0/v2/v2naCjkpFPH9c-NwmCJETQoK7DBDYup8o_jydJMBDeY.cache +4 -0
  292. data/test/dummy/tmp/cache/assets/sprockets/v3.0/v3/v3eDSIGmyd0Y1kk1ASc_uFEb7tUqfFdZ3yRZAeZrzcI.cache +0 -0
  293. data/test/dummy/tmp/cache/assets/sprockets/v3.0/vN/vN59miXCuGAyw0iHQg6OmhStV0S1Tz-vGOWUxwN7QOg.cache +1 -0
  294. data/test/dummy/tmp/cache/assets/sprockets/v3.0/vg/vgMKcSF0IQZKKv_x3DrjpksN2pFDWFN7IJhEAmmCZBg.cache +3 -0
  295. data/test/dummy/tmp/cache/assets/sprockets/v3.0/vj/vjuI2fQXa2D6CtQ6q3qr_40P0da4JKryXaWNv7zrA2M.cache +0 -0
  296. data/test/dummy/tmp/cache/assets/sprockets/v3.0/w2/w2WHVIahCX79zlFp_7dfbl6wQPinwISKSTHWngyEnyo.cache +1 -0
  297. data/test/dummy/tmp/cache/assets/sprockets/v3.0/w7/w7fdZ5-Ljpw3oKqBv4nMpR-cYQ9fB7PLoqk2NcUbIWQ.cache +1 -0
  298. data/test/dummy/tmp/cache/assets/sprockets/v3.0/wm/wm0jVVRcI8qC_VsoOfKCp0HHJGnlBOy_FNG3hjMa6Pk.cache +1 -0
  299. data/test/dummy/tmp/cache/assets/sprockets/v3.0/wn/wn3GJ6c-gkr5A6lLAfyeKL98H4FX6r7XKIeUW80gypw.cache +3 -0
  300. data/test/dummy/tmp/cache/assets/sprockets/v3.0/wn/wnvJ74QIdj8tSD10cXmY9KyXCpaQIv0FfZJWw-EudW8.cache +2 -0
  301. data/test/dummy/tmp/cache/assets/sprockets/v3.0/wv/wvWyU7svrHKgHvpxvJLK3vuc7SIlfxCVir2p_VMBMjs.cache +3 -0
  302. data/test/dummy/tmp/cache/assets/sprockets/v3.0/x0/x0wzfxL-nQeWjMAL12L3UiDAYyDTiOg8yp4mdTaZpC8.cache +1 -0
  303. data/test/dummy/tmp/cache/assets/sprockets/v3.0/xP/xPMfTXGxxCCgIip6XsG-paelKjnDzbpAYugLmUfykPs.cache +2 -0
  304. data/test/dummy/tmp/cache/assets/sprockets/v3.0/xR/xRbb3t3bGtgdtnLyv6VZBUPDasllTgN4dsslLL1Ndf0.cache +1 -0
  305. data/test/dummy/tmp/cache/assets/sprockets/v3.0/xh/xhKrbQYzOttXPAV3B8UE0g48dsYPni_9ikA8eccOYIk.cache +1 -0
  306. data/test/dummy/tmp/cache/assets/sprockets/v3.0/xn/xn0zd3HM9eTR0-7a6FgJE6NhOy9SsbF21A3rVbVwROw.cache +1 -0
  307. data/test/dummy/tmp/cache/assets/sprockets/v3.0/yP/yPvoUhaf_yuFaCNJU6ITFYdEzeuSBXWQNLp9bs8nbMc.cache +1 -0
  308. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ym/ymcTn0HULLF6Wenkujvetcm2D24XnhUKoc81dWkMhR8.cache +4 -0
  309. data/test/dummy/tmp/cache/assets/sprockets/v3.0/zD/zDfjs5LeIEuQk6D7sUn8Om3fIIvhvtKmCm8eRfACJgM.cache +0 -0
  310. data/test/dummy/tmp/cache/assets/sprockets/v3.0/zV/zVYsJrJcUbMc1v3v2sP7YsdaBmKpuVVM7oNkvxGJ1JQ.cache +0 -0
  311. data/test/functional/posts_controller_test.rb +18 -16
  312. data/test/generators/install_generator_test.rb +58 -56
  313. data/test/integration/navigation_test.rb +2 -0
  314. data/test/models/attachment_file_test.rb +4 -4
  315. data/test/models/ckeditor_test.rb +3 -21
  316. data/test/models/picture_test.rb +12 -10
  317. data/test/models/utils_test.rb +2 -0
  318. data/test/orm/active_record.rb +11 -1
  319. data/test/orm/mongoid.rb +2 -0
  320. data/test/support/helpers.rb +2 -0
  321. data/test/support/integration_case.rb +2 -0
  322. data/test/test_helper.rb +15 -9
  323. data/test/tmp/app/models/ckeditor/asset.rb +2 -0
  324. data/test/tmp/app/models/ckeditor/attachment_file.rb +2 -0
  325. data/test/tmp/app/models/ckeditor/picture.rb +2 -0
  326. data/test/tmp/config/initializers/ckeditor.rb +4 -7
  327. metadata +472 -432
  328. data/app/assets/javascripts/ckeditor/init.js.erb +0 -8
  329. data/lib/ckeditor/backend/refile.rb +0 -39
  330. data/lib/ckeditor/utils/content_type_detector.rb +0 -38
  331. data/lib/generators/ckeditor/templates/active_record/refile/ckeditor/asset.rb +0 -4
  332. data/lib/generators/ckeditor/templates/active_record/refile/ckeditor/picture.rb +0 -11
  333. data/test/dummy/public/ckeditor_assets/attachments/1/rails.tar.gz +0 -0
  334. data/test/dummy/public/ckeditor_assets/pictures/1/content_rails.png +0 -0
  335. data/test/dummy/public/ckeditor_assets/pictures/1/original_rails.png +0 -0
  336. data/test/dummy/public/ckeditor_assets/pictures/1/thumb_rails.png +0 -0
  337. data/test/dummy/public/uploads/ckeditor/attachments/1/rails.tar.gz +0 -0
  338. data/test/dummy/public/uploads/ckeditor/pictures/1/content_rails.png +0 -0
  339. data/test/dummy/public/uploads/ckeditor/pictures/1/rails.png +0 -0
  340. data/test/dummy/public/uploads/ckeditor/pictures/1/thumb_rails.png +0 -0
  341. data/test/support/raw_post.rb +0 -9
  342. data/vendor/assets/javascripts/ckeditor/CHANGES.md +0 -1304
  343. data/vendor/assets/javascripts/ckeditor/LICENSE.md +0 -1420
  344. data/vendor/assets/javascripts/ckeditor/README.md +0 -39
  345. data/vendor/assets/javascripts/ckeditor/adapters/jquery.js +0 -10
  346. data/vendor/assets/javascripts/ckeditor/ckeditor.js +0 -1184
  347. data/vendor/assets/javascripts/ckeditor/config.js +0 -10
  348. data/vendor/assets/javascripts/ckeditor/contents.css +0 -208
  349. data/vendor/assets/javascripts/ckeditor/lang/af.js +0 -5
  350. data/vendor/assets/javascripts/ckeditor/lang/ar.js +0 -5
  351. data/vendor/assets/javascripts/ckeditor/lang/az.js +0 -5
  352. data/vendor/assets/javascripts/ckeditor/lang/bg.js +0 -5
  353. data/vendor/assets/javascripts/ckeditor/lang/bn.js +0 -5
  354. data/vendor/assets/javascripts/ckeditor/lang/bs.js +0 -5
  355. data/vendor/assets/javascripts/ckeditor/lang/ca.js +0 -5
  356. data/vendor/assets/javascripts/ckeditor/lang/cs.js +0 -5
  357. data/vendor/assets/javascripts/ckeditor/lang/cy.js +0 -5
  358. data/vendor/assets/javascripts/ckeditor/lang/da.js +0 -5
  359. data/vendor/assets/javascripts/ckeditor/lang/de-ch.js +0 -5
  360. data/vendor/assets/javascripts/ckeditor/lang/de.js +0 -5
  361. data/vendor/assets/javascripts/ckeditor/lang/el.js +0 -5
  362. data/vendor/assets/javascripts/ckeditor/lang/en-au.js +0 -5
  363. data/vendor/assets/javascripts/ckeditor/lang/en-ca.js +0 -5
  364. data/vendor/assets/javascripts/ckeditor/lang/en-gb.js +0 -5
  365. data/vendor/assets/javascripts/ckeditor/lang/en.js +0 -5
  366. data/vendor/assets/javascripts/ckeditor/lang/eo.js +0 -5
  367. data/vendor/assets/javascripts/ckeditor/lang/es-mx.js +0 -5
  368. data/vendor/assets/javascripts/ckeditor/lang/es.js +0 -5
  369. data/vendor/assets/javascripts/ckeditor/lang/et.js +0 -5
  370. data/vendor/assets/javascripts/ckeditor/lang/eu.js +0 -5
  371. data/vendor/assets/javascripts/ckeditor/lang/fa.js +0 -5
  372. data/vendor/assets/javascripts/ckeditor/lang/fi.js +0 -5
  373. data/vendor/assets/javascripts/ckeditor/lang/fo.js +0 -5
  374. data/vendor/assets/javascripts/ckeditor/lang/fr-ca.js +0 -5
  375. data/vendor/assets/javascripts/ckeditor/lang/fr.js +0 -5
  376. data/vendor/assets/javascripts/ckeditor/lang/gl.js +0 -5
  377. data/vendor/assets/javascripts/ckeditor/lang/gu.js +0 -5
  378. data/vendor/assets/javascripts/ckeditor/lang/he.js +0 -5
  379. data/vendor/assets/javascripts/ckeditor/lang/hi.js +0 -5
  380. data/vendor/assets/javascripts/ckeditor/lang/hr.js +0 -5
  381. data/vendor/assets/javascripts/ckeditor/lang/hu.js +0 -5
  382. data/vendor/assets/javascripts/ckeditor/lang/id.js +0 -5
  383. data/vendor/assets/javascripts/ckeditor/lang/is.js +0 -5
  384. data/vendor/assets/javascripts/ckeditor/lang/it.js +0 -5
  385. data/vendor/assets/javascripts/ckeditor/lang/ja.js +0 -5
  386. data/vendor/assets/javascripts/ckeditor/lang/ka.js +0 -5
  387. data/vendor/assets/javascripts/ckeditor/lang/km.js +0 -5
  388. data/vendor/assets/javascripts/ckeditor/lang/ko.js +0 -5
  389. data/vendor/assets/javascripts/ckeditor/lang/ku.js +0 -5
  390. data/vendor/assets/javascripts/ckeditor/lang/lt.js +0 -5
  391. data/vendor/assets/javascripts/ckeditor/lang/lv.js +0 -5
  392. data/vendor/assets/javascripts/ckeditor/lang/mk.js +0 -5
  393. data/vendor/assets/javascripts/ckeditor/lang/mn.js +0 -5
  394. data/vendor/assets/javascripts/ckeditor/lang/ms.js +0 -5
  395. data/vendor/assets/javascripts/ckeditor/lang/nb.js +0 -5
  396. data/vendor/assets/javascripts/ckeditor/lang/nl.js +0 -5
  397. data/vendor/assets/javascripts/ckeditor/lang/no.js +0 -5
  398. data/vendor/assets/javascripts/ckeditor/lang/oc.js +0 -5
  399. data/vendor/assets/javascripts/ckeditor/lang/pl.js +0 -5
  400. data/vendor/assets/javascripts/ckeditor/lang/pt-br.js +0 -5
  401. data/vendor/assets/javascripts/ckeditor/lang/pt.js +0 -5
  402. data/vendor/assets/javascripts/ckeditor/lang/ro.js +0 -5
  403. data/vendor/assets/javascripts/ckeditor/lang/ru.js +0 -5
  404. data/vendor/assets/javascripts/ckeditor/lang/si.js +0 -5
  405. data/vendor/assets/javascripts/ckeditor/lang/sk.js +0 -5
  406. data/vendor/assets/javascripts/ckeditor/lang/sl.js +0 -5
  407. data/vendor/assets/javascripts/ckeditor/lang/sq.js +0 -5
  408. data/vendor/assets/javascripts/ckeditor/lang/sr-latn.js +0 -5
  409. data/vendor/assets/javascripts/ckeditor/lang/sr.js +0 -5
  410. data/vendor/assets/javascripts/ckeditor/lang/sv.js +0 -5
  411. data/vendor/assets/javascripts/ckeditor/lang/th.js +0 -5
  412. data/vendor/assets/javascripts/ckeditor/lang/tr.js +0 -5
  413. data/vendor/assets/javascripts/ckeditor/lang/tt.js +0 -5
  414. data/vendor/assets/javascripts/ckeditor/lang/ug.js +0 -5
  415. data/vendor/assets/javascripts/ckeditor/lang/uk.js +0 -5
  416. data/vendor/assets/javascripts/ckeditor/lang/vi.js +0 -5
  417. data/vendor/assets/javascripts/ckeditor/lang/zh-cn.js +0 -5
  418. data/vendor/assets/javascripts/ckeditor/lang/zh.js +0 -5
  419. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js +0 -10
  420. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/_translationstatus.txt +0 -25
  421. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/af.js +0 -11
  422. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/ar.js +0 -11
  423. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/az.js +0 -11
  424. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/bg.js +0 -11
  425. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/ca.js +0 -13
  426. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/cs.js +0 -12
  427. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/cy.js +0 -11
  428. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/da.js +0 -11
  429. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/de-ch.js +0 -12
  430. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/de.js +0 -12
  431. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/el.js +0 -12
  432. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/en-gb.js +0 -11
  433. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/en.js +0 -11
  434. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/eo.js +0 -12
  435. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/es-mx.js +0 -13
  436. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/es.js +0 -13
  437. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/et.js +0 -11
  438. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/eu.js +0 -12
  439. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/fa.js +0 -11
  440. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/fi.js +0 -11
  441. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/fo.js +0 -11
  442. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/fr-ca.js +0 -11
  443. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/fr.js +0 -13
  444. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/gl.js +0 -12
  445. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/gu.js +0 -11
  446. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/he.js +0 -11
  447. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/hi.js +0 -11
  448. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/hr.js +0 -11
  449. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/hu.js +0 -12
  450. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/id.js +0 -11
  451. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/it.js +0 -13
  452. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/ja.js +0 -9
  453. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/km.js +0 -11
  454. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/ko.js +0 -10
  455. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/ku.js +0 -11
  456. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/lt.js +0 -11
  457. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/lv.js +0 -12
  458. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/mk.js +0 -11
  459. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/mn.js +0 -11
  460. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/nb.js +0 -12
  461. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/nl.js +0 -12
  462. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/no.js +0 -11
  463. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/oc.js +0 -12
  464. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/pl.js +0 -13
  465. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/pt-br.js +0 -13
  466. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/pt.js +0 -12
  467. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/ro.js +0 -11
  468. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/ru.js +0 -11
  469. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/si.js +0 -10
  470. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/sk.js +0 -11
  471. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/sl.js +0 -11
  472. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/sq.js +0 -11
  473. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/sr-latn.js +0 -11
  474. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/sr.js +0 -11
  475. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/sv.js +0 -11
  476. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/th.js +0 -11
  477. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/tr.js +0 -12
  478. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/tt.js +0 -11
  479. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/ug.js +0 -12
  480. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/uk.js +0 -12
  481. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/vi.js +0 -11
  482. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/zh-cn.js +0 -9
  483. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/zh.js +0 -9
  484. data/vendor/assets/javascripts/ckeditor/plugins/about/dialogs/about.js +0 -8
  485. data/vendor/assets/javascripts/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png +0 -0
  486. data/vendor/assets/javascripts/ckeditor/plugins/about/dialogs/logo_ckeditor.png +0 -0
  487. data/vendor/assets/javascripts/ckeditor/plugins/colordialog/dialogs/colordialog.css +0 -20
  488. data/vendor/assets/javascripts/ckeditor/plugins/colordialog/dialogs/colordialog.js +0 -14
  489. data/vendor/assets/javascripts/ckeditor/plugins/copyformatting/cursors/cursor-disabled.svg +0 -25
  490. data/vendor/assets/javascripts/ckeditor/plugins/copyformatting/cursors/cursor.svg +0 -14
  491. data/vendor/assets/javascripts/ckeditor/plugins/copyformatting/styles/copyformatting.css +0 -45
  492. data/vendor/assets/javascripts/ckeditor/plugins/dialog/dialogDefinition.js +0 -4
  493. data/vendor/assets/javascripts/ckeditor/plugins/div/dialogs/div.js +0 -9
  494. data/vendor/assets/javascripts/ckeditor/plugins/find/dialogs/find.js +0 -25
  495. data/vendor/assets/javascripts/ckeditor/plugins/flash/dialogs/flash.js +0 -24
  496. data/vendor/assets/javascripts/ckeditor/plugins/flash/images/placeholder.png +0 -0
  497. data/vendor/assets/javascripts/ckeditor/plugins/forms/dialogs/button.js +0 -8
  498. data/vendor/assets/javascripts/ckeditor/plugins/forms/dialogs/checkbox.js +0 -9
  499. data/vendor/assets/javascripts/ckeditor/plugins/forms/dialogs/form.js +0 -8
  500. data/vendor/assets/javascripts/ckeditor/plugins/forms/dialogs/hiddenfield.js +0 -7
  501. data/vendor/assets/javascripts/ckeditor/plugins/forms/dialogs/radio.js +0 -9
  502. data/vendor/assets/javascripts/ckeditor/plugins/forms/dialogs/select.js +0 -20
  503. data/vendor/assets/javascripts/ckeditor/plugins/forms/dialogs/textarea.js +0 -8
  504. data/vendor/assets/javascripts/ckeditor/plugins/forms/dialogs/textfield.js +0 -11
  505. data/vendor/assets/javascripts/ckeditor/plugins/forms/images/hiddenfield.gif +0 -0
  506. data/vendor/assets/javascripts/ckeditor/plugins/icons.png +0 -0
  507. data/vendor/assets/javascripts/ckeditor/plugins/icons_hidpi.png +0 -0
  508. data/vendor/assets/javascripts/ckeditor/plugins/iframe/dialogs/iframe.js +0 -10
  509. data/vendor/assets/javascripts/ckeditor/plugins/iframe/images/placeholder.png +0 -0
  510. data/vendor/assets/javascripts/ckeditor/plugins/image/dialogs/image.js +0 -44
  511. data/vendor/assets/javascripts/ckeditor/plugins/image/images/noimage.png +0 -0
  512. data/vendor/assets/javascripts/ckeditor/plugins/link/dialogs/anchor.js +0 -8
  513. data/vendor/assets/javascripts/ckeditor/plugins/link/dialogs/link.js +0 -28
  514. data/vendor/assets/javascripts/ckeditor/plugins/link/images/anchor.png +0 -0
  515. data/vendor/assets/javascripts/ckeditor/plugins/link/images/hidpi/anchor.png +0 -0
  516. data/vendor/assets/javascripts/ckeditor/plugins/liststyle/dialogs/liststyle.js +0 -10
  517. data/vendor/assets/javascripts/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png +0 -0
  518. data/vendor/assets/javascripts/ckeditor/plugins/magicline/images/hidpi/icon.png +0 -0
  519. data/vendor/assets/javascripts/ckeditor/plugins/magicline/images/icon-rtl.png +0 -0
  520. data/vendor/assets/javascripts/ckeditor/plugins/magicline/images/icon.png +0 -0
  521. data/vendor/assets/javascripts/ckeditor/plugins/pagebreak/images/pagebreak.gif +0 -0
  522. data/vendor/assets/javascripts/ckeditor/plugins/pastefromword/filter/default.js +0 -52
  523. data/vendor/assets/javascripts/ckeditor/plugins/preview/preview.html +0 -13
  524. data/vendor/assets/javascripts/ckeditor/plugins/scayt/CHANGELOG.md +0 -20
  525. data/vendor/assets/javascripts/ckeditor/plugins/scayt/LICENSE.md +0 -28
  526. data/vendor/assets/javascripts/ckeditor/plugins/scayt/README.md +0 -25
  527. data/vendor/assets/javascripts/ckeditor/plugins/scayt/dialogs/dialog.css +0 -23
  528. data/vendor/assets/javascripts/ckeditor/plugins/scayt/dialogs/options.js +0 -32
  529. data/vendor/assets/javascripts/ckeditor/plugins/scayt/dialogs/toolbar.css +0 -71
  530. data/vendor/assets/javascripts/ckeditor/plugins/scayt/skins/moono-lisa/scayt.css +0 -25
  531. data/vendor/assets/javascripts/ckeditor/plugins/showblocks/images/block_address.png +0 -0
  532. data/vendor/assets/javascripts/ckeditor/plugins/showblocks/images/block_blockquote.png +0 -0
  533. data/vendor/assets/javascripts/ckeditor/plugins/showblocks/images/block_div.png +0 -0
  534. data/vendor/assets/javascripts/ckeditor/plugins/showblocks/images/block_h1.png +0 -0
  535. data/vendor/assets/javascripts/ckeditor/plugins/showblocks/images/block_h2.png +0 -0
  536. data/vendor/assets/javascripts/ckeditor/plugins/showblocks/images/block_h3.png +0 -0
  537. data/vendor/assets/javascripts/ckeditor/plugins/showblocks/images/block_h4.png +0 -0
  538. data/vendor/assets/javascripts/ckeditor/plugins/showblocks/images/block_h5.png +0 -0
  539. data/vendor/assets/javascripts/ckeditor/plugins/showblocks/images/block_h6.png +0 -0
  540. data/vendor/assets/javascripts/ckeditor/plugins/showblocks/images/block_p.png +0 -0
  541. data/vendor/assets/javascripts/ckeditor/plugins/showblocks/images/block_pre.png +0 -0
  542. data/vendor/assets/javascripts/ckeditor/plugins/smiley/dialogs/smiley.js +0 -11
  543. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/angel_smile.gif +0 -0
  544. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/angel_smile.png +0 -0
  545. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/angry_smile.gif +0 -0
  546. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/angry_smile.png +0 -0
  547. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/broken_heart.gif +0 -0
  548. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/broken_heart.png +0 -0
  549. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/confused_smile.gif +0 -0
  550. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/confused_smile.png +0 -0
  551. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/cry_smile.gif +0 -0
  552. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/cry_smile.png +0 -0
  553. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/devil_smile.gif +0 -0
  554. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/devil_smile.png +0 -0
  555. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/embaressed_smile.gif +0 -0
  556. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/embarrassed_smile.gif +0 -0
  557. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/embarrassed_smile.png +0 -0
  558. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/envelope.gif +0 -0
  559. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/envelope.png +0 -0
  560. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/heart.gif +0 -0
  561. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/heart.png +0 -0
  562. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/kiss.gif +0 -0
  563. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/kiss.png +0 -0
  564. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/lightbulb.gif +0 -0
  565. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/lightbulb.png +0 -0
  566. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/omg_smile.gif +0 -0
  567. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/omg_smile.png +0 -0
  568. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/regular_smile.gif +0 -0
  569. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/regular_smile.png +0 -0
  570. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/sad_smile.gif +0 -0
  571. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/sad_smile.png +0 -0
  572. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/shades_smile.gif +0 -0
  573. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/shades_smile.png +0 -0
  574. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/teeth_smile.gif +0 -0
  575. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/teeth_smile.png +0 -0
  576. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/thumbs_down.gif +0 -0
  577. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/thumbs_down.png +0 -0
  578. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/thumbs_up.gif +0 -0
  579. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/thumbs_up.png +0 -0
  580. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/tongue_smile.gif +0 -0
  581. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/tongue_smile.png +0 -0
  582. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/tounge_smile.gif +0 -0
  583. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif +0 -0
  584. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.png +0 -0
  585. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/wink_smile.gif +0 -0
  586. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/wink_smile.png +0 -0
  587. data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/_translationstatus.txt +0 -20
  588. data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/af.js +0 -13
  589. data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/ar.js +0 -13
  590. data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/az.js +0 -10
  591. data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/bg.js +0 -13
  592. data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/ca.js +0 -14
  593. data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/cs.js +0 -13
  594. data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/cy.js +0 -14
  595. data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/da.js +0 -11
  596. data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/de-ch.js +0 -13
  597. data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/de.js +0 -13
  598. data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/el.js +0 -13
  599. data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/en-au.js +0 -13
  600. data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/en-ca.js +0 -13
  601. data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/en-gb.js +0 -13
  602. data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/en.js +0 -13
  603. data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/eo.js +0 -12
  604. data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/es-mx.js +0 -13
  605. data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/es.js +0 -13
  606. data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/et.js +0 -13
  607. data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/eu.js +0 -13
  608. data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/fa.js +0 -12
  609. data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/fi.js +0 -13
  610. data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/fr-ca.js +0 -10
  611. data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/fr.js +0 -12
  612. data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/gl.js +0 -13
  613. data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/he.js +0 -12
  614. data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/hr.js +0 -13
  615. data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/hu.js +0 -12
  616. data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/id.js +0 -13
  617. data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/it.js +0 -14
  618. data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/ja.js +0 -9
  619. data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/km.js +0 -13
  620. data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/ko.js +0 -10
  621. data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/ku.js +0 -13
  622. data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/lt.js +0 -13
  623. data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/lv.js +0 -13
  624. data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/nb.js +0 -11
  625. data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/nl.js +0 -13
  626. data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/no.js +0 -11
  627. data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/oc.js +0 -12
  628. data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/pl.js +0 -12
  629. data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/pt-br.js +0 -11
  630. data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/pt.js +0 -13
  631. data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/ru.js +0 -13
  632. data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/si.js +0 -13
  633. data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/sk.js +0 -13
  634. data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/sl.js +0 -12
  635. data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/sq.js +0 -13
  636. data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/sv.js +0 -11
  637. data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/th.js +0 -13
  638. data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/tr.js +0 -12
  639. data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/tt.js +0 -13
  640. data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/ug.js +0 -13
  641. data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/uk.js +0 -12
  642. data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/vi.js +0 -14
  643. data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/zh-cn.js +0 -9
  644. data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/zh.js +0 -9
  645. data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/specialchar.js +0 -14
  646. data/vendor/assets/javascripts/ckeditor/plugins/table/dialogs/table.js +0 -21
  647. data/vendor/assets/javascripts/ckeditor/plugins/tableselection/styles/tableselection.css +0 -32
  648. data/vendor/assets/javascripts/ckeditor/plugins/tabletools/dialogs/tableCell.js +0 -17
  649. data/vendor/assets/javascripts/ckeditor/plugins/templates/dialogs/templates.css +0 -84
  650. data/vendor/assets/javascripts/ckeditor/plugins/templates/dialogs/templates.js +0 -10
  651. data/vendor/assets/javascripts/ckeditor/plugins/templates/templates/default.js +0 -7
  652. data/vendor/assets/javascripts/ckeditor/plugins/templates/templates/images/template1.gif +0 -0
  653. data/vendor/assets/javascripts/ckeditor/plugins/templates/templates/images/template2.gif +0 -0
  654. data/vendor/assets/javascripts/ckeditor/plugins/templates/templates/images/template3.gif +0 -0
  655. data/vendor/assets/javascripts/ckeditor/plugins/wsc/LICENSE.md +0 -28
  656. data/vendor/assets/javascripts/ckeditor/plugins/wsc/README.md +0 -25
  657. data/vendor/assets/javascripts/ckeditor/plugins/wsc/dialogs/ciframe.html +0 -66
  658. data/vendor/assets/javascripts/ckeditor/plugins/wsc/dialogs/tmpFrameset.html +0 -52
  659. data/vendor/assets/javascripts/ckeditor/plugins/wsc/dialogs/wsc.css +0 -82
  660. data/vendor/assets/javascripts/ckeditor/plugins/wsc/dialogs/wsc.js +0 -92
  661. data/vendor/assets/javascripts/ckeditor/plugins/wsc/dialogs/wsc_ie.js +0 -11
  662. data/vendor/assets/javascripts/ckeditor/plugins/wsc/skins/moono-lisa/wsc.css +0 -43
  663. data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/dialog.css +0 -5
  664. data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/dialog_ie.css +0 -5
  665. data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/dialog_ie8.css +0 -5
  666. data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/dialog_iequirks.css +0 -5
  667. data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/editor.css +0 -5
  668. data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/editor_gecko.css +0 -5
  669. data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/editor_ie.css +0 -5
  670. data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/editor_ie8.css +0 -5
  671. data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/editor_iequirks.css +0 -5
  672. data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/icons.png +0 -0
  673. data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/icons_hidpi.png +0 -0
  674. data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/images/arrow.png +0 -0
  675. data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/images/close.png +0 -0
  676. data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/images/hidpi/close.png +0 -0
  677. data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/images/hidpi/lock-open.png +0 -0
  678. data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/images/hidpi/lock.png +0 -0
  679. data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/images/hidpi/refresh.png +0 -0
  680. data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/images/lock-open.png +0 -0
  681. data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/images/lock.png +0 -0
  682. data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/images/refresh.png +0 -0
  683. data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/images/spinner.gif +0 -0
  684. data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/readme.md +0 -46
  685. data/vendor/assets/javascripts/ckeditor/styles.js +0 -137
@@ -0,0 +1,539 @@
1
+  (0.1ms) SELECT sqlite_version(*)
2
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
3
+  (0.1ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
4
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
5
+ Migrating to CreatePosts (20110623120047)
6
+  (0.0ms) begin transaction
7
+  (0.1ms) CREATE TABLE "posts" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "info" text, "content" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
8
+ ActiveRecord::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20110623120047"]]
9
+  (0.0ms) commit transaction
10
+ Migrating to CreateActiveStorageTables (20170806125915)
11
+  (0.0ms) begin transaction
12
+  (0.1ms) CREATE TABLE "active_storage_blobs" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "key" varchar NOT NULL, "filename" varchar NOT NULL, "content_type" varchar, "metadata" text, "byte_size" bigint NOT NULL, "checksum" varchar NOT NULL, "created_at" datetime NOT NULL)
13
+  (0.1ms) CREATE UNIQUE INDEX "index_active_storage_blobs_on_key" ON "active_storage_blobs" ("key")
14
+  (0.1ms) CREATE TABLE "active_storage_attachments" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "record_type" varchar NOT NULL, "record_id" integer NOT NULL, "blob_id" integer NOT NULL, "created_at" datetime NOT NULL, CONSTRAINT "fk_rails_c3b3935057"
15
+ FOREIGN KEY ("blob_id")
16
+ REFERENCES "active_storage_blobs" ("id")
17
+ )
18
+  (0.1ms) CREATE INDEX "index_active_storage_attachments_on_blob_id" ON "active_storage_attachments" ("blob_id")
19
+  (0.1ms) CREATE UNIQUE INDEX "index_active_storage_attachments_uniqueness" ON "active_storage_attachments" ("record_type", "record_id", "name", "blob_id")
20
+ ActiveRecord::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20170806125915"]]
21
+  (0.0ms) commit transaction
22
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
23
+  (0.0ms) begin transaction
24
+ ActiveRecord::InternalMetadata Create (0.1ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2021-04-26 19:26:13.254128"], ["updated_at", "2021-04-26 19:26:13.254128"]]
25
+  (0.0ms) commit transaction
26
+  (0.2ms) CREATE TABLE "ckeditor_assets" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "data_file_name" varchar NOT NULL, "data_content_type" varchar, "data_file_size" integer, "data_fingerprint" varchar, "type" varchar(30), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
27
+  (0.1ms) CREATE INDEX "index_ckeditor_assets_on_type" ON "ckeditor_assets" ("type")
28
+  (0.1ms) begin transaction
29
+ --------------------------------
30
+ UtilsTest: test_exists_filethumb
31
+ --------------------------------
32
+  (0.0ms) rollback transaction
33
+  (0.0ms) begin transaction
34
+ -------------------------------
35
+ UtilsTest: test_wrong_filethumb
36
+ -------------------------------
37
+  (0.0ms) rollback transaction
38
+  (0.0ms) begin transaction
39
+ ------------------------------------------------
40
+ PictureTest: test_Set_file_content_type_and_size
41
+ ------------------------------------------------
42
+ [paperclip] Trying to link /tmp/rails20210426-400810-a4eucc.png to /tmp/4d003d1435f0827cfe18ac2d2a3979e720210426-400810-1hh1kd7.png
43
+ [paperclip] Trying to link /tmp/4d003d1435f0827cfe18ac2d2a3979e720210426-400810-1hh1kd7.png to /tmp/4d003d1435f0827cfe18ac2d2a3979e720210426-400810-13yqsl7.png
44
+ Command :: PATH=/usr/local/bin/:$PATH; file -b --mime '/tmp/4d003d1435f0827cfe18ac2d2a3979e720210426-400810-13yqsl7.png'
45
+ Command :: PATH=/usr/local/bin/:$PATH; identify -format '%wx%h,%[exif:orientation]' '/tmp/4d003d1435f0827cfe18ac2d2a3979e720210426-400810-1hh1kd7.png[0]' 2>/dev/null
46
+ Command :: PATH=/usr/local/bin/:$PATH; identify -format %m '/tmp/4d003d1435f0827cfe18ac2d2a3979e720210426-400810-1hh1kd7.png[0]'
47
+ Command :: PATH=/usr/local/bin/:$PATH; convert '/tmp/4d003d1435f0827cfe18ac2d2a3979e720210426-400810-1hh1kd7.png[0]' -auto-orient -resize "800>" '/tmp/c42339df6d69c2cdadf5168beb01616120210426-400810-1ozkur9'
48
+ [paperclip] Trying to link /tmp/c42339df6d69c2cdadf5168beb01616120210426-400810-1ozkur9 to /tmp/2a904f011fbac7c7e9474cad7fb54d8a20210426-400810-lwd0x0
49
+ Command :: PATH=/usr/local/bin/:$PATH; identify -format '%wx%h,%[exif:orientation]' '/tmp/4d003d1435f0827cfe18ac2d2a3979e720210426-400810-1hh1kd7.png[0]' 2>/dev/null
50
+ Command :: PATH=/usr/local/bin/:$PATH; identify -format %m '/tmp/4d003d1435f0827cfe18ac2d2a3979e720210426-400810-1hh1kd7.png[0]'
51
+ Command :: PATH=/usr/local/bin/:$PATH; convert '/tmp/4d003d1435f0827cfe18ac2d2a3979e720210426-400810-1hh1kd7.png[0]' -auto-orient -resize "118x" -crop "118x100+0+25" +repage '/tmp/c42339df6d69c2cdadf5168beb01616120210426-400810-mq4ss6'
52
+ [paperclip] Trying to link /tmp/c42339df6d69c2cdadf5168beb01616120210426-400810-mq4ss6 to /tmp/194daa5e1d87b6e5601464365a42f8a720210426-400810-1yjclud
53
+  (0.1ms) SAVEPOINT active_record_1
54
+ [paperclip] Trying to link /tmp/4d003d1435f0827cfe18ac2d2a3979e720210426-400810-1hh1kd7.png to /tmp/4d003d1435f0827cfe18ac2d2a3979e720210426-400810-1r247oo.png
55
+ Command :: PATH=/usr/local/bin/:$PATH; file -b --mime '/tmp/4d003d1435f0827cfe18ac2d2a3979e720210426-400810-1r247oo.png'
56
+ Ckeditor::Picture Create (0.1ms) INSERT INTO "ckeditor_assets" ("data_file_name", "data_content_type", "data_file_size", "data_fingerprint", "type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["data_file_name", "rails.png"], ["data_content_type", "image/png"], ["data_file_size", 6646], ["data_fingerprint", "9c0a079bdd7701d7e729bd956823d153"], ["type", "Ckeditor::Picture"], ["created_at", "2021-04-26 19:26:13.434042"], ["updated_at", "2021-04-26 19:26:13.434042"]]
57
+  (0.1ms) RELEASE SAVEPOINT active_record_1
58
+  (0.0ms) SAVEPOINT active_record_1
59
+ Ckeditor::Picture Destroy (0.1ms) DELETE FROM "ckeditor_assets" WHERE "ckeditor_assets"."id" = ? [["id", 1]]
60
+  (0.0ms) RELEASE SAVEPOINT active_record_1
61
+ [paperclip] deleting /home/mario/www/gems/ckeditor/test/dummy/public/ckeditor_assets/pictures/1/original_rails.png
62
+ [paperclip] deleting /home/mario/www/gems/ckeditor/test/dummy/public/ckeditor_assets/pictures/1/content_rails.png
63
+ [paperclip] deleting /home/mario/www/gems/ckeditor/test/dummy/public/ckeditor_assets/pictures/1/thumb_rails.png
64
+  (0.0ms) rollback transaction
65
+  (0.0ms) begin transaction
66
+ ---------------------------------------------
67
+ PostsControllerTest: test_form_builder_helper
68
+ ---------------------------------------------
69
+  (0.0ms) SAVEPOINT active_record_1
70
+ Post Create (0.1ms) INSERT INTO "posts" ("title", "info", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "test"], ["info", "info"], ["content", "content"], ["created_at", "2021-04-26 19:26:13.444840"], ["updated_at", "2021-04-26 19:26:13.444840"]]
71
+  (0.0ms) RELEASE SAVEPOINT active_record_1
72
+ Processing by PostsController#new as HTML
73
+ Rendering posts/new.html.erb within layouts/application
74
+ Rendered posts/_form.html.erb (359.4ms)
75
+ Rendered posts/new.html.erb within layouts/application (360.5ms)
76
+ Completed 200 OK in 365ms (Views: 364.7ms | ActiveRecord: 0.0ms)
77
+  (0.1ms) SAVEPOINT active_record_1
78
+ Post Destroy (0.1ms) DELETE FROM "posts" WHERE "posts"."id" = ? [["id", 1]]
79
+  (0.0ms) RELEASE SAVEPOINT active_record_1
80
+  (0.0ms) rollback transaction
81
+  (0.0ms) begin transaction
82
+ ---------------------------------------------
83
+ PostsControllerTest: test_include_javascripts
84
+ ---------------------------------------------
85
+  (0.0ms) SAVEPOINT active_record_1
86
+ Post Create (0.1ms) INSERT INTO "posts" ("title", "info", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "test"], ["info", "info"], ["content", "content"], ["created_at", "2021-04-26 19:26:13.816509"], ["updated_at", "2021-04-26 19:26:13.816509"]]
87
+  (0.0ms) RELEASE SAVEPOINT active_record_1
88
+ Processing by PostsController#index as HTML
89
+ Rendering posts/index.html.erb within layouts/application
90
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
91
+ Rendered posts/index.html.erb within layouts/application (3.9ms)
92
+ Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.1ms)
93
+  (0.1ms) SAVEPOINT active_record_1
94
+ Post Destroy (0.1ms) DELETE FROM "posts" WHERE "posts"."id" = ? [["id", 1]]
95
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96
+  (0.0ms) rollback transaction
97
+  (0.0ms) begin transaction
98
+ -----------------------------------------------------
99
+ PostsControllerTest: test_pass_text_area_with_options
100
+ -----------------------------------------------------
101
+  (0.1ms) SAVEPOINT active_record_1
102
+ Post Create (0.1ms) INSERT INTO "posts" ("title", "info", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "test"], ["info", "info"], ["content", "content"], ["created_at", "2021-04-26 19:26:13.830883"], ["updated_at", "2021-04-26 19:26:13.830883"]]
103
+  (0.0ms) RELEASE SAVEPOINT active_record_1
104
+ Processing by PostsController#show as HTML
105
+ Parameters: {"id"=>"1"}
106
+ Post Load (0.4ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
107
+ Rendering posts/show.html.erb within layouts/application
108
+ Rendered posts/show.html.erb within layouts/application (1.5ms)
109
+ Completed 200 OK in 4ms (Views: 2.5ms | ActiveRecord: 0.4ms)
110
+  (0.1ms) SAVEPOINT active_record_1
111
+ Post Destroy (0.1ms) DELETE FROM "posts" WHERE "posts"."id" = ? [["id", 1]]
112
+  (0.0ms) RELEASE SAVEPOINT active_record_1
113
+  (0.0ms) rollback transaction
114
+  (0.0ms) begin transaction
115
+ -----------------------------------------
116
+ PostsControllerTest: test_text_area_value
117
+ -----------------------------------------
118
+  (0.0ms) SAVEPOINT active_record_1
119
+ Post Create (0.1ms) INSERT INTO "posts" ("title", "info", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "test"], ["info", "info"], ["content", "content"], ["created_at", "2021-04-26 19:26:13.838894"], ["updated_at", "2021-04-26 19:26:13.838894"]]
120
+  (0.0ms) RELEASE SAVEPOINT active_record_1
121
+ Processing by PostsController#edit as HTML
122
+ Parameters: {"id"=>"1"}
123
+ Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
124
+ Rendering posts/edit.html.erb within layouts/application
125
+ Rendered posts/_form.html.erb (3.8ms)
126
+ Rendered posts/edit.html.erb within layouts/application (4.6ms)
127
+ Completed 200 OK in 7ms (Views: 6.2ms | ActiveRecord: 0.0ms)
128
+  (0.1ms) SAVEPOINT active_record_1
129
+ Post Destroy (0.1ms) DELETE FROM "posts" WHERE "posts"."id" = ? [["id", 1]]
130
+  (0.0ms) RELEASE SAVEPOINT active_record_1
131
+  (0.0ms) rollback transaction
132
+  (0.0ms) begin transaction
133
+ ----------------------------------------------------------------
134
+ InstallGeneratorTest: test_Assert_all_files_are_properly_created
135
+ ----------------------------------------------------------------
136
+  (0.1ms) rollback transaction
137
+  (0.0ms) begin transaction
138
+ -------------------------------------------------------------------
139
+ InstallGeneratorTest: test_Assert_configurator_is_valid_for_mongoid
140
+ -------------------------------------------------------------------
141
+  (0.0ms) rollback transaction
142
+  (0.0ms) begin transaction
143
+ ----------------------------------------------------------------------------------------
144
+ InstallGeneratorTest: test_models_and_migration_for_active_record_orm_via_active_storage
145
+ ----------------------------------------------------------------------------------------
146
+  (0.0ms) rollback transaction
147
+  (0.6ms) begin transaction
148
+ -------------------------------------------------------------------------------------
149
+ InstallGeneratorTest: test_models_and_migration_for_active_record_orm_via_carrierwave
150
+ -------------------------------------------------------------------------------------
151
+  (0.0ms) rollback transaction
152
+  (0.0ms) begin transaction
153
+ -----------------------------------------------------------------------------------
154
+ InstallGeneratorTest: test_models_and_migration_for_active_record_orm_via_dragonfly
155
+ -----------------------------------------------------------------------------------
156
+  (0.0ms) rollback transaction
157
+  (0.0ms) begin transaction
158
+ -----------------------------------------------------------------------------------
159
+ InstallGeneratorTest: test_models_and_migration_for_active_record_orm_via_paperclip
160
+ -----------------------------------------------------------------------------------
161
+  (0.0ms) rollback transaction
162
+  (0.0ms) begin transaction
163
+ -----------------------------------------------------------------
164
+ InstallGeneratorTest: test_models_for_mongoid_orm_via_carrierwave
165
+ -----------------------------------------------------------------
166
+  (0.1ms) rollback transaction
167
+  (0.0ms) begin transaction
168
+ ---------------------------------------------------------------
169
+ InstallGeneratorTest: test_models_for_mongoid_orm_via_paperclip
170
+ ---------------------------------------------------------------
171
+  (0.0ms) rollback transaction
172
+  (0.0ms) begin transaction
173
+ --------------------------------------------------------------------------
174
+ AttachmentFilesControllerTest: test_create_action_via_CKEditor_upload_form
175
+ --------------------------------------------------------------------------
176
+  (0.1ms) SELECT COUNT(*) FROM "ckeditor_assets" WHERE "ckeditor_assets"."type" IN ('Ckeditor::AttachmentFile')
177
+ Processing by Ckeditor::AttachmentFilesController#create as HTML
178
+ Parameters: {"upload"=>#<ActionDispatch::Http::UploadedFile:0x000055f1b54b38c0 @tempfile=#<Tempfile:/tmp/RackMultipart20210426-400810-1lz933i.gz>, @original_filename="rails.tar.gz", @content_type="application/x-gzip", @headers="Content-Disposition: form-data; name=\"upload\"; filename=\"rails.tar.gz\"\r\nContent-Type: application/x-gzip\r\nContent-Length: 6823\r\n">, "CKEditor"=>"ckeditor_field"}
179
+ [paperclip] Trying to link /tmp/RackMultipart20210426-400810-1lz933i.gz to /tmp/8cfb64e5b1958f04b4b93c382fa438bf20210426-400810-1fog8oj.gz
180
+ [paperclip] Trying to link /tmp/8cfb64e5b1958f04b4b93c382fa438bf20210426-400810-1fog8oj.gz to /tmp/8cfb64e5b1958f04b4b93c382fa438bf20210426-400810-ww3n2p.gz
181
+ Command :: PATH=/usr/local/bin/:$PATH; file -b --mime '/tmp/8cfb64e5b1958f04b4b93c382fa438bf20210426-400810-ww3n2p.gz'
182
+  (0.1ms) SAVEPOINT active_record_1
183
+ [paperclip] Trying to link /tmp/8cfb64e5b1958f04b4b93c382fa438bf20210426-400810-1fog8oj.gz to /tmp/8cfb64e5b1958f04b4b93c382fa438bf20210426-400810-1jlw21g.gz
184
+ Command :: PATH=/usr/local/bin/:$PATH; file -b --mime '/tmp/8cfb64e5b1958f04b4b93c382fa438bf20210426-400810-1jlw21g.gz'
185
+ Ckeditor::AttachmentFile Create (0.1ms) INSERT INTO "ckeditor_assets" ("data_file_name", "data_content_type", "data_file_size", "data_fingerprint", "type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["data_file_name", "rails.tar.gz"], ["data_content_type", "application/gzip"], ["data_file_size", 6823], ["data_fingerprint", "d49d6e2447863150455c0f102c489f33"], ["type", "Ckeditor::AttachmentFile"], ["created_at", "2021-04-26 19:26:13.941363"], ["updated_at", "2021-04-26 19:26:13.941363"]]
186
+  (0.0ms) RELEASE SAVEPOINT active_record_1
187
+ Rendering html template
188
+ Rendered html template (0.0ms)
189
+ Completed 200 OK in 37ms (Views: 0.8ms | ActiveRecord: 0.3ms)
190
+  (0.1ms) SELECT COUNT(*) FROM "ckeditor_assets" WHERE "ckeditor_assets"."type" IN ('Ckeditor::AttachmentFile')
191
+ Ckeditor::AttachmentFile Load (0.1ms) SELECT "ckeditor_assets".* FROM "ckeditor_assets" WHERE "ckeditor_assets"."type" IN ('Ckeditor::AttachmentFile')
192
+  (0.0ms) SAVEPOINT active_record_1
193
+ Ckeditor::AttachmentFile Destroy (0.1ms) DELETE FROM "ckeditor_assets" WHERE "ckeditor_assets"."id" = ? [["id", 1]]
194
+  (0.0ms) RELEASE SAVEPOINT active_record_1
195
+ [paperclip] deleting /home/mario/www/gems/ckeditor/test/dummy/public/ckeditor_assets/attachments/1/rails.tar.gz
196
+  (0.0ms) rollback transaction
197
+  (0.0ms) begin transaction
198
+ -----------------------------------------------------------------
199
+ AttachmentFilesControllerTest: test_create_action_via_filebrowser
200
+ -----------------------------------------------------------------
201
+  (0.1ms) SELECT COUNT(*) FROM "ckeditor_assets" WHERE "ckeditor_assets"."type" IN ('Ckeditor::AttachmentFile')
202
+ Processing by Ckeditor::AttachmentFilesController#create as HTML
203
+ Parameters: {"qqfile"=>#<ActionDispatch::Http::UploadedFile:0x000055f1b5519a58 @tempfile=#<Tempfile:/tmp/RackMultipart20210426-400810-6r2f1c.gz>, @original_filename="rails.tar.gz", @content_type="application/x-gzip", @headers="Content-Disposition: form-data; name=\"qqfile\"; filename=\"rails.tar.gz\"\r\nContent-Type: application/x-gzip\r\nContent-Length: 6823\r\n">}
204
+ [paperclip] Trying to link /tmp/RackMultipart20210426-400810-6r2f1c.gz to /tmp/8cfb64e5b1958f04b4b93c382fa438bf20210426-400810-u7a6wk.gz
205
+ [paperclip] Trying to link /tmp/8cfb64e5b1958f04b4b93c382fa438bf20210426-400810-u7a6wk.gz to /tmp/8cfb64e5b1958f04b4b93c382fa438bf20210426-400810-1tncvz2.gz
206
+ Command :: PATH=/usr/local/bin/:$PATH; file -b --mime '/tmp/8cfb64e5b1958f04b4b93c382fa438bf20210426-400810-1tncvz2.gz'
207
+  (0.1ms) SAVEPOINT active_record_1
208
+ [paperclip] Trying to link /tmp/8cfb64e5b1958f04b4b93c382fa438bf20210426-400810-u7a6wk.gz to /tmp/8cfb64e5b1958f04b4b93c382fa438bf20210426-400810-1vs9chi.gz
209
+ Command :: PATH=/usr/local/bin/:$PATH; file -b --mime '/tmp/8cfb64e5b1958f04b4b93c382fa438bf20210426-400810-1vs9chi.gz'
210
+ Ckeditor::AttachmentFile Create (0.1ms) INSERT INTO "ckeditor_assets" ("data_file_name", "data_content_type", "data_file_size", "data_fingerprint", "type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["data_file_name", "rails.tar.gz"], ["data_content_type", "application/gzip"], ["data_file_size", 6823], ["data_fingerprint", "d49d6e2447863150455c0f102c489f33"], ["type", "Ckeditor::AttachmentFile"], ["created_at", "2021-04-26 19:26:13.955555"], ["updated_at", "2021-04-26 19:26:13.955555"]]
211
+  (0.0ms) RELEASE SAVEPOINT active_record_1
212
+ Completed 200 OK in 10ms (Views: 0.1ms | ActiveRecord: 0.2ms)
213
+  (0.1ms) SELECT COUNT(*) FROM "ckeditor_assets" WHERE "ckeditor_assets"."type" IN ('Ckeditor::AttachmentFile')
214
+ Ckeditor::AttachmentFile Load (0.1ms) SELECT "ckeditor_assets".* FROM "ckeditor_assets" WHERE "ckeditor_assets"."type" IN ('Ckeditor::AttachmentFile')
215
+  (0.0ms) SAVEPOINT active_record_1
216
+ Ckeditor::AttachmentFile Destroy (0.1ms) DELETE FROM "ckeditor_assets" WHERE "ckeditor_assets"."id" = ? [["id", 1]]
217
+  (0.0ms) RELEASE SAVEPOINT active_record_1
218
+ [paperclip] deleting /home/mario/www/gems/ckeditor/test/dummy/public/ckeditor_assets/attachments/1/rails.tar.gz
219
+  (0.0ms) rollback transaction
220
+  (0.0ms) begin transaction
221
+ ------------------------------------------------------------------
222
+ AttachmentFilesControllerTest: test_create_action_via_html5_upload
223
+ ------------------------------------------------------------------
224
+  (0.1ms) SELECT COUNT(*) FROM "ckeditor_assets" WHERE "ckeditor_assets"."type" IN ('Ckeditor::AttachmentFile')
225
+ Processing by Ckeditor::AttachmentFilesController#create as HTML
226
+ Parameters: {"qqfile"=>"rails.tar.gz"}
227
+ [paperclip] Trying to link /tmp/606afce7fb0b4b3c151f12365698c20cae841b8320210426-400810-1cbf41v to /tmp/8cfb64e5b1958f04b4b93c382fa438bf20210426-400810-13vv4rx.gz
228
+ [paperclip] Trying to link /tmp/8cfb64e5b1958f04b4b93c382fa438bf20210426-400810-13vv4rx.gz to /tmp/8cfb64e5b1958f04b4b93c382fa438bf20210426-400810-1f3rr29.gz
229
+ Command :: PATH=/usr/local/bin/:$PATH; file -b --mime '/tmp/8cfb64e5b1958f04b4b93c382fa438bf20210426-400810-1f3rr29.gz'
230
+  (0.1ms) SAVEPOINT active_record_1
231
+ [paperclip] Trying to link /tmp/8cfb64e5b1958f04b4b93c382fa438bf20210426-400810-13vv4rx.gz to /tmp/8cfb64e5b1958f04b4b93c382fa438bf20210426-400810-xrkmtz.gz
232
+ Command :: PATH=/usr/local/bin/:$PATH; file -b --mime '/tmp/8cfb64e5b1958f04b4b93c382fa438bf20210426-400810-xrkmtz.gz'
233
+ Ckeditor::AttachmentFile Create (0.1ms) INSERT INTO "ckeditor_assets" ("data_file_name", "data_content_type", "data_file_size", "data_fingerprint", "type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["data_file_name", "rails.tar.gz"], ["data_content_type", "application/gzip"], ["data_file_size", 6823], ["data_fingerprint", "d49d6e2447863150455c0f102c489f33"], ["type", "Ckeditor::AttachmentFile"], ["created_at", "2021-04-26 19:26:13.968171"], ["updated_at", "2021-04-26 19:26:13.968171"]]
234
+  (0.0ms) RELEASE SAVEPOINT active_record_1
235
+ Completed 200 OK in 9ms (Views: 0.1ms | ActiveRecord: 0.2ms)
236
+  (0.1ms) SELECT COUNT(*) FROM "ckeditor_assets" WHERE "ckeditor_assets"."type" IN ('Ckeditor::AttachmentFile')
237
+ Ckeditor::AttachmentFile Load (0.1ms) SELECT "ckeditor_assets".* FROM "ckeditor_assets" WHERE "ckeditor_assets"."type" IN ('Ckeditor::AttachmentFile')
238
+  (0.0ms) SAVEPOINT active_record_1
239
+ Ckeditor::AttachmentFile Destroy (0.1ms) DELETE FROM "ckeditor_assets" WHERE "ckeditor_assets"."id" = ? [["id", 1]]
240
+  (0.0ms) RELEASE SAVEPOINT active_record_1
241
+ [paperclip] deleting /home/mario/www/gems/ckeditor/test/dummy/public/ckeditor_assets/attachments/1/rails.tar.gz
242
+  (0.0ms) rollback transaction
243
+  (0.0ms) begin transaction
244
+ ------------------------------------------------------------------
245
+ AttachmentFilesControllerTest: test_destroy_action_via_filebrowser
246
+ ------------------------------------------------------------------
247
+ [paperclip] Trying to link /tmp/rails.tar20210426-400810-wb5s71.gz to /tmp/8cfb64e5b1958f04b4b93c382fa438bf20210426-400810-fw752s.gz
248
+ [paperclip] Trying to link /tmp/8cfb64e5b1958f04b4b93c382fa438bf20210426-400810-fw752s.gz to /tmp/8cfb64e5b1958f04b4b93c382fa438bf20210426-400810-17tpp7z.gz
249
+ Command :: PATH=/usr/local/bin/:$PATH; file -b --mime '/tmp/8cfb64e5b1958f04b4b93c382fa438bf20210426-400810-17tpp7z.gz'
250
+  (0.1ms) SAVEPOINT active_record_1
251
+ [paperclip] Trying to link /tmp/8cfb64e5b1958f04b4b93c382fa438bf20210426-400810-fw752s.gz to /tmp/8cfb64e5b1958f04b4b93c382fa438bf20210426-400810-5nqtn.gz
252
+ Command :: PATH=/usr/local/bin/:$PATH; file -b --mime '/tmp/8cfb64e5b1958f04b4b93c382fa438bf20210426-400810-5nqtn.gz'
253
+ Ckeditor::AttachmentFile Create (0.1ms) INSERT INTO "ckeditor_assets" ("data_file_name", "data_content_type", "data_file_size", "data_fingerprint", "type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["data_file_name", "rails.tar.gz"], ["data_content_type", "application/gzip"], ["data_file_size", 6823], ["data_fingerprint", "d49d6e2447863150455c0f102c489f33"], ["type", "Ckeditor::AttachmentFile"], ["created_at", "2021-04-26 19:26:13.979916"], ["updated_at", "2021-04-26 19:26:13.979916"]]
254
+  (0.0ms) RELEASE SAVEPOINT active_record_1
255
+  (0.1ms) SELECT COUNT(*) FROM "ckeditor_assets" WHERE "ckeditor_assets"."type" IN ('Ckeditor::AttachmentFile')
256
+ Processing by Ckeditor::AttachmentFilesController#destroy as HTML
257
+ Parameters: {"id"=>"1"}
258
+ Ckeditor::AttachmentFile Load (0.1ms) SELECT "ckeditor_assets".* FROM "ckeditor_assets" WHERE "ckeditor_assets"."type" IN ('Ckeditor::AttachmentFile') AND "ckeditor_assets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
259
+  (0.0ms) SAVEPOINT active_record_1
260
+ Ckeditor::AttachmentFile Destroy (0.1ms) DELETE FROM "ckeditor_assets" WHERE "ckeditor_assets"."id" = ? [["id", 1]]
261
+  (0.0ms) RELEASE SAVEPOINT active_record_1
262
+ [paperclip] deleting /home/mario/www/gems/ckeditor/test/dummy/public/ckeditor_assets/attachments/1/rails.tar.gz
263
+ Redirected to http://test.host/ckeditor/attachment_files
264
+ Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
265
+  (0.1ms) SELECT COUNT(*) FROM "ckeditor_assets" WHERE "ckeditor_assets"."type" IN ('Ckeditor::AttachmentFile')
266
+ Ckeditor::AttachmentFile Load (0.1ms) SELECT "ckeditor_assets".* FROM "ckeditor_assets" WHERE "ckeditor_assets"."type" IN ('Ckeditor::AttachmentFile')
267
+  (0.0ms) rollback transaction
268
+  (0.0ms) begin transaction
269
+ ------------------------------------------------
270
+ AttachmentFilesControllerTest: test_index_action
271
+ ------------------------------------------------
272
+ Processing by Ckeditor::AttachmentFilesController#index as HTML
273
+ Rendering /home/mario/www/gems/ckeditor/app/views/ckeditor/attachment_files/index.html.erb within layouts/ckeditor/application
274
+ Ckeditor::AttachmentFile Load (0.1ms) SELECT "ckeditor_assets".* FROM "ckeditor_assets" WHERE "ckeditor_assets"."type" IN ('Ckeditor::AttachmentFile') ORDER BY id desc LIMIT ? OFFSET ? [["LIMIT", 24], ["OFFSET", 0]]
275
+ Rendered collection of /home/mario/www/gems/ckeditor/app/views/ckeditor/shared/_asset.html.erb [0 times] (0.0ms)
276
+  (0.1ms) SELECT COUNT(*) FROM "ckeditor_assets" WHERE "ckeditor_assets"."type" IN ('Ckeditor::AttachmentFile')
277
+ Rendered /home/mario/www/gems/ckeditor/app/views/ckeditor/attachment_files/index.html.erb within layouts/ckeditor/application (2.1ms)
278
+ Rendered /home/mario/www/gems/ckeditor/app/views/ckeditor/shared/_asset_tmpl.html.erb (0.5ms)
279
+ Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.2ms)
280
+ Ckeditor::AttachmentFile Load (0.1ms) SELECT "ckeditor_assets".* FROM "ckeditor_assets" WHERE "ckeditor_assets"."type" IN ('Ckeditor::AttachmentFile')
281
+  (0.0ms) rollback transaction
282
+  (0.0ms) begin transaction
283
+ --------------------------------------------------------------------
284
+ AttachmentFilesControllerTest: test_invalid_params_for_create_action
285
+ --------------------------------------------------------------------
286
+  (0.1ms) SELECT COUNT(*) FROM "ckeditor_assets" WHERE "ckeditor_assets"."type" IN ('Ckeditor::AttachmentFile')
287
+ Processing by Ckeditor::AttachmentFilesController#create as HTML
288
+ Parameters: {"qqfile"=>""}
289
+  (0.0ms) SAVEPOINT active_record_1
290
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
291
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)
292
+  (0.1ms) SELECT COUNT(*) FROM "ckeditor_assets" WHERE "ckeditor_assets"."type" IN ('Ckeditor::AttachmentFile')
293
+ Ckeditor::AttachmentFile Load (0.1ms) SELECT "ckeditor_assets".* FROM "ckeditor_assets" WHERE "ckeditor_assets"."type" IN ('Ckeditor::AttachmentFile')
294
+  (0.0ms) rollback transaction
295
+  (0.0ms) begin transaction
296
+ -------------------------------------------------------
297
+ AttachmentFileTest: test_Set_file_content_type_and_size
298
+ -------------------------------------------------------
299
+ [paperclip] Trying to link /tmp/rails.tar20210426-400810-k2i0yi.gz to /tmp/8cfb64e5b1958f04b4b93c382fa438bf20210426-400810-nv1dht.gz
300
+ [paperclip] Trying to link /tmp/8cfb64e5b1958f04b4b93c382fa438bf20210426-400810-nv1dht.gz to /tmp/8cfb64e5b1958f04b4b93c382fa438bf20210426-400810-u61yj3.gz
301
+ Command :: PATH=/usr/local/bin/:$PATH; file -b --mime '/tmp/8cfb64e5b1958f04b4b93c382fa438bf20210426-400810-u61yj3.gz'
302
+  (0.1ms) SAVEPOINT active_record_1
303
+ [paperclip] Trying to link /tmp/8cfb64e5b1958f04b4b93c382fa438bf20210426-400810-nv1dht.gz to /tmp/8cfb64e5b1958f04b4b93c382fa438bf20210426-400810-sd0xtc.gz
304
+ Command :: PATH=/usr/local/bin/:$PATH; file -b --mime '/tmp/8cfb64e5b1958f04b4b93c382fa438bf20210426-400810-sd0xtc.gz'
305
+ Ckeditor::AttachmentFile Create (0.1ms) INSERT INTO "ckeditor_assets" ("data_file_name", "data_content_type", "data_file_size", "data_fingerprint", "type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["data_file_name", "rails.tar.gz"], ["data_content_type", "application/gzip"], ["data_file_size", 6823], ["data_fingerprint", "d49d6e2447863150455c0f102c489f33"], ["type", "Ckeditor::AttachmentFile"], ["created_at", "2021-04-26 19:26:14.006628"], ["updated_at", "2021-04-26 19:26:14.006628"]]
306
+  (0.1ms) RELEASE SAVEPOINT active_record_1
307
+  (0.0ms) SAVEPOINT active_record_1
308
+ Ckeditor::AttachmentFile Destroy (0.1ms) DELETE FROM "ckeditor_assets" WHERE "ckeditor_assets"."id" = ? [["id", 1]]
309
+  (0.0ms) RELEASE SAVEPOINT active_record_1
310
+ [paperclip] deleting /home/mario/www/gems/ckeditor/test/dummy/public/ckeditor_assets/attachments/1/rails.tar.gz
311
+  (0.0ms) rollback transaction
312
+  (0.0ms) begin transaction
313
+ --------------------------
314
+ NavigationTest: test_truth
315
+ --------------------------
316
+  (0.0ms) rollback transaction
317
+  (0.0ms) begin transaction
318
+ -------------------------------------------------------------------
319
+ PicturesControllerTest: test_create_action_via_CKEditor_upload_form
320
+ -------------------------------------------------------------------
321
+  (0.1ms) SELECT COUNT(*) FROM "ckeditor_assets" WHERE "ckeditor_assets"."type" IN ('Ckeditor::Picture')
322
+ Processing by Ckeditor::PicturesController#create as HTML
323
+ Parameters: {"upload"=>#<ActionDispatch::Http::UploadedFile:0x000055f1b5390790 @tempfile=#<Tempfile:/tmp/RackMultipart20210426-400810-wx6are.png>, @original_filename="rails.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"upload\"; filename=\"rails.png\"\r\nContent-Type: image/png\r\nContent-Length: 6646\r\n">, "CKEditor"=>"ckeditor_field"}
324
+ [paperclip] Trying to link /tmp/RackMultipart20210426-400810-wx6are.png to /tmp/4d003d1435f0827cfe18ac2d2a3979e720210426-400810-1hnxbp.png
325
+ [paperclip] Trying to link /tmp/4d003d1435f0827cfe18ac2d2a3979e720210426-400810-1hnxbp.png to /tmp/4d003d1435f0827cfe18ac2d2a3979e720210426-400810-1h9iy12.png
326
+ Command :: PATH=/usr/local/bin/:$PATH; file -b --mime '/tmp/4d003d1435f0827cfe18ac2d2a3979e720210426-400810-1h9iy12.png'
327
+ Command :: PATH=/usr/local/bin/:$PATH; identify -format '%wx%h,%[exif:orientation]' '/tmp/4d003d1435f0827cfe18ac2d2a3979e720210426-400810-1hnxbp.png[0]' 2>/dev/null
328
+ Command :: PATH=/usr/local/bin/:$PATH; identify -format %m '/tmp/4d003d1435f0827cfe18ac2d2a3979e720210426-400810-1hnxbp.png[0]'
329
+ Command :: PATH=/usr/local/bin/:$PATH; convert '/tmp/4d003d1435f0827cfe18ac2d2a3979e720210426-400810-1hnxbp.png[0]' -auto-orient -resize "800>" '/tmp/2ea892dbb184454d45a3d6c31e687b5520210426-400810-1c4uzhq'
330
+ [paperclip] Trying to link /tmp/2ea892dbb184454d45a3d6c31e687b5520210426-400810-1c4uzhq to /tmp/093278e06aaeab2a7604fdf422bf9fa320210426-400810-1syxpic
331
+ Command :: PATH=/usr/local/bin/:$PATH; identify -format '%wx%h,%[exif:orientation]' '/tmp/4d003d1435f0827cfe18ac2d2a3979e720210426-400810-1hnxbp.png[0]' 2>/dev/null
332
+ Command :: PATH=/usr/local/bin/:$PATH; identify -format %m '/tmp/4d003d1435f0827cfe18ac2d2a3979e720210426-400810-1hnxbp.png[0]'
333
+ Command :: PATH=/usr/local/bin/:$PATH; convert '/tmp/4d003d1435f0827cfe18ac2d2a3979e720210426-400810-1hnxbp.png[0]' -auto-orient -resize "118x" -crop "118x100+0+25" +repage '/tmp/2ea892dbb184454d45a3d6c31e687b5520210426-400810-1vd7p6g'
334
+ [paperclip] Trying to link /tmp/2ea892dbb184454d45a3d6c31e687b5520210426-400810-1vd7p6g to /tmp/3debf239e99480919d67bf3de9b28e5320210426-400810-c1f39s
335
+  (0.1ms) SAVEPOINT active_record_1
336
+ [paperclip] Trying to link /tmp/4d003d1435f0827cfe18ac2d2a3979e720210426-400810-1hnxbp.png to /tmp/4d003d1435f0827cfe18ac2d2a3979e720210426-400810-1snmjhq.png
337
+ Command :: PATH=/usr/local/bin/:$PATH; file -b --mime '/tmp/4d003d1435f0827cfe18ac2d2a3979e720210426-400810-1snmjhq.png'
338
+ Ckeditor::Picture Create (0.1ms) INSERT INTO "ckeditor_assets" ("data_file_name", "data_content_type", "data_file_size", "data_fingerprint", "type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["data_file_name", "rails.png"], ["data_content_type", "image/png"], ["data_file_size", 6646], ["data_fingerprint", "9c0a079bdd7701d7e729bd956823d153"], ["type", "Ckeditor::Picture"], ["created_at", "2021-04-26 19:26:14.079087"], ["updated_at", "2021-04-26 19:26:14.079087"]]
339
+  (0.0ms) RELEASE SAVEPOINT active_record_1
340
+ Rendering html template
341
+ Rendered html template (0.0ms)
342
+ Completed 200 OK in 69ms (Views: 0.4ms | ActiveRecord: 0.2ms)
343
+  (0.1ms) SELECT COUNT(*) FROM "ckeditor_assets" WHERE "ckeditor_assets"."type" IN ('Ckeditor::Picture')
344
+ Ckeditor::Picture Load (0.1ms) SELECT "ckeditor_assets".* FROM "ckeditor_assets" WHERE "ckeditor_assets"."type" IN ('Ckeditor::Picture')
345
+  (0.0ms) SAVEPOINT active_record_1
346
+ Ckeditor::Picture Destroy (0.1ms) DELETE FROM "ckeditor_assets" WHERE "ckeditor_assets"."id" = ? [["id", 1]]
347
+  (0.0ms) RELEASE SAVEPOINT active_record_1
348
+ [paperclip] deleting /home/mario/www/gems/ckeditor/test/dummy/public/ckeditor_assets/pictures/1/original_rails.png
349
+ [paperclip] deleting /home/mario/www/gems/ckeditor/test/dummy/public/ckeditor_assets/pictures/1/content_rails.png
350
+ [paperclip] deleting /home/mario/www/gems/ckeditor/test/dummy/public/ckeditor_assets/pictures/1/thumb_rails.png
351
+  (0.0ms) rollback transaction
352
+  (0.0ms) begin transaction
353
+ ----------------------------------------------------------
354
+ PicturesControllerTest: test_create_action_via_filebrowser
355
+ ----------------------------------------------------------
356
+  (0.1ms) SELECT COUNT(*) FROM "ckeditor_assets" WHERE "ckeditor_assets"."type" IN ('Ckeditor::Picture')
357
+ Processing by Ckeditor::PicturesController#create as HTML
358
+ Parameters: {"qqfile"=>#<ActionDispatch::Http::UploadedFile:0x000055f1b532bd90 @tempfile=#<Tempfile:/tmp/RackMultipart20210426-400810-9k1gow.png>, @original_filename="rails.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"qqfile\"; filename=\"rails.png\"\r\nContent-Type: image/png\r\nContent-Length: 6646\r\n">}
359
+ [paperclip] Trying to link /tmp/RackMultipart20210426-400810-9k1gow.png to /tmp/4d003d1435f0827cfe18ac2d2a3979e720210426-400810-1na226u.png
360
+ [paperclip] Trying to link /tmp/4d003d1435f0827cfe18ac2d2a3979e720210426-400810-1na226u.png to /tmp/4d003d1435f0827cfe18ac2d2a3979e720210426-400810-15x4li2.png
361
+ Command :: PATH=/usr/local/bin/:$PATH; file -b --mime '/tmp/4d003d1435f0827cfe18ac2d2a3979e720210426-400810-15x4li2.png'
362
+ Command :: PATH=/usr/local/bin/:$PATH; identify -format '%wx%h,%[exif:orientation]' '/tmp/4d003d1435f0827cfe18ac2d2a3979e720210426-400810-1na226u.png[0]' 2>/dev/null
363
+ Command :: PATH=/usr/local/bin/:$PATH; identify -format %m '/tmp/4d003d1435f0827cfe18ac2d2a3979e720210426-400810-1na226u.png[0]'
364
+ Command :: PATH=/usr/local/bin/:$PATH; convert '/tmp/4d003d1435f0827cfe18ac2d2a3979e720210426-400810-1na226u.png[0]' -auto-orient -resize "800>" '/tmp/2e0e99e3d657a37562d172c794f3217020210426-400810-hyclh2'
365
+ [paperclip] Trying to link /tmp/2e0e99e3d657a37562d172c794f3217020210426-400810-hyclh2 to /tmp/a4ce71479fa096c0a2c37e561482cd1420210426-400810-jashjv
366
+ Command :: PATH=/usr/local/bin/:$PATH; identify -format '%wx%h,%[exif:orientation]' '/tmp/4d003d1435f0827cfe18ac2d2a3979e720210426-400810-1na226u.png[0]' 2>/dev/null
367
+ Command :: PATH=/usr/local/bin/:$PATH; identify -format %m '/tmp/4d003d1435f0827cfe18ac2d2a3979e720210426-400810-1na226u.png[0]'
368
+ Command :: PATH=/usr/local/bin/:$PATH; convert '/tmp/4d003d1435f0827cfe18ac2d2a3979e720210426-400810-1na226u.png[0]' -auto-orient -resize "118x" -crop "118x100+0+25" +repage '/tmp/2e0e99e3d657a37562d172c794f3217020210426-400810-1iuvl37'
369
+ [paperclip] Trying to link /tmp/2e0e99e3d657a37562d172c794f3217020210426-400810-1iuvl37 to /tmp/ed630a7c0bd785f76094fc2ae089f1c120210426-400810-vunkl2
370
+  (0.1ms) SAVEPOINT active_record_1
371
+ [paperclip] Trying to link /tmp/4d003d1435f0827cfe18ac2d2a3979e720210426-400810-1na226u.png to /tmp/4d003d1435f0827cfe18ac2d2a3979e720210426-400810-15t9bz.png
372
+ Command :: PATH=/usr/local/bin/:$PATH; file -b --mime '/tmp/4d003d1435f0827cfe18ac2d2a3979e720210426-400810-15t9bz.png'
373
+ Ckeditor::Picture Create (0.1ms) INSERT INTO "ckeditor_assets" ("data_file_name", "data_content_type", "data_file_size", "data_fingerprint", "type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["data_file_name", "rails.png"], ["data_content_type", "image/png"], ["data_file_size", 6646], ["data_fingerprint", "9c0a079bdd7701d7e729bd956823d153"], ["type", "Ckeditor::Picture"], ["created_at", "2021-04-26 19:26:14.153252"], ["updated_at", "2021-04-26 19:26:14.153252"]]
374
+  (0.0ms) RELEASE SAVEPOINT active_record_1
375
+ Completed 200 OK in 70ms (Views: 0.1ms | ActiveRecord: 0.2ms)
376
+  (0.1ms) SELECT COUNT(*) FROM "ckeditor_assets" WHERE "ckeditor_assets"."type" IN ('Ckeditor::Picture')
377
+ Ckeditor::Picture Load (0.1ms) SELECT "ckeditor_assets".* FROM "ckeditor_assets" WHERE "ckeditor_assets"."type" IN ('Ckeditor::Picture')
378
+  (0.0ms) SAVEPOINT active_record_1
379
+ Ckeditor::Picture Destroy (0.1ms) DELETE FROM "ckeditor_assets" WHERE "ckeditor_assets"."id" = ? [["id", 1]]
380
+  (0.0ms) RELEASE SAVEPOINT active_record_1
381
+ [paperclip] deleting /home/mario/www/gems/ckeditor/test/dummy/public/ckeditor_assets/pictures/1/original_rails.png
382
+ [paperclip] deleting /home/mario/www/gems/ckeditor/test/dummy/public/ckeditor_assets/pictures/1/content_rails.png
383
+ [paperclip] deleting /home/mario/www/gems/ckeditor/test/dummy/public/ckeditor_assets/pictures/1/thumb_rails.png
384
+  (0.0ms) rollback transaction
385
+  (0.0ms) begin transaction
386
+ -----------------------------------------------------------
387
+ PicturesControllerTest: test_create_action_via_html5_upload
388
+ -----------------------------------------------------------
389
+  (0.1ms) SELECT COUNT(*) FROM "ckeditor_assets" WHERE "ckeditor_assets"."type" IN ('Ckeditor::Picture')
390
+ Processing by Ckeditor::PicturesController#create as HTML
391
+ Parameters: {"qqfile"=>"rails.png"}
392
+ [paperclip] Trying to link /tmp/488f7fcd99b9665a68db94709735208315017dde20210426-400810-1lbn8py to /tmp/4d003d1435f0827cfe18ac2d2a3979e720210426-400810-kkct20.png
393
+ [paperclip] Trying to link /tmp/4d003d1435f0827cfe18ac2d2a3979e720210426-400810-kkct20.png to /tmp/4d003d1435f0827cfe18ac2d2a3979e720210426-400810-879jas.png
394
+ Command :: PATH=/usr/local/bin/:$PATH; file -b --mime '/tmp/4d003d1435f0827cfe18ac2d2a3979e720210426-400810-879jas.png'
395
+ Command :: PATH=/usr/local/bin/:$PATH; identify -format '%wx%h,%[exif:orientation]' '/tmp/4d003d1435f0827cfe18ac2d2a3979e720210426-400810-kkct20.png[0]' 2>/dev/null
396
+ Command :: PATH=/usr/local/bin/:$PATH; identify -format %m '/tmp/4d003d1435f0827cfe18ac2d2a3979e720210426-400810-kkct20.png[0]'
397
+ Command :: PATH=/usr/local/bin/:$PATH; convert '/tmp/4d003d1435f0827cfe18ac2d2a3979e720210426-400810-kkct20.png[0]' -auto-orient -resize "800>" '/tmp/c2a56475453bef6fe720ca477dc38bfc20210426-400810-hpuqar'
398
+ [paperclip] Trying to link /tmp/c2a56475453bef6fe720ca477dc38bfc20210426-400810-hpuqar to /tmp/ab2ed4d706113f375b9deb467da1d93420210426-400810-1vmqb5v
399
+ Command :: PATH=/usr/local/bin/:$PATH; identify -format '%wx%h,%[exif:orientation]' '/tmp/4d003d1435f0827cfe18ac2d2a3979e720210426-400810-kkct20.png[0]' 2>/dev/null
400
+ Command :: PATH=/usr/local/bin/:$PATH; identify -format %m '/tmp/4d003d1435f0827cfe18ac2d2a3979e720210426-400810-kkct20.png[0]'
401
+ Command :: PATH=/usr/local/bin/:$PATH; convert '/tmp/4d003d1435f0827cfe18ac2d2a3979e720210426-400810-kkct20.png[0]' -auto-orient -resize "118x" -crop "118x100+0+25" +repage '/tmp/c2a56475453bef6fe720ca477dc38bfc20210426-400810-b41r4m'
402
+ [paperclip] Trying to link /tmp/c2a56475453bef6fe720ca477dc38bfc20210426-400810-b41r4m to /tmp/0e64f79a8c2e3b4501bb5cb01467bf3520210426-400810-flwo5
403
+  (0.1ms) SAVEPOINT active_record_1
404
+ [paperclip] Trying to link /tmp/4d003d1435f0827cfe18ac2d2a3979e720210426-400810-kkct20.png to /tmp/4d003d1435f0827cfe18ac2d2a3979e720210426-400810-lowsy.png
405
+ Command :: PATH=/usr/local/bin/:$PATH; file -b --mime '/tmp/4d003d1435f0827cfe18ac2d2a3979e720210426-400810-lowsy.png'
406
+ Ckeditor::Picture Create (0.1ms) INSERT INTO "ckeditor_assets" ("data_file_name", "data_content_type", "data_file_size", "data_fingerprint", "type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["data_file_name", "rails.png"], ["data_content_type", "image/png"], ["data_file_size", 6646], ["data_fingerprint", "9c0a079bdd7701d7e729bd956823d153"], ["type", "Ckeditor::Picture"], ["created_at", "2021-04-26 19:26:14.223565"], ["updated_at", "2021-04-26 19:26:14.223565"]]
407
+  (0.0ms) RELEASE SAVEPOINT active_record_1
408
+ Completed 200 OK in 67ms (Views: 0.1ms | ActiveRecord: 0.2ms)
409
+  (0.1ms) SELECT COUNT(*) FROM "ckeditor_assets" WHERE "ckeditor_assets"."type" IN ('Ckeditor::Picture')
410
+ Ckeditor::Picture Load (0.1ms) SELECT "ckeditor_assets".* FROM "ckeditor_assets" WHERE "ckeditor_assets"."type" IN ('Ckeditor::Picture')
411
+  (0.0ms) SAVEPOINT active_record_1
412
+ Ckeditor::Picture Destroy (0.1ms) DELETE FROM "ckeditor_assets" WHERE "ckeditor_assets"."id" = ? [["id", 1]]
413
+  (0.0ms) RELEASE SAVEPOINT active_record_1
414
+ [paperclip] deleting /home/mario/www/gems/ckeditor/test/dummy/public/ckeditor_assets/pictures/1/original_rails.png
415
+ [paperclip] deleting /home/mario/www/gems/ckeditor/test/dummy/public/ckeditor_assets/pictures/1/content_rails.png
416
+ [paperclip] deleting /home/mario/www/gems/ckeditor/test/dummy/public/ckeditor_assets/pictures/1/thumb_rails.png
417
+  (0.0ms) rollback transaction
418
+  (0.0ms) begin transaction
419
+ -----------------------------------------------------------
420
+ PicturesControllerTest: test_destroy_action_via_filebrowser
421
+ -----------------------------------------------------------
422
+ [paperclip] Trying to link /tmp/rails20210426-400810-1r467c6.png to /tmp/4d003d1435f0827cfe18ac2d2a3979e720210426-400810-406aar.png
423
+ [paperclip] Trying to link /tmp/4d003d1435f0827cfe18ac2d2a3979e720210426-400810-406aar.png to /tmp/4d003d1435f0827cfe18ac2d2a3979e720210426-400810-11cridk.png
424
+ Command :: PATH=/usr/local/bin/:$PATH; file -b --mime '/tmp/4d003d1435f0827cfe18ac2d2a3979e720210426-400810-11cridk.png'
425
+ Command :: PATH=/usr/local/bin/:$PATH; identify -format '%wx%h,%[exif:orientation]' '/tmp/4d003d1435f0827cfe18ac2d2a3979e720210426-400810-406aar.png[0]' 2>/dev/null
426
+ Command :: PATH=/usr/local/bin/:$PATH; identify -format %m '/tmp/4d003d1435f0827cfe18ac2d2a3979e720210426-400810-406aar.png[0]'
427
+ Command :: PATH=/usr/local/bin/:$PATH; convert '/tmp/4d003d1435f0827cfe18ac2d2a3979e720210426-400810-406aar.png[0]' -auto-orient -resize "800>" '/tmp/519a2a14a8a8eb969eca1af43aeca5b820210426-400810-1bgn7oc'
428
+ [paperclip] Trying to link /tmp/519a2a14a8a8eb969eca1af43aeca5b820210426-400810-1bgn7oc to /tmp/a7a952da3826209d668560c0c7a760e420210426-400810-13k5vj6
429
+ Command :: PATH=/usr/local/bin/:$PATH; identify -format '%wx%h,%[exif:orientation]' '/tmp/4d003d1435f0827cfe18ac2d2a3979e720210426-400810-406aar.png[0]' 2>/dev/null
430
+ Command :: PATH=/usr/local/bin/:$PATH; identify -format %m '/tmp/4d003d1435f0827cfe18ac2d2a3979e720210426-400810-406aar.png[0]'
431
+ Command :: PATH=/usr/local/bin/:$PATH; convert '/tmp/4d003d1435f0827cfe18ac2d2a3979e720210426-400810-406aar.png[0]' -auto-orient -resize "118x" -crop "118x100+0+25" +repage '/tmp/519a2a14a8a8eb969eca1af43aeca5b820210426-400810-10iktpf'
432
+ [paperclip] Trying to link /tmp/519a2a14a8a8eb969eca1af43aeca5b820210426-400810-10iktpf to /tmp/29a0d7398f41ac84f6c59fc9b08429fe20210426-400810-8be92v
433
+  (0.1ms) SAVEPOINT active_record_1
434
+ [paperclip] Trying to link /tmp/4d003d1435f0827cfe18ac2d2a3979e720210426-400810-406aar.png to /tmp/4d003d1435f0827cfe18ac2d2a3979e720210426-400810-ndyc0b.png
435
+ Command :: PATH=/usr/local/bin/:$PATH; file -b --mime '/tmp/4d003d1435f0827cfe18ac2d2a3979e720210426-400810-ndyc0b.png'
436
+ Ckeditor::Picture Create (0.1ms) INSERT INTO "ckeditor_assets" ("data_file_name", "data_content_type", "data_file_size", "data_fingerprint", "type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["data_file_name", "rails.png"], ["data_content_type", "image/png"], ["data_file_size", 6646], ["data_fingerprint", "9c0a079bdd7701d7e729bd956823d153"], ["type", "Ckeditor::Picture"], ["created_at", "2021-04-26 19:26:14.291834"], ["updated_at", "2021-04-26 19:26:14.291834"]]
437
+  (0.0ms) RELEASE SAVEPOINT active_record_1
438
+  (0.1ms) SELECT COUNT(*) FROM "ckeditor_assets" WHERE "ckeditor_assets"."type" IN ('Ckeditor::Picture')
439
+ Processing by Ckeditor::PicturesController#destroy as HTML
440
+ Parameters: {"id"=>"1"}
441
+ Ckeditor::Picture Load (0.1ms) SELECT "ckeditor_assets".* FROM "ckeditor_assets" WHERE "ckeditor_assets"."type" IN ('Ckeditor::Picture') AND "ckeditor_assets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
442
+  (0.0ms) SAVEPOINT active_record_1
443
+ Ckeditor::Picture Destroy (0.1ms) DELETE FROM "ckeditor_assets" WHERE "ckeditor_assets"."id" = ? [["id", 1]]
444
+  (0.0ms) RELEASE SAVEPOINT active_record_1
445
+ [paperclip] deleting /home/mario/www/gems/ckeditor/test/dummy/public/ckeditor_assets/pictures/1/original_rails.png
446
+ [paperclip] deleting /home/mario/www/gems/ckeditor/test/dummy/public/ckeditor_assets/pictures/1/content_rails.png
447
+ [paperclip] deleting /home/mario/www/gems/ckeditor/test/dummy/public/ckeditor_assets/pictures/1/thumb_rails.png
448
+ Redirected to http://test.host/ckeditor/pictures
449
+ Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
450
+  (0.1ms) SELECT COUNT(*) FROM "ckeditor_assets" WHERE "ckeditor_assets"."type" IN ('Ckeditor::Picture')
451
+ Ckeditor::Picture Load (0.1ms) SELECT "ckeditor_assets".* FROM "ckeditor_assets" WHERE "ckeditor_assets"."type" IN ('Ckeditor::Picture')
452
+  (0.0ms) rollback transaction
453
+  (0.0ms) begin transaction
454
+ -----------------------------------------
455
+ PicturesControllerTest: test_index_action
456
+ -----------------------------------------
457
+ Processing by Ckeditor::PicturesController#index as HTML
458
+ Rendering /home/mario/www/gems/ckeditor/app/views/ckeditor/pictures/index.html.erb within layouts/ckeditor/application
459
+ Ckeditor::Picture Load (0.1ms) SELECT "ckeditor_assets".* FROM "ckeditor_assets" WHERE "ckeditor_assets"."type" IN ('Ckeditor::Picture') ORDER BY id desc LIMIT ? OFFSET ? [["LIMIT", 24], ["OFFSET", 0]]
460
+ Rendered collection of /home/mario/www/gems/ckeditor/app/views/ckeditor/shared/_asset.html.erb [0 times] (0.0ms)
461
+  (0.1ms) SELECT COUNT(*) FROM "ckeditor_assets" WHERE "ckeditor_assets"."type" IN ('Ckeditor::Picture')
462
+ Rendered /home/mario/www/gems/ckeditor/app/views/ckeditor/pictures/index.html.erb within layouts/ckeditor/application (1.4ms)
463
+ Rendered /home/mario/www/gems/ckeditor/app/views/ckeditor/shared/_asset_tmpl.html.erb (0.1ms)
464
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.2ms)
465
+ Ckeditor::Picture Load (0.1ms) SELECT "ckeditor_assets".* FROM "ckeditor_assets" WHERE "ckeditor_assets"."type" IN ('Ckeditor::Picture')
466
+  (0.0ms) rollback transaction
467
+  (0.0ms) begin transaction
468
+ -------------------------------------------------------------
469
+ PicturesControllerTest: test_invalid_params_for_create_action
470
+ -------------------------------------------------------------
471
+  (0.1ms) SELECT COUNT(*) FROM "ckeditor_assets" WHERE "ckeditor_assets"."type" IN ('Ckeditor::Picture')
472
+ Processing by Ckeditor::PicturesController#create as HTML
473
+ Parameters: {"qqfile"=>""}
474
+  (0.0ms) SAVEPOINT active_record_1
475
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
476
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)
477
+  (0.1ms) SELECT COUNT(*) FROM "ckeditor_assets" WHERE "ckeditor_assets"."type" IN ('Ckeditor::Picture')
478
+ Ckeditor::Picture Load (0.1ms) SELECT "ckeditor_assets".* FROM "ckeditor_assets" WHERE "ckeditor_assets"."type" IN ('Ckeditor::Picture')
479
+  (0.0ms) rollback transaction
480
+  (0.0ms) begin transaction
481
+ ----------------------------
482
+ CkeditorTest: test_CDN_setup
483
+ ----------------------------
484
+  (0.0ms) rollback transaction
485
+  (0.0ms) begin transaction
486
+ ------------------------------------------------
487
+ CkeditorTest: test_attachment_file_model_adapter
488
+ ------------------------------------------------
489
+  (0.0ms) rollback transaction
490
+  (0.0ms) begin transaction
491
+ -----------------------------------------------------------------
492
+ CkeditorTest: test_configuration_specifying_attachment_file_model
493
+ -----------------------------------------------------------------
494
+  (0.0ms) rollback transaction
495
+  (0.0ms) begin transaction
496
+ -----------------------------------------------------------------------------
497
+ CkeditorTest: test_configuration_specifying_attachment_file_model_using_block
498
+ -----------------------------------------------------------------------------
499
+  (0.0ms) rollback transaction
500
+  (0.0ms) begin transaction
501
+ ---------------------------------------------------------
502
+ CkeditorTest: test_configuration_specifying_picture_model
503
+ ---------------------------------------------------------
504
+  (0.0ms) rollback transaction
505
+  (0.0ms) begin transaction
506
+ ---------------------------------------------------------------------
507
+ CkeditorTest: test_configuration_specifying_picture_model_using_block
508
+ ---------------------------------------------------------------------
509
+  (0.0ms) rollback transaction
510
+  (0.0ms) begin transaction
511
+ ------------------------------------------------------------------------------------------------
512
+ CkeditorTest: test_configuration_specifying_running_ckeditor:nondigest_task_on_assets:precompile
513
+ ------------------------------------------------------------------------------------------------
514
+  (0.0ms) rollback transaction
515
+  (0.0ms) begin transaction
516
+ ------------------------------------------------
517
+ CkeditorTest: test_default_attachment_file_model
518
+ ------------------------------------------------
519
+  (0.0ms) rollback transaction
520
+  (0.0ms) begin transaction
521
+ ----------------------------------------
522
+ CkeditorTest: test_default_picture_model
523
+ ----------------------------------------
524
+  (0.0ms) rollback transaction
525
+  (0.0ms) begin transaction
526
+ ----------------------------------------
527
+ CkeditorTest: test_picture_model_adapter
528
+ ----------------------------------------
529
+  (0.0ms) rollback transaction
530
+  (0.0ms) begin transaction
531
+ ------------------------------------------
532
+ CkeditorTest: test_setup_block_yields_self
533
+ ------------------------------------------
534
+  (0.0ms) rollback transaction
535
+  (0.0ms) begin transaction
536
+ ------------------------
537
+ CkeditorTest: test_truth
538
+ ------------------------
539
+  (0.0ms) rollback transaction
@@ -1,4 +1,6 @@
1
1
  #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
2
4
  # This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
3
5
 
4
6
  APP_PATH = File.expand_path('../../config/application', __FILE__)
@@ -0,0 +1,2 @@
1
+ [o:Set:
2
+ @hash} I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Lprocessors:type=application/javascript&file_type=application/javascript;TTI"wfile-digest:///home/mario/www/gems/ckeditor/app/assets/javascripts/ckeditor/filebrowser/javascripts/application.js;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TTF
@@ -0,0 +1,3 @@
1
+ [o:Set:
2
+ @hash}
3
+ I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TTI"qfile-digest:///home/mario/www/gems/ckeditor/app/assets/javascripts/ckeditor/filebrowser/javascripts/rails.js;TTF
@@ -0,0 +1,3 @@
1
+ [o:Set:
2
+ @hash}
3
+ I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TTI"xfile-digest:///home/mario/www/gems/ckeditor/app/assets/javascripts/ckeditor/filebrowser/javascripts/fileuploader.js;TTF
@@ -0,0 +1 @@
1
+ I"�/home/mario/www/gems/ckeditor/app/assets/images/ckeditor/filebrowser/thumbs/zip.gif?type=image/gif&id=1469b4d299515265734016e99700019eb000ce921de4c2d19d3c79a0e1f726bb:ET
@@ -0,0 +1 @@
1
+ "%�-:V�L��=��9JO�h3��&��.q)