ecm_cms_navigation 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (203) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.rdoc +3 -0
  3. data/Rakefile +38 -0
  4. data/app/admin/ecm/cms_navigation/navigation_items.rb +75 -0
  5. data/app/admin/ecm/cms_navigation/navigations.rb +51 -0
  6. data/app/assets/stylesheets/active_admin/ecm-cms-navigation.css +3 -0
  7. data/app/helpers/ecm/cms_navigation_helper.rb +37 -0
  8. data/app/models/ecm/cms_navigation/navigation.rb +24 -0
  9. data/app/models/ecm/cms_navigation/navigation_item.rb +38 -0
  10. data/config/locales/ecm.cms_navigation.de.yml +26 -0
  11. data/config/locales/ecm.cms_navigation.en.yml +26 -0
  12. data/config/locales/ecm.cms_navigation.navigation.de.yml +14 -0
  13. data/config/locales/ecm.cms_navigation.navigation.en.yml +14 -0
  14. data/config/locales/ecm.cms_navigation.navigation_item.de.yml +16 -0
  15. data/config/locales/ecm.cms_navigation.navigation_item.en.yml +16 -0
  16. data/db/migrate/001_create_ecm_cms_navigation_navigations.rb +10 -0
  17. data/db/migrate/002_create_ecm_cms_navigation_navigation_items.rb +17 -0
  18. data/lib/ecm/cms_navigation/engine.rb +34 -0
  19. data/lib/ecm/cms_navigation/version.rb +5 -0
  20. data/lib/ecm_cms_navigation.rb +2 -0
  21. data/lib/generators/ecm/cms_navigation/install/install_generator.rb +16 -0
  22. data/lib/generators/ecm/cms_navigation/navigation/navigation_generator.rb +15 -0
  23. data/lib/generators/ecm/cms_navigation/navigation/templates/navigation.rb +1 -0
  24. data/lib/tasks/ecm_cms_navigation_tasks.rake +4 -0
  25. data/test/dummy/README.rdoc +261 -0
  26. data/test/dummy/Rakefile +7 -0
  27. data/test/dummy/app/admin/admin_users.rb +32 -0
  28. data/test/dummy/app/admin/dashboards.rb +44 -0
  29. data/test/dummy/app/assets/javascripts/active_admin.js +1 -0
  30. data/test/dummy/app/assets/javascripts/application.js +15 -0
  31. data/test/dummy/app/assets/stylesheets/active_admin.css.scss +6 -0
  32. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  33. data/test/dummy/app/controllers/application_controller.rb +3 -0
  34. data/test/dummy/app/controllers/home_controller.rb +4 -0
  35. data/test/dummy/app/helpers/application_helper.rb +2 -0
  36. data/test/dummy/app/models/admin_user.rb +17 -0
  37. data/test/dummy/app/views/home/index.html.erb +6 -0
  38. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  39. data/test/dummy/config/application.rb +59 -0
  40. data/test/dummy/config/boot.rb +10 -0
  41. data/test/dummy/config/database.yml +25 -0
  42. data/test/dummy/config/environment.rb +5 -0
  43. data/test/dummy/config/environments/development.rb +37 -0
  44. data/test/dummy/config/environments/production.rb +67 -0
  45. data/test/dummy/config/environments/test.rb +37 -0
  46. data/test/dummy/config/initializers/active_admin.rb +134 -0
  47. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  48. data/test/dummy/config/initializers/devise.rb +216 -0
  49. data/test/dummy/config/initializers/inflections.rb +15 -0
  50. data/test/dummy/config/initializers/mime_types.rb +5 -0
  51. data/test/dummy/config/initializers/secret_token.rb +7 -0
  52. data/test/dummy/config/initializers/session_store.rb +8 -0
  53. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  54. data/test/dummy/config/locales/admin_user.de.yml +16 -0
  55. data/test/dummy/config/locales/de.yml +161 -0
  56. data/test/dummy/config/locales/devise.en.yml +57 -0
  57. data/test/dummy/config/locales/ecm.admin.de.yml +5 -0
  58. data/test/dummy/config/locales/ecm.cms-core.de.yml +48 -0
  59. data/test/dummy/config/locales/ecm.cms-core.en.yml +48 -0
  60. data/test/dummy/config/locales/ecm.cms-navigation.de.yml +47 -0
  61. data/test/dummy/config/locales/ecm.cms-navigation.en.yml +46 -0
  62. data/test/dummy/config/locales/en.yml +5 -0
  63. data/test/dummy/config/navigation.rb +0 -0
  64. data/test/dummy/config/routes.rb +63 -0
  65. data/test/dummy/config.ru +4 -0
  66. data/test/dummy/db/development.sqlite3 +0 -0
  67. data/test/dummy/db/migrate/20120407123948_devise_create_admin_users.rb +52 -0
  68. data/test/dummy/db/migrate/20120407143959_create_admin_notes.rb +17 -0
  69. data/test/dummy/db/migrate/20120407144000_move_admin_notes_to_comments.rb +25 -0
  70. data/test/dummy/db/migrate/20120621131006_create_ecm_cms_navigation_navigations.ecm_cms_navigation_engine.rb +11 -0
  71. data/test/dummy/db/migrate/20120621131007_create_ecm_cms_navigation_navigation_items.ecm_cms_navigation_engine.rb +18 -0
  72. data/test/dummy/db/schema.rb +70 -0
  73. data/test/dummy/log/development.log +6203 -0
  74. data/test/dummy/public/404.html +26 -0
  75. data/test/dummy/public/422.html +26 -0
  76. data/test/dummy/public/500.html +25 -0
  77. data/test/dummy/public/favicon.ico +0 -0
  78. data/test/dummy/public/stylesheets/active_admin/ecm-cms-navigation.css +3 -0
  79. data/test/dummy/script/rails +6 -0
  80. data/test/dummy/test/fixtures/admin_users.yml +11 -0
  81. data/test/dummy/test/unit/admin_user_test.rb +7 -0
  82. data/test/dummy/tmp/cache/assets/C1D/230/sprockets%2F02e9e2543661cd626253c7f004464493 +0 -0
  83. data/test/dummy/tmp/cache/assets/C80/820/sprockets%2F2fcd9e4a7533803943533046c5f3d560 +0 -0
  84. data/test/dummy/tmp/cache/assets/C8D/7C0/sprockets%2F48c1ed30977942d1674d3199d08b436d +0 -0
  85. data/test/dummy/tmp/cache/assets/C8E/6C0/sprockets%2Ff6e52920f98efa019261497767e041b5 +0 -0
  86. data/test/dummy/tmp/cache/assets/CAB/C40/sprockets%2F4477e59061a7d1e7ad744e6f2670a001 +0 -0
  87. data/test/dummy/tmp/cache/assets/CBC/520/sprockets%2F4204f20b76901301c0004b9df1cdde04 +0 -0
  88. data/test/dummy/tmp/cache/assets/CBE/0D0/sprockets%2F3b521b46440e9901877e67b3d595d6ef +0 -0
  89. data/test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
  90. data/test/dummy/tmp/cache/assets/CDB/040/sprockets%2Fc732474e67003a4eb840eb44c5ca9385 +0 -0
  91. data/test/dummy/tmp/cache/assets/CDE/A60/sprockets%2Fc8fd4776f82e110ec70f1112369fc333 +0 -0
  92. data/test/dummy/tmp/cache/assets/CF0/C10/sprockets%2F48e5f698b22e7a97ebc0d7515d180827 +0 -0
  93. data/test/dummy/tmp/cache/assets/CFB/BB0/sprockets%2F03ed1ef04e988e52c1bb424143b7401a +0 -0
  94. data/test/dummy/tmp/cache/assets/CFC/CE0/sprockets%2F081e67e39b56f0f99c68593a5ef2925d +0 -0
  95. data/test/dummy/tmp/cache/assets/D08/940/sprockets%2Ff3e82f5481bc64820c2a2f270045f6fa +0 -0
  96. data/test/dummy/tmp/cache/assets/D09/9B0/sprockets%2F3169613ce57de4cdf262803a5dd2b740 +0 -0
  97. data/test/dummy/tmp/cache/assets/D0D/A80/sprockets%2F5459a5ca0e63be62545e2d4a4742b7c8 +0 -0
  98. data/test/dummy/tmp/cache/assets/D12/D00/sprockets%2Fddf374b4e6ec55510ef906085094a54c +0 -0
  99. data/test/dummy/tmp/cache/assets/D14/D40/sprockets%2Fd108c2aff238873e06a7c6fb079d7443 +0 -0
  100. data/test/dummy/tmp/cache/assets/D17/750/sprockets%2F6f150f81cc3f03a91888db0b6875af57 +0 -0
  101. data/test/dummy/tmp/cache/assets/D18/7A0/sprockets%2Fd70b33bb7e9db0e665965b947a6275e0 +0 -0
  102. data/test/dummy/tmp/cache/assets/D2D/010/sprockets%2Fd48e0f08b09c78a502d11ec2df419a00 +0 -0
  103. data/test/dummy/tmp/cache/assets/D2E/C90/sprockets%2Fd106d47b969c6805798ff5cb05f8c59f +0 -0
  104. data/test/dummy/tmp/cache/assets/D31/E50/sprockets%2F86295df08e3769c5c68b3fccc977727c +0 -0
  105. data/test/dummy/tmp/cache/assets/D32/010/sprockets%2F7f752ae9016db83230fcf2c24017c4ae +0 -0
  106. data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  107. data/test/dummy/tmp/cache/assets/D38/540/sprockets%2F86e1ad844bc9df4491a2a52b870421db +0 -0
  108. data/test/dummy/tmp/cache/assets/D39/910/sprockets%2F7a5ba442debf604fd3195483a4ba1875 +0 -0
  109. data/test/dummy/tmp/cache/assets/D3B/630/sprockets%2Fc549fd403a43fca068992bc190e32ca8 +0 -0
  110. data/test/dummy/tmp/cache/assets/D48/640/sprockets%2F9f4f18d910b678b1d0777e04cdaf6f24 +0 -0
  111. data/test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
  112. data/test/dummy/tmp/cache/assets/D59/D70/sprockets%2Fed9f0de1b65ae8d7ef89087c83728461 +0 -0
  113. data/test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
  114. data/test/dummy/tmp/cache/assets/D65/A10/sprockets%2F5d2a785575b7ddc8e93e1ab10c3f201b +0 -0
  115. data/test/dummy/tmp/cache/assets/D79/910/sprockets%2F6f54ace661399cc3bf262f81d9c5a7f0 +0 -0
  116. data/test/dummy/tmp/cache/assets/D81/4B0/sprockets%2F33d0fa9de67898d28edc22d7dc7c2727 +0 -0
  117. data/test/dummy/tmp/cache/assets/D85/0C0/sprockets%2F3faa7a2282b2a4530f7253eb9a2b5bac +0 -0
  118. data/test/dummy/tmp/cache/assets/D93/4C0/sprockets%2F857ecd2092cee11f740b3cf2e373ad2a +0 -0
  119. data/test/dummy/tmp/cache/assets/D9F/990/sprockets%2Faef93bd19f09e008e68ce6f1bcb09412 +0 -0
  120. data/test/dummy/tmp/cache/assets/DA9/0B0/sprockets%2Feea56b6eec8c2eb4069704df6f15a289 +0 -0
  121. data/test/dummy/tmp/cache/assets/DA9/900/sprockets%2Fe1f74b542e4ee1ec991bb3e84209e8ee +0 -0
  122. data/test/dummy/tmp/cache/assets/DB8/A40/sprockets%2F529735aeec02af5d05bb03b1de2a5ad8 +0 -0
  123. data/test/dummy/tmp/cache/assets/DCB/210/sprockets%2F598702ccb42e02ff5db7ac4f6670afda +0 -0
  124. data/test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
  125. data/test/dummy/tmp/cache/assets/DDE/420/sprockets%2Ffb8b186d5bf0307f86f65fc787d2adeb +0 -0
  126. data/test/dummy/tmp/cache/assets/DF9/680/sprockets%2F552b35d5afffa72ded4bb41f2e88d41a +0 -0
  127. data/test/dummy/tmp/cache/assets/DFE/E50/sprockets%2F7c40c693372adf7a3fafc7aae8b63af5 +0 -0
  128. data/test/dummy/tmp/cache/assets/E04/5A0/sprockets%2Fda71e1fafe3707d7ff5532b1f6c89baf +0 -0
  129. data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  130. data/test/dummy/tmp/cache/sass/2e0f90a26ed3334980f9f0cefc7301c037c5e6a7/_all.css.scssc +0 -0
  131. data/test/dummy/tmp/cache/sass/2e0f90a26ed3334980f9f0cefc7301c037c5e6a7/_buttons.css.scssc +0 -0
  132. data/test/dummy/tmp/cache/sass/2e0f90a26ed3334980f9f0cefc7301c037c5e6a7/_gradients.css.scssc +0 -0
  133. data/test/dummy/tmp/cache/sass/2e0f90a26ed3334980f9f0cefc7301c037c5e6a7/_icons.css.scssc +0 -0
  134. data/test/dummy/tmp/cache/sass/2e0f90a26ed3334980f9f0cefc7301c037c5e6a7/_reset.css.scssc +0 -0
  135. data/test/dummy/tmp/cache/sass/2e0f90a26ed3334980f9f0cefc7301c037c5e6a7/_rounded.css.scssc +0 -0
  136. data/test/dummy/tmp/cache/sass/2e0f90a26ed3334980f9f0cefc7301c037c5e6a7/_sections.css.scssc +0 -0
  137. data/test/dummy/tmp/cache/sass/2e0f90a26ed3334980f9f0cefc7301c037c5e6a7/_shadows.css.scssc +0 -0
  138. data/test/dummy/tmp/cache/sass/2e0f90a26ed3334980f9f0cefc7301c037c5e6a7/_typography.scssc +0 -0
  139. data/test/dummy/tmp/cache/sass/2e0f90a26ed3334980f9f0cefc7301c037c5e6a7/_utilities.scssc +0 -0
  140. data/test/dummy/tmp/cache/sass/2e0f90a26ed3334980f9f0cefc7301c037c5e6a7/_variables.css.scssc +0 -0
  141. data/test/dummy/tmp/cache/sass/378a5efbe5b1fb270a5eba61f1413b4042bc0f25/_button.scssc +0 -0
  142. data/test/dummy/tmp/cache/sass/378a5efbe5b1fb270a5eba61f1413b4042bc0f25/_clearfix.scssc +0 -0
  143. data/test/dummy/tmp/cache/sass/378a5efbe5b1fb270a5eba61f1413b4042bc0f25/_font-family.scssc +0 -0
  144. data/test/dummy/tmp/cache/sass/378a5efbe5b1fb270a5eba61f1413b4042bc0f25/_html5-input-types.scssc +0 -0
  145. data/test/dummy/tmp/cache/sass/378a5efbe5b1fb270a5eba61f1413b4042bc0f25/_position.scssc +0 -0
  146. data/test/dummy/tmp/cache/sass/378a5efbe5b1fb270a5eba61f1413b4042bc0f25/_timing-functions.scssc +0 -0
  147. data/test/dummy/tmp/cache/sass/69c1f805ecd19454a5adf31f922b96c98249e909/_batch_actions.css.scssc +0 -0
  148. data/test/dummy/tmp/cache/sass/69c1f805ecd19454a5adf31f922b96c98249e909/_blank_slates.scssc +0 -0
  149. data/test/dummy/tmp/cache/sass/69c1f805ecd19454a5adf31f922b96c98249e909/_breadcrumbs.scssc +0 -0
  150. data/test/dummy/tmp/cache/sass/69c1f805ecd19454a5adf31f922b96c98249e909/_buttons.scssc +0 -0
  151. data/test/dummy/tmp/cache/sass/69c1f805ecd19454a5adf31f922b96c98249e909/_columns.scssc +0 -0
  152. data/test/dummy/tmp/cache/sass/69c1f805ecd19454a5adf31f922b96c98249e909/_comments.css.scssc +0 -0
  153. data/test/dummy/tmp/cache/sass/69c1f805ecd19454a5adf31f922b96c98249e909/_date_picker.css.scssc +0 -0
  154. data/test/dummy/tmp/cache/sass/69c1f805ecd19454a5adf31f922b96c98249e909/_flash_messages.css.scssc +0 -0
  155. data/test/dummy/tmp/cache/sass/69c1f805ecd19454a5adf31f922b96c98249e909/_grid.scssc +0 -0
  156. data/test/dummy/tmp/cache/sass/69c1f805ecd19454a5adf31f922b96c98249e909/_links.scssc +0 -0
  157. data/test/dummy/tmp/cache/sass/69c1f805ecd19454a5adf31f922b96c98249e909/_pagination.scssc +0 -0
  158. data/test/dummy/tmp/cache/sass/69c1f805ecd19454a5adf31f922b96c98249e909/_panels.scssc +0 -0
  159. data/test/dummy/tmp/cache/sass/69c1f805ecd19454a5adf31f922b96c98249e909/_popovers.css.scssc +0 -0
  160. data/test/dummy/tmp/cache/sass/69c1f805ecd19454a5adf31f922b96c98249e909/_scopes.scssc +0 -0
  161. data/test/dummy/tmp/cache/sass/69c1f805ecd19454a5adf31f922b96c98249e909/_status_tags.scssc +0 -0
  162. data/test/dummy/tmp/cache/sass/69c1f805ecd19454a5adf31f922b96c98249e909/_table_tools.css.scssc +0 -0
  163. data/test/dummy/tmp/cache/sass/69c1f805ecd19454a5adf31f922b96c98249e909/_tables.css.scssc +0 -0
  164. data/test/dummy/tmp/cache/sass/6d50bd3bb8f79c9ddfeb03076798c5250f1bb8b6/_footer.scssc +0 -0
  165. data/test/dummy/tmp/cache/sass/6d50bd3bb8f79c9ddfeb03076798c5250f1bb8b6/_main_structure.scssc +0 -0
  166. data/test/dummy/tmp/cache/sass/6d50bd3bb8f79c9ddfeb03076798c5250f1bb8b6/_title_bar.scssc +0 -0
  167. data/test/dummy/tmp/cache/sass/7842134ab963cf09dadd7c2615b49cc6825f6976/_bourbon.scssc +0 -0
  168. data/test/dummy/tmp/cache/sass/7fa69198e74897139322c878f468e646709df4fe/_base.css.scssc +0 -0
  169. data/test/dummy/tmp/cache/sass/7fa69198e74897139322c878f468e646709df4fe/_forms.css.scssc +0 -0
  170. data/test/dummy/tmp/cache/sass/7fa69198e74897139322c878f468e646709df4fe/_header.css.scssc +0 -0
  171. data/test/dummy/tmp/cache/sass/7fa69198e74897139322c878f468e646709df4fe/_mixins.css.scssc +0 -0
  172. data/test/dummy/tmp/cache/sass/7fa69198e74897139322c878f468e646709df4fe/_typography.css.scssc +0 -0
  173. data/test/dummy/tmp/cache/sass/7fa69198e74897139322c878f468e646709df4fe/print.css.scssc +0 -0
  174. data/test/dummy/tmp/cache/sass/93540e1dfd808fbf20fd1c5388bc9c65df2ce6a0/active_admin.css.scssc +0 -0
  175. data/test/dummy/tmp/cache/sass/97dc896013aa89b6e113ee6298b3e4ae01f2ca5c/_dashboard.scssc +0 -0
  176. data/test/dummy/tmp/cache/sass/97dc896013aa89b6e113ee6298b3e4ae01f2ca5c/_logged_out.scssc +0 -0
  177. data/test/dummy/tmp/cache/sass/abf1c7b1db7af47efaba561dc159ec42907e4376/_animation.scssc +0 -0
  178. data/test/dummy/tmp/cache/sass/abf1c7b1db7af47efaba561dc159ec42907e4376/_appearance.scssc +0 -0
  179. data/test/dummy/tmp/cache/sass/abf1c7b1db7af47efaba561dc159ec42907e4376/_background-image.scssc +0 -0
  180. data/test/dummy/tmp/cache/sass/abf1c7b1db7af47efaba561dc159ec42907e4376/_background-size.scssc +0 -0
  181. data/test/dummy/tmp/cache/sass/abf1c7b1db7af47efaba561dc159ec42907e4376/_border-image.scssc +0 -0
  182. data/test/dummy/tmp/cache/sass/abf1c7b1db7af47efaba561dc159ec42907e4376/_border-radius.scssc +0 -0
  183. data/test/dummy/tmp/cache/sass/abf1c7b1db7af47efaba561dc159ec42907e4376/_box-shadow.scssc +0 -0
  184. data/test/dummy/tmp/cache/sass/abf1c7b1db7af47efaba561dc159ec42907e4376/_box-sizing.scssc +0 -0
  185. data/test/dummy/tmp/cache/sass/abf1c7b1db7af47efaba561dc159ec42907e4376/_columns.scssc +0 -0
  186. data/test/dummy/tmp/cache/sass/abf1c7b1db7af47efaba561dc159ec42907e4376/_flex-box.scssc +0 -0
  187. data/test/dummy/tmp/cache/sass/abf1c7b1db7af47efaba561dc159ec42907e4376/_inline-block.scssc +0 -0
  188. data/test/dummy/tmp/cache/sass/abf1c7b1db7af47efaba561dc159ec42907e4376/_linear-gradient.scssc +0 -0
  189. data/test/dummy/tmp/cache/sass/abf1c7b1db7af47efaba561dc159ec42907e4376/_radial-gradient.scssc +0 -0
  190. data/test/dummy/tmp/cache/sass/abf1c7b1db7af47efaba561dc159ec42907e4376/_transform.scssc +0 -0
  191. data/test/dummy/tmp/cache/sass/abf1c7b1db7af47efaba561dc159ec42907e4376/_transition.scssc +0 -0
  192. data/test/dummy/tmp/cache/sass/abf1c7b1db7af47efaba561dc159ec42907e4376/_user-select.scssc +0 -0
  193. data/test/dummy/tmp/cache/sass/b8feec7b5dd9bdfcb6b02acda27daed749f5790a/_deprecated-webkit-gradient.scssc +0 -0
  194. data/test/dummy/tmp/cache/sass/b8feec7b5dd9bdfcb6b02acda27daed749f5790a/_flex-grid.scssc +0 -0
  195. data/test/dummy/tmp/cache/sass/b8feec7b5dd9bdfcb6b02acda27daed749f5790a/_grid-width.scssc +0 -0
  196. data/test/dummy/tmp/cache/sass/b8feec7b5dd9bdfcb6b02acda27daed749f5790a/_linear-gradient.scssc +0 -0
  197. data/test/dummy/tmp/cache/sass/b8feec7b5dd9bdfcb6b02acda27daed749f5790a/_modular-scale.scssc +0 -0
  198. data/test/dummy/tmp/cache/sass/b8feec7b5dd9bdfcb6b02acda27daed749f5790a/_radial-gradient.scssc +0 -0
  199. data/test/dummy/tmp/cache/sass/b8feec7b5dd9bdfcb6b02acda27daed749f5790a/_render-gradients.scssc +0 -0
  200. data/test/dummy/tmp/cache/sass/b8feec7b5dd9bdfcb6b02acda27daed749f5790a/_tint-shade.scssc +0 -0
  201. data/test/ecm_cms_navigation_test.rb +7 -0
  202. data/test/test_helper.rb +15 -0
  203. metadata +520 -0
