proclaim 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (265) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG +6 -0
  3. data/Gemfile +14 -0
  4. data/LICENSE +674 -0
  5. data/README.md +137 -0
  6. data/Rakefile +65 -0
  7. data/VERSION +1 -0
  8. data/app/assets/images/ajax_loader.gif +0 -0
  9. data/app/assets/javascripts/proclaim.js +18 -0
  10. data/app/assets/javascripts/proclaim/comments_handler.js.coffee +192 -0
  11. data/app/assets/javascripts/proclaim/editor.js.coffee +50 -0
  12. data/app/assets/javascripts/proclaim/images.js.coffee +3 -0
  13. data/app/assets/javascripts/proclaim/subscriptions.js.coffee +3 -0
  14. data/app/assets/stylesheets/proclaim.css.scss +28 -0
  15. data/app/assets/stylesheets/proclaim/comments.css.scss +14 -0
  16. data/app/assets/stylesheets/proclaim/images.scss +3 -0
  17. data/app/assets/stylesheets/proclaim/posts.css.scss +77 -0
  18. data/app/assets/stylesheets/proclaim/subscriptions.css.scss +3 -0
  19. data/app/controllers/proclaim/application_controller.rb +44 -0
  20. data/app/controllers/proclaim/comments_controller.rb +128 -0
  21. data/app/controllers/proclaim/images_controller.rb +108 -0
  22. data/app/controllers/proclaim/posts_controller.rb +131 -0
  23. data/app/controllers/proclaim/subscriptions_controller.rb +67 -0
  24. data/app/helpers/proclaim/application_helper.rb +34 -0
  25. data/app/helpers/proclaim/comments_helper.rb +4 -0
  26. data/app/helpers/proclaim/images_helper.rb +4 -0
  27. data/app/helpers/proclaim/posts_helper.rb +4 -0
  28. data/app/helpers/proclaim/subscriptions_helper.rb +4 -0
  29. data/app/mailers/proclaim/subscription_mailer.rb +43 -0
  30. data/app/models/proclaim/comment.rb +35 -0
  31. data/app/models/proclaim/image.rb +19 -0
  32. data/app/models/proclaim/post.rb +133 -0
  33. data/app/models/proclaim/subscription.rb +63 -0
  34. data/app/policies/application_policy.rb +53 -0
  35. data/app/policies/proclaim/comment_policy.rb +27 -0
  36. data/app/policies/proclaim/image_policy.rb +29 -0
  37. data/app/policies/proclaim/post_policy.rb +38 -0
  38. data/app/policies/proclaim/subscription_policy.rb +32 -0
  39. data/app/uploaders/proclaim/image_uploader.rb +82 -0
  40. data/app/views/layouts/proclaim/subscription_mailer.html.erb +133 -0
  41. data/app/views/proclaim/comments/_comment.html.erb +33 -0
  42. data/app/views/proclaim/comments/_form.html.erb +51 -0
  43. data/app/views/proclaim/posts/_form.html.erb +67 -0
  44. data/app/views/proclaim/posts/edit.html.erb +3 -0
  45. data/app/views/proclaim/posts/index.html.erb +30 -0
  46. data/app/views/proclaim/posts/new.html.erb +3 -0
  47. data/app/views/proclaim/posts/show.html.erb +46 -0
  48. data/app/views/proclaim/subscription_mailer/new_comment_notification_email.html.erb +11 -0
  49. data/app/views/proclaim/subscription_mailer/new_post_notification_email.html.erb +15 -0
  50. data/app/views/proclaim/subscription_mailer/welcome_email.html.erb +25 -0
  51. data/app/views/proclaim/subscriptions/_form.html.erb +32 -0
  52. data/app/views/proclaim/subscriptions/new.html.erb +8 -0
  53. data/app/views/proclaim/subscriptions/subscribed.html.erb +7 -0
  54. data/app/views/proclaim/subscriptions/unsubscribe.html.erb +7 -0
  55. data/app/views/proclaim/subscriptions/unsubscribed.html.erb +3 -0
  56. data/config/routes.rb +18 -0
  57. data/db/migrate/20141108222616_create_proclaim_posts.rb +15 -0
  58. data/db/migrate/20141114235359_create_proclaim_comments.rb +15 -0
  59. data/db/migrate/20141115022230_create_proclaim_comment_hierarchies.rb +26 -0
  60. data/db/migrate/20141210234057_create_proclaim_subscriptions.rb +17 -0
  61. data/db/migrate/20141222224905_create_proclaim_images.rb +12 -0
  62. data/lib/generators/proclaim/install_generator.rb +23 -0
  63. data/lib/generators/proclaim/templates/README +27 -0
  64. data/lib/generators/proclaim/templates/initialize_proclaim.rb +22 -0
  65. data/lib/generators/proclaim/views_generator.rb +24 -0
  66. data/lib/proclaim.rb +22 -0
  67. data/lib/proclaim/engine.rb +39 -0
  68. data/lib/proclaim/version.rb +3 -0
  69. data/lib/tasks/proclaim_tasks.rake +4 -0
  70. data/proclaim.gemspec +46 -0
  71. data/test/controllers/proclaim/comments_controller_test.rb +228 -0
  72. data/test/controllers/proclaim/images_controller_test.rb +123 -0
  73. data/test/controllers/proclaim/posts_controller_test.rb +303 -0
  74. data/test/controllers/proclaim/subscriptions_controller_test.rb +93 -0
  75. data/test/dummy/README.rdoc +28 -0
  76. data/test/dummy/Rakefile +6 -0
  77. data/test/dummy/app/assets/javascripts/application.js +14 -0
  78. data/test/dummy/app/assets/stylesheets/application.css +16 -0
  79. data/test/dummy/app/controllers/application_controller.rb +15 -0
  80. data/test/dummy/app/helpers/application_helper.rb +28 -0
  81. data/test/dummy/app/models/user.rb +7 -0
  82. data/test/dummy/app/views/layouts/application.html.erb +16 -0
  83. data/test/dummy/bin/bundle +3 -0
  84. data/test/dummy/bin/rails +4 -0
  85. data/test/dummy/bin/rake +4 -0
  86. data/test/dummy/config.ru +4 -0
  87. data/test/dummy/config/application.rb +24 -0
  88. data/test/dummy/config/boot.rb +5 -0
  89. data/test/dummy/config/database.yml +25 -0
  90. data/test/dummy/config/environment.rb +5 -0
  91. data/test/dummy/config/environments/development.rb +45 -0
  92. data/test/dummy/config/environments/production.rb +80 -0
  93. data/test/dummy/config/environments/test.rb +49 -0
  94. data/test/dummy/config/initializers/assets.rb +8 -0
  95. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  96. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  97. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  98. data/test/dummy/config/initializers/inflections.rb +16 -0
  99. data/test/dummy/config/initializers/mime_types.rb +4 -0
  100. data/test/dummy/config/initializers/session_store.rb +3 -0
  101. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  102. data/test/dummy/config/locales/en.yml +23 -0
  103. data/test/dummy/config/routes.rb +5 -0
  104. data/test/dummy/config/secrets.yml +22 -0
  105. data/test/dummy/db/migrate/20141117214323_create_users.rb +10 -0
  106. data/test/dummy/db/schema.rb +75 -0
  107. data/test/dummy/log/development.log +131 -0
  108. data/test/dummy/log/test.log +25961 -0
  109. data/test/dummy/public/404.html +67 -0
  110. data/test/dummy/public/422.html +67 -0
  111. data/test/dummy/public/500.html +66 -0
  112. data/test/dummy/public/favicon.ico +0 -0
  113. data/test/dummy/tmp/cache/assets/test/sass/0b69f7cc441d56def3a51688e6a7a8474dc476d1/proclaim.css.scssc +0 -0
  114. data/test/dummy/tmp/cache/assets/test/sass/12a97df611d5fb0e395afda829edf8b9372acde7/comments.css.scssc +0 -0
  115. data/test/dummy/tmp/cache/assets/test/sass/12a97df611d5fb0e395afda829edf8b9372acde7/images.scssc +0 -0
  116. data/test/dummy/tmp/cache/assets/test/sass/12a97df611d5fb0e395afda829edf8b9372acde7/posts.css.scssc +0 -0
  117. data/test/dummy/tmp/cache/assets/test/sass/12a97df611d5fb0e395afda829edf8b9372acde7/subscriptions.css.scssc +0 -0
  118. data/test/dummy/tmp/cache/assets/test/sprockets/04adcece63bc645379e6de797e7998f8 +0 -0
  119. data/test/dummy/tmp/cache/assets/test/sprockets/06620fc450f0a9b4a482a7bc08387711 +0 -0
  120. data/test/dummy/tmp/cache/assets/test/sprockets/076dd0d567a92c34163b3b98af1d48ba +0 -0
  121. data/test/dummy/tmp/cache/assets/test/sprockets/09fc2eadf6d6062b2cc135a44e4e73db +0 -0
  122. data/test/dummy/tmp/cache/assets/test/sprockets/09fe8c62e8ae706e01058b4b4d056c8e +0 -0
  123. data/test/dummy/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  124. data/test/dummy/tmp/cache/assets/test/sprockets/142fd040033525acb73ad2ccf1406aea +0 -0
  125. data/test/dummy/tmp/cache/assets/test/sprockets/1762aeeaf38da3b8d989a5b66b088004 +0 -0
  126. data/test/dummy/tmp/cache/assets/test/sprockets/194ac1a695334e303516614579b3926d +0 -0
  127. data/test/dummy/tmp/cache/assets/test/sprockets/197ea008934db3e7ea8045302d206b92 +0 -0
  128. data/test/dummy/tmp/cache/assets/test/sprockets/19eba2635fec0895379c3e38f81ada84 +0 -0
  129. data/test/dummy/tmp/cache/assets/test/sprockets/1c2ebe72fcd7ff1379a561552ca30f85 +0 -0
  130. data/test/dummy/tmp/cache/assets/test/sprockets/1f42c80faacb651f670ec2b0998e49dc +0 -0
  131. data/test/dummy/tmp/cache/assets/test/sprockets/2243230e778a749ecbf0415a52e75be0 +0 -0
  132. data/test/dummy/tmp/cache/assets/test/sprockets/23ad87e715c70312aa61dde4fbb4bfe1 +0 -0
  133. data/test/dummy/tmp/cache/assets/test/sprockets/245b8735db4ea90bcaa91c011a1f447e +0 -0
  134. data/test/dummy/tmp/cache/assets/test/sprockets/26a42dac0cec64483f4126d2de4b0c9e +0 -0
  135. data/test/dummy/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  136. data/test/dummy/tmp/cache/assets/test/sprockets/30151c8f6d93717f06fa12774612ddf4 +0 -0
  137. data/test/dummy/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  138. data/test/dummy/tmp/cache/assets/test/sprockets/3c623d200214a5334aaf170537db087f +0 -0
  139. data/test/dummy/tmp/cache/assets/test/sprockets/3ec36650a50759fd4b75794cb253936f +0 -0
  140. data/test/dummy/tmp/cache/assets/test/sprockets/40431cdcc10c75ba1f275ecfe42623d3 +0 -0
  141. data/test/dummy/tmp/cache/assets/test/sprockets/4226218a4b06608115b21063353370ea +0 -0
  142. data/test/dummy/tmp/cache/assets/test/sprockets/437901953eb8707af6c27ca59cf65d91 +0 -0
  143. data/test/dummy/tmp/cache/assets/test/sprockets/461885b8ad31ef6a94c9a4f2e332b7eb +0 -0
  144. data/test/dummy/tmp/cache/assets/test/sprockets/4792f46317cda92ccd5b278ec61f9ac5 +0 -0
  145. data/test/dummy/tmp/cache/assets/test/sprockets/4dcb3434b91b1c62f897a1741c6d398b +0 -0
  146. data/test/dummy/tmp/cache/assets/test/sprockets/5101cda93cf70f0fc0837713be587780 +0 -0
  147. data/test/dummy/tmp/cache/assets/test/sprockets/52d8c61de0703e0d7cf97d0f7b0cca7a +0 -0
  148. data/test/dummy/tmp/cache/assets/test/sprockets/57f3d19a9bd484ac68c46f962a8684b2 +0 -0
  149. data/test/dummy/tmp/cache/assets/test/sprockets/587e7c1332c8d8b69746dd85164e2cef +0 -0
  150. data/test/dummy/tmp/cache/assets/test/sprockets/5934d5d0d1ac6657842708e85c73cf51 +0 -0
  151. data/test/dummy/tmp/cache/assets/test/sprockets/5af081799d7da2f04ead6a516c6015ad +0 -0
  152. data/test/dummy/tmp/cache/assets/test/sprockets/69ee5af8d9a655898a67bc538ca1c7e7 +0 -0
  153. data/test/dummy/tmp/cache/assets/test/sprockets/6d1c56259648b0383bc438c875a448c3 +0 -0
  154. data/test/dummy/tmp/cache/assets/test/sprockets/6e7de35055967df848aa490830043e51 +0 -0
  155. data/test/dummy/tmp/cache/assets/test/sprockets/70bc59560ee544af7bb2f727247db307 +0 -0
  156. data/test/dummy/tmp/cache/assets/test/sprockets/728cb566999910549092ff0a98e2853b +0 -0
  157. data/test/dummy/tmp/cache/assets/test/sprockets/72b5f0d35e9d69b744a156edad98f983 +0 -0
  158. data/test/dummy/tmp/cache/assets/test/sprockets/72ffa34d552e3fd02f28a6f845a5ac5b +0 -0
  159. data/test/dummy/tmp/cache/assets/test/sprockets/7369d324e84bc872c42b3e717ff4ad6c +0 -0
  160. data/test/dummy/tmp/cache/assets/test/sprockets/749a8b0e45b11df748a256dd04ceb1f7 +0 -0
  161. data/test/dummy/tmp/cache/assets/test/sprockets/77fb9f62552d9b786f9407ef11cc9a09 +0 -0
  162. data/test/dummy/tmp/cache/assets/test/sprockets/797823842565e01fc989ad8df0bd4254 +0 -0
  163. data/test/dummy/tmp/cache/assets/test/sprockets/7c139afa2296ac17483520109aecd449 +0 -0
  164. data/test/dummy/tmp/cache/assets/test/sprockets/7fb99e2b35af65c4f58bfb92dd4185b4 +0 -0
  165. data/test/dummy/tmp/cache/assets/test/sprockets/819de31c63b704f9ddf4865587a91d41 +0 -0
  166. data/test/dummy/tmp/cache/assets/test/sprockets/8604b464bf846e5223da37ef2f29b524 +0 -0
  167. data/test/dummy/tmp/cache/assets/test/sprockets/88fc815613b473e98e9307b1d423918d +0 -0
  168. data/test/dummy/tmp/cache/assets/test/sprockets/8bc4341aa4060b8646e8134722cf3b11 +0 -0
  169. data/test/dummy/tmp/cache/assets/test/sprockets/8cf8fd5ff8eae12211a88f971af30236 +0 -0
  170. data/test/dummy/tmp/cache/assets/test/sprockets/8da3b4a9f17aafff49eb263bdb758f44 +0 -0
  171. data/test/dummy/tmp/cache/assets/test/sprockets/9168e513bae02f041dbb806d6dbe94ac +0 -0
  172. data/test/dummy/tmp/cache/assets/test/sprockets/920c1322be1212a54b7c4f2751d5e7bf +0 -0
  173. data/test/dummy/tmp/cache/assets/test/sprockets/92205679a36afd387a2ba5c585a5a62c +0 -0
  174. data/test/dummy/tmp/cache/assets/test/sprockets/940566ebcae2d4e5c56a881ab66f2cf0 +0 -0
  175. data/test/dummy/tmp/cache/assets/test/sprockets/976967e07e2944a7ecc7403667f1f96b +0 -0
  176. data/test/dummy/tmp/cache/assets/test/sprockets/99bdde70cefa71745279232be575f14e +0 -0
  177. data/test/dummy/tmp/cache/assets/test/sprockets/9a8e402a7e32063e46647403b43553a5 +0 -0
  178. data/test/dummy/tmp/cache/assets/test/sprockets/9b09ad72f8cc33503878b01c713d92d0 +0 -0
  179. data/test/dummy/tmp/cache/assets/test/sprockets/a20dbdfebf37fe50e832a6273c972553 +0 -0
  180. data/test/dummy/tmp/cache/assets/test/sprockets/a3c6189fad6cb9ae955f6d5a43a61d51 +0 -0
  181. data/test/dummy/tmp/cache/assets/test/sprockets/abb54e11ff057a3e22a5a97d27cc4fa3 +0 -0
  182. data/test/dummy/tmp/cache/assets/test/sprockets/ad18e3875541d4298b1df133d494b93f +0 -0
  183. data/test/dummy/tmp/cache/assets/test/sprockets/b9b7c575c22943d49734d52381c5ee16 +0 -0
  184. data/test/dummy/tmp/cache/assets/test/sprockets/ba269a52f100d3d6cffda81e82e1ed49 +0 -0
  185. data/test/dummy/tmp/cache/assets/test/sprockets/bc7a0846b4881b0832d41de2b1724dba +0 -0
  186. data/test/dummy/tmp/cache/assets/test/sprockets/bcb2df87f9611d3cc3ef8a5575e54fb8 +0 -0
  187. data/test/dummy/tmp/cache/assets/test/sprockets/bcf33791d3286af3ba2cdf6a6756c89e +0 -0
  188. data/test/dummy/tmp/cache/assets/test/sprockets/be32d0a530ce861537d6abfa41333df9 +0 -0
  189. data/test/dummy/tmp/cache/assets/test/sprockets/c8270a6f07dccc5f00e6b2b43f10efd2 +0 -0
  190. data/test/dummy/tmp/cache/assets/test/sprockets/cd82cd410a50bffcfb6e21e3c49a85c9 +0 -0
  191. data/test/dummy/tmp/cache/assets/test/sprockets/ce4ccaa06bdee6426486224bc7e54187 +0 -0
  192. data/test/dummy/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  193. data/test/dummy/tmp/cache/assets/test/sprockets/d0bdb8592e4eed80aa2341e37f20dbc9 +0 -0
  194. data/test/dummy/tmp/cache/assets/test/sprockets/d4b784b16fa1b1dfcca6590689a8c157 +0 -0
  195. data/test/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  196. data/test/dummy/tmp/cache/assets/test/sprockets/d968bd38a69bbf5c0065e2df3d30cfd3 +0 -0
  197. data/test/dummy/tmp/cache/assets/test/sprockets/daa4d4b8a5ce46d6c4ecf031e0c61cfe +0 -0
  198. data/test/dummy/tmp/cache/assets/test/sprockets/dc2effd195334219a7e4acfdc7ec7974 +0 -0
  199. data/test/dummy/tmp/cache/assets/test/sprockets/de36ab6c3b1a9b62a586d98373dd569c +0 -0
  200. data/test/dummy/tmp/cache/assets/test/sprockets/e3aec457d5c753090d6521f2bb2d91b6 +0 -0
  201. data/test/dummy/tmp/cache/assets/test/sprockets/e8d6158b1fed2f574242b55856a3953d +0 -0
  202. data/test/dummy/tmp/cache/assets/test/sprockets/ea82f6aececcf81eef3e2e15a9225e66 +0 -0
  203. data/test/dummy/tmp/cache/assets/test/sprockets/ed9f5c17f71ec75de10b1bb029ebd7a2 +0 -0
  204. data/test/dummy/tmp/cache/assets/test/sprockets/f2984adaeaa5322e3a040705c6d40622 +0 -0
  205. data/test/dummy/tmp/cache/assets/test/sprockets/f62fd0cf9f5e7e077ec9c4daeccb06ae +0 -0
  206. data/test/dummy/tmp/cache/assets/test/sprockets/f78ea69bdbba5738c052e9eb04e6c208 +0 -0
  207. data/test/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  208. data/test/dummy/tmp/cache/assets/test/sprockets/f864e553f706456dbdf168319970ec2e +0 -0
  209. data/test/dummy/tmp/cache/assets/test/sprockets/fb0f641bfcbb0101c040da9ff736447b +0 -0
  210. data/test/dummy/tmp/cache/assets/test/sprockets/fe426a44cf23cf82032091cbffff898c +0 -0
  211. data/test/dummy/tmp/cache/assets/test/sprockets/ff732ea47a86c449582b2a81ef2930da +0 -0
  212. data/test/dummy/tmp/cache/assets/test/sprockets/ffc4980851addaacf12abeebfa63e07f +0 -0
  213. data/test/dummy/tmp/generators/config/initializers/proclaim.rb +22 -0
  214. data/test/factories/proclaim/comment.rb +11 -0
  215. data/test/factories/proclaim/image.rb +6 -0
  216. data/test/factories/proclaim/post.rb +14 -0
  217. data/test/factories/proclaim/subscription.rb +13 -0
  218. data/test/factories/user.rb +6 -0
  219. data/test/helpers/proclaim/comments_helper_test.rb +6 -0
  220. data/test/helpers/proclaim/posts_helper_test.rb +6 -0
  221. data/test/helpers/proclaim/subscriptions_helper_test.rb +6 -0
  222. data/test/integration/with_javascript/comment_test.rb +353 -0
  223. data/test/integration/with_javascript/post_form_test.rb +179 -0
  224. data/test/integration/with_javascript/post_subscription_test.rb +273 -0
  225. data/test/integration/without_javascript/blog_subscription_test.rb +87 -0
  226. data/test/integration/without_javascript/post_test.rb +140 -0
  227. data/test/integration/without_javascript/subscription_email_test.rb +95 -0
  228. data/test/integration/without_javascript/unsubscribe_test.rb +32 -0
  229. data/test/mailers/previews/proclaim/subscription_mailer_preview.rb +22 -0
  230. data/test/mailers/proclaim/subscription_mailer_test.rb +87 -0
  231. data/test/models/proclaim/comment_test.rb +41 -0
  232. data/test/models/proclaim/image_test.rb +70 -0
  233. data/test/models/proclaim/post_test.rb +127 -0
  234. data/test/models/proclaim/subscription_test.rb +66 -0
  235. data/test/policies/proclaim/comment_policy_test.rb +71 -0
  236. data/test/policies/proclaim/post_policy_test.rb +87 -0
  237. data/test/policies/proclaim/subscription_policy_test.rb +91 -0
  238. data/test/proclaim_test.rb +7 -0
  239. data/test/support/images/test.jpg +0 -0
  240. data/test/support/pages/posts/edit_page.rb +5 -0
  241. data/test/support/pages/posts/show_page.rb +47 -0
  242. data/test/support/wait_for_ajax.rb +11 -0
  243. data/test/test_helper.rb +56 -0
  244. data/vendor/assets/images/link.png +0 -0
  245. data/vendor/assets/images/remove.png +0 -0
  246. data/vendor/assets/images/resize-bigger.png +0 -0
  247. data/vendor/assets/images/resize-smaller.png +0 -0
  248. data/vendor/assets/images/unlink.png +0 -0
  249. data/vendor/assets/javascripts/addons/medium-editor-insert-embeds.js +197 -0
  250. data/vendor/assets/javascripts/addons/medium-editor-insert-embeds.min.js +10 -0
  251. data/vendor/assets/javascripts/addons/medium-editor-insert-images.js +572 -0
  252. data/vendor/assets/javascripts/addons/medium-editor-insert-images.min.js +10 -0
  253. data/vendor/assets/javascripts/addons/medium-editor-insert-maps.js +50 -0
  254. data/vendor/assets/javascripts/addons/medium-editor-insert-maps.min.js +10 -0
  255. data/vendor/assets/javascripts/addons/medium-editor-insert-plugin.js +496 -0
  256. data/vendor/assets/javascripts/addons/medium-editor-insert-plugin.min.js +10 -0
  257. data/vendor/assets/javascripts/addons/medium-editor-insert-tables.js +132 -0
  258. data/vendor/assets/javascripts/addons/medium-editor-insert-tables.min.js +10 -0
  259. data/vendor/assets/javascripts/medium-editor-insert-plugin.all.js +1415 -0
  260. data/vendor/assets/javascripts/medium-editor-insert-plugin.all.min.js +10 -0
  261. data/vendor/assets/stylesheets/medium-editor-insert-plugin-frontend.css +55 -0
  262. data/vendor/assets/stylesheets/medium-editor-insert-plugin-frontend.min.css +10 -0
  263. data/vendor/assets/stylesheets/medium-editor-insert-plugin.css +277 -0
  264. data/vendor/assets/stylesheets/medium-editor-insert-plugin.min.css +10 -0
  265. metadata +791 -0
