sunrise-cms 1.0.6 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (335) hide show
  1. checksums.yaml +5 -5
  2. data/.gitignore +24 -0
  3. data/.rubocop.yml +87 -0
  4. data/.ruby-version +1 -0
  5. data/Gemfile +52 -0
  6. data/Rakefile +3 -2
  7. data/app/controllers/sunrise/activities_controller.rb +7 -5
  8. data/app/controllers/sunrise/application_controller.rb +17 -17
  9. data/app/controllers/sunrise/dashboard_controller.rb +6 -5
  10. data/app/controllers/sunrise/manager_controller.rb +106 -105
  11. data/app/controllers/sunrise/settings_controller.rb +5 -3
  12. data/app/helpers/sunrise/activities_helper.rb +8 -7
  13. data/app/helpers/sunrise/application_helper.rb +11 -9
  14. data/app/helpers/sunrise/dashboard_helper.rb +3 -1
  15. data/app/helpers/sunrise/manager_helper.rb +28 -27
  16. data/app/helpers/sunrise/structure_helper.rb +11 -8
  17. data/config/locales/defaults/datetime.rb +7 -7
  18. data/config/locales/defaults/pluralize.rb +5 -3
  19. data/config/routes.rb +22 -20
  20. data/db/migrate/20111216144515_create_assets.rb +9 -7
  21. data/db/migrate/20111216144915_create_structures.rb +14 -12
  22. data/db/migrate/20111216145015_create_users.rb +20 -18
  23. data/db/migrate/20120611095315_create_settings.rb +7 -5
  24. data/lib/generators/sunrise/install_generator.rb +51 -49
  25. data/lib/generators/sunrise/templates/config/active_record/sunrise.rb +12 -10
  26. data/lib/generators/sunrise/templates/config/mongoid/sunrise.rb +14 -12
  27. data/lib/generators/sunrise/templates/config/seeds.rb +7 -7
  28. data/lib/generators/sunrise/templates/models/active_record/ability.rb +4 -3
  29. data/lib/generators/sunrise/templates/models/active_record/asset.rb +5 -3
  30. data/lib/generators/sunrise/templates/models/active_record/attachment_file.rb +4 -2
  31. data/lib/generators/sunrise/templates/models/active_record/avatar.rb +7 -5
  32. data/lib/generators/sunrise/templates/models/active_record/picture.rb +6 -4
  33. data/lib/generators/sunrise/templates/models/active_record/position_type.rb +5 -3
  34. data/lib/generators/sunrise/templates/models/active_record/role_type.rb +6 -4
  35. data/lib/generators/sunrise/templates/models/active_record/settings.rb +5 -3
  36. data/lib/generators/sunrise/templates/models/active_record/structure.rb +3 -1
  37. data/lib/generators/sunrise/templates/models/active_record/structure_type.rb +7 -5
  38. data/lib/generators/sunrise/templates/models/active_record/user.rb +5 -3
  39. data/lib/generators/sunrise/templates/models/mongoid/ability.rb +4 -3
  40. data/lib/generators/sunrise/templates/models/mongoid/asset.rb +18 -16
  41. data/lib/generators/sunrise/templates/models/mongoid/attachment_file.rb +4 -2
  42. data/lib/generators/sunrise/templates/models/mongoid/avatar.rb +7 -5
  43. data/lib/generators/sunrise/templates/models/mongoid/picture.rb +4 -2
  44. data/lib/generators/sunrise/templates/models/mongoid/position_type.rb +5 -3
  45. data/lib/generators/sunrise/templates/models/mongoid/role_type.rb +6 -4
  46. data/lib/generators/sunrise/templates/models/mongoid/settings.rb +9 -7
  47. data/lib/generators/sunrise/templates/models/mongoid/structure.rb +12 -10
  48. data/lib/generators/sunrise/templates/models/mongoid/structure_type.rb +7 -5
  49. data/lib/generators/sunrise/templates/models/mongoid/user.rb +37 -35
  50. data/lib/generators/sunrise/templates/models/sunrise/sunrise_navigation.rb +9 -7
  51. data/lib/generators/sunrise/templates/models/sunrise/sunrise_page.rb +5 -3
  52. data/lib/generators/sunrise/templates/models/sunrise/sunrise_structure.rb +10 -9
  53. data/lib/generators/sunrise/templates/models/sunrise/sunrise_user.rb +15 -13
  54. data/lib/generators/sunrise/templates/spec/controllers/pages_controller_spec.rb +12 -10
  55. data/lib/generators/sunrise/templates/spec/controllers/welcome_controller_spec.rb +8 -6
  56. data/lib/generators/sunrise/templates/spec/factories/structure_factory.rb +6 -5
  57. data/lib/generators/sunrise/templates/spec/factories/user_factory.rb +19 -18
  58. data/lib/generators/sunrise/templates/spec/spec_helper.rb +9 -7
  59. data/lib/generators/sunrise/templates/spec/support/helpers/controller_macros.rb +10 -9
  60. data/lib/generators/sunrise/templates/uploaders/attachment_file_uploader.rb +4 -2
  61. data/lib/generators/sunrise/templates/uploaders/avatar_uploader.rb +10 -7
  62. data/lib/generators/sunrise/templates/uploaders/picture_uploader.rb +9 -6
  63. data/lib/sunrise-cms.rb +2 -0
  64. data/lib/sunrise.rb +20 -13
  65. data/lib/sunrise/abstract_model.rb +100 -103
  66. data/lib/sunrise/carrierwave/base_uploader.rb +43 -46
  67. data/lib/sunrise/carrierwave/file_size_validator.rb +16 -11
  68. data/lib/sunrise/carrierwave/glue.rb +9 -9
  69. data/lib/sunrise/config.rb +14 -12
  70. data/lib/sunrise/config/association.rb +4 -3
  71. data/lib/sunrise/config/base.rb +15 -13
  72. data/lib/sunrise/config/export.rb +5 -3
  73. data/lib/sunrise/config/field.rb +26 -24
  74. data/lib/sunrise/config/form.rb +2 -0
  75. data/lib/sunrise/config/group.rb +9 -6
  76. data/lib/sunrise/config/has_fields.rb +6 -5
  77. data/lib/sunrise/config/has_groups.rb +4 -2
  78. data/lib/sunrise/config/index.rb +9 -7
  79. data/lib/sunrise/config/model.rb +16 -14
  80. data/lib/sunrise/config/navigation.rb +21 -19
  81. data/lib/sunrise/config/navigation_item.rb +7 -5
  82. data/lib/sunrise/config/nested_field.rb +13 -12
  83. data/lib/sunrise/config/page_presenter.rb +5 -2
  84. data/lib/sunrise/config/show.rb +2 -0
  85. data/lib/sunrise/core_ext.rb +2 -0
  86. data/lib/sunrise/core_ext/i18n.rb +9 -9
  87. data/lib/sunrise/core_ext/string.rb +4 -2
  88. data/lib/sunrise/engine.rb +16 -16
  89. data/lib/sunrise/hooks/adapters/active_record.rb +3 -1
  90. data/lib/sunrise/hooks/adapters/mongoid.rb +4 -2
  91. data/lib/sunrise/models/ability.rb +10 -8
  92. data/lib/sunrise/models/asset.rb +43 -43
  93. data/lib/sunrise/models/position_type.rb +7 -6
  94. data/lib/sunrise/models/role_type.rb +8 -7
  95. data/lib/sunrise/models/structure.rb +27 -28
  96. data/lib/sunrise/models/structure_type.rb +7 -6
  97. data/lib/sunrise/models/user.rb +39 -37
  98. data/lib/sunrise/utils.rb +16 -17
  99. data/lib/sunrise/utils/csv_document.rb +23 -23
  100. data/lib/sunrise/utils/eval_helpers.rb +41 -39
  101. data/lib/sunrise/utils/search_wrapper.rb +8 -7
  102. data/lib/sunrise/utils/transliteration.rb +42 -41
  103. data/lib/sunrise/version.rb +3 -1
  104. data/lib/sunrise/views/date_time_input.rb +19 -17
  105. data/lib/sunrise/views/form_builder.rb +15 -13
  106. data/lib/sunrise/views/helper.rb +32 -32
  107. data/lib/sunrise/views/search_wrapper.rb +5 -3
  108. data/lib/tasks/assets.rake +11 -9
  109. data/sunrise-cms.gemspec +52 -0
  110. metadata +44 -531
  111. data/spec/controllers/sunrise/activities_controller_spec.rb +0 -33
  112. data/spec/controllers/sunrise/manager_controller_spec.rb +0 -64
  113. data/spec/controllers/sunrise/settings_controller_spec.rb +0 -45
  114. data/spec/dummy/Rakefile +0 -7
  115. data/spec/dummy/app/assets/javascripts/application.js +0 -9
  116. data/spec/dummy/app/assets/javascripts/sunrise/plugins.js +0 -0
  117. data/spec/dummy/app/assets/javascripts/welcome.js +0 -2
  118. data/spec/dummy/app/assets/stylesheets/application.css +0 -7
  119. data/spec/dummy/app/assets/stylesheets/sunrise/plugins.css +0 -0
  120. data/spec/dummy/app/assets/stylesheets/welcome.css +0 -4
  121. data/spec/dummy/app/controllers/application_controller.rb +0 -3
  122. data/spec/dummy/app/controllers/welcome_controller.rb +0 -5
  123. data/spec/dummy/app/helpers/application_helper.rb +0 -12
  124. data/spec/dummy/app/helpers/welcome_helper.rb +0 -2
  125. data/spec/dummy/app/models/active_record/post.rb +0 -18
  126. data/spec/dummy/app/models/mongoid/post.rb +0 -27
  127. data/spec/dummy/app/sunrise/sunrise_post.rb +0 -34
  128. data/spec/dummy/app/views/layouts/application.html.erb +0 -20
  129. data/spec/dummy/app/views/public_activity/post/_create.html.erb +0 -5
  130. data/spec/dummy/app/views/public_activity/post/_destroy.html.erb +0 -5
  131. data/spec/dummy/app/views/public_activity/post/_update.html.erb +0 -5
  132. data/spec/dummy/app/views/sunrise/manager/users/thumbs/_record.html.erb +0 -34
  133. data/spec/dummy/app/views/welcome/index.html.erb +0 -2
  134. data/spec/dummy/config.ru +0 -4
  135. data/spec/dummy/config/application.rb +0 -55
  136. data/spec/dummy/config/boot.rb +0 -10
  137. data/spec/dummy/config/database.yml +0 -42
  138. data/spec/dummy/config/database.yml.sample +0 -34
  139. data/spec/dummy/config/environment.rb +0 -5
  140. data/spec/dummy/config/environments/development.rb +0 -33
  141. data/spec/dummy/config/environments/production.rb +0 -66
  142. data/spec/dummy/config/environments/test.rb +0 -41
  143. data/spec/dummy/config/initializers/backtrace_silencers.rb +0 -7
  144. data/spec/dummy/config/initializers/devise.rb +0 -216
  145. data/spec/dummy/config/initializers/inflections.rb +0 -10
  146. data/spec/dummy/config/initializers/mime_types.rb +0 -5
  147. data/spec/dummy/config/initializers/secret_token.rb +0 -7
  148. data/spec/dummy/config/initializers/session_store.rb +0 -8
  149. data/spec/dummy/config/initializers/sunrise.rb +0 -51
  150. data/spec/dummy/config/initializers/wrap_parameters.rb +0 -14
  151. data/spec/dummy/config/locales/en.yml +0 -5
  152. data/spec/dummy/config/mongoid.yml +0 -80
  153. data/spec/dummy/config/routes.rb +0 -10
  154. data/spec/dummy/db/migrate/20111227111941_install_acts_as_audited.rb +0 -28
  155. data/spec/dummy/db/migrate/20111227143901_create_page_parts.rb +0 -20
  156. data/spec/dummy/db/migrate/20111228152051_create_posts.rb +0 -14
  157. data/spec/dummy/db/migrate/20120105114018_create_meta_tags.rb +0 -21
  158. data/spec/dummy/db/migrate/20130214090723_create_activities.rb +0 -23
  159. data/spec/dummy/db/schema.rb +0 -90
  160. data/spec/dummy/log/test.log +0 -235
  161. data/spec/dummy/public/404.html +0 -26
  162. data/spec/dummy/public/422.html +0 -26
  163. data/spec/dummy/public/500.html +0 -26
  164. data/spec/dummy/public/favicon.ico +0 -0
  165. data/spec/dummy/script/rails +0 -6
  166. data/spec/dummy/tmp/cache/696/1F0/settings%3Ato_key +0 -1
  167. data/spec/dummy/tmp/cache/87C/5D0/settings%3Apersisted%3F +0 -1
  168. data/spec/dummy/tmp/cache/91C/830/settings%3Asome_setting +0 -1
  169. data/spec/dummy/tmp/cache/94E/D10/settings%3Asome_setting2 +0 -1
  170. data/spec/dummy/tmp/cache/assets/test/sass/f4a02ee710d6db0936c29533f2166c1526a55a9e/select2.scssc +0 -0
  171. data/spec/dummy/tmp/cache/assets/test/sprockets/03bae0b322a9c8706915fdb4f8d50961 +0 -0
  172. data/spec/dummy/tmp/cache/assets/test/sprockets/0a4412d6feb107cf35e452cc82a01134 +0 -0
  173. data/spec/dummy/tmp/cache/assets/test/sprockets/0c538631f0f094ca39bdb1448da8a4bc +0 -0
  174. data/spec/dummy/tmp/cache/assets/test/sprockets/0c94e795dfbbbf3599fdf312aeb577b9 +0 -0
  175. data/spec/dummy/tmp/cache/assets/test/sprockets/0e7270936d642e566d747ab335c44ec2 +0 -0
  176. data/spec/dummy/tmp/cache/assets/test/sprockets/0f894abd40c0b6114a9dff3a0599af7e +0 -0
  177. data/spec/dummy/tmp/cache/assets/test/sprockets/0fdc292bf2b2ddb2d0bf079950c8e770 +0 -0
  178. data/spec/dummy/tmp/cache/assets/test/sprockets/10bb80e2753b3d1716765b02ad9a2db3 +0 -0
  179. data/spec/dummy/tmp/cache/assets/test/sprockets/1349c61c2b491567c1632fcae44110a0 +0 -0
  180. data/spec/dummy/tmp/cache/assets/test/sprockets/13e20c0d57b7b851a7f025f5606f833f +0 -0
  181. data/spec/dummy/tmp/cache/assets/test/sprockets/146ce2f3522fd98d4a8a1501f16c7092 +0 -0
  182. data/spec/dummy/tmp/cache/assets/test/sprockets/172c139e25cc08516d5a8c72c777dd4d +0 -0
  183. data/spec/dummy/tmp/cache/assets/test/sprockets/18b64b11b8b00cc21a396da25a5ff156 +0 -0
  184. data/spec/dummy/tmp/cache/assets/test/sprockets/197d8d604ec08a638b656e053944b734 +0 -0
  185. data/spec/dummy/tmp/cache/assets/test/sprockets/1b73ae25962d8ff98f9f008b73c64bf4 +0 -0
  186. data/spec/dummy/tmp/cache/assets/test/sprockets/1bdb903463fe67323dbadb0f78337c70 +0 -0
  187. data/spec/dummy/tmp/cache/assets/test/sprockets/1ea532f332f1ff667097010cda704c99 +0 -0
  188. data/spec/dummy/tmp/cache/assets/test/sprockets/20215d59350863282208d478ea94cf08 +0 -0
  189. data/spec/dummy/tmp/cache/assets/test/sprockets/212fc15df4fd708ebdef5bd3be2191c1 +0 -0
  190. data/spec/dummy/tmp/cache/assets/test/sprockets/256dcb01e7f35659d770584fd71a85d2 +0 -0
  191. data/spec/dummy/tmp/cache/assets/test/sprockets/27ec6453d976c5e273e6f2c25830492c +0 -0
  192. data/spec/dummy/tmp/cache/assets/test/sprockets/3006732de695a5dfe249dcbf6852b543 +0 -0
  193. data/spec/dummy/tmp/cache/assets/test/sprockets/3008328e1cba59ad00ac79ac20275f17 +0 -0
  194. data/spec/dummy/tmp/cache/assets/test/sprockets/31ffcb9d2aba762160a2f4341e5cfd50 +0 -0
  195. data/spec/dummy/tmp/cache/assets/test/sprockets/32ae3cda2e7c692fc9711ab76fcf1c62 +0 -0
  196. data/spec/dummy/tmp/cache/assets/test/sprockets/35948a84ebda6147e5e5b67191ae37d8 +0 -0
  197. data/spec/dummy/tmp/cache/assets/test/sprockets/37766ae8287a873cb196a187f3253e66 +0 -0
  198. data/spec/dummy/tmp/cache/assets/test/sprockets/37b44bd55598f75d532d9edbe8c98336 +0 -0
  199. data/spec/dummy/tmp/cache/assets/test/sprockets/383908afbabb6096b774ab7c1856a102 +0 -0
  200. data/spec/dummy/tmp/cache/assets/test/sprockets/38611f05ed0bf72a4755c136796ff5d4 +0 -0
  201. data/spec/dummy/tmp/cache/assets/test/sprockets/3b99bacd5915b4ff7fb2664bc2aa30d0 +0 -0
  202. data/spec/dummy/tmp/cache/assets/test/sprockets/443ca9dc693ccf91d6e1cecaffe0fa9a +0 -0
  203. data/spec/dummy/tmp/cache/assets/test/sprockets/45c759123f4f6b42cdcff44b446655a5 +0 -0
  204. data/spec/dummy/tmp/cache/assets/test/sprockets/4ca01587005a9b895bca383881bec87d +0 -0
  205. data/spec/dummy/tmp/cache/assets/test/sprockets/4cffdba2a7aac80c1765e060b152b382 +0 -0
  206. data/spec/dummy/tmp/cache/assets/test/sprockets/4d38783b41d7c000fed2419b5173f87a +0 -0
  207. data/spec/dummy/tmp/cache/assets/test/sprockets/51fe2df168cee49df9d4136f59c87872 +0 -0
  208. data/spec/dummy/tmp/cache/assets/test/sprockets/564db16c8d964c3505bfca526e3fccf2 +0 -0
  209. data/spec/dummy/tmp/cache/assets/test/sprockets/56e5bd2f3c94d7a9d0da7c4e05c7ad78 +0 -0
  210. data/spec/dummy/tmp/cache/assets/test/sprockets/5807e61754ed8b16702f6ad7ba34d439 +0 -0
  211. data/spec/dummy/tmp/cache/assets/test/sprockets/593d990734170367188181754939b317 +0 -0
  212. data/spec/dummy/tmp/cache/assets/test/sprockets/5a44970074ecbfeae2cc9798ed7da7aa +0 -0
  213. data/spec/dummy/tmp/cache/assets/test/sprockets/5e7901fbee32b66040fd6376a8c981d8 +0 -0
  214. data/spec/dummy/tmp/cache/assets/test/sprockets/5ecbfe03cab317594d2bc1c6866d26db +0 -0
  215. data/spec/dummy/tmp/cache/assets/test/sprockets/609ce9936a503352d73f954f68be7f81 +0 -0
  216. data/spec/dummy/tmp/cache/assets/test/sprockets/65224b6e799d399f4e6cf4bf98155de2 +0 -0
  217. data/spec/dummy/tmp/cache/assets/test/sprockets/6a1e72555b75237fffccb5de8937b4d4 +0 -0
  218. data/spec/dummy/tmp/cache/assets/test/sprockets/6a8187f5c6f2e115d1a1c21ca2ec81a0 +0 -0
  219. data/spec/dummy/tmp/cache/assets/test/sprockets/6c9a2f7ab6f8d1f8e3e4cf1d7d6cc68a +0 -0
  220. data/spec/dummy/tmp/cache/assets/test/sprockets/6f4f668f70fb14b2132289fed6718f0e +0 -0
  221. data/spec/dummy/tmp/cache/assets/test/sprockets/727e0f830601f307d4c8b9a76e464c1a +0 -0
  222. data/spec/dummy/tmp/cache/assets/test/sprockets/749bd767d6654c80265f5ca0959dc8e1 +0 -0
  223. data/spec/dummy/tmp/cache/assets/test/sprockets/7a92952d5fff10f09ce91b852d6a744f +0 -0
  224. data/spec/dummy/tmp/cache/assets/test/sprockets/7ad564910e515e335bb008989a97efb7 +0 -0
  225. data/spec/dummy/tmp/cache/assets/test/sprockets/7b55037b89f2debe558b43fe7542e409 +0 -0
  226. data/spec/dummy/tmp/cache/assets/test/sprockets/7bb04b7318793726b5414daaa4f049d4 +0 -0
  227. data/spec/dummy/tmp/cache/assets/test/sprockets/7c5f37d1af8a5557b67d6ffb8afcc2b5 +0 -0
  228. data/spec/dummy/tmp/cache/assets/test/sprockets/7f5092f53db371ea56be62557677a506 +0 -0
  229. data/spec/dummy/tmp/cache/assets/test/sprockets/7f9ced6d264f71631c80df15194abf4d +0 -0
  230. data/spec/dummy/tmp/cache/assets/test/sprockets/80870efa2a2ddb1de325c224daff5712 +0 -0
  231. data/spec/dummy/tmp/cache/assets/test/sprockets/831e225c0e792be993a1d1dc58f20e54 +0 -0
  232. data/spec/dummy/tmp/cache/assets/test/sprockets/83f98047f864c578534b34068cb015e0 +0 -0
  233. data/spec/dummy/tmp/cache/assets/test/sprockets/84361af51e20dcfad7fae0f32f284ab7 +0 -0
  234. data/spec/dummy/tmp/cache/assets/test/sprockets/894aeaae9cc8483fa9f7a5146ff6ff6f +0 -0
  235. data/spec/dummy/tmp/cache/assets/test/sprockets/89567cbb5e7770a065e88360dcd02833 +0 -0
  236. data/spec/dummy/tmp/cache/assets/test/sprockets/89a5be65dc0d00fa22be4375c029d69c +0 -0
  237. data/spec/dummy/tmp/cache/assets/test/sprockets/8bf0319a2b612416dfde2d3b939dbf99 +0 -0
  238. data/spec/dummy/tmp/cache/assets/test/sprockets/8cfeb6443a5f7398e67010a202ee2de2 +0 -0
  239. data/spec/dummy/tmp/cache/assets/test/sprockets/8e3769f6378278754105f0924e6dd1ff +0 -0
  240. data/spec/dummy/tmp/cache/assets/test/sprockets/96c321f84bd796096692021bc4a87eed +0 -0
  241. data/spec/dummy/tmp/cache/assets/test/sprockets/97e875e2282fba5939cf71198faab1f0 +0 -0
  242. data/spec/dummy/tmp/cache/assets/test/sprockets/9911ee0fc41f519a1c4faa7912547cce +0 -0
  243. data/spec/dummy/tmp/cache/assets/test/sprockets/9ac84ed11232b2f7fc9f80c18844abc8 +0 -0
  244. data/spec/dummy/tmp/cache/assets/test/sprockets/9ba0cab624f25b68f79447e62fbc6112 +0 -0
  245. data/spec/dummy/tmp/cache/assets/test/sprockets/9e9edfa954375fd0cc6498f70b883e8e +0 -0
  246. data/spec/dummy/tmp/cache/assets/test/sprockets/a3863764f2fbc185e0d2ea584c7e2174 +0 -0
  247. data/spec/dummy/tmp/cache/assets/test/sprockets/a4c4a00b0d2b8334de3ee3169064adad +0 -0
  248. data/spec/dummy/tmp/cache/assets/test/sprockets/a744e8f2a7ce02e7af9784f40c711ed5 +0 -0
  249. data/spec/dummy/tmp/cache/assets/test/sprockets/a78a33e8cea959257da93b3e67786300 +0 -0
  250. data/spec/dummy/tmp/cache/assets/test/sprockets/a9956bd25bbe4c811a1a758f71aec748 +0 -0
  251. data/spec/dummy/tmp/cache/assets/test/sprockets/aa4822def20c419f0e50e2a38e73a1df +0 -0
  252. data/spec/dummy/tmp/cache/assets/test/sprockets/aaa24da6bd0fcf694077519e189b7392 +0 -0
  253. data/spec/dummy/tmp/cache/assets/test/sprockets/b0493d9dbe3afb3268b7ffce2b87bf78 +0 -0
  254. data/spec/dummy/tmp/cache/assets/test/sprockets/b2c398b7a51a65be12ba944bdea13415 +0 -0
  255. data/spec/dummy/tmp/cache/assets/test/sprockets/b81381e4a978aa69cc2ab1f892a40e97 +0 -0
  256. data/spec/dummy/tmp/cache/assets/test/sprockets/b82707486d5133da748e4382c62de995 +0 -0
  257. data/spec/dummy/tmp/cache/assets/test/sprockets/bb83cb3c179681d65c77a41e98f1c70f +0 -0
  258. data/spec/dummy/tmp/cache/assets/test/sprockets/bbc50f2009705d8fd7b91330bc24dcb8 +0 -0
  259. data/spec/dummy/tmp/cache/assets/test/sprockets/bcb7548b203cc2c5a484ef7649911c2d +0 -0
  260. data/spec/dummy/tmp/cache/assets/test/sprockets/becade26fead85d486f136be49b45e23 +0 -0
  261. data/spec/dummy/tmp/cache/assets/test/sprockets/bfc0fef30976427a03ddccb1ce78d6e7 +0 -0
  262. data/spec/dummy/tmp/cache/assets/test/sprockets/c0dd93a468e038b3653ed4d28874e0cb +0 -0
  263. data/spec/dummy/tmp/cache/assets/test/sprockets/c1d2340cbfe5e80d388f95e7a08698d9 +0 -0
  264. data/spec/dummy/tmp/cache/assets/test/sprockets/c25afdb537c84a18bd62fc782164d298 +0 -0
  265. data/spec/dummy/tmp/cache/assets/test/sprockets/c3dc3ada4560805584739bfe7c2b24d9 +0 -0
  266. data/spec/dummy/tmp/cache/assets/test/sprockets/c4dc50a79ec929d33d9e2835d1926fd9 +0 -0
  267. data/spec/dummy/tmp/cache/assets/test/sprockets/c5f990ee58d3727faeb4cfd3f5667e8a +0 -0
  268. data/spec/dummy/tmp/cache/assets/test/sprockets/c622effcf1aa225bf2920d2b63ca525c +0 -0
  269. data/spec/dummy/tmp/cache/assets/test/sprockets/d09dc20f2dc66183aa23ce1fd8fc9f2c +0 -0
  270. data/spec/dummy/tmp/cache/assets/test/sprockets/d60bdefb444e91b75e4cc2f3fc49228b +0 -0
  271. data/spec/dummy/tmp/cache/assets/test/sprockets/d7c40ebee2fb9471bab352337570ba40 +0 -0
  272. data/spec/dummy/tmp/cache/assets/test/sprockets/d9bc94e1e0cc114986f8760bc4eb42ce +0 -0
  273. data/spec/dummy/tmp/cache/assets/test/sprockets/da4488b32bd6fb75c655a077956c9034 +0 -0
  274. data/spec/dummy/tmp/cache/assets/test/sprockets/daeb51b1ca3de2a1f2146dea431249d3 +0 -0
  275. data/spec/dummy/tmp/cache/assets/test/sprockets/dd0e13880601ea049b7c6d8c76ea535f +0 -0
  276. data/spec/dummy/tmp/cache/assets/test/sprockets/dd15d7b9860a8a187c4a6c167dc56547 +0 -0
  277. data/spec/dummy/tmp/cache/assets/test/sprockets/dd8ed9b0203321fd815ba48a5867620e +0 -0
  278. data/spec/dummy/tmp/cache/assets/test/sprockets/e1e036b04a3a20b2fb589420ad03b926 +0 -0
  279. data/spec/dummy/tmp/cache/assets/test/sprockets/e4f46080338c0c52e3933999a7f8106d +0 -0
  280. data/spec/dummy/tmp/cache/assets/test/sprockets/e59a3c2ff941e0fdc7987168580bf4cc +0 -0
  281. data/spec/dummy/tmp/cache/assets/test/sprockets/e6cfe2e09e34ec2b24494a74eed5243a +0 -0
  282. data/spec/dummy/tmp/cache/assets/test/sprockets/e8e088454cc6f38324bd168e299cf08f +0 -0
  283. data/spec/dummy/tmp/cache/assets/test/sprockets/e949207f9e9578cfd48ab90bb82ea384 +0 -0
  284. data/spec/dummy/tmp/cache/assets/test/sprockets/ee5a41236d43159aac87f9224a0bcfb8 +0 -0
  285. data/spec/dummy/tmp/cache/assets/test/sprockets/ef5f76363cd723089ce62b8c207415a4 +0 -0
  286. data/spec/dummy/tmp/cache/assets/test/sprockets/f2de4855fd4840abb2f6e80afee5f4ed +0 -0
  287. data/spec/dummy/tmp/cache/assets/test/sprockets/f5165c4d7cee0e7cb99bc069fd4c09b9 +0 -0
  288. data/spec/dummy/tmp/cache/assets/test/sprockets/f660938bc4a80358883ba6c576e1dd13 +0 -0
  289. data/spec/dummy/tmp/cache/assets/test/sprockets/f7379cc2d3a2fc4b87d64c68d2d8684f +0 -0
  290. data/spec/dummy/tmp/cache/assets/test/sprockets/f81b83e98592ff24dd8518985baa48cd +0 -0
  291. data/spec/dummy/tmp/cache/assets/test/sprockets/f94b13174ed1cc7f087a66c0094ef4cf +0 -0
  292. data/spec/dummy/tmp/cache/assets/test/sprockets/f975cba8c490022ddfc45bab0b512879 +0 -0
  293. data/spec/dummy/tmp/cache/assets/test/sprockets/face6eb5e3ee8802296bdc38e5704d72 +0 -0
  294. data/spec/dummy/tmp/cache/assets/test/sprockets/fc9155176668e1a56a5ca3843febe3c3 +0 -0
  295. data/spec/dummy/tmp/cache/assets/test/sprockets/fd7e46e0b42a510b40f17d1f1bacf80e +0 -0
  296. data/spec/factories/asset_factory.rb +0 -21
  297. data/spec/factories/files/rails.png +0 -0
  298. data/spec/factories/files/silicon_valley.jpg +0 -0
  299. data/spec/factories/page_factory.rb +0 -10
  300. data/spec/factories/post_factory.rb +0 -9
  301. data/spec/factories/structure_factory.rb +0 -22
  302. data/spec/factories/user_factory.rb +0 -49
  303. data/spec/generators/install_generator_spec.rb +0 -55
  304. data/spec/models/avatar_spec.rb +0 -138
  305. data/spec/models/i18n_backend.rb +0 -30
  306. data/spec/models/structure_spec.rb +0 -120
  307. data/spec/models/sunrise/abstract_model_spec.rb +0 -88
  308. data/spec/models/sunrise/carrierwave/picture_uploader_spec.rb +0 -49
  309. data/spec/models/sunrise/search_wrapper_spec.rb +0 -21
  310. data/spec/models/user_spec.rb +0 -63
  311. data/spec/orm/active_record.rb +0 -5
  312. data/spec/orm/kaminari/active_record.rb +0 -18
  313. data/spec/orm/kaminari/mongoid.rb +0 -20
  314. data/spec/orm/mongoid.rb +0 -15
  315. data/spec/requests/activities_spec.rb +0 -41
  316. data/spec/requests/dashboard_spec.rb +0 -35
  317. data/spec/requests/manager/default/create_spec.rb +0 -43
  318. data/spec/requests/manager/default/destroy_spec.rb +0 -36
  319. data/spec/requests/manager/default/edit_spec.rb +0 -72
  320. data/spec/requests/manager/default/export_spec.rb +0 -121
  321. data/spec/requests/manager/default/index_spec.rb +0 -67
  322. data/spec/requests/manager/default/new_spec.rb +0 -59
  323. data/spec/requests/manager/default/show_spec.rb +0 -41
  324. data/spec/requests/manager/default/update_spec.rb +0 -73
  325. data/spec/requests/manager/many/create_spec.rb +0 -52
  326. data/spec/requests/manager/many/destroy_spec.rb +0 -41
  327. data/spec/requests/manager/many/edit_spec.rb +0 -43
  328. data/spec/requests/manager/many/index_spec.rb +0 -54
  329. data/spec/requests/manager/many/new_spec.rb +0 -40
  330. data/spec/requests/manager/many/update_spec.rb +0 -55
  331. data/spec/spec_helper.rb +0 -90
  332. data/spec/sunrise_spec.rb +0 -29
  333. data/spec/support/helpers/controller_helper.rb +0 -27
  334. data/spec/support/helpers/controller_macros.rb +0 -40
  335. data/spec/support/hooks/structure.rb +0 -5