@@ -0,0 +1,7 @@
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!
@@ -0,0 +1,216 @@
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/active_record'
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.pepper = "3f5e39c6e7c733643f1e6cf34a7d5f2ba75b2b0dbd294af5978d02de33bfc81a9aede27ad11a84ef5c0d5cc2b9fceec0e0b94d4744f5db14b339d447e2cdf4a8"
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 (exctly 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.cookie_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
@@ -0,0 +1,15 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format
4
+ # (all these examples are active by default):
5
+ # ActiveSupport::Inflector.inflections do |inflect|
6
+ # inflect.plural /^(ox)$/i, '\1en'
7
+ # inflect.singular /^(ox)en/i, '\1'
8
+ # inflect.irregular 'person', 'people'
9
+ # inflect.uncountable %w( fish sheep )
10
+ # end
11
+ #
12
+ # These inflection rules are supported but not enabled by default:
13
+ # ActiveSupport::Inflector.inflections do |inflect|
14
+ # inflect.acronym 'RESTful'
15
+ # end
@@ -0,0 +1,5 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
5
+ # Mime::Type.register_alias "text/html", :iphone
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+ # Make sure the secret is at least 30 characters and all random,
6
+ # no regular words or you'll be exposed to dictionary attacks.
7
+ Dummy::Application.config.secret_token = '10253f05cbced3f92a80208f1d55fbbb3f4a881a48885531ade2047a74380da6058c777011ce4c5898e2d243ac6477709a824e517e311e1e858bbfbeb94ed1ec'
@@ -0,0 +1,8 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Dummy::Application.config.session_store :cookie_store, key: '_dummy_session'
4
+
5
+ # Use the database for sessions instead of the cookie-based default,
6
+ # which shouldn't be used to store highly confidential information
7
+ # (create the session table with "rails generate session_migration")
8
+ # Dummy::Application.config.session_store :active_record_store
@@ -0,0 +1,14 @@
1
+ # Be sure to restart your server when you modify this file.
2
+ #
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters format: [:json]
9
+ end
10
+
11
+ # Disable root element in JSON by default.
12
+ ActiveSupport.on_load(:active_record) do
13
+ self.include_root_in_json = false
14
+ end
@@ -0,0 +1,16 @@
1
+ de:
2
+ activerecord:
3
+ attributes:
4
+ admin_user:
5
+ created_at: "Registriert"
6
+ current_password: "Aktuelles Passwort"
7
+ email: "E-Mail"
8
+ last_sign_in_at: "Zuletzt angemeldet"
9
+ last_sign_in_ip: "IP Adresse"
10
+ password: "Passwort"
11
+ password_confirmation: "Passwort wiederholen"
12
+ sign_in_count: "Anmeldungen"
13
+ models:
14
+ admin_user:
15
+ one: "Administrator"
16
+ other: "Administratoren"
@@ -0,0 +1,161 @@
1
+ # German translations for Ruby on Rails
2
+ # by Clemens Kofler (clemens@railway.at)
3
+
4
+ de:
5
+ :false: "nein"
6
+ :true: "ja"
7
+ helpers:
8
+ select:
9
+ prompt: Bitte wählen
10
+ submit:
11
+ create: ! '%{model} erstellen'
12
+ submit: ! '%{model} speichern'
13
+ update: ! '%{model} aktualisieren'
14
+ date:
15
+ formats:
16
+ default: "%d.%m.%Y"
17
+ short: "%e. %b"
18
+ long: "%e. %B %Y"
19
+ only_day: "%e"
20
+
21
+ day_names: [Sonntag, Montag, Dienstag, Mittwoch, Donnerstag, Freitag, Samstag]
22
+ abbr_day_names: [So, Mo, Di, Mi, Do, Fr, Sa]
23
+ month_names: [~, Januar, Februar, März, April, Mai, Juni, Juli, August, September, Oktober, November, Dezember]
24
+ abbr_month_names: [~, Jan, Feb, Mär, Apr, Mai, Jun, Jul, Aug, Sep, Okt, Nov, Dez]
25
+ order: [ :day, :month, :year ]
26
+
27
+ time:
28
+ formats:
29
+ default: "%A, %d. %B %Y, %H:%M Uhr"
30
+ short: "%d. %B, %H:%M Uhr"
31
+ long: "%A, %d. %B %Y, %H:%M Uhr"
32
+ time: "%H:%M"
33
+ date: "%d.%m.%Y"
34
+
35
+ am: "vormittags"
36
+ pm: "nachmittags"
37
+
38
+ datetime:
39
+ distance_in_words:
40
+ half_a_minute: 'eine halbe Minute'
41
+ less_than_x_seconds:
42
+ one: 'weniger als eine Sekunde'
43
+ other: 'weniger als %{count} Sekunden'
44
+ x_seconds:
45
+ one: 'eine Sekunde'
46
+ other: '%{count} Sekunden'
47
+ less_than_x_minutes:
48
+ one: 'weniger als eine Minute'
49
+ other: 'weniger als %{count} Minuten'
50
+ x_minutes:
51
+ one: 'eine Minute'
52
+ other: '%{count} Minuten'
53
+ about_x_hours:
54
+ one: 'etwa eine Stunde'
55
+ other: 'etwa %{count} Stunden'
56
+ x_days:
57
+ one: 'ein Tag'
58
+ other: '%{count} Tage'
59
+ about_x_months:
60
+ one: 'etwa ein Monat'
61
+ other: 'etwa %{count} Monate'
62
+ x_months:
63
+ one: 'ein Monat'
64
+ other: '%{count} Monate'
65
+ almost_x_years:
66
+ one: 'fast ein Jahr'
67
+ other: 'fast %{count} Jahre'
68
+ about_x_years:
69
+ one: 'etwa ein Jahr'
70
+ other: 'etwa %{count} Jahre'
71
+ over_x_years:
72
+ one: 'mehr als ein Jahr'
73
+ other: 'mehr als %{count} Jahre'
74
+ prompts:
75
+ second: "Sekunden"
76
+ minute: "Minuten"
77
+ hour: "Stunden"
78
+ day: "Tag"
79
+ month: "Monat"
80
+ year: "Jahr"
81
+
82
+ number:
83
+ format:
84
+ precision: 2
85
+ separator: ','
86
+ delimiter: '.'
87
+ currency:
88
+ format:
89
+ unit: '€'
90
+ format: '%n%u'
91
+ separator: ","
92
+ delimiter: ""
93
+ precision: 2
94
+ percentage:
95
+ format:
96
+ delimiter: ""
97
+ precision:
98
+ format:
99
+ delimiter: ""
100
+ human:
101
+ format:
102
+ delimiter: ""
103
+ precision: 1
104
+ storage_units:
105
+ # Storage units output formatting.
106
+ # %u is the storage unit, %n is the number (default: 2 MB)
107
+ format: "%n %u"
108
+ units:
109
+ byte:
110
+ one: "Byte"
111
+ other: "Bytes"
112
+ kb: "KB"
113
+ mb: "MB"
114
+ gb: "GB"
115
+ tb: "TB"
116
+
117
+ support:
118
+ array:
119
+ words_connector: ", "
120
+ two_words_connector: " und "
121
+ last_word_connector: " und "
122
+ select:
123
+ prompt: "Bitte wählen:"
124
+
125
+ activemodel:
126
+ errors:
127
+ template:
128
+ header:
129
+ one: "Konnte %{model} nicht speichern: ein Fehler."
130
+ other: "Konnte %{model} nicht speichern: %{count} Fehler."
131
+ body: "Bitte überprüfen Sie die folgenden Felder:"
132
+
133
+ activerecord:
134
+ errors:
135
+ template:
136
+ header:
137
+ one: "Konnte %{model} nicht speichern: ein Fehler."
138
+ other: "Konnte %{model} nicht speichern: %{count} Fehler."
139
+ body: "Bitte überprüfen Sie die folgenden Felder:"
140
+
141
+ messages:
142
+ inclusion: "ist kein gültiger Wert"
143
+ exclusion: "ist nicht verfügbar"
144
+ invalid: "ist nicht gültig"
145
+ confirmation: "stimmt nicht mit der Bestätigung überein"
146
+ accepted: "muss akzeptiert werden"
147
+ empty: "muss ausgefüllt werden"
148
+ blank: "muss ausgefüllt werden"
149
+ too_long: "ist zu lang (nicht mehr als %{count} Zeichen)"
150
+ too_short: "ist zu kurz (nicht weniger als %{count} Zeichen)"
151
+ wrong_length: "hat die falsche Länge (muss genau %{count} Zeichen haben)"
152
+ taken: "ist bereits vergeben"
153
+ not_a_number: "ist keine Zahl"
154
+ greater_than: "muss größer als %{count} sein"
155
+ greater_than_or_equal_to: "muss größer oder gleich %{count} sein"
156
+ equal_to: "muss genau %{count} sein"
157
+ less_than: "muss kleiner als %{count} sein"
158
+ less_than_or_equal_to: "muss kleiner oder gleich %{count} sein"
159
+ odd: "muss ungerade sein"
160
+ even: "muss gerade sein"
161
+ record_invalid: "Gültigkeitsprüfung ist fehlgeschlagen: %{errors}"