@@ -0,0 +1,10 @@
1
+ /*!
2
+ * medium-editor-insert-plugin v0.3.2 - jQuery insert plugin for MediumEditor
3
+ *
4
+ * https://github.com/orthes/medium-editor-insert-plugin
5
+ *
6
+ * Copyright (c) 2014 Pavel Linkesch (http://linkesch.sk)
7
+ * Released under the MIT license
8
+ */
9
+
10
+ !function(a){var b={};MediumEditor&&"function"==typeof MediumEditor&&(MediumEditor.prototype.serialize=function(){var b,c,d,e,f,g,h,i,j={};for(b=0;b<this.elements.length;b+=1){for(d=""!==this.elements[b].id?this.elements[b].id:"element-"+b,e=a(this.elements[b]).clone(),f=a(".mediumInsert",e),c=0;c<f.length;c++)g=a(f[c]),h=a(".mediumInsert-placeholder",g).children(),0===h.length?g.remove():(g.removeAttr("contenteditable"),a("img[draggable]",g).removeAttr("draggable"),g.hasClass("small")&&h.addClass("small"),a(".mediumInsert-buttons",g).remove(),h.unwrap());i=e.html().trim(),j[d]={value:i}}return j},MediumEditor.prototype.deactivate=function(){var b;if(!this.isActive)return!1;for(this.isActive=!1,void 0!==this.toolbar&&(this.toolbar.style.display="none"),document.documentElement.removeEventListener("mouseup",this.checkSelectionWrapper),b=0;b<this.elements.length;b+=1)this.elements[b].removeEventListener("keyup",this.checkSelectionWrapper),this.elements[b].removeEventListener("blur",this.checkSelectionWrapper),this.elements[b].removeAttribute("contentEditable");a.fn.mediumInsert.insert.$el&&a.fn.mediumInsert.insert.$el.mediumInsert("disable")},MediumEditor.prototype.activate=function(){var b;if(this.isActive)return!1;for(void 0!==this.toolbar&&(this.toolbar.style.display="block"),this.isActive=!0,b=0;b<this.elements.length;b+=1)this.elements[b].setAttribute("contentEditable",!0);this.bindSelect(),a.fn.mediumInsert.insert.$el&&a.fn.mediumInsert.insert.$el.mediumInsert("enable")}),a.fn.mediumInsert=function(c){return"string"==typeof c&&a.fn.mediumInsert.insert[c]?void a.fn.mediumInsert.insert[c]():(a.fn.mediumInsert.settings=a.extend(a.fn.mediumInsert.settings,c),this.each(function(){a(this).addClass("medium-editor-insert-plugin");var c="p, h1, h2, h3, h4, h5, h6, ol, ul, blockquote";a(this).on("dragover drop",c,function(a){return a.preventDefault(),!1}),a.fn.mediumInsert.insert.init(a(this)),a.each(a.fn.mediumInsert.settings.addons,function(c){if("undefined"!=typeof b[c]){var d=a.fn.mediumInsert.settings.addons[c];d.$el=a.fn.mediumInsert.insert.$el,b[c].init(d)}})}))},a.fn.mediumInsert.settings={enabled:!0,beginning:!1,addons:{images:{},embeds:{}}},a.fn.mediumInsert.registerAddon=function(a,c){b[a]=c},a.fn.mediumInsert.getAddon=function(a){return b[a]},a.fn.mediumInsert.insert={init:function(a){this.$el=a,this.isFirefox=navigator.userAgent.match(/firefox/i),this.setPlaceholders(),this.setEvents()},deselect:function(){document.getSelection().removeAllRanges()},disable:function(){a.fn.mediumInsert.settings.enabled=!1,a.fn.mediumInsert.insert.$el.find(".mediumInsert-buttons").addClass("hide")},enable:function(){a.fn.mediumInsert.settings.enabled=!0,a.fn.mediumInsert.insert.$el.find(".mediumInsert-buttons").removeClass("hide")},getMaxId:function(){var b=-1;return a('div[id^="mediumInsert-"]').each(function(){var c=parseInt(a(this).attr("id").split("-")[1],10);c>b&&(b=c)}),b},getButtons:function(c){var d,e=a.fn.mediumInsert.settings.editor,f=e&&e.options?e.options.buttonLabels:"";return d=a.fn.mediumInsert.settings.enabled?'<div class="mediumInsert-buttons"><a class="mediumInsert-buttonsShow">+</a><ul class="mediumInsert-buttonsOptions medium-editor-toolbar medium-editor-toolbar-active">':'<div class="mediumInsert-buttons hide"><a class="mediumInsert-buttonsShow">+</a><ul class="mediumInsert-buttonsOptions medium-editor-toolbar medium-editor-toolbar-active">',0===Object.keys(a.fn.mediumInsert.settings.addons).length?!1:("undefined"==typeof c?a.each(a.fn.mediumInsert.settings.addons,function(a){"undefined"==typeof b[a]?console.log('Addon "'+a+'" is not available. Did you forgot to include the related file?'):d+="<li>"+b[a].insertButton(f)+"</li>"}):d+="<li>"+b[c].insertButton(f)+"</li>",d+="</ul></div>")},setPlaceholders:function(){var b,c=this,d=a.fn.mediumInsert.insert.$el,e=this.getButtons();return e===!1?!1:(e='<div class="mediumInsert" contenteditable="false">'+e+'<div class="mediumInsert-placeholder"></div></div>',d.is(":empty")&&d.html("<p><br></p>"),void d.keyup(function(){var f,g=d.children(":last");(""===d.html()||"<br>"===d.html())&&d.html("<p><br></p>"),g.hasClass("mediumInsert")&&g.find(".mediumInsert-placeholder").children().length>0&&d.append("<p><br></p>"),c.isFirefox&&a(".mediumInsert .mediumInsert-placeholder:empty",d).each(function(){a(this).parent().remove()}),f=c.getMaxId()+1;var h="p, h1, h2, h3, h4, h5, h6, ol, ul, blockquote";a.fn.mediumInsert.settings.beginning&&(b=d.children(h).first(),b.prev().hasClass("mediumInsert")===!1&&(b.before(e),b.prev(".mediumInsert").attr("id","mediumInsert-"+f).addClass("mediumInsert-first"),f++)),d.children(h).each(function(){a(this).next().hasClass("mediumInsert")===!1&&(a(this).after(e),a(this).next(".mediumInsert").attr("id","mediumInsert-"+f)),f++})}).keyup())},setEvents:function(){var c=this,d=a.fn.mediumInsert.insert.$el;d.on("selectstart mousedown",".mediumInsert",function(b){a(b.target).is("img")===!1&&b.preventDefault()}),d.on("blur",function(){var b,c=a(this).clone();c.find(".mediumInsert").remove(),b=c.html().replace(/^\s+|\s+$/g,""),(""===b||"<p><br></p>"===b)&&a(this).addClass("medium-editor-placeholder")}),d.on("keypress",function(a){c.isFirefox&&13===a.keyCode&&d.contents().each(function(){return function(a,b){return"#text"===b.nodeName&&""!==b.textContent.trim()?(document.execCommand("insertHTML",!1,"<p>"+b.data+"</p>"),b.remove()):void 0}}(this))}),d.on("keydown",function(a){return navigator.userAgent.match(/chrome/i)&&(d.children().last().removeClass("hide"),(a.ctrlKey||a.metaKey)&&65===a.which)?(a.preventDefault(),0===d.find("p").text().trim().length?!1:(d.children().last().addClass("hide"),document.execCommand("selectAll",!1,null))):void 0}),d.on("click",".mediumInsert-buttons a.mediumInsert-buttonsShow",function(){var b=a(this).siblings(".mediumInsert-buttonsOptions"),d=a(this).parent().siblings(".mediumInsert-placeholder");a(this).hasClass("active")?(a(this).removeClass("active"),b.hide(),a("a",b).show()):(a(this).addClass("active"),b.show(),a("a",b).each(function(){var c=a(this).attr("class").split("action-")[1],e=c.split("-")[0];a(".mediumInsert-"+e,d).length>0&&a("a:not(.action-"+c+")",b).hide()})),c.deselect()}),d.on("mouseleave",".mediumInsert",function(){a("a.mediumInsert-buttonsShow",this).removeClass("active"),a(".mediumInsert-buttonsOptions",this).hide()}),d.on("click",".mediumInsert-buttons .mediumInsert-action",function(c){c.preventDefault();var d=a(this).data("addon"),e=a(this).data("action"),f=a(this).parents(".mediumInsert-buttons").siblings(".mediumInsert-placeholder");b[d]&&b[d][e]&&b[d][e](f),a(this).parents(".mediumInsert").mouseleave()})}}}(jQuery),function(a){a.fn.mediumInsert.registerAddon("embeds",{defaults:{urlPlaceholder:"Paste or type a link"},init:function(b){this.options=a.extend(this.defaults,b),this.$el=a.fn.mediumInsert.insert.$el,this.setEmbedButtonEvents(),this.preparePreviousEmbeds()},insertButton:function(a){var b="Embed";return("fontawesome"===a||"object"==typeof a&&a.fontawesome)&&(b='<i class="fa fa-code"></i>'),"object"==typeof a&&a.embed&&(b=a.embed),'<button data-addon="embeds" data-action="add" class="medium-editor-action mediumInsert-action">'+b+"</button>"},add:function(b){a.fn.mediumInsert.insert.deselect();var c='<div class="medium-editor-toolbar medium-editor-toolbar-active medium-editor-toolbar-form-anchor mediumInsert-embedsWire" style="display: block;"><input type="text" value="" placeholder="'+this.options.urlPlaceholder+'" class="mediumInsert-embedsText medium-editor-toolbar-anchor-input"></div>';a(c).appendTo(b.prev()),setTimeout(function(){b.prev().find("input").focus()},50),a.fn.mediumInsert.insert.deselect(),this.currentPlaceholder=b,a(".mediumInsert-embedsText").focus()},preparePreviousEmbeds:function(){this.$el.find(".mediumInsert-embeds").each(function(){var b=a(this).parent();b.hasClass("mediumInsert-placeholder")||b.html('<div class="mediumInsert-placeholder" draggable="true">'+b.html()+"</div>")})},setEmbedButtonEvents:function(){var b=this;a(document).on("keypress","input.mediumInsert-embedsText",function(a){(a.which&&13===a.which||a.keyCode&&13===a.keyCode)&&(b.setEnterActionEvents(),b.removeToolbar())}),this.$el.on("blur",".mediumInsert-embedsText",function(){b.removeToolbar()}).on("paste",".mediumInsert-embedsText",function(b){a.fn.mediumInsert.insert.isFirefox&&b.originalEvent.clipboardData&&a(this).val(b.originalEvent.clipboardData.getData("text/plain"))})},setEnterActionEvents:function(){function b(b){if(!b)return alert("Incorrect URL format specified"),!1;var d=b,e=(new Date).getTime();b=a('<div class="mediumInsert-embeds" id="'+e+'"></div>').append(b),c.currentPlaceholder.append(b),c.currentPlaceholder.closest("[data-medium-element]").trigger("keyup").trigger("input"),-1!==d.indexOf("facebook")&&"undefined"!=typeof FB&&setTimeout(function(){FB.XFBML.parse()},2e3)}var c=this;if(a.fn.mediumInsert.settings.enabled===!1)return!1;var d=a("input.mediumInsert-embedsText").val();if(!d)return!1;if(!this.options.oembedProxy){var e=c.convertUrlToEmbedTag(d);return b(e)}c.getOEmbedHTML(d,function(a,c){var d=!a&&c&&c.html;c&&!c.html&&"photo"===c.type&&c.url&&(d='<img src="'+c.url+'" />'),b(d)})},removeToolbar:function(){a(".mediumInsert-embedsWire").remove()},getOEmbedHTML:function(b,c){a.ajax({url:this.options.oembedProxy,dataType:"json",data:{url:b},success:function(a,b,d){c(null,a,d)},error:function(a,b,d){var e=function(){try{return JSON.parse(a.responseText)}catch(b){}}();c(e&&e.error||a.status||d.message,e,a)}})},convertUrlToEmbedTag:function(a){if(!new RegExp(["youtube","yout.be","vimeo","facebook","instagram"].join("|")).test(a))return!1;var b=a.replace(/\n?/g,"").replace(/^((http(s)?:\/\/)?(www\.)?(youtube\.com|youtu\.be)\/(watch\?v=|v\/)?)([a-zA-Z0-9\-_]+)(.*)?$/,'<div class="video"><iframe width="420" height="315" src="//www.youtube.com/embed/$7" frameborder="0" allowfullscreen></iframe></div>').replace(/^http:\/\/vimeo\.com(\/.+)?\/([0-9]+)$/,'<iframe src="//player.vimeo.com/video/$2" width="500" height="281" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>').replace(/^https:\/\/www\.facebook\.com\/(video.php|photo.php)\?v=(\d+).+$/,'<div class="fb-post" data-href="https://www.facebook.com/photo.php?v=$2"><div class="fb-xfbml-parse-ignore"><a href="https://www.facebook.com/photo.php?v=$2">Post</a></div></div>').replace(/^http:\/\/instagram\.com\/p\/(.+)\/?$/,'<span class="instagram"><iframe src="//instagram.com/p/$1/embed/" width="612" height="710" frameborder="0" scrolling="no" allowtransparency="true"></iframe></span>');return/<("[^"]*"|'[^']*'|[^'">])*>/.test(b)?b:!1}})}(jQuery),function(a){a.fn.mediumInsert.registerAddon("images",{defaults:{useDragAndDrop:!0,imagesUploadScript:"upload.php",imagesDeleteScript:"delete.php",urlPlaceholder:"Paste or type a link",formatData:function(a){var b=new FormData;return b.append("file",a),b},uploadFile:function(b,c,d){a.ajax({type:"post",url:d.options.imagesUploadScript,xhr:function(){var a=new XMLHttpRequest;return a.upload.onprogress=d.updateProgressBar,a},cache:!1,contentType:!1,complete:function(a){d.uploadCompleted(a,b)},processData:!1,data:d.options.formatData(c)})},deleteFile:function(b,c){a.ajax({type:"post",url:c.options.imagesDeleteScript,data:{file:b}})}},init:function(b){b&&b.$el&&(this.$el=b.$el),this.options=a.extend(this.defaults,b),this.setImageEvents(),this.options.useDragAndDrop===!0&&this.setDragAndDropEvents(),this.preparePreviousImages()},insertButton:function(a){var b="Img";return("fontawesome"===a||"object"==typeof a&&a.fontawesome)&&(b='<i class="fa fa-picture-o"></i>'),"object"==typeof a&&a.img&&(b=a.img),'<button data-addon="images" data-action="add" class="medium-editor-action mediumInsert-action">'+b+"</button>"},preparePreviousImages:function(){this.$el.find(".mediumInsert-images").each(function(){var b=a(this).parent();b.hasClass("mediumInsert-placeholder")||b.html(a.fn.mediumInsert.insert.getButtons("images")+'<div class="mediumInsert-placeholder" draggable="true">'+b.html()+"</div>")})},add:function(b){var c,d,e=this;return c=a('<input type="file" multiple="multiple">').click(),c.change(function(){d=this.files,e.uploadFiles(b,d,e)}),a.fn.mediumInsert.insert.deselect(),c},updateProgressBar:function(b){var c,d=a(".progress:first",this.$el);b.lengthComputable&&(c=b.loaded/b.total*100,c=c?c:0,d.attr("value",c),d.html(c))},uploadCompleted:function(b,c){var d,e=a(".progress:first",c);e.attr("value",100),e.html(100),b.responseText?(e.before('<figure class="mediumInsert-images"><img src="'+b.responseText+'" draggable="true" alt=""></figure>'),d=e.siblings("img"),d.load(function(){d.parent().mouseleave().mouseenter()})):(e.before('<div class="mediumInsert-error">There was a problem uploading the file.</div>'),setTimeout(function(){a(".mediumInsert-error:first",c).fadeOut(function(){a(this).remove()})},3e3)),e.remove(),c.closest("[data-medium-element]").trigger("keyup").trigger("input")},uploadFile:function(a,b,c){return c.options.uploadFile(a,b,c)},uploadFiles:function(a,b,c){for(var d={"image/png":!0,"image/jpeg":!0,"image/gif":!0},e=0;e<b.length;e++){var f=b[e];d[f.type]===!0&&(a.append('<progress class="progress" min="0" max="100" value="0">0</progress>'),c.uploadFile(a,f,c))}},deleteFile:function(a,b){return b.options.deleteFile(a,b)},setImageEvents:function(){var b=this;this.$el.on("mouseenter",".mediumInsert-images",function(){var b,c,d=a("img",this);a.fn.mediumInsert.settings.enabled!==!1&&d.length>0&&(a(this).append('<a class="mediumInsert-imageIcon mediumInsert-imageRemove"></a>'),0===a(this).prevAll().length&&a(this).append(a(this).parent().parent().hasClass("small")?'<a class="mediumInsert-imageIcon mediumInsert-imageResizeBigger"></a>':'<a class="mediumInsert-imageIcon mediumInsert-imageResizeSmaller"></a>'),0===a(this).siblings().length&&a(this).append(d.parent().is("a")?'<a class="mediumInsert-imageIcon mediumInsert-imageUnlink"></a>':'<a class="mediumInsert-imageIcon mediumInsert-imageLink"></a>'),b=d.position().top+parseInt(d.css("margin-top"),10),c=d.position().left+d.width()-30,a(".mediumInsert-imageRemove",this).css({right:"auto",top:b,left:c}),a(".mediumInsert-imageResizeBigger, .mediumInsert-imageResizeSmaller",this).css({right:"auto",top:b,left:c-31}),a(".mediumInsert-imageLink, .mediumInsert-imageUnlink",this).css({right:"auto",top:b,left:c-62}))}),this.$el.on("mouseleave",".mediumInsert-images",function(){a(".mediumInsert-imageIcon",this).remove()}),this.$el.on("click",".mediumInsert-imageResizeSmaller",function(){a(this).parent().parent().parent().addClass("small"),a(this).parent().mouseleave().mouseleave(),a.fn.mediumInsert.insert.deselect(),b.$el.trigger("keyup").trigger("input")}),this.$el.on("click",".mediumInsert-imageResizeBigger",function(){a(this).parent().parent().parent().removeClass("small"),a(this).parent().mouseleave().mouseleave(),a.fn.mediumInsert.insert.deselect(),b.$el.trigger("keyup").trigger("input")}),this.$el.on("click",".mediumInsert-imageRemove",function(){var c=a(this).siblings("img").attr("src");0===a(this).parent().siblings().length&&a(this).parent().parent().parent().removeClass("small"),a(this).parent().remove(),b.deleteFile(c,b),a.fn.mediumInsert.insert.deselect(),b.$el.trigger("keyup").trigger("input")}),this.$el.on("click",".mediumInsert-imageLink",function(){var c=a(this).closest(".mediumInsert-placeholder"),d=a('<div class="medium-editor-toolbar medium-editor-toolbar-active medium-editor-toolbar-form-anchor mediumInsert-imageLinkWire" style="display: block;"><input type="text" value="" placeholder="'+b.options.urlPlaceholder+'" class="mediumInsert-imageLinkText medium-editor-toolbar-anchor-input"></div>');d.appendTo(c),setTimeout(function(){d.find("input").focus()},50),a.fn.mediumInsert.insert.deselect()}),this.$el.on("click",".mediumInsert-imageUnlink",function(){var c=a(this).closest(".mediumInsert-images");c.find("img").unwrap(),a(this).removeClass("mediumInsert-imageUnlink").addClass("mediumInsert-imageLink"),b.$el.trigger("keyup").trigger("input")}),this.$el.on("keypress",".mediumInsert-imageLinkText",function(c){var d=a(this).closest(".mediumInsert-placeholder");if(c.which&&13===c.which||c.keyCode&&13===c.keyCode){d.find(".mediumInsert-images:first").find("img").wrap('<a href="'+a(this).val()+'" target="_blank"></a>'),d.find(".mediumInsert-imageLink").removeClass("mediumInsert-imageLink").addClass("mediumInsert-imageUnlink");try{a(".mediumInsert-imageLinkWire").remove()}catch(e){}b.$el.trigger("keyup").trigger("input")}}).on("blur",".mediumInsert-imageLinkText",function(){a(".mediumInsert-imageLinkWire").remove()}).on("paste",".mediumInsert-imageLinkText",function(b){a.fn.mediumInsert.insert.isFirefox&&b.originalEvent.clipboardData&&a(this).val(b.originalEvent.clipboardData.getData("text/plain"))})},setDragAndDropEvents:function(){var b,c,d=this,e=!1,f=!1;a(document).on("dragover","body",function(){a.fn.mediumInsert.settings.enabled!==!1&&d.$el.addClass("hover")}),a(document).on("dragend","body",function(){a.fn.mediumInsert.settings.enabled!==!1&&d.$el.removeClass("hover")}),this.$el.on("dragover",".mediumInsert",function(){a.fn.mediumInsert.settings.enabled!==!1&&(a(this).addClass("hover"),a(this).attr("contenteditable",!0))}),this.$el.on("dragleave",".mediumInsert",function(){a.fn.mediumInsert.settings.enabled!==!1&&(a(this).removeClass("hover"),a(this).attr("contenteditable",!1))}),this.$el.on("dragstart",".mediumInsert .mediumInsert-images img",function(){a.fn.mediumInsert.settings.enabled!==!1&&(b=a(this).parent().index(),c=a(this).parent().parent().parent().attr("id"))}),this.$el.on("dragend",".mediumInsert .mediumInsert-images img",function(b){a.fn.mediumInsert.settings.enabled!==!1&&e===!0&&(0===a(b.originalEvent.target.parentNode).siblings().length&&a(b.originalEvent.target.parentNode).parent().parent().removeClass("small"),a(b.originalEvent.target.parentNode).mouseleave(),a(b.originalEvent.target.parentNode).remove(),e=!1,f=!1,d.$el.trigger("keyup").trigger("input"))}),this.$el.on("dragover",".mediumInsert .mediumInsert-images img",function(b){a.fn.mediumInsert.settings.enabled!==!1&&b.preventDefault()}),this.$el.on("drop",".mediumInsert .mediumInsert-images img",function(){var e,g,h;if(a.fn.mediumInsert.settings.enabled!==!1){if(c!==a(this).parent().parent().parent().attr("id"))return f=!1,void(b=c=null);e=parseInt(b,10),g=a(this).parent().parent().find(".mediumInsert-images:nth-child("+(e+1)+")"),h=a(this).parent().index(),h>e?g.insertAfter(a(this).parent()):e>h&&g.insertBefore(a(this).parent()),g.mouseleave(),f=!0,b=null,d.$el.trigger("keyup").trigger("input")}}),this.$el.on("drop",".mediumInsert",function(b){var c;b.preventDefault(),a.fn.mediumInsert.settings.enabled!==!1&&(a(this).removeClass("hover"),d.$el.removeClass("hover"),a(this).attr("contenteditable",!1),c=b.originalEvent.dataTransfer.files,c.length>0?d.uploadFiles(a(".mediumInsert-placeholder",this),c,d):f===!0?f=!1:(a(".mediumInsert-placeholder",this).append('<figure class="mediumInsert-images">'+b.originalEvent.dataTransfer.getData("text/html")+"</figure>"),a("meta",this).remove(),e=!0))})}})}(jQuery),function(a){a.fn.mediumInsert.registerAddon("maps",{init:function(){this.$el=a.fn.mediumInsert.insert.$el},insertButton:function(a){var b="Map";return("fontawesome"===a||"object"==typeof a&&a.fontawesome)&&(b='<i class="fa fa-map-marker"></i>'),"object"==typeof a&&a.map&&(b=a.map),'<button data-addon="maps" data-action="add" class="medium-editor-action mediumInsert-action">'+b+"</button>"},add:function(b){a.fn.mediumInsert.insert.deselect(),b.append('<div class="mediumInsert-maps">Map - Coming soon...</div>')}})}(jQuery),function(a){a.fn.mediumInsert.registerAddon("tables",{defaults:{defaultRows:2,defaultCols:2},init:function(b){this.options=a.extend(this.defaults,b),this.$el=a.fn.mediumInsert.insert.$el,this.setTableButtonEvents()},insertButton:function(a){var b="Table";return("fontawesome"===a||"object"==typeof a&&a.fontawesome)&&(b='<i class="fa fa-table"></i>'),"object"==typeof a&&a.table&&(b=a.table),'<button data-addon="tables" data-action="add" class="medium-editor-action mediumInsert-action">'+b+"</button>"},add:function(b){a.fn.mediumInsert.insert.deselect();var c='<div class="medium-editor-toolbar-form-anchor mediumInsert-tableDemoBox"><table><tr><td></td><td><label>cols:<input type="text" value="'+this.options.defaultCols+'" class="mediumInsert-tableCols" /></label></td></tr><tr><td><label>rows:<input type="text" value="'+this.options.defaultRows+'" class="mediumInsert-tableRows" /></label></td><td><table class="mediumInsert-demoTable"></table></td></tr><tr><td></td><td><label><button class="mediumInsert-tableReadyButton">insert</button></label></td></tr></table></</div>';a(c).appendTo(b.prev()),this.updateDemoTable(),setTimeout(function(){b.prev().find("input").focus()},50),a.fn.mediumInsert.insert.deselect(),this.currentPlaceholder=b},setTableButtonEvents:function(){var b=this;a(document).on("keyup","input.mediumInsert-tableRows, input.mediumInsert-tableCols",function(){b.updateDemoTable()}),a(document).on("click",function(c){0===a(c.target).parents(".mediumInsert-buttons").length&&b.removeToolbar()}),a(document).on("click","button.mediumInsert-tableReadyButton",function(){b.setEnterActionEvents(),b.removeToolbar()})},getDimensions:function(){return{rows:parseFloat(a("input.mediumInsert-tableRows").val())||1,cols:parseFloat(a("input.mediumInsert-tableCols").val())||1}},buildTable:function(b){var c,d,e,f=this.getDimensions(),g=a(b);for(c=0;c<f.rows;c++){for(e=a("<tr>"),d=0;d<f.cols;d++)e.append("<td>");g.append(e)}},updateDemoTable:function(){var b=a("table.mediumInsert-demoTable");b.empty(),this.buildTable(b)},setEnterActionEvents:function(){var b=this;if(a.fn.mediumInsert.settings.enabled===!1)return!1;var c=a('<table class="mediumInsert-table">');b.buildTable(c),b.currentPlaceholder.append(c),b.currentPlaceholder.closest("[data-medium-element]").trigger("keyup").trigger("input")},removeToolbar:function(){a(".mediumInsert-tableDemoBox").remove()}})}(jQuery);
@@ -0,0 +1,55 @@
1
+ /*!
2
+ * medium-editor-insert-plugin v0.3.2 - jQuery insert plugin for MediumEditor
3
+ *
4
+ * https://github.com/orthes/medium-editor-insert-plugin
5
+ *
6
+ * Copyright (c) 2014 Pavel Linkesch (http://linkesch.sk)
7
+ * Released under the MIT license
8
+ */
9
+
10
+ .mediumInsert {
11
+ margin: -1em 0; }
12
+ .mediumInsert figure {
13
+ margin: 0;
14
+ display: inline-block; }
15
+ .mediumInsert img {
16
+ max-width: 100%; }
17
+ .mediumInsert .mediumInsert-embeds {
18
+ text-align: center;
19
+ padding: 15px 0; }
20
+ .mediumInsert .mediumInsert-embeds iframe {
21
+ margin: 0px auto !important; }
22
+ .mediumInsert .mediumInsert-embeds div {
23
+ margin: 0px auto !important; }
24
+ .mediumInsert .mediumInsert-images {
25
+ margin-right: 10px;
26
+ width: 20%; }
27
+ .mediumInsert .mediumInsert-images img {
28
+ margin-top: 1em;
29
+ margin-bottom: 10px;
30
+ vertical-align: top; }
31
+ .mediumInsert .mediumInsert-images:first-child {
32
+ margin-right: 0;
33
+ width: 100%; }
34
+ .mediumInsert .mediumInsert-images:first-child:after {
35
+ content: "\a";
36
+ white-space: pre; }
37
+ .mediumInsert .mediumInsert-maps {
38
+ padding: 10px;
39
+ background: #ccc; }
40
+ .mediumInsert table.mediumInsert-table {
41
+ border-top: 2px solid #333;
42
+ border-left: 2px solid #333;
43
+ width: 90%;
44
+ margin: 30px auto; }
45
+ .mediumInsert table.mediumInsert-table td {
46
+ border-right: 2px solid #333;
47
+ border-bottom: 2px solid #333;
48
+ padding: 12px; }
49
+ .mediumInsert.small {
50
+ max-width: 33.33%;
51
+ float: left;
52
+ margin-right: 30px;
53
+ margin-bottom: 20px; }
54
+ .mediumInsert.mediumInsert-first {
55
+ margin-top: 0; }
@@ -0,0 +1,10 @@
1
+ /*!
2
+ * medium-editor-insert-plugin v0.3.2 - jQuery insert plugin for MediumEditor
3
+ *
4
+ * https://github.com/orthes/medium-editor-insert-plugin
5
+ *
6
+ * Copyright (c) 2014 Pavel Linkesch (http://linkesch.sk)
7
+ * Released under the MIT license
8
+ */
9
+
10
+ .mediumInsert{margin:-1em 0}.mediumInsert figure{margin:0;display:inline-block}.mediumInsert img{max-width:100%}.mediumInsert .mediumInsert-embeds{text-align:center;padding:15px 0}.mediumInsert .mediumInsert-embeds iframe,.mediumInsert .mediumInsert-embeds div{margin:0 auto!important}.mediumInsert .mediumInsert-images{margin-right:10px;width:20%}.mediumInsert .mediumInsert-images img{margin-top:1em;margin-bottom:10px;vertical-align:top}.mediumInsert .mediumInsert-images:first-child{margin-right:0;width:100%}.mediumInsert .mediumInsert-images:first-child:after{content:"\a";white-space:pre}.mediumInsert .mediumInsert-maps{padding:10px;background:#ccc}.mediumInsert table.mediumInsert-table{border-top:2px solid #333;border-left:2px solid #333;width:90%;margin:30px auto}.mediumInsert table.mediumInsert-table td{border-right:2px solid #333;border-bottom:2px solid #333;padding:12px}.mediumInsert.small{max-width:33.33%;float:left;margin-right:30px;margin-bottom:20px}.mediumInsert.mediumInsert-first{margin-top:0}
@@ -0,0 +1,277 @@
1
+ /*!
2
+ * medium-editor-insert-plugin v0.3.2 - jQuery insert plugin for MediumEditor
3
+ *
4
+ * https://github.com/orthes/medium-editor-insert-plugin
5
+ *
6
+ * Copyright (c) 2014 Pavel Linkesch (http://linkesch.sk)
7
+ * Released under the MIT license
8
+ */
9
+
10
+ .mediumInsert {
11
+ margin: -1em 0; }
12
+ .mediumInsert figure {
13
+ margin: 0;
14
+ display: inline-block; }
15
+ .mediumInsert img {
16
+ max-width: 100%; }
17
+ .mediumInsert .mediumInsert-embeds {
18
+ text-align: center;
19
+ padding: 15px 0; }
20
+ .mediumInsert .mediumInsert-embeds iframe {
21
+ margin: 0px auto !important; }
22
+ .mediumInsert .mediumInsert-embeds div {
23
+ margin: 0px auto !important; }
24
+ .mediumInsert .mediumInsert-images {
25
+ margin-right: 10px;
26
+ width: 20%; }
27
+ .mediumInsert .mediumInsert-images img {
28
+ margin-top: 1em;
29
+ margin-bottom: 10px;
30
+ vertical-align: top; }
31
+ .mediumInsert .mediumInsert-images:first-child {
32
+ margin-right: 0;
33
+ width: 100%; }
34
+ .mediumInsert .mediumInsert-images:first-child:after {
35
+ content: "\a";
36
+ white-space: pre; }
37
+ .mediumInsert .mediumInsert-maps {
38
+ padding: 10px;
39
+ background: #ccc; }
40
+ .mediumInsert table.mediumInsert-table {
41
+ border-top: 2px solid #333;
42
+ border-left: 2px solid #333;
43
+ width: 90%;
44
+ margin: 30px auto; }
45
+ .mediumInsert table.mediumInsert-table td {
46
+ border-right: 2px solid #333;
47
+ border-bottom: 2px solid #333;
48
+ padding: 12px; }
49
+ .mediumInsert.small {
50
+ max-width: 33.33%;
51
+ float: left;
52
+ margin-right: 30px;
53
+ margin-bottom: 20px; }
54
+ .mediumInsert.mediumInsert-first {
55
+ margin-top: 0; }
56
+
57
+ .medium-editor-insert-plugin {
58
+ /* Prevent the text contents of draggable elements from being selectable. */ }
59
+ .medium-editor-insert-plugin .clearfix:before, .medium-editor-insert-plugin:before, .medium-editor-insert-plugin .clearfix:after, .medium-editor-insert-plugin:after {
60
+ content: " ";
61
+ /* 1 */
62
+ display: table;
63
+ /* 2 */ }
64
+ .medium-editor-insert-plugin .clearfix:after, .medium-editor-insert-plugin:after {
65
+ clear: both; }
66
+ .medium-editor-insert-plugin img {
67
+ max-width: 100%; }
68
+ .medium-editor-insert-plugin q, .medium-editor-insert-plugin blockquote {
69
+ display: block;
70
+ margin-top: 1em;
71
+ margin-bottom: 1em;
72
+ border-left: 5px solid #efefef;
73
+ padding-left: 20px;
74
+ margin-left: -25px; }
75
+ .medium-editor-insert-plugin [draggable] {
76
+ -webkit-user-select: none;
77
+ -moz-user-select: none;
78
+ -ms-user-select: none;
79
+ user-select: none; }
80
+ .medium-editor-insert-plugin[contenteditable], .medium-editor-insert-plugin [contenteditable] {
81
+ outline: 0px solid transparent; }
82
+ .medium-editor-insert-plugin[contenteditable]:focus, .medium-editor-insert-plugin [contenteditable]:focus {
83
+ outline: 0px solid transparent; }
84
+ .medium-editor-insert-plugin * {
85
+ -moz-box-sizing: content-box;
86
+ box-sizing: content-box; }
87
+ .medium-editor-insert-plugin p {
88
+ margin: 1em 0; }
89
+ .medium-editor-insert-plugin progress {
90
+ display: block;
91
+ margin: 1em auto; }
92
+ .medium-editor-insert-plugin .hide {
93
+ display: none !important; }
94
+ .medium-editor-insert-plugin.hover .mediumInsert-placeholder {
95
+ min-height: 14px;
96
+ border: 1px dashed #ddd;
97
+ margin-top: -1px;
98
+ margin-bottom: -1px; }
99
+
100
+ .medium-editor-insert-plugin.medium-editor-placeholder {
101
+ padding-bottom: 0 !important;
102
+ min-height: 58px; }
103
+
104
+ .medium-editor-insert-plugin.medium-editor-placeholder:after {
105
+ content: attr(data-placeholder) !important;
106
+ top: 1em; }
107
+
108
+ .mediumInsert {
109
+ position: relative;
110
+ margin-left: -40px !important;
111
+ min-height: 18px; }
112
+ .mediumInsert.small {
113
+ max-width: calc(33.33% + 40px); }
114
+ .mediumInsert .mediumInsert-buttonsShow {
115
+ opacity: 0;
116
+ -webkit-transform: scale(0);
117
+ -ms-transform: scale(0);
118
+ transform: scale(0);
119
+ -webkit-transition: all 0.08s cubic-bezier(0.2, 0.3, 0.25, 0.9);
120
+ transition: all 0.08s cubic-bezier(0.2, 0.3, 0.25, 0.9);
121
+ display: block;
122
+ width: 18px;
123
+ height: 18px;
124
+ margin-top: -5px;
125
+ border-radius: 10px;
126
+ border: 2px solid;
127
+ font-size: 18px;
128
+ line-height: 18px;
129
+ text-align: center;
130
+ text-decoration: none !important; }
131
+ .mediumInsert .mediumInsert-buttonsShow:after {
132
+ left: auto;
133
+ right: 100%;
134
+ top: 50%;
135
+ margin-top: -4px; }
136
+ .mediumInsert .mediumInsert-buttons {
137
+ position: absolute;
138
+ width: 40px;
139
+ bottom: 0;
140
+ left: 0;
141
+ color: #ddd;
142
+ font-size: 0.9em; }
143
+ .mediumInsert .mediumInsert-buttons a {
144
+ text-decoration: underline;
145
+ cursor: pointer; }
146
+ .mediumInsert .mediumInsert-buttons a.active {
147
+ font-weight: bold; }
148
+ .mediumInsert ul.mediumInsert-buttonsOptions {
149
+ margin: 0;
150
+ padding: 0;
151
+ list-style: none;
152
+ display: none;
153
+ position: absolute;
154
+ z-index: 2;
155
+ left: 40px;
156
+ top: -10px;
157
+ border-radius: 5px; }
158
+ .mediumInsert ul.mediumInsert-buttonsOptions button {
159
+ min-height: auto;
160
+ height: auto;
161
+ padding: 5px;
162
+ border-left: none;
163
+ float: none; }
164
+ .mediumInsert ul.mediumInsert-buttonsOptions button .fa {
165
+ font-size: 20px; }
166
+ .mediumInsert .mediumInsert-placeholder {
167
+ position: relative;
168
+ margin-left: 40px;
169
+ text-align: center; }
170
+ .mediumInsert .mediumInsert-images .mediumInsert-imageIcon {
171
+ position: absolute;
172
+ top: 1em;
173
+ width: 30px;
174
+ height: 30px;
175
+ background-color: #3b3b3b;
176
+ background-repeat: no-repeat;
177
+ background-position: center center;
178
+ cursor: pointer; }
179
+ .mediumInsert .mediumInsert-imageRemove {
180
+ right: 0;
181
+ background-image: url(/assets/remove.png); }
182
+ .mediumInsert .mediumInsert-imageResizeSmaller, .mediumInsert .mediumInsert-imageResizeBigger, .mediumInsert .mediumInsert-imageResizeBigger {
183
+ right: 31px;
184
+ background-image: url(/assets/resize-smaller.png); }
185
+ .mediumInsert .mediumInsert-imageResizeBigger {
186
+ background-image: url(/assets/resize-bigger.png); }
187
+ .mediumInsert .mediumInsert-imageLink, .mediumInsert .mediumInsert-imageUnlink {
188
+ right: 62px;
189
+ background-image: url(/assets/link.png); }
190
+ .mediumInsert .mediumInsert-imageUnlink {
191
+ background-image: url(/assets/unlink.png); }
192
+ .mediumInsert .mediumInsert-error {
193
+ background-color: #f2dede;
194
+ border: 1px solid #ebccd1;
195
+ color: #a94442;
196
+ padding: 15px; }
197
+ .mediumInsert .mediumInsert-embedsPlaceholder {
198
+ position: relative;
199
+ padding: 24px;
200
+ height: 160px;
201
+ text-align: center;
202
+ background-color: #fff; }
203
+ .mediumInsert .mediumInsert-embedsWire {
204
+ position: absolute;
205
+ left: 50%;
206
+ text-align: center; }
207
+ .mediumInsert .mediumInsert-imageLinkWire {
208
+ position: absolute;
209
+ top: -40px;
210
+ left: auto;
211
+ right: 0; }
212
+ .mediumInsert .mediumInsert-embedsBox {
213
+ position: relative;
214
+ left: -250px; }
215
+ .mediumInsert .mediumInsert-embedsBox input[type="text"] {
216
+ margin: 0 auto;
217
+ padding: 10px;
218
+ width: 330px;
219
+ border: solid 3px #ccc;
220
+ font-size: 1em;
221
+ font-family: Arial, sans-serif;
222
+ color: #aaa; }
223
+ .mediumInsert .mediumInsert-embedsBox input[type="text"]:focus {
224
+ border: solid 1px #EEA34A; }
225
+ .mediumInsert .mediumInsert-embedsBox input::-webkit-input-placeholder {
226
+ color: #aaa; }
227
+ .mediumInsert .mediumInsert-embedsBox button {
228
+ border: solid 1px #2fbbfc;
229
+ padding: 11px 30px;
230
+ font-family: Arial, sans-serif;
231
+ font-size: 1.2em;
232
+ color: #fff;
233
+ cursor: pointer;
234
+ background-color: #2fbbfc; }
235
+ .mediumInsert .mediumInsert-embedsImage {
236
+ font-size: 100px;
237
+ color: #999; }
238
+ .mediumInsert.hover .mediumInsert-placeholder {
239
+ background: #f0f0f0; }
240
+ .mediumInsert:hover .mediumInsert-buttonsShow {
241
+ -webkit-transform: scale(1);
242
+ -ms-transform: scale(1);
243
+ transform: scale(1);
244
+ opacity: 1; }
245
+ .mediumInsert .medium-editor-toolbar-form-anchor.mediumInsert-tableDemoBox {
246
+ background-color: #fff;
247
+ border: 2px solid #333;
248
+ display: inline-block;
249
+ z-index: 50;
250
+ position: relative; }
251
+ .mediumInsert .medium-editor-toolbar-form-anchor.mediumInsert-tableDemoBox label, .mediumInsert .medium-editor-toolbar-form-anchor.mediumInsert-tableDemoBox button {
252
+ color: #333;
253
+ text-transform: capitalize; }
254
+ .mediumInsert .medium-editor-toolbar-form-anchor.mediumInsert-tableDemoBox button.mediumInsert-tableReadyButton {
255
+ background-color: #fff;
256
+ border: 1px solid #333; }
257
+ .mediumInsert .medium-editor-toolbar-form-anchor.mediumInsert-tableDemoBox input.mediumInsert-tableCols, .mediumInsert .medium-editor-toolbar-form-anchor.mediumInsert-tableDemoBox input.mediumInsert-tableRows {
258
+ width: 50px;
259
+ display: block;
260
+ height: initial;
261
+ background-color: inherit;
262
+ border: 1px solid #333;
263
+ color: #333;
264
+ margin: 0 auto;
265
+ text-align: center; }
266
+ .mediumInsert .medium-editor-toolbar-form-anchor.mediumInsert-tableDemoBox table {
267
+ margin: 10px; }
268
+ .mediumInsert .medium-editor-toolbar-form-anchor.mediumInsert-tableDemoBox table td {
269
+ text-align: center; }
270
+ .mediumInsert .medium-editor-toolbar-form-anchor.mediumInsert-tableDemoBox table.mediumInsert-demoTable {
271
+ border-top: 2px solid #333;
272
+ border-left: 2px solid #333;
273
+ height: 100px;
274
+ width: 100px; }
275
+ .mediumInsert .medium-editor-toolbar-form-anchor.mediumInsert-tableDemoBox table.mediumInsert-demoTable td {
276
+ border-bottom: 2px solid #333;
277
+ border-right: 2px solid #333; }
@@ -0,0 +1,10 @@
1
+ /*!
2
+ * medium-editor-insert-plugin v0.3.2 - jQuery insert plugin for MediumEditor
3
+ *
4
+ * https://github.com/orthes/medium-editor-insert-plugin
5
+ *
6
+ * Copyright (c) 2014 Pavel Linkesch (http://linkesch.sk)
7
+ * Released under the MIT license
8
+ */
9
+
10
+ .mediumInsert{margin:-1em 0}.mediumInsert figure{margin:0;display:inline-block}.mediumInsert img{max-width:100%}.mediumInsert .mediumInsert-embeds{text-align:center;padding:15px 0}.mediumInsert .mediumInsert-embeds iframe,.mediumInsert .mediumInsert-embeds div{margin:0 auto!important}.mediumInsert .mediumInsert-images{margin-right:10px;width:20%}.mediumInsert .mediumInsert-images img{margin-top:1em;margin-bottom:10px;vertical-align:top}.mediumInsert .mediumInsert-images:first-child{margin-right:0;width:100%}.mediumInsert .mediumInsert-images:first-child:after{content:"\a";white-space:pre}.mediumInsert .mediumInsert-maps{padding:10px;background:#ccc}.mediumInsert table.mediumInsert-table{border-top:2px solid #333;border-left:2px solid #333;width:90%;margin:30px auto}.mediumInsert table.mediumInsert-table td{border-right:2px solid #333;border-bottom:2px solid #333;padding:12px}.mediumInsert.small{float:left;margin-right:30px;margin-bottom:20px}.mediumInsert.mediumInsert-first{margin-top:0}.medium-editor-insert-plugin .clearfix:before,.medium-editor-insert-plugin:before,.medium-editor-insert-plugin .clearfix:after,.medium-editor-insert-plugin:after{content:" ";display:table}.medium-editor-insert-plugin .clearfix:after,.medium-editor-insert-plugin:after{clear:both}.medium-editor-insert-plugin img{max-width:100%}.medium-editor-insert-plugin q,.medium-editor-insert-plugin blockquote{display:block;margin-top:1em;margin-bottom:1em;border-left:5px solid #efefef;padding-left:20px;margin-left:-25px}.medium-editor-insert-plugin [draggable]{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.medium-editor-insert-plugin[contenteditable],.medium-editor-insert-plugin [contenteditable]{outline:0 solid transparent}.medium-editor-insert-plugin[contenteditable]:focus,.medium-editor-insert-plugin [contenteditable]:focus{outline:0 solid transparent}.medium-editor-insert-plugin *{-moz-box-sizing:content-box;box-sizing:content-box}.medium-editor-insert-plugin p{margin:1em 0}.medium-editor-insert-plugin progress{display:block;margin:1em auto}.medium-editor-insert-plugin .hide{display:none!important}.medium-editor-insert-plugin.hover .mediumInsert-placeholder{min-height:14px;border:1px dashed #ddd;margin-top:-1px;margin-bottom:-1px}.medium-editor-insert-plugin.medium-editor-placeholder{padding-bottom:0!important;min-height:58px}.medium-editor-insert-plugin.medium-editor-placeholder:after{content:attr(data-placeholder)!important;top:1em}.mediumInsert{position:relative;margin-left:-40px!important;min-height:18px}.mediumInsert.small{max-width:calc(33.33% + 40px)}.mediumInsert .mediumInsert-buttonsShow{opacity:0;-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0);-webkit-transition:all .08s cubic-bezier(.2,.3,.25,.9);transition:all .08s cubic-bezier(.2,.3,.25,.9);display:block;width:18px;height:18px;margin-top:-5px;border-radius:10px;border:2px solid;font-size:18px;line-height:18px;text-align:center;text-decoration:none!important}.mediumInsert .mediumInsert-buttonsShow:after{left:auto;right:100%;top:50%;margin-top:-4px}.mediumInsert .mediumInsert-buttons{position:absolute;width:40px;bottom:0;left:0;color:#ddd;font-size:.9em}.mediumInsert .mediumInsert-buttons a{text-decoration:underline;cursor:pointer}.mediumInsert .mediumInsert-buttons a.active{font-weight:700}.mediumInsert ul.mediumInsert-buttonsOptions{margin:0;padding:0;list-style:none;display:none;position:absolute;z-index:2;left:40px;top:-10px;border-radius:5px}.mediumInsert ul.mediumInsert-buttonsOptions button{min-height:auto;height:auto;padding:5px;border-left:none;float:none}.mediumInsert ul.mediumInsert-buttonsOptions button .fa{font-size:20px}.mediumInsert .mediumInsert-placeholder{position:relative;margin-left:40px;text-align:center}.mediumInsert .mediumInsert-images .mediumInsert-imageIcon{position:absolute;top:1em;width:30px;height:30px;background-color:#3b3b3b;background-repeat:no-repeat;background-position:center center;cursor:pointer}.mediumInsert .mediumInsert-imageRemove{right:0;background-image:url(/assets/remove.png)}.mediumInsert .mediumInsert-imageResizeSmaller,.mediumInsert .mediumInsert-imageResizeBigger{right:31px;background-image:url(/assets/resize-smaller.png)}.mediumInsert .mediumInsert-imageResizeBigger{background-image:url(/assets/resize-bigger.png)}.mediumInsert .mediumInsert-imageLink,.mediumInsert .mediumInsert-imageUnlink{right:62px;background-image:url(/assets/link.png)}.mediumInsert .mediumInsert-imageUnlink{background-image:url(/assets/unlink.png)}.mediumInsert .mediumInsert-error{background-color:#f2dede;border:1px solid #ebccd1;color:#a94442;padding:15px}.mediumInsert .mediumInsert-embedsPlaceholder{position:relative;padding:24px;height:160px;text-align:center;background-color:#fff}.mediumInsert .mediumInsert-embedsWire{position:absolute;left:50%;text-align:center}.mediumInsert .mediumInsert-imageLinkWire{position:absolute;top:-40px;left:auto;right:0}.mediumInsert .mediumInsert-embedsBox{position:relative;left:-250px}.mediumInsert .mediumInsert-embedsBox input[type="text"]{margin:0 auto;padding:10px;width:330px;border:solid 3px #ccc;font-size:1em;font-family:Arial,sans-serif;color:#aaa}.mediumInsert .mediumInsert-embedsBox input[type="text"]:focus{border:solid 1px #EEA34A}.mediumInsert .mediumInsert-embedsBox input::-webkit-input-placeholder{color:#aaa}.mediumInsert .mediumInsert-embedsBox button{border:solid 1px #2fbbfc;padding:11px 30px;font-family:Arial,sans-serif;font-size:1.2em;color:#fff;cursor:pointer;background-color:#2fbbfc}.mediumInsert .mediumInsert-embedsImage{font-size:100px;color:#999}.mediumInsert.hover .mediumInsert-placeholder{background:#f0f0f0}.mediumInsert:hover .mediumInsert-buttonsShow{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1);opacity:1}.mediumInsert .medium-editor-toolbar-form-anchor.mediumInsert-tableDemoBox{background-color:#fff;border:2px solid #333;display:inline-block;z-index:50;position:relative}.mediumInsert .medium-editor-toolbar-form-anchor.mediumInsert-tableDemoBox label,.mediumInsert .medium-editor-toolbar-form-anchor.mediumInsert-tableDemoBox button{color:#333;text-transform:capitalize}.mediumInsert .medium-editor-toolbar-form-anchor.mediumInsert-tableDemoBox button.mediumInsert-tableReadyButton{background-color:#fff;border:1px solid #333}.mediumInsert .medium-editor-toolbar-form-anchor.mediumInsert-tableDemoBox input.mediumInsert-tableCols,.mediumInsert .medium-editor-toolbar-form-anchor.mediumInsert-tableDemoBox input.mediumInsert-tableRows{width:50px;display:block;height:initial;background-color:inherit;border:1px solid #333;color:#333;margin:0 auto;text-align:center}.mediumInsert .medium-editor-toolbar-form-anchor.mediumInsert-tableDemoBox table{margin:10px}.mediumInsert .medium-editor-toolbar-form-anchor.mediumInsert-tableDemoBox table td{text-align:center}.mediumInsert .medium-editor-toolbar-form-anchor.mediumInsert-tableDemoBox table.mediumInsert-demoTable{border-top:2px solid #333;border-left:2px solid #333;height:100px;width:100px}.mediumInsert .medium-editor-toolbar-form-anchor.mediumInsert-tableDemoBox table.mediumInsert-demoTable td{border-bottom:2px solid #333;border-right:2px solid #333}
metadata ADDED
@@ -0,0 +1,791 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: proclaim
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Kyle Fazzari
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-01-03 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '4.2'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '4.2'
27
+ - !ruby/object:Gem::Dependency
28
+ name: coffee-rails
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '4.1'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '4.1'
41
+ - !ruby/object:Gem::Dependency
42
+ name: sass-rails
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '5.0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '5.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: jquery-rails
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '4.0'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '4.0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: nokogiri
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '1.6'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '1.6'
83
+ - !ruby/object:Gem::Dependency
84
+ name: premailer
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '1.8'
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '1.8'
97
+ - !ruby/object:Gem::Dependency
98
+ name: closure_tree
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - "~>"
102
+ - !ruby/object:Gem::Version
103
+ version: '5.2'
104
+ type: :runtime
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - "~>"
109
+ - !ruby/object:Gem::Version
110
+ version: '5.2'
111
+ - !ruby/object:Gem::Dependency
112
+ name: font-awesome-rails
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - "~>"
116
+ - !ruby/object:Gem::Version
117
+ version: '4.2'
118
+ type: :runtime
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - "~>"
123
+ - !ruby/object:Gem::Version
124
+ version: '4.2'
125
+ - !ruby/object:Gem::Dependency
126
+ name: medium-editor-rails
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - "~>"
130
+ - !ruby/object:Gem::Version
131
+ version: '0.13'
132
+ type: :runtime
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - "~>"
137
+ - !ruby/object:Gem::Version
138
+ version: '0.13'
139
+ - !ruby/object:Gem::Dependency
140
+ name: carrierwave
141
+ requirement: !ruby/object:Gem::Requirement
142
+ requirements:
143
+ - - "~>"
144
+ - !ruby/object:Gem::Version
145
+ version: '0.10'
146
+ type: :runtime
147
+ prerelease: false
148
+ version_requirements: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - "~>"
151
+ - !ruby/object:Gem::Version
152
+ version: '0.10'
153
+ - !ruby/object:Gem::Dependency
154
+ name: aasm
155
+ requirement: !ruby/object:Gem::Requirement
156
+ requirements:
157
+ - - "~>"
158
+ - !ruby/object:Gem::Version
159
+ version: '4.0'
160
+ type: :runtime
161
+ prerelease: false
162
+ version_requirements: !ruby/object:Gem::Requirement
163
+ requirements:
164
+ - - "~>"
165
+ - !ruby/object:Gem::Version
166
+ version: '4.0'
167
+ - !ruby/object:Gem::Dependency
168
+ name: rails-timeago
169
+ requirement: !ruby/object:Gem::Requirement
170
+ requirements:
171
+ - - "~>"
172
+ - !ruby/object:Gem::Version
173
+ version: '2.11'
174
+ type: :runtime
175
+ prerelease: false
176
+ version_requirements: !ruby/object:Gem::Requirement
177
+ requirements:
178
+ - - "~>"
179
+ - !ruby/object:Gem::Version
180
+ version: '2.11'
181
+ - !ruby/object:Gem::Dependency
182
+ name: pundit
183
+ requirement: !ruby/object:Gem::Requirement
184
+ requirements:
185
+ - - "~>"
186
+ - !ruby/object:Gem::Version
187
+ version: '0.3'
188
+ type: :runtime
189
+ prerelease: false
190
+ version_requirements: !ruby/object:Gem::Requirement
191
+ requirements:
192
+ - - "~>"
193
+ - !ruby/object:Gem::Version
194
+ version: '0.3'
195
+ - !ruby/object:Gem::Dependency
196
+ name: sqlite3
197
+ requirement: !ruby/object:Gem::Requirement
198
+ requirements:
199
+ - - "~>"
200
+ - !ruby/object:Gem::Version
201
+ version: '1.3'
202
+ type: :development
203
+ prerelease: false
204
+ version_requirements: !ruby/object:Gem::Requirement
205
+ requirements:
206
+ - - "~>"
207
+ - !ruby/object:Gem::Version
208
+ version: '1.3'
209
+ - !ruby/object:Gem::Dependency
210
+ name: factory_girl_rails
211
+ requirement: !ruby/object:Gem::Requirement
212
+ requirements:
213
+ - - "~>"
214
+ - !ruby/object:Gem::Version
215
+ version: '4.5'
216
+ type: :development
217
+ prerelease: false
218
+ version_requirements: !ruby/object:Gem::Requirement
219
+ requirements:
220
+ - - "~>"
221
+ - !ruby/object:Gem::Version
222
+ version: '4.5'
223
+ - !ruby/object:Gem::Dependency
224
+ name: mocha
225
+ requirement: !ruby/object:Gem::Requirement
226
+ requirements:
227
+ - - "~>"
228
+ - !ruby/object:Gem::Version
229
+ version: '1.1'
230
+ type: :development
231
+ prerelease: false
232
+ version_requirements: !ruby/object:Gem::Requirement
233
+ requirements:
234
+ - - "~>"
235
+ - !ruby/object:Gem::Version
236
+ version: '1.1'
237
+ - !ruby/object:Gem::Dependency
238
+ name: annotate
239
+ requirement: !ruby/object:Gem::Requirement
240
+ requirements:
241
+ - - "~>"
242
+ - !ruby/object:Gem::Version
243
+ version: '2.6'
244
+ type: :development
245
+ prerelease: false
246
+ version_requirements: !ruby/object:Gem::Requirement
247
+ requirements:
248
+ - - "~>"
249
+ - !ruby/object:Gem::Version
250
+ version: '2.6'
251
+ - !ruby/object:Gem::Dependency
252
+ name: capybara
253
+ requirement: !ruby/object:Gem::Requirement
254
+ requirements:
255
+ - - "~>"
256
+ - !ruby/object:Gem::Version
257
+ version: '2.4'
258
+ type: :development
259
+ prerelease: false
260
+ version_requirements: !ruby/object:Gem::Requirement
261
+ requirements:
262
+ - - "~>"
263
+ - !ruby/object:Gem::Version
264
+ version: '2.4'
265
+ - !ruby/object:Gem::Dependency
266
+ name: selenium-webdriver
267
+ requirement: !ruby/object:Gem::Requirement
268
+ requirements:
269
+ - - "~>"
270
+ - !ruby/object:Gem::Version
271
+ version: '2.44'
272
+ type: :development
273
+ prerelease: false
274
+ version_requirements: !ruby/object:Gem::Requirement
275
+ requirements:
276
+ - - "~>"
277
+ - !ruby/object:Gem::Version
278
+ version: '2.44'
279
+ - !ruby/object:Gem::Dependency
280
+ name: database_cleaner
281
+ requirement: !ruby/object:Gem::Requirement
282
+ requirements:
283
+ - - "~>"
284
+ - !ruby/object:Gem::Version
285
+ version: '1.3'
286
+ type: :development
287
+ prerelease: false
288
+ version_requirements: !ruby/object:Gem::Requirement
289
+ requirements:
290
+ - - "~>"
291
+ - !ruby/object:Gem::Version
292
+ version: '1.3'
293
+ - !ruby/object:Gem::Dependency
294
+ name: faker
295
+ requirement: !ruby/object:Gem::Requirement
296
+ requirements:
297
+ - - "~>"
298
+ - !ruby/object:Gem::Version
299
+ version: '1.4'
300
+ type: :development
301
+ prerelease: false
302
+ version_requirements: !ruby/object:Gem::Requirement
303
+ requirements:
304
+ - - "~>"
305
+ - !ruby/object:Gem::Version
306
+ version: '1.4'
307
+ - !ruby/object:Gem::Dependency
308
+ name: test_after_commit
309
+ requirement: !ruby/object:Gem::Requirement
310
+ requirements:
311
+ - - "~>"
312
+ - !ruby/object:Gem::Version
313
+ version: '0.4'
314
+ type: :development
315
+ prerelease: false
316
+ version_requirements: !ruby/object:Gem::Requirement
317
+ requirements:
318
+ - - "~>"
319
+ - !ruby/object:Gem::Version
320
+ version: '0.4'
321
+ description: "\t\tMost Rails blogging tools include everything you could ever want,\n\t\tincluding
322
+ things you don't. Proclaim tries to provide the simplest (yet\n\t\tbeautiful) implementation
323
+ of a blog via a mountable engine; if more\n\t\tfunctionality is desired, it can
324
+ easily be combined with other engines.\n"
325
+ email:
326
+ - proclaim@status.e4ward.com
327
+ executables: []
328
+ extensions: []
329
+ extra_rdoc_files: []
330
+ files:
331
+ - CHANGELOG
332
+ - Gemfile
333
+ - LICENSE
334
+ - README.md
335
+ - Rakefile
336
+ - VERSION
337
+ - app/assets/images/ajax_loader.gif
338
+ - app/assets/javascripts/proclaim.js
339
+ - app/assets/javascripts/proclaim/comments_handler.js.coffee
340
+ - app/assets/javascripts/proclaim/editor.js.coffee
341
+ - app/assets/javascripts/proclaim/images.js.coffee
342
+ - app/assets/javascripts/proclaim/subscriptions.js.coffee
343
+ - app/assets/stylesheets/proclaim.css.scss
344
+ - app/assets/stylesheets/proclaim/comments.css.scss
345
+ - app/assets/stylesheets/proclaim/images.scss
346
+ - app/assets/stylesheets/proclaim/posts.css.scss
347
+ - app/assets/stylesheets/proclaim/subscriptions.css.scss
348
+ - app/controllers/proclaim/application_controller.rb
349
+ - app/controllers/proclaim/comments_controller.rb
350
+ - app/controllers/proclaim/images_controller.rb
351
+ - app/controllers/proclaim/posts_controller.rb
352
+ - app/controllers/proclaim/subscriptions_controller.rb
353
+ - app/helpers/proclaim/application_helper.rb
354
+ - app/helpers/proclaim/comments_helper.rb
355
+ - app/helpers/proclaim/images_helper.rb
356
+ - app/helpers/proclaim/posts_helper.rb
357
+ - app/helpers/proclaim/subscriptions_helper.rb
358
+ - app/mailers/proclaim/subscription_mailer.rb
359
+ - app/models/proclaim/comment.rb
360
+ - app/models/proclaim/image.rb
361
+ - app/models/proclaim/post.rb
362
+ - app/models/proclaim/subscription.rb
363
+ - app/policies/application_policy.rb
364
+ - app/policies/proclaim/comment_policy.rb
365
+ - app/policies/proclaim/image_policy.rb
366
+ - app/policies/proclaim/post_policy.rb
367
+ - app/policies/proclaim/subscription_policy.rb
368
+ - app/uploaders/proclaim/image_uploader.rb
369
+ - app/views/layouts/proclaim/subscription_mailer.html.erb
370
+ - app/views/proclaim/comments/_comment.html.erb
371
+ - app/views/proclaim/comments/_form.html.erb
372
+ - app/views/proclaim/posts/_form.html.erb
373
+ - app/views/proclaim/posts/edit.html.erb
374
+ - app/views/proclaim/posts/index.html.erb
375
+ - app/views/proclaim/posts/new.html.erb
376
+ - app/views/proclaim/posts/show.html.erb
377
+ - app/views/proclaim/subscription_mailer/new_comment_notification_email.html.erb
378
+ - app/views/proclaim/subscription_mailer/new_post_notification_email.html.erb
379
+ - app/views/proclaim/subscription_mailer/welcome_email.html.erb
380
+ - app/views/proclaim/subscriptions/_form.html.erb
381
+ - app/views/proclaim/subscriptions/new.html.erb
382
+ - app/views/proclaim/subscriptions/subscribed.html.erb
383
+ - app/views/proclaim/subscriptions/unsubscribe.html.erb
384
+ - app/views/proclaim/subscriptions/unsubscribed.html.erb
385
+ - config/routes.rb
386
+ - db/migrate/20141108222616_create_proclaim_posts.rb
387
+ - db/migrate/20141114235359_create_proclaim_comments.rb
388
+ - db/migrate/20141115022230_create_proclaim_comment_hierarchies.rb
389
+ - db/migrate/20141210234057_create_proclaim_subscriptions.rb
390
+ - db/migrate/20141222224905_create_proclaim_images.rb
391
+ - lib/generators/proclaim/install_generator.rb
392
+ - lib/generators/proclaim/templates/README
393
+ - lib/generators/proclaim/templates/initialize_proclaim.rb
394
+ - lib/generators/proclaim/views_generator.rb
395
+ - lib/proclaim.rb
396
+ - lib/proclaim/engine.rb
397
+ - lib/proclaim/version.rb
398
+ - lib/tasks/proclaim_tasks.rake
399
+ - proclaim.gemspec
400
+ - test/controllers/proclaim/comments_controller_test.rb
401
+ - test/controllers/proclaim/images_controller_test.rb
402
+ - test/controllers/proclaim/posts_controller_test.rb
403
+ - test/controllers/proclaim/subscriptions_controller_test.rb
404
+ - test/dummy/README.rdoc
405
+ - test/dummy/Rakefile
406
+ - test/dummy/app/assets/javascripts/application.js
407
+ - test/dummy/app/assets/stylesheets/application.css
408
+ - test/dummy/app/controllers/application_controller.rb
409
+ - test/dummy/app/helpers/application_helper.rb
410
+ - test/dummy/app/models/user.rb
411
+ - test/dummy/app/views/layouts/application.html.erb
412
+ - test/dummy/bin/bundle
413
+ - test/dummy/bin/rails
414
+ - test/dummy/bin/rake
415
+ - test/dummy/config.ru
416
+ - test/dummy/config/application.rb
417
+ - test/dummy/config/boot.rb
418
+ - test/dummy/config/database.yml
419
+ - test/dummy/config/environment.rb
420
+ - test/dummy/config/environments/development.rb
421
+ - test/dummy/config/environments/production.rb
422
+ - test/dummy/config/environments/test.rb
423
+ - test/dummy/config/initializers/assets.rb
424
+ - test/dummy/config/initializers/backtrace_silencers.rb
425
+ - test/dummy/config/initializers/cookies_serializer.rb
426
+ - test/dummy/config/initializers/filter_parameter_logging.rb
427
+ - test/dummy/config/initializers/inflections.rb
428
+ - test/dummy/config/initializers/mime_types.rb
429
+ - test/dummy/config/initializers/session_store.rb
430
+ - test/dummy/config/initializers/wrap_parameters.rb
431
+ - test/dummy/config/locales/en.yml
432
+ - test/dummy/config/routes.rb
433
+ - test/dummy/config/secrets.yml
434
+ - test/dummy/db/migrate/20141117214323_create_users.rb
435
+ - test/dummy/db/schema.rb
436
+ - test/dummy/log/development.log
437
+ - test/dummy/log/test.log
438
+ - test/dummy/public/404.html
439
+ - test/dummy/public/422.html
440
+ - test/dummy/public/500.html
441
+ - test/dummy/public/favicon.ico
442
+ - test/dummy/tmp/cache/assets/test/sass/0b69f7cc441d56def3a51688e6a7a8474dc476d1/proclaim.css.scssc
443
+ - test/dummy/tmp/cache/assets/test/sass/12a97df611d5fb0e395afda829edf8b9372acde7/comments.css.scssc
444
+ - test/dummy/tmp/cache/assets/test/sass/12a97df611d5fb0e395afda829edf8b9372acde7/images.scssc
445
+ - test/dummy/tmp/cache/assets/test/sass/12a97df611d5fb0e395afda829edf8b9372acde7/posts.css.scssc
446
+ - test/dummy/tmp/cache/assets/test/sass/12a97df611d5fb0e395afda829edf8b9372acde7/subscriptions.css.scssc
447
+ - test/dummy/tmp/cache/assets/test/sprockets/04adcece63bc645379e6de797e7998f8
448
+ - test/dummy/tmp/cache/assets/test/sprockets/06620fc450f0a9b4a482a7bc08387711
449
+ - test/dummy/tmp/cache/assets/test/sprockets/076dd0d567a92c34163b3b98af1d48ba
450
+ - test/dummy/tmp/cache/assets/test/sprockets/09fc2eadf6d6062b2cc135a44e4e73db
451
+ - test/dummy/tmp/cache/assets/test/sprockets/09fe8c62e8ae706e01058b4b4d056c8e
452
+ - test/dummy/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705
453
+ - test/dummy/tmp/cache/assets/test/sprockets/142fd040033525acb73ad2ccf1406aea
454
+ - test/dummy/tmp/cache/assets/test/sprockets/1762aeeaf38da3b8d989a5b66b088004
455
+ - test/dummy/tmp/cache/assets/test/sprockets/194ac1a695334e303516614579b3926d
456
+ - test/dummy/tmp/cache/assets/test/sprockets/197ea008934db3e7ea8045302d206b92
457
+ - test/dummy/tmp/cache/assets/test/sprockets/19eba2635fec0895379c3e38f81ada84
458
+ - test/dummy/tmp/cache/assets/test/sprockets/1c2ebe72fcd7ff1379a561552ca30f85
459
+ - test/dummy/tmp/cache/assets/test/sprockets/1f42c80faacb651f670ec2b0998e49dc
460
+ - test/dummy/tmp/cache/assets/test/sprockets/2243230e778a749ecbf0415a52e75be0
461
+ - test/dummy/tmp/cache/assets/test/sprockets/23ad87e715c70312aa61dde4fbb4bfe1
462
+ - test/dummy/tmp/cache/assets/test/sprockets/245b8735db4ea90bcaa91c011a1f447e
463
+ - test/dummy/tmp/cache/assets/test/sprockets/26a42dac0cec64483f4126d2de4b0c9e
464
+ - test/dummy/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af
465
+ - test/dummy/tmp/cache/assets/test/sprockets/30151c8f6d93717f06fa12774612ddf4
466
+ - test/dummy/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953
467
+ - test/dummy/tmp/cache/assets/test/sprockets/3c623d200214a5334aaf170537db087f
468
+ - test/dummy/tmp/cache/assets/test/sprockets/3ec36650a50759fd4b75794cb253936f
469
+ - test/dummy/tmp/cache/assets/test/sprockets/40431cdcc10c75ba1f275ecfe42623d3
470
+ - test/dummy/tmp/cache/assets/test/sprockets/4226218a4b06608115b21063353370ea
471
+ - test/dummy/tmp/cache/assets/test/sprockets/437901953eb8707af6c27ca59cf65d91
472
+ - test/dummy/tmp/cache/assets/test/sprockets/461885b8ad31ef6a94c9a4f2e332b7eb
473
+ - test/dummy/tmp/cache/assets/test/sprockets/4792f46317cda92ccd5b278ec61f9ac5
474
+ - test/dummy/tmp/cache/assets/test/sprockets/4dcb3434b91b1c62f897a1741c6d398b
475
+ - test/dummy/tmp/cache/assets/test/sprockets/5101cda93cf70f0fc0837713be587780
476
+ - test/dummy/tmp/cache/assets/test/sprockets/52d8c61de0703e0d7cf97d0f7b0cca7a
477
+ - test/dummy/tmp/cache/assets/test/sprockets/57f3d19a9bd484ac68c46f962a8684b2
478
+ - test/dummy/tmp/cache/assets/test/sprockets/587e7c1332c8d8b69746dd85164e2cef
479
+ - test/dummy/tmp/cache/assets/test/sprockets/5934d5d0d1ac6657842708e85c73cf51
480
+ - test/dummy/tmp/cache/assets/test/sprockets/5af081799d7da2f04ead6a516c6015ad
481
+ - test/dummy/tmp/cache/assets/test/sprockets/69ee5af8d9a655898a67bc538ca1c7e7
482
+ - test/dummy/tmp/cache/assets/test/sprockets/6d1c56259648b0383bc438c875a448c3
483
+ - test/dummy/tmp/cache/assets/test/sprockets/6e7de35055967df848aa490830043e51
484
+ - test/dummy/tmp/cache/assets/test/sprockets/70bc59560ee544af7bb2f727247db307
485
+ - test/dummy/tmp/cache/assets/test/sprockets/728cb566999910549092ff0a98e2853b
486
+ - test/dummy/tmp/cache/assets/test/sprockets/72b5f0d35e9d69b744a156edad98f983
487
+ - test/dummy/tmp/cache/assets/test/sprockets/72ffa34d552e3fd02f28a6f845a5ac5b
488
+ - test/dummy/tmp/cache/assets/test/sprockets/7369d324e84bc872c42b3e717ff4ad6c
489
+ - test/dummy/tmp/cache/assets/test/sprockets/749a8b0e45b11df748a256dd04ceb1f7
490
+ - test/dummy/tmp/cache/assets/test/sprockets/77fb9f62552d9b786f9407ef11cc9a09
491
+ - test/dummy/tmp/cache/assets/test/sprockets/797823842565e01fc989ad8df0bd4254
492
+ - test/dummy/tmp/cache/assets/test/sprockets/7c139afa2296ac17483520109aecd449
493
+ - test/dummy/tmp/cache/assets/test/sprockets/7fb99e2b35af65c4f58bfb92dd4185b4
494
+ - test/dummy/tmp/cache/assets/test/sprockets/819de31c63b704f9ddf4865587a91d41
495
+ - test/dummy/tmp/cache/assets/test/sprockets/8604b464bf846e5223da37ef2f29b524
496
+ - test/dummy/tmp/cache/assets/test/sprockets/88fc815613b473e98e9307b1d423918d
497
+ - test/dummy/tmp/cache/assets/test/sprockets/8bc4341aa4060b8646e8134722cf3b11
498
+ - test/dummy/tmp/cache/assets/test/sprockets/8cf8fd5ff8eae12211a88f971af30236
499
+ - test/dummy/tmp/cache/assets/test/sprockets/8da3b4a9f17aafff49eb263bdb758f44
500
+ - test/dummy/tmp/cache/assets/test/sprockets/9168e513bae02f041dbb806d6dbe94ac
501
+ - test/dummy/tmp/cache/assets/test/sprockets/920c1322be1212a54b7c4f2751d5e7bf
502
+ - test/dummy/tmp/cache/assets/test/sprockets/92205679a36afd387a2ba5c585a5a62c
503
+ - test/dummy/tmp/cache/assets/test/sprockets/940566ebcae2d4e5c56a881ab66f2cf0
504
+ - test/dummy/tmp/cache/assets/test/sprockets/976967e07e2944a7ecc7403667f1f96b
505
+ - test/dummy/tmp/cache/assets/test/sprockets/99bdde70cefa71745279232be575f14e
506
+ - test/dummy/tmp/cache/assets/test/sprockets/9a8e402a7e32063e46647403b43553a5
507
+ - test/dummy/tmp/cache/assets/test/sprockets/9b09ad72f8cc33503878b01c713d92d0
508
+ - test/dummy/tmp/cache/assets/test/sprockets/a20dbdfebf37fe50e832a6273c972553
509
+ - test/dummy/tmp/cache/assets/test/sprockets/a3c6189fad6cb9ae955f6d5a43a61d51
510
+ - test/dummy/tmp/cache/assets/test/sprockets/abb54e11ff057a3e22a5a97d27cc4fa3
511
+ - test/dummy/tmp/cache/assets/test/sprockets/ad18e3875541d4298b1df133d494b93f
512
+ - test/dummy/tmp/cache/assets/test/sprockets/b9b7c575c22943d49734d52381c5ee16
513
+ - test/dummy/tmp/cache/assets/test/sprockets/ba269a52f100d3d6cffda81e82e1ed49
514
+ - test/dummy/tmp/cache/assets/test/sprockets/bc7a0846b4881b0832d41de2b1724dba
515
+ - test/dummy/tmp/cache/assets/test/sprockets/bcb2df87f9611d3cc3ef8a5575e54fb8
516
+ - test/dummy/tmp/cache/assets/test/sprockets/bcf33791d3286af3ba2cdf6a6756c89e
517
+ - test/dummy/tmp/cache/assets/test/sprockets/be32d0a530ce861537d6abfa41333df9
518
+ - test/dummy/tmp/cache/assets/test/sprockets/c8270a6f07dccc5f00e6b2b43f10efd2
519
+ - test/dummy/tmp/cache/assets/test/sprockets/cd82cd410a50bffcfb6e21e3c49a85c9
520
+ - test/dummy/tmp/cache/assets/test/sprockets/ce4ccaa06bdee6426486224bc7e54187
521
+ - test/dummy/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994
522
+ - test/dummy/tmp/cache/assets/test/sprockets/d0bdb8592e4eed80aa2341e37f20dbc9
523
+ - test/dummy/tmp/cache/assets/test/sprockets/d4b784b16fa1b1dfcca6590689a8c157
524
+ - test/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6
525
+ - test/dummy/tmp/cache/assets/test/sprockets/d968bd38a69bbf5c0065e2df3d30cfd3
526
+ - test/dummy/tmp/cache/assets/test/sprockets/daa4d4b8a5ce46d6c4ecf031e0c61cfe
527
+ - test/dummy/tmp/cache/assets/test/sprockets/dc2effd195334219a7e4acfdc7ec7974
528
+ - test/dummy/tmp/cache/assets/test/sprockets/de36ab6c3b1a9b62a586d98373dd569c
529
+ - test/dummy/tmp/cache/assets/test/sprockets/e3aec457d5c753090d6521f2bb2d91b6
530
+ - test/dummy/tmp/cache/assets/test/sprockets/e8d6158b1fed2f574242b55856a3953d
531
+ - test/dummy/tmp/cache/assets/test/sprockets/ea82f6aececcf81eef3e2e15a9225e66
532
+ - test/dummy/tmp/cache/assets/test/sprockets/ed9f5c17f71ec75de10b1bb029ebd7a2
533
+ - test/dummy/tmp/cache/assets/test/sprockets/f2984adaeaa5322e3a040705c6d40622
534
+ - test/dummy/tmp/cache/assets/test/sprockets/f62fd0cf9f5e7e077ec9c4daeccb06ae
535
+ - test/dummy/tmp/cache/assets/test/sprockets/f78ea69bdbba5738c052e9eb04e6c208
536
+ - test/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655
537
+ - test/dummy/tmp/cache/assets/test/sprockets/f864e553f706456dbdf168319970ec2e
538
+ - test/dummy/tmp/cache/assets/test/sprockets/fb0f641bfcbb0101c040da9ff736447b
539
+ - test/dummy/tmp/cache/assets/test/sprockets/fe426a44cf23cf82032091cbffff898c
540
+ - test/dummy/tmp/cache/assets/test/sprockets/ff732ea47a86c449582b2a81ef2930da
541
+ - test/dummy/tmp/cache/assets/test/sprockets/ffc4980851addaacf12abeebfa63e07f
542
+ - test/dummy/tmp/generators/config/initializers/proclaim.rb
543
+ - test/factories/proclaim/comment.rb
544
+ - test/factories/proclaim/image.rb
545
+ - test/factories/proclaim/post.rb
546
+ - test/factories/proclaim/subscription.rb
547
+ - test/factories/user.rb
548
+ - test/helpers/proclaim/comments_helper_test.rb
549
+ - test/helpers/proclaim/posts_helper_test.rb
550
+ - test/helpers/proclaim/subscriptions_helper_test.rb
551
+ - test/integration/with_javascript/comment_test.rb
552
+ - test/integration/with_javascript/post_form_test.rb
553
+ - test/integration/with_javascript/post_subscription_test.rb
554
+ - test/integration/without_javascript/blog_subscription_test.rb
555
+ - test/integration/without_javascript/post_test.rb
556
+ - test/integration/without_javascript/subscription_email_test.rb
557
+ - test/integration/without_javascript/unsubscribe_test.rb
558
+ - test/mailers/previews/proclaim/subscription_mailer_preview.rb
559
+ - test/mailers/proclaim/subscription_mailer_test.rb
560
+ - test/models/proclaim/comment_test.rb
561
+ - test/models/proclaim/image_test.rb
562
+ - test/models/proclaim/post_test.rb
563
+ - test/models/proclaim/subscription_test.rb
564
+ - test/policies/proclaim/comment_policy_test.rb
565
+ - test/policies/proclaim/post_policy_test.rb
566
+ - test/policies/proclaim/subscription_policy_test.rb
567
+ - test/proclaim_test.rb
568
+ - test/support/images/test.jpg
569
+ - test/support/pages/posts/edit_page.rb
570
+ - test/support/pages/posts/show_page.rb
571
+ - test/support/wait_for_ajax.rb
572
+ - test/test_helper.rb
573
+ - vendor/assets/images/link.png
574
+ - vendor/assets/images/remove.png
575
+ - vendor/assets/images/resize-bigger.png
576
+ - vendor/assets/images/resize-smaller.png
577
+ - vendor/assets/images/unlink.png
578
+ - vendor/assets/javascripts/addons/medium-editor-insert-embeds.js
579
+ - vendor/assets/javascripts/addons/medium-editor-insert-embeds.min.js
580
+ - vendor/assets/javascripts/addons/medium-editor-insert-images.js
581
+ - vendor/assets/javascripts/addons/medium-editor-insert-images.min.js
582
+ - vendor/assets/javascripts/addons/medium-editor-insert-maps.js
583
+ - vendor/assets/javascripts/addons/medium-editor-insert-maps.min.js
584
+ - vendor/assets/javascripts/addons/medium-editor-insert-plugin.js
585
+ - vendor/assets/javascripts/addons/medium-editor-insert-plugin.min.js
586
+ - vendor/assets/javascripts/addons/medium-editor-insert-tables.js
587
+ - vendor/assets/javascripts/addons/medium-editor-insert-tables.min.js
588
+ - vendor/assets/javascripts/medium-editor-insert-plugin.all.js
589
+ - vendor/assets/javascripts/medium-editor-insert-plugin.all.min.js
590
+ - vendor/assets/stylesheets/medium-editor-insert-plugin-frontend.css
591
+ - vendor/assets/stylesheets/medium-editor-insert-plugin-frontend.min.css
592
+ - vendor/assets/stylesheets/medium-editor-insert-plugin.css
593
+ - vendor/assets/stylesheets/medium-editor-insert-plugin.min.css
594
+ homepage: https://github.com/kyle-f/proclaim
595
+ licenses:
596
+ - GPLv3
597
+ metadata: {}
598
+ post_install_message:
599
+ rdoc_options: []
600
+ require_paths:
601
+ - lib
602
+ required_ruby_version: !ruby/object:Gem::Requirement
603
+ requirements:
604
+ - - ">="
605
+ - !ruby/object:Gem::Version
606
+ version: '0'
607
+ required_rubygems_version: !ruby/object:Gem::Requirement
608
+ requirements:
609
+ - - ">="
610
+ - !ruby/object:Gem::Version
611
+ version: '0'
612
+ requirements: []
613
+ rubyforge_project:
614
+ rubygems_version: 2.4.3
615
+ signing_key:
616
+ specification_version: 4
617
+ summary: A Rails blogging engine that simplifies your life.
618
+ test_files:
619
+ - test/policies/proclaim/post_policy_test.rb
620
+ - test/policies/proclaim/subscription_policy_test.rb
621
+ - test/policies/proclaim/comment_policy_test.rb
622
+ - test/helpers/proclaim/comments_helper_test.rb
623
+ - test/helpers/proclaim/subscriptions_helper_test.rb
624
+ - test/helpers/proclaim/posts_helper_test.rb
625
+ - test/integration/without_javascript/blog_subscription_test.rb
626
+ - test/integration/without_javascript/unsubscribe_test.rb
627
+ - test/integration/without_javascript/post_test.rb
628
+ - test/integration/without_javascript/subscription_email_test.rb
629
+ - test/integration/with_javascript/comment_test.rb
630
+ - test/integration/with_javascript/post_form_test.rb
631
+ - test/integration/with_javascript/post_subscription_test.rb
632
+ - test/mailers/proclaim/subscription_mailer_test.rb
633
+ - test/mailers/previews/proclaim/subscription_mailer_preview.rb
634
+ - test/proclaim_test.rb
635
+ - test/support/pages/posts/edit_page.rb
636
+ - test/support/pages/posts/show_page.rb
637
+ - test/support/images/test.jpg
638
+ - test/support/wait_for_ajax.rb
639
+ - test/test_helper.rb
640
+ - test/models/proclaim/comment_test.rb
641
+ - test/models/proclaim/subscription_test.rb
642
+ - test/models/proclaim/post_test.rb
643
+ - test/models/proclaim/image_test.rb
644
+ - test/controllers/proclaim/images_controller_test.rb
645
+ - test/controllers/proclaim/comments_controller_test.rb
646
+ - test/controllers/proclaim/posts_controller_test.rb
647
+ - test/controllers/proclaim/subscriptions_controller_test.rb
648
+ - test/dummy/db/migrate/20141117214323_create_users.rb
649
+ - test/dummy/db/schema.rb
650
+ - test/dummy/public/500.html
651
+ - test/dummy/public/404.html
652
+ - test/dummy/public/favicon.ico
653
+ - test/dummy/public/422.html
654
+ - test/dummy/config.ru
655
+ - test/dummy/log/test.log
656
+ - test/dummy/log/development.log
657
+ - test/dummy/tmp/generators/config/initializers/proclaim.rb
658
+ - test/dummy/tmp/cache/assets/test/sprockets/f62fd0cf9f5e7e077ec9c4daeccb06ae
659
+ - test/dummy/tmp/cache/assets/test/sprockets/728cb566999910549092ff0a98e2853b
660
+ - test/dummy/tmp/cache/assets/test/sprockets/1f42c80faacb651f670ec2b0998e49dc
661
+ - test/dummy/tmp/cache/assets/test/sprockets/d4b784b16fa1b1dfcca6590689a8c157
662
+ - test/dummy/tmp/cache/assets/test/sprockets/09fc2eadf6d6062b2cc135a44e4e73db
663
+ - test/dummy/tmp/cache/assets/test/sprockets/d0bdb8592e4eed80aa2341e37f20dbc9
664
+ - test/dummy/tmp/cache/assets/test/sprockets/4226218a4b06608115b21063353370ea
665
+ - test/dummy/tmp/cache/assets/test/sprockets/245b8735db4ea90bcaa91c011a1f447e
666
+ - test/dummy/tmp/cache/assets/test/sprockets/99bdde70cefa71745279232be575f14e
667
+ - test/dummy/tmp/cache/assets/test/sprockets/ce4ccaa06bdee6426486224bc7e54187
668
+ - test/dummy/tmp/cache/assets/test/sprockets/de36ab6c3b1a9b62a586d98373dd569c
669
+ - test/dummy/tmp/cache/assets/test/sprockets/976967e07e2944a7ecc7403667f1f96b
670
+ - test/dummy/tmp/cache/assets/test/sprockets/461885b8ad31ef6a94c9a4f2e332b7eb
671
+ - test/dummy/tmp/cache/assets/test/sprockets/daa4d4b8a5ce46d6c4ecf031e0c61cfe
672
+ - test/dummy/tmp/cache/assets/test/sprockets/9b09ad72f8cc33503878b01c713d92d0
673
+ - test/dummy/tmp/cache/assets/test/sprockets/5af081799d7da2f04ead6a516c6015ad
674
+ - test/dummy/tmp/cache/assets/test/sprockets/920c1322be1212a54b7c4f2751d5e7bf
675
+ - test/dummy/tmp/cache/assets/test/sprockets/fb0f641bfcbb0101c040da9ff736447b
676
+ - test/dummy/tmp/cache/assets/test/sprockets/8cf8fd5ff8eae12211a88f971af30236
677
+ - test/dummy/tmp/cache/assets/test/sprockets/cd82cd410a50bffcfb6e21e3c49a85c9
678
+ - test/dummy/tmp/cache/assets/test/sprockets/09fe8c62e8ae706e01058b4b4d056c8e
679
+ - test/dummy/tmp/cache/assets/test/sprockets/ffc4980851addaacf12abeebfa63e07f
680
+ - test/dummy/tmp/cache/assets/test/sprockets/be32d0a530ce861537d6abfa41333df9
681
+ - test/dummy/tmp/cache/assets/test/sprockets/72b5f0d35e9d69b744a156edad98f983
682
+ - test/dummy/tmp/cache/assets/test/sprockets/bcb2df87f9611d3cc3ef8a5575e54fb8
683
+ - test/dummy/tmp/cache/assets/test/sprockets/819de31c63b704f9ddf4865587a91d41
684
+ - test/dummy/tmp/cache/assets/test/sprockets/142fd040033525acb73ad2ccf1406aea
685
+ - test/dummy/tmp/cache/assets/test/sprockets/c8270a6f07dccc5f00e6b2b43f10efd2
686
+ - test/dummy/tmp/cache/assets/test/sprockets/6e7de35055967df848aa490830043e51
687
+ - test/dummy/tmp/cache/assets/test/sprockets/1c2ebe72fcd7ff1379a561552ca30f85
688
+ - test/dummy/tmp/cache/assets/test/sprockets/dc2effd195334219a7e4acfdc7ec7974
689
+ - test/dummy/tmp/cache/assets/test/sprockets/70bc59560ee544af7bb2f727247db307
690
+ - test/dummy/tmp/cache/assets/test/sprockets/26a42dac0cec64483f4126d2de4b0c9e
691
+ - test/dummy/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af
692
+ - test/dummy/tmp/cache/assets/test/sprockets/a3c6189fad6cb9ae955f6d5a43a61d51
693
+ - test/dummy/tmp/cache/assets/test/sprockets/ad18e3875541d4298b1df133d494b93f
694
+ - test/dummy/tmp/cache/assets/test/sprockets/30151c8f6d93717f06fa12774612ddf4
695
+ - test/dummy/tmp/cache/assets/test/sprockets/72ffa34d552e3fd02f28a6f845a5ac5b
696
+ - test/dummy/tmp/cache/assets/test/sprockets/7fb99e2b35af65c4f58bfb92dd4185b4
697
+ - test/dummy/tmp/cache/assets/test/sprockets/bc7a0846b4881b0832d41de2b1724dba
698
+ - test/dummy/tmp/cache/assets/test/sprockets/69ee5af8d9a655898a67bc538ca1c7e7
699
+ - test/dummy/tmp/cache/assets/test/sprockets/8604b464bf846e5223da37ef2f29b524
700
+ - test/dummy/tmp/cache/assets/test/sprockets/92205679a36afd387a2ba5c585a5a62c
701
+ - test/dummy/tmp/cache/assets/test/sprockets/5934d5d0d1ac6657842708e85c73cf51
702
+ - test/dummy/tmp/cache/assets/test/sprockets/437901953eb8707af6c27ca59cf65d91
703
+ - test/dummy/tmp/cache/assets/test/sprockets/19eba2635fec0895379c3e38f81ada84
704
+ - test/dummy/tmp/cache/assets/test/sprockets/ff732ea47a86c449582b2a81ef2930da
705
+ - test/dummy/tmp/cache/assets/test/sprockets/f864e553f706456dbdf168319970ec2e
706
+ - test/dummy/tmp/cache/assets/test/sprockets/fe426a44cf23cf82032091cbffff898c
707
+ - test/dummy/tmp/cache/assets/test/sprockets/6d1c56259648b0383bc438c875a448c3
708
+ - test/dummy/tmp/cache/assets/test/sprockets/7369d324e84bc872c42b3e717ff4ad6c
709
+ - test/dummy/tmp/cache/assets/test/sprockets/8da3b4a9f17aafff49eb263bdb758f44
710
+ - test/dummy/tmp/cache/assets/test/sprockets/940566ebcae2d4e5c56a881ab66f2cf0
711
+ - test/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655
712
+ - test/dummy/tmp/cache/assets/test/sprockets/749a8b0e45b11df748a256dd04ceb1f7
713
+ - test/dummy/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705
714
+ - test/dummy/tmp/cache/assets/test/sprockets/abb54e11ff057a3e22a5a97d27cc4fa3
715
+ - test/dummy/tmp/cache/assets/test/sprockets/e8d6158b1fed2f574242b55856a3953d
716
+ - test/dummy/tmp/cache/assets/test/sprockets/ba269a52f100d3d6cffda81e82e1ed49
717
+ - test/dummy/tmp/cache/assets/test/sprockets/4dcb3434b91b1c62f897a1741c6d398b
718
+ - test/dummy/tmp/cache/assets/test/sprockets/57f3d19a9bd484ac68c46f962a8684b2
719
+ - test/dummy/tmp/cache/assets/test/sprockets/77fb9f62552d9b786f9407ef11cc9a09
720
+ - test/dummy/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953
721
+ - test/dummy/tmp/cache/assets/test/sprockets/5101cda93cf70f0fc0837713be587780
722
+ - test/dummy/tmp/cache/assets/test/sprockets/bcf33791d3286af3ba2cdf6a6756c89e
723
+ - test/dummy/tmp/cache/assets/test/sprockets/e3aec457d5c753090d6521f2bb2d91b6
724
+ - test/dummy/tmp/cache/assets/test/sprockets/06620fc450f0a9b4a482a7bc08387711
725
+ - test/dummy/tmp/cache/assets/test/sprockets/3ec36650a50759fd4b75794cb253936f
726
+ - test/dummy/tmp/cache/assets/test/sprockets/1762aeeaf38da3b8d989a5b66b088004
727
+ - test/dummy/tmp/cache/assets/test/sprockets/797823842565e01fc989ad8df0bd4254
728
+ - test/dummy/tmp/cache/assets/test/sprockets/f78ea69bdbba5738c052e9eb04e6c208
729
+ - test/dummy/tmp/cache/assets/test/sprockets/40431cdcc10c75ba1f275ecfe42623d3
730
+ - test/dummy/tmp/cache/assets/test/sprockets/587e7c1332c8d8b69746dd85164e2cef
731
+ - test/dummy/tmp/cache/assets/test/sprockets/8bc4341aa4060b8646e8134722cf3b11
732
+ - test/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6
733
+ - test/dummy/tmp/cache/assets/test/sprockets/4792f46317cda92ccd5b278ec61f9ac5
734
+ - test/dummy/tmp/cache/assets/test/sprockets/52d8c61de0703e0d7cf97d0f7b0cca7a
735
+ - test/dummy/tmp/cache/assets/test/sprockets/f2984adaeaa5322e3a040705c6d40622
736
+ - test/dummy/tmp/cache/assets/test/sprockets/a20dbdfebf37fe50e832a6273c972553
737
+ - test/dummy/tmp/cache/assets/test/sprockets/ea82f6aececcf81eef3e2e15a9225e66
738
+ - test/dummy/tmp/cache/assets/test/sprockets/194ac1a695334e303516614579b3926d
739
+ - test/dummy/tmp/cache/assets/test/sprockets/9168e513bae02f041dbb806d6dbe94ac
740
+ - test/dummy/tmp/cache/assets/test/sprockets/197ea008934db3e7ea8045302d206b92
741
+ - test/dummy/tmp/cache/assets/test/sprockets/04adcece63bc645379e6de797e7998f8
742
+ - test/dummy/tmp/cache/assets/test/sprockets/7c139afa2296ac17483520109aecd449
743
+ - test/dummy/tmp/cache/assets/test/sprockets/b9b7c575c22943d49734d52381c5ee16
744
+ - test/dummy/tmp/cache/assets/test/sprockets/076dd0d567a92c34163b3b98af1d48ba
745
+ - test/dummy/tmp/cache/assets/test/sprockets/d968bd38a69bbf5c0065e2df3d30cfd3
746
+ - test/dummy/tmp/cache/assets/test/sprockets/23ad87e715c70312aa61dde4fbb4bfe1
747
+ - test/dummy/tmp/cache/assets/test/sprockets/ed9f5c17f71ec75de10b1bb029ebd7a2
748
+ - test/dummy/tmp/cache/assets/test/sprockets/9a8e402a7e32063e46647403b43553a5
749
+ - test/dummy/tmp/cache/assets/test/sprockets/88fc815613b473e98e9307b1d423918d
750
+ - test/dummy/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994
751
+ - test/dummy/tmp/cache/assets/test/sprockets/3c623d200214a5334aaf170537db087f
752
+ - test/dummy/tmp/cache/assets/test/sprockets/2243230e778a749ecbf0415a52e75be0
753
+ - test/dummy/tmp/cache/assets/test/sass/12a97df611d5fb0e395afda829edf8b9372acde7/subscriptions.css.scssc
754
+ - test/dummy/tmp/cache/assets/test/sass/12a97df611d5fb0e395afda829edf8b9372acde7/comments.css.scssc
755
+ - test/dummy/tmp/cache/assets/test/sass/12a97df611d5fb0e395afda829edf8b9372acde7/posts.css.scssc
756
+ - test/dummy/tmp/cache/assets/test/sass/12a97df611d5fb0e395afda829edf8b9372acde7/images.scssc
757
+ - test/dummy/tmp/cache/assets/test/sass/0b69f7cc441d56def3a51688e6a7a8474dc476d1/proclaim.css.scssc
758
+ - test/dummy/config/locales/en.yml
759
+ - test/dummy/config/database.yml
760
+ - test/dummy/config/secrets.yml
761
+ - test/dummy/config/routes.rb
762
+ - test/dummy/config/environments/production.rb
763
+ - test/dummy/config/environments/development.rb
764
+ - test/dummy/config/environments/test.rb
765
+ - test/dummy/config/boot.rb
766
+ - test/dummy/config/initializers/cookies_serializer.rb
767
+ - test/dummy/config/initializers/wrap_parameters.rb
768
+ - test/dummy/config/initializers/mime_types.rb
769
+ - test/dummy/config/initializers/assets.rb
770
+ - test/dummy/config/initializers/filter_parameter_logging.rb
771
+ - test/dummy/config/initializers/inflections.rb
772
+ - test/dummy/config/initializers/session_store.rb
773
+ - test/dummy/config/initializers/backtrace_silencers.rb
774
+ - test/dummy/config/application.rb
775
+ - test/dummy/config/environment.rb
776
+ - test/dummy/README.rdoc
777
+ - test/dummy/app/helpers/application_helper.rb
778
+ - test/dummy/app/assets/javascripts/application.js
779
+ - test/dummy/app/assets/stylesheets/application.css
780
+ - test/dummy/app/views/layouts/application.html.erb
781
+ - test/dummy/app/models/user.rb
782
+ - test/dummy/app/controllers/application_controller.rb
783
+ - test/dummy/Rakefile
784
+ - test/dummy/bin/bundle
785
+ - test/dummy/bin/rails
786
+ - test/dummy/bin/rake
787
+ - test/factories/proclaim/image.rb
788
+ - test/factories/proclaim/post.rb
789
+ - test/factories/proclaim/comment.rb
790
+ - test/factories/proclaim/subscription.rb
791
+ - test/factories/user.rb