hatchy 0.0.5.pre

Sign up to get free protection for your applications and to get access to all the features.
Files changed (500) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/Rakefile +20 -0
  4. data/app/assets/javascripts/hatchy/admin.js +36 -0
  5. data/app/assets/javascripts/hatchy/admin/dashboard.js +26 -0
  6. data/app/assets/javascripts/hatchy/application.js +88 -0
  7. data/app/assets/javascripts/hatchy/bootstrap/affix.js +162 -0
  8. data/app/assets/javascripts/hatchy/bootstrap/alert.js +94 -0
  9. data/app/assets/javascripts/hatchy/bootstrap/bootstrap.js +12 -0
  10. data/app/assets/javascripts/hatchy/bootstrap/button.js +120 -0
  11. data/app/assets/javascripts/hatchy/bootstrap/carousel.js +237 -0
  12. data/app/assets/javascripts/hatchy/bootstrap/collapse.js +211 -0
  13. data/app/assets/javascripts/hatchy/bootstrap/dropdown.js +165 -0
  14. data/app/assets/javascripts/hatchy/bootstrap/modal.js +337 -0
  15. data/app/assets/javascripts/hatchy/bootstrap/popover.js +108 -0
  16. data/app/assets/javascripts/hatchy/bootstrap/scrollspy.js +172 -0
  17. data/app/assets/javascripts/hatchy/bootstrap/tab.js +155 -0
  18. data/app/assets/javascripts/hatchy/bootstrap/tooltip.js +514 -0
  19. data/app/assets/javascripts/hatchy/bootstrap/transition.js +59 -0
  20. data/app/assets/javascripts/hatchy/dashboard.js +24 -0
  21. data/app/assets/javascripts/hatchy/hatchy.js +8 -0
  22. data/app/assets/javascripts/hatchy/home.js +17 -0
  23. data/app/assets/javascripts/hatchy/libraries/jquery.countdown.js +206 -0
  24. data/app/assets/javascripts/hatchy/libraries/owl.carousel.js +1512 -0
  25. data/app/assets/javascripts/hatchy/libraries/pnotify.custom.js +1421 -0
  26. data/app/assets/javascripts/hatchy/libraries/summernote.js +7300 -0
  27. data/app/assets/javascripts/hatchy/projects/contributions/new_contribution.js +57 -0
  28. data/app/assets/javascripts/hatchy/projects/edit.js +59 -0
  29. data/app/assets/javascripts/hatchy/projects/show.js +16 -0
  30. data/app/assets/javascripts/hatchy/users/edit.js +29 -0
  31. data/app/assets/stylesheets/hatchy/admin.scss.erb +68 -0
  32. data/app/assets/stylesheets/hatchy/base.scss +195 -0
  33. data/app/assets/stylesheets/hatchy/bootstrap/_alerts.scss +73 -0
  34. data/app/assets/stylesheets/hatchy/bootstrap/_badges.scss +68 -0
  35. data/app/assets/stylesheets/hatchy/bootstrap/_breadcrumbs.scss +26 -0
  36. data/app/assets/stylesheets/hatchy/bootstrap/_button-groups.scss +244 -0
  37. data/app/assets/stylesheets/hatchy/bootstrap/_buttons.scss +168 -0
  38. data/app/assets/stylesheets/hatchy/bootstrap/_carousel.scss +269 -0
  39. data/app/assets/stylesheets/hatchy/bootstrap/_close.scss +36 -0
  40. data/app/assets/stylesheets/hatchy/bootstrap/_code.scss +69 -0
  41. data/app/assets/stylesheets/hatchy/bootstrap/_component-animations.scss +37 -0
  42. data/app/assets/stylesheets/hatchy/bootstrap/_dropdowns.scss +216 -0
  43. data/app/assets/stylesheets/hatchy/bootstrap/_forms.scss +611 -0
  44. data/app/assets/stylesheets/hatchy/bootstrap/_glyphicons.scss +307 -0
  45. data/app/assets/stylesheets/hatchy/bootstrap/_grid.scss +84 -0
  46. data/app/assets/stylesheets/hatchy/bootstrap/_input-groups.scss +167 -0
  47. data/app/assets/stylesheets/hatchy/bootstrap/_jumbotron.scss +52 -0
  48. data/app/assets/stylesheets/hatchy/bootstrap/_labels.scss +66 -0
  49. data/app/assets/stylesheets/hatchy/bootstrap/_list-group.scss +130 -0
  50. data/app/assets/stylesheets/hatchy/bootstrap/_media.scss +66 -0
  51. data/app/assets/stylesheets/hatchy/bootstrap/_mixins.scss +40 -0
  52. data/app/assets/stylesheets/hatchy/bootstrap/_modals.scss +150 -0
  53. data/app/assets/stylesheets/hatchy/bootstrap/_navbar.scss +662 -0
  54. data/app/assets/stylesheets/hatchy/bootstrap/_navs.scss +242 -0
  55. data/app/assets/stylesheets/hatchy/bootstrap/_normalize.scss +424 -0
  56. data/app/assets/stylesheets/hatchy/bootstrap/_pager.scss +54 -0
  57. data/app/assets/stylesheets/hatchy/bootstrap/_pagination.scss +89 -0
  58. data/app/assets/stylesheets/hatchy/bootstrap/_panels.scss +271 -0
  59. data/app/assets/stylesheets/hatchy/bootstrap/_popovers.scss +131 -0
  60. data/app/assets/stylesheets/hatchy/bootstrap/_print.scss +101 -0
  61. data/app/assets/stylesheets/hatchy/bootstrap/_progress-bars.scss +87 -0
  62. data/app/assets/stylesheets/hatchy/bootstrap/_responsive-embed.scss +35 -0
  63. data/app/assets/stylesheets/hatchy/bootstrap/_responsive-utilities.scss +179 -0
  64. data/app/assets/stylesheets/hatchy/bootstrap/_scaffolding.scss +161 -0
  65. data/app/assets/stylesheets/hatchy/bootstrap/_tables.scss +234 -0
  66. data/app/assets/stylesheets/hatchy/bootstrap/_theme.scss +291 -0
  67. data/app/assets/stylesheets/hatchy/bootstrap/_thumbnails.scss +38 -0
  68. data/app/assets/stylesheets/hatchy/bootstrap/_tooltip.scss +101 -0
  69. data/app/assets/stylesheets/hatchy/bootstrap/_type.scss +298 -0
  70. data/app/assets/stylesheets/hatchy/bootstrap/_utilities.scss +55 -0
  71. data/app/assets/stylesheets/hatchy/bootstrap/_variables.scss +872 -0
  72. data/app/assets/stylesheets/hatchy/bootstrap/_wells.scss +29 -0
  73. data/app/assets/stylesheets/hatchy/bootstrap/mixins/_alerts.scss +14 -0
  74. data/app/assets/stylesheets/hatchy/bootstrap/mixins/_background-variant.scss +12 -0
  75. data/app/assets/stylesheets/hatchy/bootstrap/mixins/_border-radius.scss +18 -0
  76. data/app/assets/stylesheets/hatchy/bootstrap/mixins/_buttons.scss +68 -0
  77. data/app/assets/stylesheets/hatchy/bootstrap/mixins/_center-block.scss +7 -0
  78. data/app/assets/stylesheets/hatchy/bootstrap/mixins/_clearfix.scss +22 -0
  79. data/app/assets/stylesheets/hatchy/bootstrap/mixins/_forms.scss +88 -0
  80. data/app/assets/stylesheets/hatchy/bootstrap/mixins/_gradients.scss +58 -0
  81. data/app/assets/stylesheets/hatchy/bootstrap/mixins/_grid-framework.scss +81 -0
  82. data/app/assets/stylesheets/hatchy/bootstrap/mixins/_grid.scss +122 -0
  83. data/app/assets/stylesheets/hatchy/bootstrap/mixins/_hide-text.scss +21 -0
  84. data/app/assets/stylesheets/hatchy/bootstrap/mixins/_image.scss +33 -0
  85. data/app/assets/stylesheets/hatchy/bootstrap/mixins/_labels.scss +12 -0
  86. data/app/assets/stylesheets/hatchy/bootstrap/mixins/_list-group.scss +32 -0
  87. data/app/assets/stylesheets/hatchy/bootstrap/mixins/_nav-divider.scss +10 -0
  88. data/app/assets/stylesheets/hatchy/bootstrap/mixins/_nav-vertical-align.scss +9 -0
  89. data/app/assets/stylesheets/hatchy/bootstrap/mixins/_opacity.scss +8 -0
  90. data/app/assets/stylesheets/hatchy/bootstrap/mixins/_pagination.scss +24 -0
  91. data/app/assets/stylesheets/hatchy/bootstrap/mixins/_panels.scss +24 -0
  92. data/app/assets/stylesheets/hatchy/bootstrap/mixins/_progress-bar.scss +10 -0
  93. data/app/assets/stylesheets/hatchy/bootstrap/mixins/_reset-filter.scss +8 -0
  94. data/app/assets/stylesheets/hatchy/bootstrap/mixins/_reset-text.scss +18 -0
  95. data/app/assets/stylesheets/hatchy/bootstrap/mixins/_resize.scss +6 -0
  96. data/app/assets/stylesheets/hatchy/bootstrap/mixins/_responsive-visibility.scss +21 -0
  97. data/app/assets/stylesheets/hatchy/bootstrap/mixins/_size.scss +10 -0
  98. data/app/assets/stylesheets/hatchy/bootstrap/mixins/_tab-focus.scss +9 -0
  99. data/app/assets/stylesheets/hatchy/bootstrap/mixins/_table-row.scss +28 -0
  100. data/app/assets/stylesheets/hatchy/bootstrap/mixins/_text-emphasis.scss +12 -0
  101. data/app/assets/stylesheets/hatchy/bootstrap/mixins/_text-overflow.scss +8 -0
  102. data/app/assets/stylesheets/hatchy/bootstrap/mixins/_vendor-prefixes.scss +222 -0
  103. data/app/assets/stylesheets/hatchy/hatchy.scss.erb +72 -0
  104. data/app/assets/stylesheets/hatchy/libraries/owl/owl.carousel.css +71 -0
  105. data/app/assets/stylesheets/hatchy/libraries/owl/owl.theme.css +79 -0
  106. data/app/assets/stylesheets/hatchy/libraries/pnotify.custom.css +178 -0
  107. data/app/assets/stylesheets/hatchy/libraries/summernote.css +1 -0
  108. data/app/assets/stylesheets/hatchy/themes/default/_variables.scss +0 -0
  109. data/app/assets/stylesheets/hatchy/themes/default/mixins.scss +0 -0
  110. data/app/assets/stylesheets/hatchy/themes/default/theme.scss +0 -0
  111. data/app/controllers/hatchy/admin/announcements_controller.rb +61 -0
  112. data/app/controllers/hatchy/admin/application_controller.rb +30 -0
  113. data/app/controllers/hatchy/admin/banks_controller.rb +61 -0
  114. data/app/controllers/hatchy/admin/categories_controller.rb +61 -0
  115. data/app/controllers/hatchy/admin/countries_controller.rb +61 -0
  116. data/app/controllers/hatchy/admin/dashboard_controller.rb +15 -0
  117. data/app/controllers/hatchy/announcements_controller.rb +11 -0
  118. data/app/controllers/hatchy/application_controller.rb +15 -0
  119. data/app/controllers/hatchy/dashboard_controller.rb +8 -0
  120. data/app/controllers/hatchy/home_controller.rb +20 -0
  121. data/app/controllers/hatchy/projects/contributions_controller.rb +60 -0
  122. data/app/controllers/hatchy/projects_controller.rb +99 -0
  123. data/app/controllers/hatchy/users_controller.rb +47 -0
  124. data/app/helpers/hatchy/application_helper.rb +4 -0
  125. data/app/helpers/hatchy/form_helper.rb +30 -0
  126. data/app/helpers/hatchy/layout_helper.rb +43 -0
  127. data/app/models/concerns/hatchy/project_states.rb +173 -0
  128. data/app/models/hatchy/announcement.rb +9 -0
  129. data/app/models/hatchy/bank.rb +6 -0
  130. data/app/models/hatchy/bank_account.rb +7 -0
  131. data/app/models/hatchy/category.rb +16 -0
  132. data/app/models/hatchy/category_follower.rb +7 -0
  133. data/app/models/hatchy/contribution.rb +45 -0
  134. data/app/models/hatchy/country.rb +5 -0
  135. data/app/models/hatchy/project.rb +46 -0
  136. data/app/models/hatchy/project_account.rb +10 -0
  137. data/app/models/hatchy/reward.rb +8 -0
  138. data/app/models/hatchy/user.rb +25 -0
  139. data/app/policies/hatchy/admin/application_policy.rb +7 -0
  140. data/app/policies/hatchy/application_policy.rb +57 -0
  141. data/app/policies/hatchy/project_policy.rb +19 -0
  142. data/app/policies/hatchy/user_policy.rb +16 -0
  143. data/app/uploaders/hatchy/project_uploader.rb +10 -0
  144. data/app/uploaders/hatchy/user_uploader.rb +9 -0
  145. data/app/views/devise/registrations/new.html.haml +23 -0
  146. data/app/views/devise/sessions/new.html.haml +26 -0
  147. data/app/views/devise/shared/_links.html.erb +25 -0
  148. data/app/views/hatchy/admin/announcements/edit.html.haml +10 -0
  149. data/app/views/hatchy/admin/announcements/index.html.haml +10 -0
  150. data/app/views/hatchy/admin/announcements/new.html.haml +10 -0
  151. data/app/views/hatchy/admin/announcements/show.html.haml +13 -0
  152. data/app/views/hatchy/admin/banks/edit.html.haml +10 -0
  153. data/app/views/hatchy/admin/banks/index.html.haml +10 -0
  154. data/app/views/hatchy/admin/banks/new.html.haml +10 -0
  155. data/app/views/hatchy/admin/banks/show.html.haml +13 -0
  156. data/app/views/hatchy/admin/categories/edit.html.haml +10 -0
  157. data/app/views/hatchy/admin/categories/index.html.haml +10 -0
  158. data/app/views/hatchy/admin/categories/new.html.haml +10 -0
  159. data/app/views/hatchy/admin/categories/show.html.haml +13 -0
  160. data/app/views/hatchy/admin/countries/edit.html.haml +10 -0
  161. data/app/views/hatchy/admin/countries/index.html.haml +10 -0
  162. data/app/views/hatchy/admin/countries/new.html.haml +10 -0
  163. data/app/views/hatchy/admin/countries/show.html.haml +13 -0
  164. data/app/views/hatchy/admin/dashboard/_last_updated_table.html.haml +32 -0
  165. data/app/views/hatchy/admin/dashboard/index.html.haml +14 -0
  166. data/app/views/hatchy/admin/shared/_admin_navtabs.html.haml +17 -0
  167. data/app/views/hatchy/admin/shared/_admin_sidebar.html.haml +38 -0
  168. data/app/views/hatchy/admin/shared/_model_form.html.haml +22 -0
  169. data/app/views/hatchy/admin/shared/_model_index.html.haml +31 -0
  170. data/app/views/hatchy/admin/shared/_model_show.html.haml +10 -0
  171. data/app/views/hatchy/dashboard/_projects_you_support.html.haml +8 -0
  172. data/app/views/hatchy/dashboard/_your_projects.html.haml +10 -0
  173. data/app/views/hatchy/dashboard/index.html.haml +8 -0
  174. data/app/views/hatchy/home/_recommended_projects.html.haml +7 -0
  175. data/app/views/hatchy/home/explore.html.haml +29 -0
  176. data/app/views/hatchy/home/index.html.haml +4 -0
  177. data/app/views/hatchy/projects/_reward_fields.html.haml +21 -0
  178. data/app/views/hatchy/projects/contributions/_billing.html.haml +40 -0
  179. data/app/views/hatchy/projects/contributions/_form.html.haml +7 -0
  180. data/app/views/hatchy/projects/contributions/_payment.html.haml +18 -0
  181. data/app/views/hatchy/projects/contributions/_rewards.html.haml +19 -0
  182. data/app/views/hatchy/projects/contributions/new.html.haml +7 -0
  183. data/app/views/hatchy/projects/edit.html.haml +18 -0
  184. data/app/views/hatchy/projects/edit/_account.html.haml +60 -0
  185. data/app/views/hatchy/projects/edit/_analysis_success.html.haml +12 -0
  186. data/app/views/hatchy/projects/edit/_basic.html.haml +24 -0
  187. data/app/views/hatchy/projects/edit/_budget.html.haml +16 -0
  188. data/app/views/hatchy/projects/edit/_description.html.haml +18 -0
  189. data/app/views/hatchy/projects/edit/_goal.html.haml +25 -0
  190. data/app/views/hatchy/projects/edit/_project_card.html.haml +24 -0
  191. data/app/views/hatchy/projects/edit/_project_sidebar.html.haml +67 -0
  192. data/app/views/hatchy/projects/edit/_rewards.html.haml +16 -0
  193. data/app/views/hatchy/projects/edit/_video.html.haml +17 -0
  194. data/app/views/hatchy/projects/new.html.haml +16 -0
  195. data/app/views/hatchy/projects/show.html.haml +63 -0
  196. data/app/views/hatchy/shared/_project.html.haml +29 -0
  197. data/app/views/hatchy/users/edit.html.haml +17 -0
  198. data/app/views/hatchy/users/edit/_about_you.html.haml +37 -0
  199. data/app/views/hatchy/users/edit/_banks_and_cards.html.haml +17 -0
  200. data/app/views/hatchy/users/edit/_data_and_address.html.haml +47 -0
  201. data/app/views/hatchy/users/edit/_notifications.html.haml +16 -0
  202. data/app/views/hatchy/users/show.html.haml +1 -0
  203. data/app/views/layouts/hatchy/_footer.html.haml +1 -0
  204. data/app/views/layouts/hatchy/_navbar.html.haml +32 -0
  205. data/app/views/layouts/hatchy/admin/admin_layout.html.haml +26 -0
  206. data/app/views/layouts/hatchy/application.html.haml +22 -0
  207. data/config/initializers/devise.rb +266 -0
  208. data/config/locales/devise.en.yml +60 -0
  209. data/config/locales/en.yml +146 -0
  210. data/config/routes.rb +54 -0
  211. data/db/countries.txt +252 -0
  212. data/db/migrate/20160111174923_create_hatchy_announcements.rb +10 -0
  213. data/db/migrate/20160111174945_create_hatchy_banks.rb +10 -0
  214. data/db/migrate/20160111175001_create_hatchy_bank_accounts.rb +12 -0
  215. data/db/migrate/20160111175017_create_hatchy_categories.rb +9 -0
  216. data/db/migrate/20160111175037_create_hatchy_contributions.rb +31 -0
  217. data/db/migrate/20160111175055_create_hatchy_countries.rb +14 -0
  218. data/db/migrate/20160111175124_create_hatchy_rewards.rb +14 -0
  219. data/db/migrate/20160111175139_create_hatchy_projects.rb +27 -0
  220. data/db/migrate/20160111175158_create_hatchy_project_accounts.rb +26 -0
  221. data/db/migrate/20160111175249_devise_create_hatchy_users.rb +64 -0
  222. data/db/migrate/20160111181655_create_hatchy_category_followers.rb +10 -0
  223. data/db/seed.rb +43 -0
  224. data/lib/hatchy.rb +24 -0
  225. data/lib/hatchy/country_importer.rb +32 -0
  226. data/lib/hatchy/engine.rb +43 -0
  227. data/lib/hatchy/setup_generator.rb +10 -0
  228. data/lib/hatchy/version.rb +3 -0
  229. data/lib/tasks/hatchy_tasks.rake +18 -0
  230. data/spec/controllers/hatchy/admin/announcements_controller_spec.rb +7 -0
  231. data/spec/controllers/hatchy/admin/application_controller_spec.rb +7 -0
  232. data/spec/controllers/hatchy/admin/banks_controller_spec.rb +7 -0
  233. data/spec/controllers/hatchy/admin/categories_controller_spec.rb +7 -0
  234. data/spec/controllers/hatchy/admin/countries_controller_spec.rb +7 -0
  235. data/spec/controllers/hatchy/admin/dashboard_controller_spec.rb +7 -0
  236. data/spec/controllers/hatchy/announcements_controller_spec.rb +7 -0
  237. data/spec/controllers/hatchy/dashboard_controller_spec.rb +7 -0
  238. data/spec/controllers/hatchy/home_controller_spec.rb +7 -0
  239. data/spec/controllers/hatchy/projects/contributions_controller_spec.rb +7 -0
  240. data/spec/controllers/hatchy/projects_controller_spec.rb +7 -0
  241. data/spec/controllers/hatchy/users_controller_spec.rb +7 -0
  242. data/spec/dummy/README.rdoc +28 -0
  243. data/spec/dummy/Rakefile +6 -0
  244. data/spec/dummy/app/assets/javascripts/application.js +13 -0
  245. data/spec/dummy/app/assets/stylesheets/application.css +15 -0
  246. data/spec/dummy/app/controllers/application_controller.rb +5 -0
  247. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  248. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  249. data/spec/dummy/bin/bundle +3 -0
  250. data/spec/dummy/bin/rails +4 -0
  251. data/spec/dummy/bin/rake +4 -0
  252. data/spec/dummy/config.ru +4 -0
  253. data/spec/dummy/config/application.rb +29 -0
  254. data/spec/dummy/config/boot.rb +5 -0
  255. data/spec/dummy/config/database.yml +25 -0
  256. data/spec/dummy/config/environment.rb +5 -0
  257. data/spec/dummy/config/environments/development.rb +37 -0
  258. data/spec/dummy/config/environments/production.rb +78 -0
  259. data/spec/dummy/config/environments/test.rb +39 -0
  260. data/spec/dummy/config/initializers/assets.rb +8 -0
  261. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  262. data/spec/dummy/config/initializers/cookies_serializer.rb +3 -0
  263. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  264. data/spec/dummy/config/initializers/inflections.rb +16 -0
  265. data/spec/dummy/config/initializers/mime_types.rb +4 -0
  266. data/spec/dummy/config/initializers/session_store.rb +3 -0
  267. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  268. data/spec/dummy/config/locales/en.yml +23 -0
  269. data/spec/dummy/config/routes.rb +3 -0
  270. data/spec/dummy/config/secrets.yml +22 -0
  271. data/spec/dummy/db/development.sqlite3 +0 -0
  272. data/spec/dummy/db/schema.rb +207 -0
  273. data/spec/dummy/log/development.log +20486 -0
  274. data/spec/dummy/public/404.html +67 -0
  275. data/spec/dummy/public/422.html +67 -0
  276. data/spec/dummy/public/500.html +66 -0
  277. data/spec/dummy/public/favicon.ico +0 -0
  278. data/spec/dummy/public/uploads/hatchy/project/project_img/1/circus.jpg +0 -0
  279. data/spec/dummy/public/uploads/hatchy/user/profile_img/1/costanza.jpg +0 -0
  280. data/spec/dummy/public/uploads/tmp/1452646096-14084-2585/circus.jpg +0 -0
  281. data/spec/dummy/tmp/cache/assets/development/sass/1ae7eaad6fbe78b7fa091e1570fc6b83fd216672/admin.scss.erbc +0 -0
  282. data/spec/dummy/tmp/cache/assets/development/sass/1ae7eaad6fbe78b7fa091e1570fc6b83fd216672/base.scssc +0 -0
  283. data/spec/dummy/tmp/cache/assets/development/sass/1ae7eaad6fbe78b7fa091e1570fc6b83fd216672/hatchy.scss.erbc +0 -0
  284. data/spec/dummy/tmp/cache/assets/development/sass/4cd2ed92d25169cb17133dbe165a813de108b092/jquery.dataTables.bootstrap.scssc +0 -0
  285. data/spec/dummy/tmp/cache/assets/development/sass/5abc7faa8d65750bfbc9bb398645121a327e7af5/_alerts.scssc +0 -0
  286. data/spec/dummy/tmp/cache/assets/development/sass/5abc7faa8d65750bfbc9bb398645121a327e7af5/_badges.scssc +0 -0
  287. data/spec/dummy/tmp/cache/assets/development/sass/5abc7faa8d65750bfbc9bb398645121a327e7af5/_breadcrumbs.scssc +0 -0
  288. data/spec/dummy/tmp/cache/assets/development/sass/5abc7faa8d65750bfbc9bb398645121a327e7af5/_button-groups.scssc +0 -0
  289. data/spec/dummy/tmp/cache/assets/development/sass/5abc7faa8d65750bfbc9bb398645121a327e7af5/_buttons.scssc +0 -0
  290. data/spec/dummy/tmp/cache/assets/development/sass/5abc7faa8d65750bfbc9bb398645121a327e7af5/_carousel.scssc +0 -0
  291. data/spec/dummy/tmp/cache/assets/development/sass/5abc7faa8d65750bfbc9bb398645121a327e7af5/_close.scssc +0 -0
  292. data/spec/dummy/tmp/cache/assets/development/sass/5abc7faa8d65750bfbc9bb398645121a327e7af5/_code.scssc +0 -0
  293. data/spec/dummy/tmp/cache/assets/development/sass/5abc7faa8d65750bfbc9bb398645121a327e7af5/_component-animations.scssc +0 -0
  294. data/spec/dummy/tmp/cache/assets/development/sass/5abc7faa8d65750bfbc9bb398645121a327e7af5/_dropdowns.scssc +0 -0
  295. data/spec/dummy/tmp/cache/assets/development/sass/5abc7faa8d65750bfbc9bb398645121a327e7af5/_forms.scssc +0 -0
  296. data/spec/dummy/tmp/cache/assets/development/sass/5abc7faa8d65750bfbc9bb398645121a327e7af5/_glyphicons.scssc +0 -0
  297. data/spec/dummy/tmp/cache/assets/development/sass/5abc7faa8d65750bfbc9bb398645121a327e7af5/_grid.scssc +0 -0
  298. data/spec/dummy/tmp/cache/assets/development/sass/5abc7faa8d65750bfbc9bb398645121a327e7af5/_input-groups.scssc +0 -0
  299. data/spec/dummy/tmp/cache/assets/development/sass/5abc7faa8d65750bfbc9bb398645121a327e7af5/_jumbotron.scssc +0 -0
  300. data/spec/dummy/tmp/cache/assets/development/sass/5abc7faa8d65750bfbc9bb398645121a327e7af5/_labels.scssc +0 -0
  301. data/spec/dummy/tmp/cache/assets/development/sass/5abc7faa8d65750bfbc9bb398645121a327e7af5/_list-group.scssc +0 -0
  302. data/spec/dummy/tmp/cache/assets/development/sass/5abc7faa8d65750bfbc9bb398645121a327e7af5/_media.scssc +0 -0
  303. data/spec/dummy/tmp/cache/assets/development/sass/5abc7faa8d65750bfbc9bb398645121a327e7af5/_mixins.scssc +0 -0
  304. data/spec/dummy/tmp/cache/assets/development/sass/5abc7faa8d65750bfbc9bb398645121a327e7af5/_modals.scssc +0 -0
  305. data/spec/dummy/tmp/cache/assets/development/sass/5abc7faa8d65750bfbc9bb398645121a327e7af5/_navbar.scssc +0 -0
  306. data/spec/dummy/tmp/cache/assets/development/sass/5abc7faa8d65750bfbc9bb398645121a327e7af5/_navs.scssc +0 -0
  307. data/spec/dummy/tmp/cache/assets/development/sass/5abc7faa8d65750bfbc9bb398645121a327e7af5/_normalize.scssc +0 -0
  308. data/spec/dummy/tmp/cache/assets/development/sass/5abc7faa8d65750bfbc9bb398645121a327e7af5/_pager.scssc +0 -0
  309. data/spec/dummy/tmp/cache/assets/development/sass/5abc7faa8d65750bfbc9bb398645121a327e7af5/_pagination.scssc +0 -0
  310. data/spec/dummy/tmp/cache/assets/development/sass/5abc7faa8d65750bfbc9bb398645121a327e7af5/_panels.scssc +0 -0
  311. data/spec/dummy/tmp/cache/assets/development/sass/5abc7faa8d65750bfbc9bb398645121a327e7af5/_popovers.scssc +0 -0
  312. data/spec/dummy/tmp/cache/assets/development/sass/5abc7faa8d65750bfbc9bb398645121a327e7af5/_print.scssc +0 -0
  313. data/spec/dummy/tmp/cache/assets/development/sass/5abc7faa8d65750bfbc9bb398645121a327e7af5/_progress-bars.scssc +0 -0
  314. data/spec/dummy/tmp/cache/assets/development/sass/5abc7faa8d65750bfbc9bb398645121a327e7af5/_responsive-embed.scssc +0 -0
  315. data/spec/dummy/tmp/cache/assets/development/sass/5abc7faa8d65750bfbc9bb398645121a327e7af5/_responsive-utilities.scssc +0 -0
  316. data/spec/dummy/tmp/cache/assets/development/sass/5abc7faa8d65750bfbc9bb398645121a327e7af5/_scaffolding.scssc +0 -0
  317. data/spec/dummy/tmp/cache/assets/development/sass/5abc7faa8d65750bfbc9bb398645121a327e7af5/_tables.scssc +0 -0
  318. data/spec/dummy/tmp/cache/assets/development/sass/5abc7faa8d65750bfbc9bb398645121a327e7af5/_thumbnails.scssc +0 -0
  319. data/spec/dummy/tmp/cache/assets/development/sass/5abc7faa8d65750bfbc9bb398645121a327e7af5/_tooltip.scssc +0 -0
  320. data/spec/dummy/tmp/cache/assets/development/sass/5abc7faa8d65750bfbc9bb398645121a327e7af5/_type.scssc +0 -0
  321. data/spec/dummy/tmp/cache/assets/development/sass/5abc7faa8d65750bfbc9bb398645121a327e7af5/_utilities.scssc +0 -0
  322. data/spec/dummy/tmp/cache/assets/development/sass/5abc7faa8d65750bfbc9bb398645121a327e7af5/_variables.scssc +0 -0
  323. data/spec/dummy/tmp/cache/assets/development/sass/5abc7faa8d65750bfbc9bb398645121a327e7af5/_wells.scssc +0 -0
  324. data/spec/dummy/tmp/cache/assets/development/sass/7ffb18582ef75d2e0545e59d54b66a8ac063388e/pnotify.custom.cssc +0 -0
  325. data/spec/dummy/tmp/cache/assets/development/sass/7ffb18582ef75d2e0545e59d54b66a8ac063388e/summernote.cssc +0 -0
  326. data/spec/dummy/tmp/cache/assets/development/sass/89c944581dfef47a3aa150f4bf2513c369606c18/_alerts.scssc +0 -0
  327. data/spec/dummy/tmp/cache/assets/development/sass/89c944581dfef47a3aa150f4bf2513c369606c18/_background-variant.scssc +0 -0
  328. data/spec/dummy/tmp/cache/assets/development/sass/89c944581dfef47a3aa150f4bf2513c369606c18/_border-radius.scssc +0 -0
  329. data/spec/dummy/tmp/cache/assets/development/sass/89c944581dfef47a3aa150f4bf2513c369606c18/_buttons.scssc +0 -0
  330. data/spec/dummy/tmp/cache/assets/development/sass/89c944581dfef47a3aa150f4bf2513c369606c18/_center-block.scssc +0 -0
  331. data/spec/dummy/tmp/cache/assets/development/sass/89c944581dfef47a3aa150f4bf2513c369606c18/_clearfix.scssc +0 -0
  332. data/spec/dummy/tmp/cache/assets/development/sass/89c944581dfef47a3aa150f4bf2513c369606c18/_forms.scssc +0 -0
  333. data/spec/dummy/tmp/cache/assets/development/sass/89c944581dfef47a3aa150f4bf2513c369606c18/_gradients.scssc +0 -0
  334. data/spec/dummy/tmp/cache/assets/development/sass/89c944581dfef47a3aa150f4bf2513c369606c18/_grid-framework.scssc +0 -0
  335. data/spec/dummy/tmp/cache/assets/development/sass/89c944581dfef47a3aa150f4bf2513c369606c18/_grid.scssc +0 -0
  336. data/spec/dummy/tmp/cache/assets/development/sass/89c944581dfef47a3aa150f4bf2513c369606c18/_hide-text.scssc +0 -0
  337. data/spec/dummy/tmp/cache/assets/development/sass/89c944581dfef47a3aa150f4bf2513c369606c18/_image.scssc +0 -0
  338. data/spec/dummy/tmp/cache/assets/development/sass/89c944581dfef47a3aa150f4bf2513c369606c18/_labels.scssc +0 -0
  339. data/spec/dummy/tmp/cache/assets/development/sass/89c944581dfef47a3aa150f4bf2513c369606c18/_list-group.scssc +0 -0
  340. data/spec/dummy/tmp/cache/assets/development/sass/89c944581dfef47a3aa150f4bf2513c369606c18/_nav-divider.scssc +0 -0
  341. data/spec/dummy/tmp/cache/assets/development/sass/89c944581dfef47a3aa150f4bf2513c369606c18/_nav-vertical-align.scssc +0 -0
  342. data/spec/dummy/tmp/cache/assets/development/sass/89c944581dfef47a3aa150f4bf2513c369606c18/_opacity.scssc +0 -0
  343. data/spec/dummy/tmp/cache/assets/development/sass/89c944581dfef47a3aa150f4bf2513c369606c18/_pagination.scssc +0 -0
  344. data/spec/dummy/tmp/cache/assets/development/sass/89c944581dfef47a3aa150f4bf2513c369606c18/_panels.scssc +0 -0
  345. data/spec/dummy/tmp/cache/assets/development/sass/89c944581dfef47a3aa150f4bf2513c369606c18/_progress-bar.scssc +0 -0
  346. data/spec/dummy/tmp/cache/assets/development/sass/89c944581dfef47a3aa150f4bf2513c369606c18/_reset-filter.scssc +0 -0
  347. data/spec/dummy/tmp/cache/assets/development/sass/89c944581dfef47a3aa150f4bf2513c369606c18/_reset-text.scssc +0 -0
  348. data/spec/dummy/tmp/cache/assets/development/sass/89c944581dfef47a3aa150f4bf2513c369606c18/_resize.scssc +0 -0
  349. data/spec/dummy/tmp/cache/assets/development/sass/89c944581dfef47a3aa150f4bf2513c369606c18/_responsive-visibility.scssc +0 -0
  350. data/spec/dummy/tmp/cache/assets/development/sass/89c944581dfef47a3aa150f4bf2513c369606c18/_size.scssc +0 -0
  351. data/spec/dummy/tmp/cache/assets/development/sass/89c944581dfef47a3aa150f4bf2513c369606c18/_tab-focus.scssc +0 -0
  352. data/spec/dummy/tmp/cache/assets/development/sass/89c944581dfef47a3aa150f4bf2513c369606c18/_table-row.scssc +0 -0
  353. data/spec/dummy/tmp/cache/assets/development/sass/89c944581dfef47a3aa150f4bf2513c369606c18/_text-emphasis.scssc +0 -0
  354. data/spec/dummy/tmp/cache/assets/development/sass/89c944581dfef47a3aa150f4bf2513c369606c18/_text-overflow.scssc +0 -0
  355. data/spec/dummy/tmp/cache/assets/development/sass/89c944581dfef47a3aa150f4bf2513c369606c18/_vendor-prefixes.scssc +0 -0
  356. data/spec/dummy/tmp/cache/assets/development/sass/9082de7479e9f9037daea1156327806c827ee4de/owl.carousel.cssc +0 -0
  357. data/spec/dummy/tmp/cache/assets/development/sass/9082de7479e9f9037daea1156327806c827ee4de/owl.theme.cssc +0 -0
  358. data/spec/dummy/tmp/cache/assets/development/sass/b098c6707accd416c04158e97686f3c60d18a5db/_variables.scssc +0 -0
  359. data/spec/dummy/tmp/cache/assets/development/sass/b098c6707accd416c04158e97686f3c60d18a5db/mixins.scssc +0 -0
  360. data/spec/dummy/tmp/cache/assets/development/sass/b098c6707accd416c04158e97686f3c60d18a5db/theme.scssc +0 -0
  361. data/spec/dummy/tmp/cache/assets/development/sass/c3eb61727e774fdd7a4c50d47dc9321d8c03465b/jquery.dataTables.scssc +0 -0
  362. data/spec/dummy/tmp/cache/assets/development/sprockets/02acd5c42920e30100d000381f279ed8 +0 -0
  363. data/spec/dummy/tmp/cache/assets/development/sprockets/06f25975c6b8ed69acfdec01011eb7bb +0 -0
  364. data/spec/dummy/tmp/cache/assets/development/sprockets/07683e3cd4c5faddd8150344d7f8ce74 +0 -0
  365. data/spec/dummy/tmp/cache/assets/development/sprockets/0a95350d1433847b3b929478b039b141 +0 -0
  366. data/spec/dummy/tmp/cache/assets/development/sprockets/114e00ddb52ee022a79ed4560ec79aa8 +0 -0
  367. data/spec/dummy/tmp/cache/assets/development/sprockets/14a82abe97db49e4cfcce62837ebd7b7 +0 -0
  368. data/spec/dummy/tmp/cache/assets/development/sprockets/1c6272244847e7e1fa1b127ea9c66bff +0 -0
  369. data/spec/dummy/tmp/cache/assets/development/sprockets/1ec4fb0db29fbf0cbf12c32449a988a9 +0 -0
  370. data/spec/dummy/tmp/cache/assets/development/sprockets/249e03ac9621a71cb1f7023fcc915530 +0 -0
  371. data/spec/dummy/tmp/cache/assets/development/sprockets/2600e70eaad40390bb6639885a589d2a +0 -0
  372. data/spec/dummy/tmp/cache/assets/development/sprockets/285362fd93ab9c40902bc5d499f699d8 +0 -0
  373. data/spec/dummy/tmp/cache/assets/development/sprockets/2da2ceb289ce39df011db7062d0d1327 +0 -0
  374. data/spec/dummy/tmp/cache/assets/development/sprockets/2f6ded1a00bc3b095f5c479acb5b3095 +0 -0
  375. data/spec/dummy/tmp/cache/assets/development/sprockets/3488bebbfac5a929b11e49b7403b4d7b +0 -0
  376. data/spec/dummy/tmp/cache/assets/development/sprockets/384156f28d835fc24585e681a46cd5d6 +0 -0
  377. data/spec/dummy/tmp/cache/assets/development/sprockets/39843c3b06d4de6199e87dc88d498201 +0 -0
  378. data/spec/dummy/tmp/cache/assets/development/sprockets/3be516ed9e4cd248c26d9921d29295ec +0 -0
  379. data/spec/dummy/tmp/cache/assets/development/sprockets/3d215563f8c60683272face7ff3c1038 +0 -0
  380. data/spec/dummy/tmp/cache/assets/development/sprockets/4276e0e173b6cfc29b9d6050eafe4bf3 +0 -0
  381. data/spec/dummy/tmp/cache/assets/development/sprockets/44f26650184cffb7192a3ad7d98a9d31 +0 -0
  382. data/spec/dummy/tmp/cache/assets/development/sprockets/497d2e4a82764eb58b4fbbb5fcb45aa2 +0 -0
  383. data/spec/dummy/tmp/cache/assets/development/sprockets/4c23aeaa35b27e7a0d5d3be8ee53c27d +0 -0
  384. data/spec/dummy/tmp/cache/assets/development/sprockets/4deda75c514a17f1f937821be49df47b +0 -0
  385. data/spec/dummy/tmp/cache/assets/development/sprockets/55f31fb7b5e9a4e1062acfdd4135432d +0 -0
  386. data/spec/dummy/tmp/cache/assets/development/sprockets/56567ed0854d6dd03a2dea900b2e9185 +0 -0
  387. data/spec/dummy/tmp/cache/assets/development/sprockets/567ed12a623140fb5eb2bb0591c94d70 +0 -0
  388. data/spec/dummy/tmp/cache/assets/development/sprockets/58abb036e1d10f9b42c55b22ffc8dfcf +0 -0
  389. data/spec/dummy/tmp/cache/assets/development/sprockets/59e8ebcc9e2bd48aefe3a211ef9e8d87 +0 -0
  390. data/spec/dummy/tmp/cache/assets/development/sprockets/5f7fb90ab1019225755f94778855fb8b +0 -0
  391. data/spec/dummy/tmp/cache/assets/development/sprockets/63c5d34e8d06c12346aa262d42bd0084 +0 -0
  392. data/spec/dummy/tmp/cache/assets/development/sprockets/6444bc0df41903ea509632e5127abcce +0 -0
  393. data/spec/dummy/tmp/cache/assets/development/sprockets/65b6d4456ef6974271b9a59fc6ec876f +0 -0
  394. data/spec/dummy/tmp/cache/assets/development/sprockets/6762976f03563abb88a60dd2284077f3 +0 -0
  395. data/spec/dummy/tmp/cache/assets/development/sprockets/6978b21857c4cf9d2472adf77f935dfb +0 -0
  396. data/spec/dummy/tmp/cache/assets/development/sprockets/6a402a89434119334a77b09c04ed6bd8 +0 -0
  397. data/spec/dummy/tmp/cache/assets/development/sprockets/6aea5e2eeb52372c0f4dacc9b5e17629 +0 -0
  398. data/spec/dummy/tmp/cache/assets/development/sprockets/6b0b3bc73b6ef3a71ff8c1235076f2fe +0 -0
  399. data/spec/dummy/tmp/cache/assets/development/sprockets/6de647c9f4ed6eab93fde5b1d14fa8d1 +0 -0
  400. data/spec/dummy/tmp/cache/assets/development/sprockets/73a3722d728be6cf120c161d1a504b69 +0 -0
  401. data/spec/dummy/tmp/cache/assets/development/sprockets/74616b97e75a1dd4f47c89c3682a5962 +0 -0
  402. data/spec/dummy/tmp/cache/assets/development/sprockets/746472d5488bcdba743ae6905b4d9349 +0 -0
  403. data/spec/dummy/tmp/cache/assets/development/sprockets/75ef1b07ff3b729901c05d7693c459bd +0 -0
  404. data/spec/dummy/tmp/cache/assets/development/sprockets/77caa48be4dcd5f1d6f7791702ddbf3d +0 -0
  405. data/spec/dummy/tmp/cache/assets/development/sprockets/788ef0523fa5e97bb2ce29fbec1acd3d +0 -0
  406. data/spec/dummy/tmp/cache/assets/development/sprockets/79842d87a8281f97fa6e29373248487a +0 -0
  407. data/spec/dummy/tmp/cache/assets/development/sprockets/79ea9ff8872eea03ff917b2710b89875 +0 -0
  408. data/spec/dummy/tmp/cache/assets/development/sprockets/79f81993fad700117165d85ea5e66f80 +0 -0
  409. data/spec/dummy/tmp/cache/assets/development/sprockets/7abdb6b3ba312e2e713372cfa9ed6fd5 +0 -0
  410. data/spec/dummy/tmp/cache/assets/development/sprockets/7c817753da2ab2a8909c5f67ca1055c4 +0 -0
  411. data/spec/dummy/tmp/cache/assets/development/sprockets/8387ec69aabd9e9e2922644385d82285 +0 -0
  412. data/spec/dummy/tmp/cache/assets/development/sprockets/893f7993845d6e4c08115ef3898fbbe8 +0 -0
  413. data/spec/dummy/tmp/cache/assets/development/sprockets/8bfa3d2073d730eeae5930950577808b +0 -0
  414. data/spec/dummy/tmp/cache/assets/development/sprockets/8cec29e6f07e8b1786d5fdacf8a715d2 +0 -0
  415. data/spec/dummy/tmp/cache/assets/development/sprockets/8df3635dafa13e99eda2cd17dd9f4698 +0 -0
  416. data/spec/dummy/tmp/cache/assets/development/sprockets/8e08251664adb259d48c3ff9019fb9cf +0 -0
  417. data/spec/dummy/tmp/cache/assets/development/sprockets/94686c27c680e4e11436a2262aa72b55 +0 -0
  418. data/spec/dummy/tmp/cache/assets/development/sprockets/95fcb48e995eb3d264567f7534ff91ee +0 -0
  419. data/spec/dummy/tmp/cache/assets/development/sprockets/9c9def80980301503b1376146256ae2f +0 -0
  420. data/spec/dummy/tmp/cache/assets/development/sprockets/9ccf973914706eef2efa9e6e7e443818 +0 -0
  421. data/spec/dummy/tmp/cache/assets/development/sprockets/9d495bd3c398e7d7b507902bb8f71eeb +0 -0
  422. data/spec/dummy/tmp/cache/assets/development/sprockets/9d71f6be7960469b0582464c006ac743 +0 -0
  423. data/spec/dummy/tmp/cache/assets/development/sprockets/9e985e9ae12f0a0f409840f8de50ec85 +0 -0
  424. data/spec/dummy/tmp/cache/assets/development/sprockets/a12f906dc9d7f98d0d33c14534624207 +0 -0
  425. data/spec/dummy/tmp/cache/assets/development/sprockets/a3241713158b6d467b4ff8c0e86260ef +0 -0
  426. data/spec/dummy/tmp/cache/assets/development/sprockets/a38526dbff17aaff93ad71c58a5fac91 +0 -0
  427. data/spec/dummy/tmp/cache/assets/development/sprockets/a563347af44f552d9777160b9bc2f20c +0 -0
  428. data/spec/dummy/tmp/cache/assets/development/sprockets/a5895b06bddc58da1693d54571f58872 +0 -0
  429. data/spec/dummy/tmp/cache/assets/development/sprockets/a6233feba34a45a0550ca7e06ebeb8b2 +0 -0
  430. data/spec/dummy/tmp/cache/assets/development/sprockets/a62d4f134ec8d16ef50bbf15a53d6b57 +0 -0
  431. data/spec/dummy/tmp/cache/assets/development/sprockets/a7c825ce172c4a095653ab0022a0e979 +0 -0
  432. data/spec/dummy/tmp/cache/assets/development/sprockets/a9612f700869ef313dbd4fe5e23e9361 +0 -0
  433. data/spec/dummy/tmp/cache/assets/development/sprockets/aa1ba41473bb9ff1a6d2be1f794719df +0 -0
  434. data/spec/dummy/tmp/cache/assets/development/sprockets/aac3bc57fb221351f292885c5ee21933 +0 -0
  435. data/spec/dummy/tmp/cache/assets/development/sprockets/aad666db3c05857182302664d9b8cc45 +0 -0
  436. data/spec/dummy/tmp/cache/assets/development/sprockets/ab0cb44cae19250b9348dcd66b5c04d7 +0 -0
  437. data/spec/dummy/tmp/cache/assets/development/sprockets/ad6173f532233499e71f4e8c28e6020d +0 -0
  438. data/spec/dummy/tmp/cache/assets/development/sprockets/adc78e9799ac1c95dee7e858df40b4a8 +0 -0
  439. data/spec/dummy/tmp/cache/assets/development/sprockets/adf03687ee42f87002445c1096069d64 +0 -0
  440. data/spec/dummy/tmp/cache/assets/development/sprockets/aeb4122ebead9e5e9f6a3625fefbae3d +0 -0
  441. data/spec/dummy/tmp/cache/assets/development/sprockets/af6aade4734b90299fb7b16e4bb3e737 +0 -0
  442. data/spec/dummy/tmp/cache/assets/development/sprockets/b5f65e3f4319656fcd1dd0a3f1b66e6d +0 -0
  443. data/spec/dummy/tmp/cache/assets/development/sprockets/bc3e3f14e046b451d6f962e59bf22e0b +0 -0
  444. data/spec/dummy/tmp/cache/assets/development/sprockets/bd49e8df5191d3e15d2ffa14fc384869 +0 -0
  445. data/spec/dummy/tmp/cache/assets/development/sprockets/c37311498380e52a91dbfc2c96425eac +0 -0
  446. data/spec/dummy/tmp/cache/assets/development/sprockets/c60cce66e260d24218c7365bc3401b3e +0 -0
  447. data/spec/dummy/tmp/cache/assets/development/sprockets/c8ee3b2ea3203e3955b4db6e857d346e +0 -0
  448. data/spec/dummy/tmp/cache/assets/development/sprockets/cb3ac6ce6a98f3a3fd0443fcf846239d +0 -0
  449. data/spec/dummy/tmp/cache/assets/development/sprockets/cb758c86a19ec6b77f88402c95add6d4 +0 -0
  450. data/spec/dummy/tmp/cache/assets/development/sprockets/ccffcd47c7db3a6ab7e8006abc792752 +0 -0
  451. data/spec/dummy/tmp/cache/assets/development/sprockets/ce0edb89508050d6ce80d9c608b0e478 +0 -0
  452. data/spec/dummy/tmp/cache/assets/development/sprockets/ce4654bef988a1eb28b9da8d16fd2f65 +0 -0
  453. data/spec/dummy/tmp/cache/assets/development/sprockets/d1ba02c2518f1bd8954e5fb38a6fdac1 +0 -0
  454. data/spec/dummy/tmp/cache/assets/development/sprockets/d3ef307aaa54f919818b4dfb65b612f3 +0 -0
  455. data/spec/dummy/tmp/cache/assets/development/sprockets/d85c828a1b79af337db6fa07b91d05f2 +0 -0
  456. data/spec/dummy/tmp/cache/assets/development/sprockets/d8e52300c14f8f97b4ad8849301d7433 +0 -0
  457. data/spec/dummy/tmp/cache/assets/development/sprockets/d986eea7fe11b3e20c563cdc38db62ad +0 -0
  458. data/spec/dummy/tmp/cache/assets/development/sprockets/db8fa1b50c3d48a484b7f5949e075a57 +0 -0
  459. data/spec/dummy/tmp/cache/assets/development/sprockets/de74bb6959d07da7cff09d3b7d85cd7e +0 -0
  460. data/spec/dummy/tmp/cache/assets/development/sprockets/e3254e9ef9c6add6c4ef3a9eee700e7d +0 -0
  461. data/spec/dummy/tmp/cache/assets/development/sprockets/e37cf58bfbd61c44c57446c460ccc066 +0 -0
  462. data/spec/dummy/tmp/cache/assets/development/sprockets/e45751ceff92085477ef49e2c7f7622e +0 -0
  463. data/spec/dummy/tmp/cache/assets/development/sprockets/e64d1a313c5d885c637c9224d54c6cbd +0 -0
  464. data/spec/dummy/tmp/cache/assets/development/sprockets/e6c4ac31d3e7740403f6d8d50903e3b2 +0 -0
  465. data/spec/dummy/tmp/cache/assets/development/sprockets/e8272a81b13334e8f911097487b72702 +0 -0
  466. data/spec/dummy/tmp/cache/assets/development/sprockets/e93f2eac197dae7e9c54b2a4e17675f3 +0 -0
  467. data/spec/dummy/tmp/cache/assets/development/sprockets/ecc139ef2345848cb162ee60e48a008c +0 -0
  468. data/spec/dummy/tmp/cache/assets/development/sprockets/ef919881a8fe5b6d173257130a00adbc +0 -0
  469. data/spec/dummy/tmp/cache/assets/development/sprockets/f041bae6ba73e8a34bdf8603dca6f761 +0 -0
  470. data/spec/dummy/tmp/cache/assets/development/sprockets/f469cae685b83bf116813dc134ed0d2b +0 -0
  471. data/spec/dummy/tmp/cache/assets/development/sprockets/f8c026bc9f28742f8499ae687002da88 +0 -0
  472. data/spec/dummy/tmp/cache/assets/development/sprockets/f9677a86b9c39422d1720fbc89ab727f +0 -0
  473. data/spec/dummy/tmp/cache/assets/development/sprockets/fc35cea81cbc344664892761d90af504 +0 -0
  474. data/spec/dummy/tmp/cache/assets/development/sprockets/fe23e9bb24f73b37f78fcf7523f4ddc7 +0 -0
  475. data/spec/dummy/tmp/cache/assets/development/sprockets/fe79efd19de6388221ed374971484cbc +0 -0
  476. data/spec/factories/hatchy_announcements.rb +6 -0
  477. data/spec/factories/hatchy_bank_accounts.rb +6 -0
  478. data/spec/factories/hatchy_banks.rb +6 -0
  479. data/spec/factories/hatchy_categories.rb +6 -0
  480. data/spec/factories/hatchy_category_followers.rb +6 -0
  481. data/spec/factories/hatchy_contributions.rb +6 -0
  482. data/spec/factories/hatchy_countries.rb +6 -0
  483. data/spec/factories/hatchy_project_accounts.rb +6 -0
  484. data/spec/factories/hatchy_projects.rb +6 -0
  485. data/spec/factories/hatchy_rewards.rb +6 -0
  486. data/spec/factories/hatchy_users.rb +6 -0
  487. data/spec/models/hatchy/announcement_spec.rb +7 -0
  488. data/spec/models/hatchy/bank_account_spec.rb +7 -0
  489. data/spec/models/hatchy/bank_spec.rb +7 -0
  490. data/spec/models/hatchy/category_follower_spec.rb +7 -0
  491. data/spec/models/hatchy/category_spec.rb +7 -0
  492. data/spec/models/hatchy/contribution_spec.rb +7 -0
  493. data/spec/models/hatchy/country_spec.rb +7 -0
  494. data/spec/models/hatchy/project_account_spec.rb +7 -0
  495. data/spec/models/hatchy/project_spec.rb +7 -0
  496. data/spec/models/hatchy/reward_spec.rb +7 -0
  497. data/spec/models/hatchy/user_spec.rb +7 -0
  498. data/spec/rails_helper.rb +49 -0
  499. data/spec/spec_helper.rb +94 -0
  500. metadata +1019 -0