@@ -1,42 +0,0 @@
1
- # MySQL. Versions 4.1 and 5.0 are recommended.
2
- #
3
- # Install the MYSQL driver
4
- # gem install mysql2
5
- #
6
- # Ensure the MySQL gem is defined in your Gemfile
7
- # gem 'mysql2'
8
- #
9
- # And be sure to use new-style password hashing:
10
- # http://dev.mysql.com/doc/refman/5.0/en/old-client.html
11
- development:
12
- adapter: mysql2
13
- encoding: utf8
14
- reconnect: false
15
- database: sunrise_dummy_development
16
- pool: 5
17
- username: root
18
- password:
19
- socket: /tmp/mysql.sock
20
-
21
- # Warning: The database defined as "test" will be erased and
22
- # re-generated from your development database when you run "rake".
23
- # Do not set this db to the same as development or production.
24
- test:
25
- adapter: mysql2
26
- encoding: utf8
27
- reconnect: false
28
- database: sunrise_dummy_test
29
- pool: 5
30
- username: root
31
- password:
32
- socket: /tmp/mysql.sock
33
-
34
- production:
35
- adapter: mysql2
36
- encoding: utf8
37
- reconnect: false
38
- database: sunrise_dummy_production
39
- pool: 5
40
- username: root
41
- password:
42
- socket: /tmp/mysql.sock
@@ -1,34 +0,0 @@
1
- # And be sure to use new-style password hashing:
2
- # http://dev.mysql.com/doc/refman/5.0/en/old-client.html
3
- development:
4
- adapter: mysql2
5
- encoding: utf8
6
- reconnect: false
7
- database: dummy
8
- pool: 5
9
- username: root
10
- password:
11
- socket: /var/run/mysqld/mysqld.sock
12
-
13
- # Warning: The database defined as "test" will be erased and
14
- # re-generated from your development database when you run "rake".
15
- # Do not set this db to the same as development or production.
16
- test:
17
- adapter: mysql2
18
- encoding: utf8
19
- reconnect: false
20
- database: dummy_test
21
- pool: 5
22
- username: root
23
- password:
24
- socket: /var/run/mysqld/mysqld.sock
25
-
26
- production:
27
- adapter: mysql2
28
- encoding: utf8
29
- reconnect: true
30
- database: dummy
31
- pool: 5
32
- username: root
33
- password:
34
- socket: /var/run/mysqld/mysqld.sock
@@ -1,5 +0,0 @@
1
- # Load the rails application
2
- require File.expand_path('../application', __FILE__)
3
-
4
- # Initialize the rails application
5
- Dummy::Application.initialize!
@@ -1,33 +0,0 @@
1
- Dummy::Application.configure do
2
- # Settings specified here will take precedence over those in config/application.rb
3
-
4
- # In the development environment your application's code is reloaded on
5
- # every request. This slows down response time but is perfect for development
6
- # since you don't have to restart the web server when you make code changes.
7
- config.cache_classes = false
8
-
9
- # Log error messages when you accidentally call methods on nil.
10
- config.whiny_nils = true
11
-
12
- # Show full error reports and disable caching
13
- config.consider_all_requests_local = true
14
- config.action_controller.perform_caching = false
15
-
16
- # Don't care if the mailer can't send
17
- config.action_mailer.raise_delivery_errors = false
18
-
19
- # Print deprecation notices to the Rails logger
20
- config.active_support.deprecation = :log
21
-
22
- # Only use best-standards-support built into browsers
23
- config.action_dispatch.best_standards_support = :builtin
24
-
25
- # Do not compress assets
26
- config.assets.compress = false
27
-
28
- # Expands the lines which load the assets
29
- config.assets.debug = true
30
-
31
- # Do not eager load code on boot.
32
- config.eager_load = false
33
- end
@@ -1,66 +0,0 @@
1
- Dummy::Application.configure do
2
- # Settings specified here will take precedence over those in config/application.rb
3
-
4
- # Code is not reloaded between requests
5
- config.cache_classes = true
6
-
7
- # Full error reports are disabled and caching is turned on
8
- config.consider_all_requests_local = false
9
- config.action_controller.perform_caching = true
10
-
11
- # Disable Rails's static asset server (Apache or nginx will already do this)
12
- config.serve_static_assets = false
13
-
14
- # Compress JavaScripts and CSS
15
- config.assets.compress = true
16
-
17
- # Don't fallback to assets pipeline if a precompiled asset is missed
18
- config.assets.compile = false
19
-
20
- # Generate digests for assets URLs
21
- config.assets.digest = true
22
-
23
- # Defaults to Rails.root.join("public/assets")
24
- # config.assets.manifest = YOUR_PATH
25
-
26
- # Specifies the header that your server uses for sending files
27
- # config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
28
- # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
29
-
30
- # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
31
- # config.force_ssl = true
32
-
33
- # See everything in the log (default is :info)
34
- # config.log_level = :debug
35
-
36
- # Use a different logger for distributed setups
37
- # config.logger = SyslogLogger.new
38
-
39
- # Use a different cache store in production
40
- # config.cache_store = :mem_cache_store
41
-
42
- # Enable serving of images, stylesheets, and JavaScripts from an asset server
43
- # config.action_controller.asset_host = "http://assets.example.com"
44
-
45
- # Precompile additional assets (application.js, application.css, and all non-JS/CSS are already added)
46
- # config.assets.precompile += %w( search.js )
47
-
48
- # Disable delivery errors, bad email addresses will be ignored
49
- # config.action_mailer.raise_delivery_errors = false
50
-
51
- # Enable threaded mode
52
- # config.threadsafe!
53
-
54
- # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
55
- # the I18n.default_locale when a translation can not be found)
56
- config.i18n.fallbacks = true
57
-
58
- # Send deprecation notices to registered listeners
59
- config.active_support.deprecation = :notify
60
-
61
- # Eager load code on boot. This eager loads most of Rails and
62
- # your application in memory, allowing both thread web servers
63
- # and those relying on copy on write to perform better.
64
- # Rake tasks automatically ignore this option for performance.
65
- config.eager_load = true
66
- end
@@ -1,41 +0,0 @@
1
- Dummy::Application.configure do
2
- # Settings specified here will take precedence over those in config/application.rb
3
-
4
- # The test environment is used exclusively to run your application's
5
- # test suite. You never need to work with it otherwise. Remember that
6
- # your test database is "scratch space" for the test suite and is wiped
7
- # and recreated between test runs. Don't rely on the data there!
8
- config.cache_classes = true
9
-
10
- # Configure static asset server for tests with Cache-Control for performance
11
- config.serve_static_assets = true
12
- config.static_cache_control = "public, max-age=3600"
13
-
14
- # Show full error reports and disable caching
15
- config.consider_all_requests_local = true
16
- config.action_controller.perform_caching = false
17
-
18
- # Raise exceptions instead of rendering exception templates
19
- config.action_dispatch.show_exceptions = false
20
-
21
- # Disable request forgery protection in test environment
22
- config.action_controller.allow_forgery_protection = false
23
-
24
- # Tell Action Mailer not to deliver emails to the real world.
25
- # The :test delivery method accumulates sent emails in the
26
- # ActionMailer::Base.deliveries array.
27
- config.action_mailer.delivery_method = :test
28
-
29
- # Use SQL instead of Active Record's schema dumper when creating the test database.
30
- # This is necessary if your schema can't be completely dumped by the schema dumper,
31
- # like if you have constraints or database-specific column types
32
- # config.active_record.schema_format = :sql
33
-
34
- # Print deprecation notices to the stderr
35
- config.active_support.deprecation = :stderr
36
-
37
- # Do not eager load code on boot. This avoids loading your whole application
38
- # just for the purpose of running a single test. If you are using a tool that
39
- # preloads Rails for running tests, you may have to set it to true.
40
- config.eager_load = false
41
- end
@@ -1,7 +0,0 @@
1
- # Be sure to restart your server when you modify this file.
2
-
3
- # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
- # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
-
6
- # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
7
- # Rails.backtrace_cleaner.remove_silencers!
@@ -1,216 +0,0 @@
1
- # Use this hook to configure devise mailer, warden hooks and so forth.
2
- # Many of these configuration options can be set straight in your model.
3
- Devise.setup do |config|
4
- # ==> Mailer Configuration
5
- # Configure the e-mail address which will be shown in Devise::Mailer,
6
- # note that it will be overwritten if you use your own mailer class with default "from" parameter.
7
- config.mailer_sender = "please-change-me-at-config-initializers-devise@example.com"
8
-
9
- # Configure the class responsible to send e-mails.
10
- # config.mailer = "Devise::Mailer"
11
-
12
- # ==> ORM configuration
13
- # Load and configure the ORM. Supports :active_record (default) and
14
- # :mongoid (bson_ext recommended) by default. Other ORMs may be
15
- # available as additional gems.
16
- require "devise/orm/#{SUNRISE_ORM}"
17
-
18
- # ==> Configuration for any authentication mechanism
19
- # Configure which keys are used when authenticating a user. The default is
20
- # just :email. You can configure it to use [:username, :subdomain], so for
21
- # authenticating a user, both parameters are required. Remember that those
22
- # parameters are used only when authenticating and not when retrieving from
23
- # session. If you need permissions, you should implement that in a before filter.
24
- # You can also supply a hash where the value is a boolean determining whether
25
- # or not authentication should be aborted when the value is not present.
26
- # config.authentication_keys = [ :email ]
27
-
28
- # Configure parameters from the request object used for authentication. Each entry
29
- # given should be a request method and it will automatically be passed to the
30
- # find_for_authentication method and considered in your model lookup. For instance,
31
- # if you set :request_keys to [:subdomain], :subdomain will be used on authentication.
32
- # The same considerations mentioned for authentication_keys also apply to request_keys.
33
- # config.request_keys = []
34
-
35
- # Configure which authentication keys should be case-insensitive.
36
- # These keys will be downcased upon creating or modifying a user and when used
37
- # to authenticate or find a user. Default is :email.
38
- config.case_insensitive_keys = [ :email ]
39
-
40
- # Configure which authentication keys should have whitespace stripped.
41
- # These keys will have whitespace before and after removed upon creating or
42
- # modifying a user and when used to authenticate or find a user. Default is :email.
43
- config.strip_whitespace_keys = [ :email ]
44
-
45
- # Tell if authentication through request.params is enabled. True by default.
46
- # It can be set to an array that will enable params authentication only for the
47
- # given strategies, for example, `config.params_authenticatable = [:database]` will
48
- # enable it only for database (email + password) authentication.
49
- # config.params_authenticatable = true
50
-
51
- # Tell if authentication through HTTP Basic Auth is enabled. False by default.
52
- # It can be set to an array that will enable http authentication only for the
53
- # given strategies, for example, `config.http_authenticatable = [:token]` will
54
- # enable it only for token authentication.
55
- # config.http_authenticatable = false
56
-
57
- # If http headers should be returned for AJAX requests. True by default.
58
- # config.http_authenticatable_on_xhr = true
59
-
60
- # The realm used in Http Basic Authentication. "Application" by default.
61
- # config.http_authentication_realm = "Application"
62
-
63
- # It will change confirmation, password recovery and other workflows
64
- # to behave the same regardless if the e-mail provided was right or wrong.
65
- # Does not affect registerable.
66
- # config.paranoid = true
67
-
68
- # By default Devise will store the user in session. You can skip storage for
69
- # :http_auth and :token_auth by adding those symbols to the array below.
70
- # Notice that if you are skipping storage for all authentication paths, you
71
- # may want to disable generating routes to Devise's sessions controller by
72
- # passing :skip => :sessions to `devise_for` in your config/routes.rb
73
- config.skip_session_storage = [:http_auth]
74
-
75
- # ==> Configuration for :database_authenticatable
76
- # For bcrypt, this is the cost for hashing the password and defaults to 10. If
77
- # using other encryptors, it sets how many times you want the password re-encrypted.
78
- #
79
- # Limiting the stretches to just one in testing will increase the performance of
80
- # your test suite dramatically. However, it is STRONGLY RECOMMENDED to not use
81
- # a value less than 10 in other environments.
82
- config.stretches = Rails.env.test? ? 1 : 10
83
-
84
- # Setup a pepper to generate the encrypted password.
85
- config.secret_key = "31faae9edb5b7503a59fb2dfa7f64ba4cff679218c69688bf38a17e3bae0cf40ae551bf60b7af6073ebc5b63da5e8ed826fb9eae9e7f43af7ba406a57830a457"
86
-
87
- # ==> Configuration for :confirmable
88
- # A period that the user is allowed to access the website even without
89
- # confirming his account. For instance, if set to 2.days, the user will be
90
- # able to access the website for two days without confirming his account,
91
- # access will be blocked just in the third day. Default is 0.days, meaning
92
- # the user cannot access the website without confirming his account.
93
- # config.allow_unconfirmed_access_for = 2.days
94
-
95
- # If true, requires any email changes to be confirmed (exactly the same way as
96
- # initial account confirmation) to be applied. Requires additional unconfirmed_email
97
- # db field (see migrations). Until confirmed new email is stored in
98
- # unconfirmed email column, and copied to email column on successful confirmation.
99
- config.reconfirmable = true
100
-
101
- # Defines which key will be used when confirming an account
102
- # config.confirmation_keys = [ :email ]
103
-
104
- # ==> Configuration for :rememberable
105
- # The time the user will be remembered without asking for credentials again.
106
- # config.remember_for = 2.weeks
107
-
108
- # If true, extends the user's remember period when remembered via cookie.
109
- # config.extend_remember_period = false
110
-
111
- # Options to be passed to the created cookie. For instance, you can set
112
- # :secure => true in order to force SSL only cookies.
113
- # config.rememberable_options = {}
114
-
115
- # ==> Configuration for :validatable
116
- # Range for password length. Default is 6..128.
117
- config.password_length = 6..128
118
-
119
- # Email regex used to validate email formats. It simply asserts that
120
- # an one (and only one) @ exists in the given string. This is mainly
121
- # to give user feedback and not to assert the e-mail validity.
122
- config.email_regexp = /\A[^@]+@[^@]+\z/
123
-
124
- # ==> Configuration for :timeoutable
125
- # The time you want to timeout the user session without activity. After this
126
- # time the user will be asked for credentials again. Default is 30 minutes.
127
- config.timeout_in = 30.minutes
128
-
129
- # ==> Configuration for :lockable
130
- # Defines which strategy will be used to lock an account.
131
- # :failed_attempts = Locks an account after a number of failed attempts to sign in.
132
- # :none = No lock strategy. You should handle locking by yourself.
133
- config.lock_strategy = :failed_attempts
134
-
135
- # Defines which key will be used when locking and unlocking an account
136
- # config.unlock_keys = [ :email ]
137
-
138
- # Defines which strategy will be used to unlock an account.
139
- # :email = Sends an unlock link to the user email
140
- # :time = Re-enables login after a certain amount of time (see :unlock_in below)
141
- # :both = Enables both strategies
142
- # :none = No unlock strategy. You should handle unlocking by yourself.
143
- # config.unlock_strategy = :both
144
-
145
- # Number of authentication tries before locking an account if lock_strategy
146
- # is failed attempts.
147
- config.maximum_attempts = 20
148
-
149
- # Time interval to unlock the account if :time is enabled as unlock_strategy.
150
- config.unlock_in = 1.hour
151
-
152
- # ==> Configuration for :recoverable
153
- #
154
- # Defines which key will be used when recovering the password for an account
155
- # config.reset_password_keys = [ :email ]
156
-
157
- # Time interval you can reset your password with a reset password key.
158
- # Don't put a too small interval or your users won't have the time to
159
- # change their passwords.
160
- config.reset_password_within = 6.hours
161
-
162
- # ==> Configuration for :encryptable
163
- # Allow you to use another encryption algorithm besides bcrypt (default). You can use
164
- # :sha1, :sha512 or encryptors from others authentication tools as :clearance_sha1,
165
- # :authlogic_sha512 (then you should set stretches above to 20 for default behavior)
166
- # and :restful_authentication_sha1 (then you should set stretches to 10, and copy
167
- # REST_AUTH_SITE_KEY to pepper)
168
- # config.encryptor = :sha512
169
-
170
- # ==> Configuration for :token_authenticatable
171
- # Defines name of the authentication token params key
172
- # config.token_authentication_key = :auth_token
173
-
174
- # ==> Scopes configuration
175
- # Turn scoped views on. Before rendering "sessions/new", it will first check for
176
- # "users/sessions/new". It's turned off by default because it's slower if you
177
- # are using only default views.
178
- # config.scoped_views = false
179
-
180
- # Configure the default scope given to Warden. By default it's the first
181
- # devise role declared in your routes (usually :user).
182
- config.default_scope = :user
183
-
184
- # Configure sign_out behavior.
185
- # Sign_out action can be scoped (i.e. /users/sign_out affects only :user scope).
186
- # The default is true, which means any logout action will sign out all active scopes.
187
- # config.sign_out_all_scopes = true
188
-
189
- # ==> Navigation configuration
190
- # Lists the formats that should be treated as navigational. Formats like
191
- # :html, should redirect to the sign in page when the user does not have
192
- # access, but formats like :xml or :json, should return 401.
193
- #
194
- # If you have any extra navigational formats, like :iphone or :mobile, you
195
- # should add them to the navigational formats lists.
196
- #
197
- # The "*/*" below is required to match Internet Explorer requests.
198
- # config.navigational_formats = ["*/*", :html]
199
-
200
- # The default HTTP method used to sign out a resource. Default is :delete.
201
- config.sign_out_via = :delete
202
-
203
- # ==> OmniAuth
204
- # Add a new OmniAuth provider. Check the wiki for more information on setting
205
- # up on your models and hooks.
206
- # config.omniauth :github, 'APP_ID', 'APP_SECRET', :scope => 'user,public_repo'
207
-
208
- # ==> Warden configuration
209
- # If you want to use other strategies, that are not supported by Devise, or
210
- # change the failure app, you can configure them inside the config.warden block.
211
- #
212
- # config.warden do |manager|
213
- # manager.intercept_401 = false
214
- # manager.default_strategies(:scope => :user).unshift :some_external_strategy
215
- # end
216
- end