@@ -0,0 +1,16 @@
1
+ .container-fluid.hidden#notifications_dashboard
2
+ .col-md-8.col-md-offset-2
3
+ = form_for @user, html:{class: "form-horizontal"} do |f|
4
+ = f.label :newsletter, class: 'checkbox' do
5
+ .col-sm-8
6
+ = f.check_box :newsletter, class: 'checkbox'
7
+ Featured projects and posts from our Blog
8
+ = f.label :subs_projects, class: 'checkbox' do
9
+ .col-sm-8
10
+ = f.check_box :subs_projects, class: 'checkbox'
11
+ Projects that you supported
12
+ %hr
13
+ .form-group
14
+ .col-sm-offset-2.col-sm-10
15
+ = hidden_field_tag 'anchor', 'notifications'
16
+ = f.submit "Save Profile" , class: 'btn btn-primary'
@@ -0,0 +1 @@
1
+ show.html.haml
@@ -0,0 +1 @@
1
+ %footer
@@ -0,0 +1,32 @@
1
+ / Static navbar
2
+ %nav.navbar.navbar-default{class: "#{navbar_type}"}
3
+ .container
4
+ .navbar-header
5
+ %button.navbar-toggle.collapsed{data:{target:"#navbar", toggle:"collapse"},"aria-controls": "navbar", "aria-expanded":false, type:"button"}
6
+ %span.sr-only Toggle navigation
7
+ %span.icon-bar
8
+ %span.icon-bar
9
+ %span.icon-bar
10
+ %a.navbar-brand.pull-left{href:"#{hatchy.root_path}"} Hatchy
11
+ .navbar-header-right
12
+ #navbar.navbar-collapse.collapse
13
+ %ul.nav.navbar-nav.navbar-right
14
+ %li= link_to "Explore", hatchy.explore_path
15
+ - if current_user
16
+ %li.dropdown
17
+ %a.dropdown-toggle{href:"#", "aria-expanded":false, "aria-haspopup":true, data:{toggle:"dropdown"},role:"button"}
18
+ = image_tag user_profile, class:'img-circle', width:'30', height:'30'
19
+  
20
+ %span.caret
21
+ %ul.dropdown-menu
22
+ %li= link_to "Dashboard", hatchy.dashboard_path
23
+ %li= link_to "New Project", new_project_path
24
+ - if current_user.admin?
25
+ %li.divider{role:"separator"}
26
+ %li.dropdown-header Admin
27
+ %li= link_to 'Admin Dashboard', admin_root_path
28
+ %li.divider{role:"separator"}
29
+ %li= link_to 'Settings', "#{edit_user_path(current_user)}#about_you"
30
+ %li= link_to 'Sign Out', destroy_user_session_path, method: :delete
31
+ - else
32
+ %li= link_to 'Log in', hatchy.new_user_session_path
@@ -0,0 +1,26 @@
1
+ !!! 5
2
+ %html{lang: I18n.locale}
3
+ %head
4
+ %meta{content: "IE=edge", "http-equiv" => "X-UA-Compatible"}
5
+ %meta{content: "text/html; charset=utf-8", "http-equiv" => "Content-Type"}
6
+ %meta{content: "NONE,NOARCHIVE", name: "robots"}
7
+ %meta{content: "initial-scale=1", name: "viewport", "maximum-scale": 1}
8
+ = csrf_meta_tag
9
+ = stylesheet_link_tag "hatchy/admin"
10
+ = yield :stylesheets
11
+ %body
12
+ - @nav_type = "navbar-fixed-top"
13
+ = render "layouts/hatchy/navbar"
14
+ .container-fluid
15
+ .row
16
+ %section.sidebar-page.expanded{style:"overflow:hidden; outline:none;"}
17
+ = render "hatchy/admin/shared/admin_sidebar"
18
+ = yield
19
+
20
+ - @announcements = Hatchy::Announcement.current(cookies.signed[:hidden_announcement_ids])
21
+ = content_tag :div, id: 'announcements', data:{announcements:@announcements.to_json}, class: 'hidden' do
22
+ %p Loading announcements
23
+ = flash_messages if show_layout_flash?
24
+ = javascript_include_tag "hatchy/admin"
25
+ = yield :javascripts
26
+ = javascript_include_tag "hatchy/admin/dashboard"
@@ -0,0 +1,22 @@
1
+ !!! 5
2
+ %html{lang: I18n.locale}
3
+ %head
4
+ %meta{content: "IE=edge", "http-equiv" => "X-UA-Compatible"}
5
+ %meta{content: "text/html; charset=utf-8", "http-equiv" => "Content-Type"}
6
+ %meta{content: "NONE,NOARCHIVE", name: "robots"}
7
+ %meta{content: "initial-scale=1", name: "viewport", "maximum-scale": 1}
8
+ = csrf_meta_tag
9
+ = stylesheet_link_tag "hatchy/hatchy"
10
+ %body
11
+ = render "layouts/hatchy/navbar"
12
+ .container-fluid
13
+ = yield
14
+ - if show_layout_footer?
15
+ = render "layouts/hatchy/footer"
16
+
17
+ - @announcements = Hatchy::Announcement.current(cookies.signed[:hidden_announcement_ids])
18
+ = content_tag :div, id: 'announcements', data:{announcements:@announcements.to_json}, class: 'hidden' do
19
+ %p Loading announcements
20
+ = flash_messages if show_layout_flash?
21
+ = javascript_include_tag "hatchy/hatchy"
22
+ = yield :javascripts
@@ -0,0 +1,266 @@
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
+ # The secret key used by Devise. Devise uses this key to generate
5
+ # random tokens. Changing this key will render invalid all existing
6
+ # confirmation, reset password and unlock tokens in the database.
7
+ # Devise will use the `secret_key_base` on Rails 4+ applications as its `secret_key`
8
+ # by default. You can change it below and use your own secret key.
9
+ # config.secret_key = '72cbfbf72e656ad04075c25d2eabe8017a146263a0954394a531a8711464910215c6eb28ed3c0c51546d14fa519fb016f19d4557ffddb7913f56b73b64794377'
10
+
11
+ # ==> Mailer Configuration
12
+ # Configure the e-mail address which will be shown in Devise::Mailer,
13
+ # note that it will be overwritten if you use your own mailer class
14
+ # with default "from" parameter.
15
+ config.mailer_sender = 'please-change-me-at-config-initializers-devise@example.com'
16
+
17
+ # Configure the class responsible to send e-mails.
18
+ # config.mailer = 'Devise::Mailer'
19
+
20
+ # ==> ORM configuration
21
+ # Load and configure the ORM. Supports :active_record (default) and
22
+ # :mongoid (bson_ext recommended) by default. Other ORMs may be
23
+ # available as additional gems.
24
+ require 'devise/orm/active_record'
25
+
26
+ # ==> Configuration for any authentication mechanism
27
+ # Configure which keys are used when authenticating a user. The default is
28
+ # just :email. You can configure it to use [:username, :subdomain], so for
29
+ # authenticating a user, both parameters are required. Remember that those
30
+ # parameters are used only when authenticating and not when retrieving from
31
+ # session. If you need permissions, you should implement that in a before filter.
32
+ # You can also supply a hash where the value is a boolean determining whether
33
+ # or not authentication should be aborted when the value is not present.
34
+ # config.authentication_keys = [:email]
35
+
36
+ # Configure parameters from the request object used for authentication. Each entry
37
+ # given should be a request method and it will automatically be passed to the
38
+ # find_for_authentication method and considered in your model lookup. For instance,
39
+ # if you set :request_keys to [:subdomain], :subdomain will be used on authentication.
40
+ # The same considerations mentioned for authentication_keys also apply to request_keys.
41
+ # config.request_keys = []
42
+
43
+ # Configure which authentication keys should be case-insensitive.
44
+ # These keys will be downcased upon creating or modifying a user and when used
45
+ # to authenticate or find a user. Default is :email.
46
+ config.case_insensitive_keys = [:email]
47
+
48
+ # Configure which authentication keys should have whitespace stripped.
49
+ # These keys will have whitespace before and after removed upon creating or
50
+ # modifying a user and when used to authenticate or find a user. Default is :email.
51
+ config.strip_whitespace_keys = [:email]
52
+
53
+ # Tell if authentication through request.params is enabled. True by default.
54
+ # It can be set to an array that will enable params authentication only for the
55
+ # given strategies, for example, `config.params_authenticatable = [:database]` will
56
+ # enable it only for database (email + password) authentication.
57
+ # config.params_authenticatable = true
58
+
59
+ # Tell if authentication through HTTP Auth is enabled. False by default.
60
+ # It can be set to an array that will enable http authentication only for the
61
+ # given strategies, for example, `config.http_authenticatable = [:database]` will
62
+ # enable it only for database authentication. The supported strategies are:
63
+ # :database = Support basic authentication with authentication key + password
64
+ # config.http_authenticatable = false
65
+
66
+ # If 401 status code should be returned for AJAX requests. True by default.
67
+ # config.http_authenticatable_on_xhr = true
68
+
69
+ # The realm used in Http Basic Authentication. 'Application' by default.
70
+ # config.http_authentication_realm = 'Application'
71
+
72
+ # It will change confirmation, password recovery and other workflows
73
+ # to behave the same regardless if the e-mail provided was right or wrong.
74
+ # Does not affect registerable.
75
+ # config.paranoid = true
76
+
77
+ # By default Devise will store the user in session. You can skip storage for
78
+ # particular strategies by setting this option.
79
+ # Notice that if you are skipping storage for all authentication paths, you
80
+ # may want to disable generating routes to Devise's sessions controller by
81
+ # passing skip: :sessions to `devise_for` in your config/routes.rb
82
+ config.skip_session_storage = [:http_auth]
83
+
84
+ # By default, Devise cleans up the CSRF token on authentication to
85
+ # avoid CSRF token fixation attacks. This means that, when using AJAX
86
+ # requests for sign in and sign up, you need to get a new CSRF token
87
+ # from the server. You can disable this option at your own risk.
88
+ # config.clean_up_csrf_token_on_authentication = true
89
+
90
+ # ==> Configuration for :database_authenticatable
91
+ # For bcrypt, this is the cost for hashing the password and defaults to 10. If
92
+ # using other encryptors, it sets how many times you want the password re-encrypted.
93
+ #
94
+ # Limiting the stretches to just one in testing will increase the performance of
95
+ # your test suite dramatically. However, it is STRONGLY RECOMMENDED to not use
96
+ # a value less than 10 in other environments. Note that, for bcrypt (the default
97
+ # encryptor), the cost increases exponentially with the number of stretches (e.g.
98
+ # a value of 20 is already extremely slow: approx. 60 seconds for 1 calculation).
99
+ config.stretches = Rails.env.test? ? 1 : 10
100
+
101
+ # Setup a pepper to generate the encrypted password.
102
+ # config.pepper = 'b465839b566004b4423967d122afe4f77759c31093d627387dd3ccc53cf97b93411d2a4f8faa36cdb73f40593c52be88d2bc6cdc88f7fffc9c82ae70171ddd06'
103
+
104
+ # ==> Configuration for :confirmable
105
+ # A period that the user is allowed to access the website even without
106
+ # confirming their account. For instance, if set to 2.days, the user will be
107
+ # able to access the website for two days without confirming their account,
108
+ # access will be blocked just in the third day. Default is 0.days, meaning
109
+ # the user cannot access the website without confirming their account.
110
+ # config.allow_unconfirmed_access_for = 2.days
111
+
112
+ # A period that the user is allowed to confirm their account before their
113
+ # token becomes invalid. For example, if set to 3.days, the user can confirm
114
+ # their account within 3 days after the mail was sent, but on the fourth day
115
+ # their account can't be confirmed with the token any more.
116
+ # Default is nil, meaning there is no restriction on how long a user can take
117
+ # before confirming their account.
118
+ # config.confirm_within = 3.days
119
+
120
+ # If true, requires any email changes to be confirmed (exactly the same way as
121
+ # initial account confirmation) to be applied. Requires additional unconfirmed_email
122
+ # db field (see migrations). Until confirmed, new email is stored in
123
+ # unconfirmed_email column, and copied to email column on successful confirmation.
124
+ config.reconfirmable = true
125
+
126
+ # Defines which key will be used when confirming an account
127
+ # config.confirmation_keys = [:email]
128
+
129
+ # ==> Configuration for :rememberable
130
+ # The time the user will be remembered without asking for credentials again.
131
+ # config.remember_for = 2.weeks
132
+
133
+ # Invalidates all the remember me tokens when the user signs out.
134
+ config.expire_all_remember_me_on_sign_out = true
135
+
136
+ # If true, extends the user's remember period when remembered via cookie.
137
+ # config.extend_remember_period = false
138
+
139
+ # Options to be passed to the created cookie. For instance, you can set
140
+ # secure: true in order to force SSL only cookies.
141
+ # config.rememberable_options = {}
142
+
143
+ # ==> Configuration for :validatable
144
+ # Range for password length.
145
+ config.password_length = 2..72
146
+
147
+ # Email regex used to validate email formats. It simply asserts that
148
+ # one (and only one) @ exists in the given string. This is mainly
149
+ # to give user feedback and not to assert the e-mail validity.
150
+ # config.email_regexp = /\A[^@]+@[^@]+\z/
151
+
152
+ # ==> Configuration for :timeoutable
153
+ # The time you want to timeout the user session without activity. After this
154
+ # time the user will be asked for credentials again. Default is 30 minutes.
155
+ # config.timeout_in = 30.minutes
156
+
157
+ # If true, expires auth token on session timeout.
158
+ # config.expire_auth_token_on_timeout = false
159
+
160
+ # ==> Configuration for :lockable
161
+ # Defines which strategy will be used to lock an account.
162
+ # :failed_attempts = Locks an account after a number of failed attempts to sign in.
163
+ # :none = No lock strategy. You should handle locking by yourself.
164
+ # config.lock_strategy = :failed_attempts
165
+
166
+ # Defines which key will be used when locking and unlocking an account
167
+ # config.unlock_keys = [:email]
168
+
169
+ # Defines which strategy will be used to unlock an account.
170
+ # :email = Sends an unlock link to the user email
171
+ # :time = Re-enables login after a certain amount of time (see :unlock_in below)
172
+ # :both = Enables both strategies
173
+ # :none = No unlock strategy. You should handle unlocking by yourself.
174
+ # config.unlock_strategy = :both
175
+
176
+ # Number of authentication tries before locking an account if lock_strategy
177
+ # is failed attempts.
178
+ # config.maximum_attempts = 20
179
+
180
+ # Time interval to unlock the account if :time is enabled as unlock_strategy.
181
+ # config.unlock_in = 1.hour
182
+
183
+ # Warn on the last attempt before the account is locked.
184
+ # config.last_attempt_warning = true
185
+
186
+ # ==> Configuration for :recoverable
187
+ #
188
+ # Defines which key will be used when recovering the password for an account
189
+ # config.reset_password_keys = [:email]
190
+
191
+ # Time interval you can reset your password with a reset password key.
192
+ # Don't put a too small interval or your users won't have the time to
193
+ # change their passwords.
194
+ config.reset_password_within = 6.hours
195
+
196
+ # When set to false, does not sign a user in automatically after their password is
197
+ # reset. Defaults to true, so a user is signed in automatically after a reset.
198
+ # config.sign_in_after_reset_password = true
199
+
200
+ # ==> Configuration for :encryptable
201
+ # Allow you to use another encryption algorithm besides bcrypt (default). You can use
202
+ # :sha1, :sha512 or encryptors from others authentication tools as :clearance_sha1,
203
+ # :authlogic_sha512 (then you should set stretches above to 20 for default behavior)
204
+ # and :restful_authentication_sha1 (then you should set stretches to 10, and copy
205
+ # REST_AUTH_SITE_KEY to pepper).
206
+ #
207
+ # Require the `devise-encryptable` gem when using anything other than bcrypt
208
+ # config.encryptor = :sha512
209
+
210
+ # ==> Scopes configuration
211
+ # Turn scoped views on. Before rendering "sessions/new", it will first check for
212
+ # "users/sessions/new". It's turned off by default because it's slower if you
213
+ # are using only default views.
214
+ # config.scoped_views = false
215
+
216
+ # Configure the default scope given to Warden. By default it's the first
217
+ # devise role declared in your routes (usually :user).
218
+ # config.default_scope = :user
219
+
220
+ # Set this configuration to false if you want /users/sign_out to sign out
221
+ # only the current scope. By default, Devise signs out all scopes.
222
+ # config.sign_out_all_scopes = true
223
+
224
+ # ==> Navigation configuration
225
+ # Lists the formats that should be treated as navigational. Formats like
226
+ # :html, should redirect to the sign in page when the user does not have
227
+ # access, but formats like :xml or :json, should return 401.
228
+ #
229
+ # If you have any extra navigational formats, like :iphone or :mobile, you
230
+ # should add them to the navigational formats lists.
231
+ #
232
+ # The "*/*" below is required to match Internet Explorer requests.
233
+ # config.navigational_formats = ['*/*', :html]
234
+
235
+ # The default HTTP method used to sign out a resource. Default is :delete.
236
+ config.sign_out_via = :delete
237
+
238
+ # ==> OmniAuth
239
+ # Add a new OmniAuth provider. Check the wiki for more information on setting
240
+ # up on your models and hooks.
241
+ # config.omniauth :github, 'APP_ID', 'APP_SECRET', scope: 'user,public_repo'
242
+
243
+ # ==> Warden configuration
244
+ # If you want to use other strategies, that are not supported by Devise, or
245
+ # change the failure app, you can configure them inside the config.warden block.
246
+ #
247
+ # config.warden do |manager|
248
+ # manager.intercept_401 = false
249
+ # manager.default_strategies(scope: :user).unshift :some_external_strategy
250
+ # end
251
+
252
+ # ==> Mountable engine configurations
253
+ # When using Devise inside an engine, let's call it `MyEngine`, and this engine
254
+ # is mountable, there are some extra configurations to be taken into account.
255
+ # The following options are available, assuming the engine is mounted as:
256
+ #
257
+ # mount MyEngine, at: '/my_engine'
258
+ #
259
+ # The router that invoked `devise_for`, in the example above, would be:
260
+ config.router_name = :hatchy
261
+ config.parent_controller = 'Hatchy::ApplicationController'
262
+ #
263
+ # When using OmniAuth, Devise cannot automatically set OmniAuth path,
264
+ # so you need to do it manually. For the users scope, it would be:
265
+ # config.omniauth_path_prefix = '/my_engine/users/auth'
266
+ end
@@ -0,0 +1,60 @@
1
+ # Additional translations at https://github.com/plataformatec/devise/wiki/I18n
2
+
3
+ en:
4
+ devise:
5
+ confirmations:
6
+ confirmed: "Your email address has been successfully confirmed."
7
+ send_instructions: "You will receive an email with instructions for how to confirm your email address in a few minutes."
8
+ send_paranoid_instructions: "If your email address exists in our database, you will receive an email with instructions for how to confirm your email address in a few minutes."
9
+ failure:
10
+ already_authenticated: "You are already signed in."
11
+ inactive: "Your account is not activated yet."
12
+ invalid: "Invalid %{authentication_keys} or password."
13
+ locked: "Your account is locked."
14
+ last_attempt: "You have one more attempt before your account is locked."
15
+ not_found_in_database: "Invalid %{authentication_keys} or password."
16
+ timeout: "Your session expired. Please sign in again to continue."
17
+ unauthenticated: "You need to sign in or sign up before continuing."
18
+ unconfirmed: "You have to confirm your email address before continuing."
19
+ mailer:
20
+ confirmation_instructions:
21
+ subject: "Confirmation instructions"
22
+ reset_password_instructions:
23
+ subject: "Reset password instructions"
24
+ unlock_instructions:
25
+ subject: "Unlock instructions"
26
+ omniauth_callbacks:
27
+ failure: "Could not authenticate you from %{kind} because \"%{reason}\"."
28
+ success: "Successfully authenticated from %{kind} account."
29
+ passwords:
30
+ no_token: "You can't access this page without coming from a password reset email. If you do come from a password reset email, please make sure you used the full URL provided."
31
+ send_instructions: "You will receive an email with instructions on how to reset your password in a few minutes."
32
+ send_paranoid_instructions: "If your email address exists in our database, you will receive a password recovery link at your email address in a few minutes."
33
+ updated: "Your password has been changed successfully. You are now signed in."
34
+ updated_not_active: "Your password has been changed successfully."
35
+ registrations:
36
+ destroyed: "Bye! Your account has been successfully cancelled. We hope to see you again soon."
37
+ signed_up: "Welcome! You have signed up successfully."
38
+ signed_up_but_inactive: "You have signed up successfully. However, we could not sign you in because your account is not yet activated."
39
+ signed_up_but_locked: "You have signed up successfully. However, we could not sign you in because your account is locked."
40
+ signed_up_but_unconfirmed: "A message with a confirmation link has been sent to your email address. Please follow the link to activate your account."
41
+ update_needs_confirmation: "You updated your account successfully, but we need to verify your new email address. Please check your email and follow the confirm link to confirm your new email address."
42
+ updated: "Your account has been updated successfully."
43
+ sessions:
44
+ signed_in: "Signed in successfully."
45
+ signed_out: "Signed out successfully."
46
+ already_signed_out: "Signed out successfully."
47
+ unlocks:
48
+ send_instructions: "You will receive an email with instructions for how to unlock your account in a few minutes."
49
+ send_paranoid_instructions: "If your account exists, you will receive an email with instructions for how to unlock it in a few minutes."
50
+ unlocked: "Your account has been unlocked successfully. Please sign in to continue."
51
+ errors:
52
+ messages:
53
+ already_confirmed: "was already confirmed, please try signing in"
54
+ confirmation_period_expired: "needs to be confirmed within %{period}, please request a new one"
55
+ expired: "has expired, please request a new one"
56
+ not_found: "not found"
57
+ not_locked: "was not locked"
58
+ not_saved:
59
+ one: "1 error prohibited this %{resource} from being saved:"
60
+ other: "%{count} errors prohibited this %{resource} from being saved:"
@@ -0,0 +1,146 @@
1
+ en:
2
+ models:
3
+ hatchy/shared:
4
+ attributes:
5
+ id: Id
6
+ created_at: Created at
7
+ updated_at: Updated at
8
+ hatchy/announcement:
9
+ one: Announcement
10
+ other: Announcements
11
+ attributes:
12
+ message: Message
13
+ starts_at: Starts at
14
+ ends_at: Ends at
15
+ hatchy/bank:
16
+ one: Bank
17
+ other: Banks
18
+ attributes:
19
+ name: Name
20
+ code: Code
21
+ hatchy/bank_account:
22
+ one: Bank Account
23
+ other: Bank Accounts
24
+ attributes:
25
+ account: Account
26
+ account_digit: Account Digit
27
+ hatchy/category:
28
+ one: Category
29
+ other: Categories
30
+ attributes:
31
+ name: Name
32
+ hatchy/contribution:
33
+ one: Contribution
34
+ other: Contributions
35
+ attributes:
36
+ value: Value
37
+ status: Status
38
+ name: Name
39
+ email: Email
40
+ document: Document
41
+ address_street: Address Street
42
+ address_number: Address Number
43
+ address_city: Address City
44
+ address_zip: Zip Code
45
+ address_state: Address State
46
+ address_phone: Address Phone
47
+ ip_address: IP Address
48
+ card_type: Credit Card Type
49
+ card_expires_on: Credit Card Expiration
50
+ anonymous: Anonymous
51
+ notified_when_finish: Notify when finish
52
+ hatchy/country:
53
+ one: Country
54
+ other: Countries
55
+ attributes:
56
+ name: Name
57
+ code2: ISO 2
58
+ code3: ISO 3
59
+ continent: Continent
60
+ tld: Top level domain
61
+ currency: Currency
62
+ eu_member: EU Member
63
+ hatchy/project:
64
+ one: Project
65
+ other: Projects
66
+ attributes:
67
+ project_img: Project Image
68
+ city: City
69
+ name: Name
70
+ headline: Headline
71
+ about: About
72
+ budget: Budget
73
+ video_url: Video URL
74
+ short_url: Short URL
75
+ goal: Goal
76
+ online_days: Online days
77
+ online_date: Online date
78
+ expires_at: Expires at
79
+ rejected_at: Rejected at
80
+ send_to_draft_at: Send to draft at
81
+ status: Status
82
+ recommended: Recommended
83
+ states:
84
+ draft: Draft
85
+ analysis: Analysis
86
+ rejected: Rejected
87
+ approved: Approved
88
+ online: Online
89
+ failed: Failed
90
+ successful: Successful
91
+ trash: Trash
92
+ deleted: Deleted
93
+ hatchy/project_account:
94
+ one: Project Account
95
+ other: Project Accounts
96
+ attributes:
97
+ account_type: Account Type
98
+ email: Email
99
+ phone: Phone
100
+ account: Account
101
+ account_digit: Account Digit
102
+ owner_name: Owner Name
103
+ owner_document: Owner Document
104
+ address_street: Address Street
105
+ address_number: Address Number
106
+ address_city: Address City
107
+ address_state: Address State
108
+ address_zip: Zip Code
109
+ send_to_analysis_at: Send to analysis at
110
+ send_to_rejected_at: Send to rejected at
111
+ hatchy/reward:
112
+ one: Reward
113
+ other: Rewards
114
+ attributes:
115
+ min_value: Minimum Value
116
+ max_contributions: Maximum Contributions
117
+ description: Description
118
+ deliver_at: Deliver at
119
+ row_order: Row Order
120
+ hatchy/user:
121
+ one: User
122
+ other: Users
123
+ attributes:
124
+ admin: Admin
125
+ profile_img: Profile Image
126
+ cover_img: Cover Image
127
+ facebook_link: Facebook
128
+ twitter_link: Twitter
129
+ other_link: Other Social Network
130
+ first_name: First Name
131
+ last_name: Last Name
132
+ about: About
133
+ newsletter: Newsletter
134
+ subs_projects: Subscribe to Projects
135
+ locale: Locale
136
+ address_street: Address Street
137
+ address_number: Address Number
138
+ address_city: Address City
139
+ address_state: Address State
140
+ address_zip: Zip Code
141
+ document: Document
142
+ phone: Phone
143
+ mobile: Mobile
144
+ email: Email
145
+ controllers:
146
+ views: