acts_as_talented 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (474) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/images/acts_as_talented/ajax-loader.gif +0 -0
  3. data/app/assets/javascripts/acts_as_talented/angularjs/NotificationFactory.js +24 -0
  4. data/app/assets/javascripts/acts_as_talented/angularjs/ProfileController.js +15 -0
  5. data/app/assets/javascripts/acts_as_talented/angularjs/TabsController.js +24 -0
  6. data/app/assets/javascripts/acts_as_talented/angularjs/app.js +122 -0
  7. data/app/assets/javascripts/acts_as_talented/angularjs/applicant/ApplicantsController.js +50 -0
  8. data/app/assets/javascripts/acts_as_talented/angularjs/applicant/ApplicantsFactory.js +30 -0
  9. data/app/assets/javascripts/acts_as_talented/angularjs/employer/EmployersController.js +84 -0
  10. data/app/assets/javascripts/acts_as_talented/angularjs/employer/EmployersFactory.js +12 -0
  11. data/app/assets/javascripts/acts_as_talented/angularjs/user/UserSearchController.js +120 -0
  12. data/app/assets/javascripts/acts_as_talented/angularjs/user/UserSearchFactory.js +45 -0
  13. data/app/assets/javascripts/acts_as_talented/angularjs/user/UsersController.js +44 -0
  14. data/app/assets/javascripts/acts_as_talented/angularjs/user/UsersFactory.js +45 -0
  15. data/app/assets/javascripts/acts_as_talented/application.js +30 -1
  16. data/app/assets/javascripts/acts_as_talented/dependancies/angular-ui-router.min.js +7 -0
  17. data/app/assets/javascripts/acts_as_talented/dependancies/toastr.min.js +1 -0
  18. data/app/assets/javascripts/acts_as_talented/templates/employers.html.erb +77 -0
  19. data/app/assets/javascripts/acts_as_talented/templates/job_analytics.html +1 -0
  20. data/app/assets/javascripts/acts_as_talented/templates/my_applicants.detail.html +35 -0
  21. data/app/assets/javascripts/acts_as_talented/templates/my_applicants.html +129 -0
  22. data/app/assets/javascripts/acts_as_talented/templates/my_applicants.list.html +8 -0
  23. data/app/assets/javascripts/acts_as_talented/templates/my_jobs.html +3 -0
  24. data/app/assets/javascripts/acts_as_talented/templates/my_profile.html +45 -0
  25. data/app/assets/javascripts/acts_as_talented/templates/search_candidate.html +413 -0
  26. data/app/assets/stylesheets/acts_as_talented/application.css +8 -1
  27. data/app/assets/stylesheets/acts_as_talented/banner.css.scss +40 -0
  28. data/app/assets/stylesheets/acts_as_talented/fonts.css.scss +13 -0
  29. data/app/assets/stylesheets/acts_as_talented/login.css.scss +18 -0
  30. data/app/assets/stylesheets/acts_as_talented/main.css.scss +13 -0
  31. data/app/assets/stylesheets/acts_as_talented/toastr.min.css +1 -0
  32. data/app/assets/stylesheets/acts_as_talented/typography.css.scss +77 -0
  33. data/app/controllers/acts_as_talented/api/api_controller.rb +20 -0
  34. data/app/controllers/acts_as_talented/api/v1/employers_controller.rb +31 -0
  35. data/app/controllers/acts_as_talented/application_controller.rb +1 -0
  36. data/app/controllers/acts_as_talented/dashboard_controller.rb +11 -0
  37. data/app/controllers/acts_as_talented/employers_controller.rb +39 -0
  38. data/app/models/acts_as_talented/ability.rb +38 -0
  39. data/app/models/acts_as_talented/acts_as_talented.rb +7 -0
  40. data/app/models/acts_as_talented/employer.rb +10 -0
  41. data/app/views/acts_as_talented/dashboard/index.html.erb +37 -0
  42. data/app/views/devise/confirmations/new.html.erb +12 -0
  43. data/app/views/devise/mailer/confirmation_instructions.html.erb +5 -0
  44. data/app/views/devise/mailer/reset_password_instructions.html.erb +8 -0
  45. data/app/views/devise/mailer/unlock_instructions.html.erb +7 -0
  46. data/app/views/devise/passwords/edit.html.erb +16 -0
  47. data/app/views/devise/passwords/new.html.erb +12 -0
  48. data/app/views/devise/registrations/edit.html.erb +29 -0
  49. data/app/views/devise/registrations/new.html.erb +18 -0
  50. data/app/views/devise/sessions/new.html.erb +19 -0
  51. data/app/views/devise/shared/_links.erb +25 -0
  52. data/app/views/devise/unlocks/new.html.erb +12 -0
  53. data/app/views/layouts/acts_as_talented/application.html.erb +13 -1
  54. data/app/views/partials/_navbar_admin.html.erb +53 -0
  55. data/config/database.travis.yml +4 -0
  56. data/config/database.yml +21 -0
  57. data/config/initializers/devise.rb +257 -0
  58. data/config/locales/devise.en.yml +59 -0
  59. data/config/routes.rb +9 -0
  60. data/db/migrate/20141010082808_devise_create_acts_as_talented_employers.rb +44 -0
  61. data/lib/acts_as_talented.rb +17 -0
  62. data/lib/acts_as_talented/engine.rb +2 -0
  63. data/lib/acts_as_talented/version.rb +1 -1
  64. data/lib/tasks/acts_as_talented_tasks.rake +30 -4
  65. data/spec/abilities/employer_abilities_spec.rb +19 -0
  66. data/spec/controllers/acts_as_talented/api/employers_controller_spec.rb +58 -0
  67. data/spec/controllers/acts_as_talented/dashboard_controller_spec.rb +42 -0
  68. data/spec/dummy/config/initializers/acts_as_talented.rb +3 -0
  69. data/spec/dummy/db/schema.rb +21 -1
  70. data/spec/dummy/log/development.log +28822 -0
  71. data/spec/dummy/log/test.log +1487 -0
  72. data/spec/dummy/tmp/cache/assets/development/sass/1ef9919ed8995f26309a0e469dc72a19d3032768/_alerts.scssc +0 -0
  73. data/spec/dummy/tmp/cache/assets/development/sass/1ef9919ed8995f26309a0e469dc72a19d3032768/_background-variant.scssc +0 -0
  74. data/spec/dummy/tmp/cache/assets/development/sass/1ef9919ed8995f26309a0e469dc72a19d3032768/_border-radius.scssc +0 -0
  75. data/spec/dummy/tmp/cache/assets/development/sass/1ef9919ed8995f26309a0e469dc72a19d3032768/_buttons.scssc +0 -0
  76. data/spec/dummy/tmp/cache/assets/development/sass/1ef9919ed8995f26309a0e469dc72a19d3032768/_center-block.scssc +0 -0
  77. data/spec/dummy/tmp/cache/assets/development/sass/1ef9919ed8995f26309a0e469dc72a19d3032768/_clearfix.scssc +0 -0
  78. data/spec/dummy/tmp/cache/assets/development/sass/1ef9919ed8995f26309a0e469dc72a19d3032768/_forms.scssc +0 -0
  79. data/spec/dummy/tmp/cache/assets/development/sass/1ef9919ed8995f26309a0e469dc72a19d3032768/_gradients.scssc +0 -0
  80. data/spec/dummy/tmp/cache/assets/development/sass/1ef9919ed8995f26309a0e469dc72a19d3032768/_grid-framework.scssc +0 -0
  81. data/spec/dummy/tmp/cache/assets/development/sass/1ef9919ed8995f26309a0e469dc72a19d3032768/_grid.scssc +0 -0
  82. data/spec/dummy/tmp/cache/assets/development/sass/1ef9919ed8995f26309a0e469dc72a19d3032768/_hide-text.scssc +0 -0
  83. data/spec/dummy/tmp/cache/assets/development/sass/1ef9919ed8995f26309a0e469dc72a19d3032768/_image.scssc +0 -0
  84. data/spec/dummy/tmp/cache/assets/development/sass/1ef9919ed8995f26309a0e469dc72a19d3032768/_labels.scssc +0 -0
  85. data/spec/dummy/tmp/cache/assets/development/sass/1ef9919ed8995f26309a0e469dc72a19d3032768/_list-group.scssc +0 -0
  86. data/spec/dummy/tmp/cache/assets/development/sass/1ef9919ed8995f26309a0e469dc72a19d3032768/_nav-divider.scssc +0 -0
  87. data/spec/dummy/tmp/cache/assets/development/sass/1ef9919ed8995f26309a0e469dc72a19d3032768/_nav-vertical-align.scssc +0 -0
  88. data/spec/dummy/tmp/cache/assets/development/sass/1ef9919ed8995f26309a0e469dc72a19d3032768/_opacity.scssc +0 -0
  89. data/spec/dummy/tmp/cache/assets/development/sass/1ef9919ed8995f26309a0e469dc72a19d3032768/_pagination.scssc +0 -0
  90. data/spec/dummy/tmp/cache/assets/development/sass/1ef9919ed8995f26309a0e469dc72a19d3032768/_panels.scssc +0 -0
  91. data/spec/dummy/tmp/cache/assets/development/sass/1ef9919ed8995f26309a0e469dc72a19d3032768/_progress-bar.scssc +0 -0
  92. data/spec/dummy/tmp/cache/assets/development/sass/1ef9919ed8995f26309a0e469dc72a19d3032768/_reset-filter.scssc +0 -0
  93. data/spec/dummy/tmp/cache/assets/development/sass/1ef9919ed8995f26309a0e469dc72a19d3032768/_resize.scssc +0 -0
  94. data/spec/dummy/tmp/cache/assets/development/sass/1ef9919ed8995f26309a0e469dc72a19d3032768/_responsive-visibility.scssc +0 -0
  95. data/spec/dummy/tmp/cache/assets/development/sass/1ef9919ed8995f26309a0e469dc72a19d3032768/_size.scssc +0 -0
  96. data/spec/dummy/tmp/cache/assets/development/sass/1ef9919ed8995f26309a0e469dc72a19d3032768/_tab-focus.scssc +0 -0
  97. data/spec/dummy/tmp/cache/assets/development/sass/1ef9919ed8995f26309a0e469dc72a19d3032768/_table-row.scssc +0 -0
  98. data/spec/dummy/tmp/cache/assets/development/sass/1ef9919ed8995f26309a0e469dc72a19d3032768/_text-emphasis.scssc +0 -0
  99. data/spec/dummy/tmp/cache/assets/development/sass/1ef9919ed8995f26309a0e469dc72a19d3032768/_text-overflow.scssc +0 -0
  100. data/spec/dummy/tmp/cache/assets/development/sass/1ef9919ed8995f26309a0e469dc72a19d3032768/_vendor-prefixes.scssc +0 -0
  101. data/spec/dummy/tmp/cache/assets/development/sass/375769343642c5629998d5ce8507c01392f25bc3/_bootstrap-sprockets.scssc +0 -0
  102. data/spec/dummy/tmp/cache/assets/development/sass/375769343642c5629998d5ce8507c01392f25bc3/_bootstrap.scssc +0 -0
  103. data/spec/dummy/tmp/cache/assets/development/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_alerts.scssc +0 -0
  104. data/spec/dummy/tmp/cache/assets/development/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_badges.scssc +0 -0
  105. data/spec/dummy/tmp/cache/assets/development/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_breadcrumbs.scssc +0 -0
  106. data/spec/dummy/tmp/cache/assets/development/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_button-groups.scssc +0 -0
  107. data/spec/dummy/tmp/cache/assets/development/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_buttons.scssc +0 -0
  108. data/spec/dummy/tmp/cache/assets/development/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_carousel.scssc +0 -0
  109. data/spec/dummy/tmp/cache/assets/development/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_close.scssc +0 -0
  110. data/spec/dummy/tmp/cache/assets/development/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_code.scssc +0 -0
  111. data/spec/dummy/tmp/cache/assets/development/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_component-animations.scssc +0 -0
  112. data/spec/dummy/tmp/cache/assets/development/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_dropdowns.scssc +0 -0
  113. data/spec/dummy/tmp/cache/assets/development/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_forms.scssc +0 -0
  114. data/spec/dummy/tmp/cache/assets/development/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_glyphicons.scssc +0 -0
  115. data/spec/dummy/tmp/cache/assets/development/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_grid.scssc +0 -0
  116. data/spec/dummy/tmp/cache/assets/development/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_input-groups.scssc +0 -0
  117. data/spec/dummy/tmp/cache/assets/development/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_jumbotron.scssc +0 -0
  118. data/spec/dummy/tmp/cache/assets/development/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_labels.scssc +0 -0
  119. data/spec/dummy/tmp/cache/assets/development/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_list-group.scssc +0 -0
  120. data/spec/dummy/tmp/cache/assets/development/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_media.scssc +0 -0
  121. data/spec/dummy/tmp/cache/assets/development/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_mixins.scssc +0 -0
  122. data/spec/dummy/tmp/cache/assets/development/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_modals.scssc +0 -0
  123. data/spec/dummy/tmp/cache/assets/development/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_navbar.scssc +0 -0
  124. data/spec/dummy/tmp/cache/assets/development/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_navs.scssc +0 -0
  125. data/spec/dummy/tmp/cache/assets/development/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_normalize.scssc +0 -0
  126. data/spec/dummy/tmp/cache/assets/development/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_pager.scssc +0 -0
  127. data/spec/dummy/tmp/cache/assets/development/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_pagination.scssc +0 -0
  128. data/spec/dummy/tmp/cache/assets/development/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_panels.scssc +0 -0
  129. data/spec/dummy/tmp/cache/assets/development/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_popovers.scssc +0 -0
  130. data/spec/dummy/tmp/cache/assets/development/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_print.scssc +0 -0
  131. data/spec/dummy/tmp/cache/assets/development/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_progress-bars.scssc +0 -0
  132. data/spec/dummy/tmp/cache/assets/development/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_responsive-embed.scssc +0 -0
  133. data/spec/dummy/tmp/cache/assets/development/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_responsive-utilities.scssc +0 -0
  134. data/spec/dummy/tmp/cache/assets/development/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_scaffolding.scssc +0 -0
  135. data/spec/dummy/tmp/cache/assets/development/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_tables.scssc +0 -0
  136. data/spec/dummy/tmp/cache/assets/development/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_thumbnails.scssc +0 -0
  137. data/spec/dummy/tmp/cache/assets/development/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_tooltip.scssc +0 -0
  138. data/spec/dummy/tmp/cache/assets/development/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_type.scssc +0 -0
  139. data/spec/dummy/tmp/cache/assets/development/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_utilities.scssc +0 -0
  140. data/spec/dummy/tmp/cache/assets/development/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_variables.scssc +0 -0
  141. data/spec/dummy/tmp/cache/assets/development/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_wells.scssc +0 -0
  142. data/spec/dummy/tmp/cache/assets/development/sass/f9b4d86027cb00ff41d268c37aa3bf7d0570bbec/banner.css.scssc +0 -0
  143. data/spec/dummy/tmp/cache/assets/development/sass/f9b4d86027cb00ff41d268c37aa3bf7d0570bbec/fonts.css.scssc +0 -0
  144. data/spec/dummy/tmp/cache/assets/development/sass/f9b4d86027cb00ff41d268c37aa3bf7d0570bbec/login.css.scssc +0 -0
  145. data/spec/dummy/tmp/cache/assets/development/sass/f9b4d86027cb00ff41d268c37aa3bf7d0570bbec/main.css.scssc +0 -0
  146. data/spec/dummy/tmp/cache/assets/development/sass/f9b4d86027cb00ff41d268c37aa3bf7d0570bbec/typography.css.scssc +0 -0
  147. data/spec/dummy/tmp/cache/assets/development/sprockets/0a03ba2f48adf0e3e0f23eeb9675bebe +0 -0
  148. data/spec/dummy/tmp/cache/assets/development/sprockets/0c5ace043cd955c6df2a7cb739a2f0dd +0 -0
  149. data/spec/dummy/tmp/cache/assets/development/sprockets/0dd3d17b532799022fdabf04e9b2ce04 +0 -0
  150. data/spec/dummy/tmp/cache/assets/development/sprockets/0de32a226094ef1aa18bef5b370d9232 +0 -0
  151. data/spec/dummy/tmp/cache/assets/development/sprockets/0f1b7dae5a45908f12d8a85ec2dea265 +0 -0
  152. data/spec/dummy/tmp/cache/assets/development/sprockets/0f3e255f254bae92df2f750a62f3c335 +0 -0
  153. data/spec/dummy/tmp/cache/assets/development/sprockets/0ffb8fea6ad4b22f023e89002b8faa6a +0 -0
  154. data/spec/dummy/tmp/cache/assets/development/sprockets/106595e9b0ab07ac7c1f2002522503f6 +0 -0
  155. data/spec/dummy/tmp/cache/assets/development/sprockets/115680d85f34a4753ed562ce935b1fba +0 -0
  156. data/spec/dummy/tmp/cache/assets/development/sprockets/13affddc6e981c1c1964efeed163a449 +0 -0
  157. data/spec/dummy/tmp/cache/assets/development/sprockets/15c85a601f60ff63990cc6029c4c1338 +0 -0
  158. data/spec/dummy/tmp/cache/assets/development/sprockets/15eff3ff2bb8f801c9c91338cb9a428f +0 -0
  159. data/spec/dummy/tmp/cache/assets/development/sprockets/1616ac6c004e1ff22186f3d647350b2a +0 -0
  160. data/spec/dummy/tmp/cache/assets/development/sprockets/19a970cd6841f85c34d1f510003ad08a +0 -0
  161. data/spec/dummy/tmp/cache/assets/development/sprockets/1d226fd0dd8633231752cf18da9a21e9 +0 -0
  162. data/spec/dummy/tmp/cache/assets/development/sprockets/1f0abfa32500ee50cec93c4754f17de2 +0 -0
  163. data/spec/dummy/tmp/cache/assets/development/sprockets/20bdf4519972911d3ea16d21d6549f31 +0 -0
  164. data/spec/dummy/tmp/cache/assets/development/sprockets/214c0a20b37be6bbe39a0547a285c035 +0 -0
  165. data/spec/dummy/tmp/cache/assets/development/sprockets/24ca5d9398aeef0107c9f857248a3c04 +0 -0
  166. data/spec/dummy/tmp/cache/assets/development/sprockets/2b6d91ec885c8eddb572621112804fd2 +0 -0
  167. data/spec/dummy/tmp/cache/assets/development/sprockets/2b7d8827abf4fc03b58b6ad6cab24770 +0 -0
  168. data/spec/dummy/tmp/cache/assets/development/sprockets/2c3413ef3ff2e236e3b153164298517d +0 -0
  169. data/spec/dummy/tmp/cache/assets/development/sprockets/2c929284c39eed91cdcf95cf316651b1 +0 -0
  170. data/spec/dummy/tmp/cache/assets/development/sprockets/2e84c95edbdced032f17e94bee51fa4a +0 -0
  171. data/spec/dummy/tmp/cache/assets/development/sprockets/2eef4e7443c925c255a2d8dc58331a06 +0 -0
  172. data/spec/dummy/tmp/cache/assets/development/sprockets/30318a96e5f39185cddcd5183a755e30 +0 -0
  173. data/spec/dummy/tmp/cache/assets/development/sprockets/31ed1c87f436f315003c0a86ae22cadd +0 -0
  174. data/spec/dummy/tmp/cache/assets/development/sprockets/330eca660710b7264626495f153dcf94 +0 -0
  175. data/spec/dummy/tmp/cache/assets/development/sprockets/33862d982794b9f6f8d06d2c996d18d6 +0 -0
  176. data/spec/dummy/tmp/cache/assets/development/sprockets/3b8ebb65b3e6dd540c5c1cb57a328e4d +0 -0
  177. data/spec/dummy/tmp/cache/assets/development/sprockets/3c47e30e5f39a47d248ba9c818cbbca7 +0 -0
  178. data/spec/dummy/tmp/cache/assets/development/sprockets/3ed3b32bff297382862ca2d7d7c39e28 +0 -0
  179. data/spec/dummy/tmp/cache/assets/development/sprockets/3fa91463212761316b29234cff270af9 +0 -0
  180. data/spec/dummy/tmp/cache/assets/development/sprockets/43ea2d777fa2d04c53793dd34aab235a +0 -0
  181. data/spec/dummy/tmp/cache/assets/development/sprockets/4896a189db347d12a025edd8f4ac61d4 +0 -0
  182. data/spec/dummy/tmp/cache/assets/development/sprockets/4971f0cb2680ebdc4a8e2b54e79eb9f5 +0 -0
  183. data/spec/dummy/tmp/cache/assets/development/sprockets/4dd90fa2b6ee01a993e0702adb8b0053 +0 -0
  184. data/spec/dummy/tmp/cache/assets/development/sprockets/4f4422da760aca46565528a4cda50dce +0 -0
  185. data/spec/dummy/tmp/cache/assets/development/sprockets/4f5320f3f0ea9c119cb15d18c401ba8b +0 -0
  186. data/spec/dummy/tmp/cache/assets/development/sprockets/516cc1b1a1f106e6ce1d04890ef919ad +0 -0
  187. data/spec/dummy/tmp/cache/assets/development/sprockets/5184cf03fb5346d99935831fba273cc5 +0 -0
  188. data/spec/dummy/tmp/cache/assets/development/sprockets/52475e557ce8d9b6a8278d7bbbb21cfb +0 -0
  189. data/spec/dummy/tmp/cache/assets/development/sprockets/5347b7df77feff7354ffa8ac17aad0b6 +0 -0
  190. data/spec/dummy/tmp/cache/assets/development/sprockets/535107365db357814f85c54dd20aed39 +0 -0
  191. data/spec/dummy/tmp/cache/assets/development/sprockets/535fa9a7ffee4f5852a6d4ef3f61deae +0 -0
  192. data/spec/dummy/tmp/cache/assets/development/sprockets/53b13327df4c65a6c3f237a2f8bf6cda +0 -0
  193. data/spec/dummy/tmp/cache/assets/development/sprockets/5599c99b1edf0ca10252cfb2eb8d32bc +0 -0
  194. data/spec/dummy/tmp/cache/assets/development/sprockets/578c2959b0b96542c3e11db87fd3485c +0 -0
  195. data/spec/dummy/tmp/cache/assets/development/sprockets/5b458db07584cb0f296292e5f4cb3050 +0 -0
  196. data/spec/dummy/tmp/cache/assets/development/sprockets/5bd0dddf36654192129a7b0c201ae913 +0 -0
  197. data/spec/dummy/tmp/cache/assets/development/sprockets/6264f3e6bae3a7199fa228c08a6def6c +0 -0
  198. data/spec/dummy/tmp/cache/assets/development/sprockets/634091512bce05d06e0330f3ab3b22d0 +0 -0
  199. data/spec/dummy/tmp/cache/assets/development/sprockets/67cf0c6b9e91cb71882af4f112b56952 +0 -0
  200. data/spec/dummy/tmp/cache/assets/development/sprockets/6beec88f824e62aa0e3c1bb509016102 +0 -0
  201. data/spec/dummy/tmp/cache/assets/development/sprockets/6c98afb385f76a4fd875117ad0c1c701 +0 -0
  202. data/spec/dummy/tmp/cache/assets/development/sprockets/6dcc4aa98a399cd8f33bd9c60dc71b51 +0 -0
  203. data/spec/dummy/tmp/cache/assets/development/sprockets/7113eeea88a784b61191e7c7c0765207 +0 -0
  204. data/spec/dummy/tmp/cache/assets/development/sprockets/711956e81757b1ea04a5a11860219cf7 +0 -0
  205. data/spec/dummy/tmp/cache/assets/development/sprockets/711d736a6c26f1efabd18dece8e35465 +0 -0
  206. data/spec/dummy/tmp/cache/assets/development/sprockets/71fe0e8b6466b8fdc100b418e3bf1b38 +0 -0
  207. data/spec/dummy/tmp/cache/assets/development/sprockets/74bab0787f1e7e1abd2235525e22fec8 +0 -0
  208. data/spec/dummy/tmp/cache/assets/development/sprockets/771fc4d2b579ceb3ce9241275f41f6bc +0 -0
  209. data/spec/dummy/tmp/cache/assets/development/sprockets/77ff78ac64c2c5ffc6d4fa978e4311e8 +0 -0
  210. data/spec/dummy/tmp/cache/assets/development/sprockets/798960dea88355dbbd7efd2c566642ab +0 -0
  211. data/spec/dummy/tmp/cache/assets/development/sprockets/79f281feb66a4b468a87a71670ef1d68 +0 -0
  212. data/spec/dummy/tmp/cache/assets/development/sprockets/7ded408b80dbf51f56a91e9bea167013 +0 -0
  213. data/spec/dummy/tmp/cache/assets/development/sprockets/7fb00530f46aa645869aef152fe95466 +0 -0
  214. data/spec/dummy/tmp/cache/assets/development/sprockets/825994d0150ce95c4dfda72a9a9b21c4 +0 -0
  215. data/spec/dummy/tmp/cache/assets/development/sprockets/826f858980dfb117a0d7d2fa4582f5b4 +0 -0
  216. data/spec/dummy/tmp/cache/assets/development/sprockets/8299f21947dc93a7390372b251006319 +0 -0
  217. data/spec/dummy/tmp/cache/assets/development/sprockets/836a12260a7c62df85ad882997cc815d +0 -0
  218. data/spec/dummy/tmp/cache/assets/development/sprockets/84b411d66bc29292e9370f0bb54b6db0 +0 -0
  219. data/spec/dummy/tmp/cache/assets/development/sprockets/86527956fd7c505c400baaaec2d3b1c6 +0 -0
  220. data/spec/dummy/tmp/cache/assets/development/sprockets/865d88c8d7349ff5c5f12096c50ec75f +0 -0
  221. data/spec/dummy/tmp/cache/assets/development/sprockets/8ce44c6051a2952bb4260f8068c04abb +0 -0
  222. data/spec/dummy/tmp/cache/assets/development/sprockets/8f424e5d7823875194c4649e5824d590 +0 -0
  223. data/spec/dummy/tmp/cache/assets/development/sprockets/90f32837697f85e5ab9eb8f474b24ce7 +0 -0
  224. data/spec/dummy/tmp/cache/assets/development/sprockets/91d0072494022fe39077c356712ff875 +0 -0
  225. data/spec/dummy/tmp/cache/assets/development/sprockets/92afaa8fdc31f22436c9749d0b41f000 +0 -0
  226. data/spec/dummy/tmp/cache/assets/development/sprockets/932c8021fabbcf9d044a75bdd8ac33c5 +0 -0
  227. data/spec/dummy/tmp/cache/assets/development/sprockets/95bdc1f939f0d1604c8330ec9a8688e2 +0 -0
  228. data/spec/dummy/tmp/cache/assets/development/sprockets/95e5e7d5121b19bf96075f9ad5724fc0 +0 -0
  229. data/spec/dummy/tmp/cache/assets/development/sprockets/9caafcbf7e9a68e1253062e7bb846f0b +0 -0
  230. data/spec/dummy/tmp/cache/assets/development/sprockets/9e7460d4dade1e464aa87fa972349773 +0 -0
  231. data/spec/dummy/tmp/cache/assets/development/sprockets/9ec94bcad534148a44164e77dba8cefe +0 -0
  232. data/spec/dummy/tmp/cache/assets/development/sprockets/9ed8c526d8e791ddaa87330cf5321a07 +0 -0
  233. data/spec/dummy/tmp/cache/assets/development/sprockets/9f9167576d4ea17fe7205a07e2a613b3 +0 -0
  234. data/spec/dummy/tmp/cache/assets/development/sprockets/a13f44264fc2c74f8897a66078509444 +0 -0
  235. data/spec/dummy/tmp/cache/assets/development/sprockets/a3c9e6fe4586da2f1db1e590f6ccd401 +0 -0
  236. data/spec/dummy/tmp/cache/assets/development/sprockets/a6704c9075b8bd24c33dbe00b124efb1 +0 -0
  237. data/spec/dummy/tmp/cache/assets/development/sprockets/a7ae6a0891684fd3758526ea2c81a257 +0 -0
  238. data/spec/dummy/tmp/cache/assets/development/sprockets/a7d9b7f10d7c7c7d2cd52c5696bf8503 +0 -0
  239. data/spec/dummy/tmp/cache/assets/development/sprockets/aaac060b29b088c0078aaead55a1909c +0 -0
  240. data/spec/dummy/tmp/cache/assets/development/sprockets/ac79df0caf0821c2e9c779040414a8a1 +0 -0
  241. data/spec/dummy/tmp/cache/assets/development/sprockets/ad7f8cd667f378d3ae7de9ccc47dd0f5 +0 -0
  242. data/spec/dummy/tmp/cache/assets/development/sprockets/ae63125c365c5eff2e886ccc0b4703c2 +0 -0
  243. data/spec/dummy/tmp/cache/assets/development/sprockets/b0527a6b0825d923ee58f5901f650d9d +0 -0
  244. data/spec/dummy/tmp/cache/assets/development/sprockets/b0d0870e7c35a8be7a3d3e56fb6fea48 +0 -0
  245. data/spec/dummy/tmp/cache/assets/development/sprockets/b11d96381f0a5181d1b27355b8adde6b +0 -0
  246. data/spec/dummy/tmp/cache/assets/development/sprockets/b2cd88a0b1fc9516983ab7cf2489da63 +0 -0
  247. data/spec/dummy/tmp/cache/assets/development/sprockets/b442d305a8c3c39dbccab659c223de1d +0 -0
  248. data/spec/dummy/tmp/cache/assets/development/sprockets/b49fa9359ec5dd0818e096bf6673fa4d +0 -0
  249. data/spec/dummy/tmp/cache/assets/development/sprockets/b711b2b6c927435f89e55ef8cbfd6f16 +0 -0
  250. data/spec/dummy/tmp/cache/assets/development/sprockets/ba88f3231e76a04a4cb8d791b4e03409 +0 -0
  251. data/spec/dummy/tmp/cache/assets/development/sprockets/be60ec59ebf8a4dff6fcceb481bfe6b0 +0 -0
  252. data/spec/dummy/tmp/cache/assets/development/sprockets/becec3b59d209c76a253454e3d3fb053 +0 -0
  253. data/spec/dummy/tmp/cache/assets/development/sprockets/c29f33e5cfebdf90384f88e463f5004b +0 -0
  254. data/spec/dummy/tmp/cache/assets/development/sprockets/c302b9e515549ef3c030d0d68db9d56c +0 -0
  255. data/spec/dummy/tmp/cache/assets/development/sprockets/c57181800c49152b98146bcc712bb9cb +0 -0
  256. data/spec/dummy/tmp/cache/assets/development/sprockets/c63d712d76a93f6ce39982306770d356 +0 -0
  257. data/spec/dummy/tmp/cache/assets/development/sprockets/c89bb19c005adc7b572d50d132a5622d +0 -0
  258. data/spec/dummy/tmp/cache/assets/development/sprockets/c9913288090e752a28e4397cfadf413c +0 -0
  259. data/spec/dummy/tmp/cache/assets/development/sprockets/cb386a593ec8579cd8d64e2607fe9428 +0 -0
  260. data/spec/dummy/tmp/cache/assets/development/sprockets/cb787b099238d91e432df432c99ad46e +0 -0
  261. data/spec/dummy/tmp/cache/assets/development/sprockets/cfc699da90b137ea51a4997ee27c6f7d +0 -0
  262. data/spec/dummy/tmp/cache/assets/development/sprockets/cffa59ac01b389e4255c64638fc2885b +0 -0
  263. data/spec/dummy/tmp/cache/assets/development/sprockets/d08dc8a487a16bdf226e1eee4a981a46 +0 -0
  264. data/spec/dummy/tmp/cache/assets/development/sprockets/d1e62c0906dcc91b79d3dfbd445c3215 +0 -0
  265. data/spec/dummy/tmp/cache/assets/development/sprockets/d1e8420605e727ee3f29a20640a99e0e +0 -0
  266. data/spec/dummy/tmp/cache/assets/development/sprockets/d4e086abb1947074f19411de8392820f +0 -0
  267. data/spec/dummy/tmp/cache/assets/development/sprockets/da30510e4f3cb69d3aadb7cc14352f2d +0 -0
  268. data/spec/dummy/tmp/cache/assets/development/sprockets/dbc8f597dbe58aa313710af6dcd1cd3a +0 -0
  269. data/spec/dummy/tmp/cache/assets/development/sprockets/dc9fac67e5d47c3482e86357c272affe +0 -0
  270. data/spec/dummy/tmp/cache/assets/development/sprockets/de59639fad4eb2a424bb596d0b14f702 +0 -0
  271. data/spec/dummy/tmp/cache/assets/development/sprockets/df138c62980a37702faae05432e67379 +0 -0
  272. data/spec/dummy/tmp/cache/assets/development/sprockets/e10a6fff19622c58f4d631ce2f5c45e5 +0 -0
  273. data/spec/dummy/tmp/cache/assets/development/sprockets/e283ab46948e2e24734a3515f684d022 +0 -0
  274. data/spec/dummy/tmp/cache/assets/development/sprockets/e305256896c522bf1734fb8299413c86 +0 -0
  275. data/spec/dummy/tmp/cache/assets/development/sprockets/e390b71fbe6ee1dbf1e09ee23144e69e +0 -0
  276. data/spec/dummy/tmp/cache/assets/development/sprockets/e59d80856e036f9f4ce04efd9d108480 +0 -0
  277. data/spec/dummy/tmp/cache/assets/development/sprockets/e5a975907fee77f1576559890e8c7440 +0 -0
  278. data/spec/dummy/tmp/cache/assets/development/sprockets/e647792b4a7874b60fc4b82c8b5e7c54 +0 -0
  279. data/spec/dummy/tmp/cache/assets/development/sprockets/e88537714d7ae1b8b1c2e4466ea3307c +0 -0
  280. data/spec/dummy/tmp/cache/assets/development/sprockets/e8ea13a31cd9e00a1aabc7cc60527cc9 +0 -0
  281. data/spec/dummy/tmp/cache/assets/development/sprockets/e90e5ba891abc128d36c22ab34f0166e +0 -0
  282. data/spec/dummy/tmp/cache/assets/development/sprockets/ea1fd0d2c947d14d77f7c59d12d73cb8 +0 -0
  283. data/spec/dummy/tmp/cache/assets/development/sprockets/ed4d5d6e3f34a565fec7edf1c524debe +0 -0
  284. data/spec/dummy/tmp/cache/assets/development/sprockets/ee56cedb6cc47543fced4d7c15284705 +0 -0
  285. data/spec/dummy/tmp/cache/assets/development/sprockets/ee99a9b373bb8f3a5d725312a8a3d47c +0 -0
  286. data/spec/dummy/tmp/cache/assets/development/sprockets/ef1d9c82f2305adc65883a5e3d470c3b +0 -0
  287. data/spec/dummy/tmp/cache/assets/development/sprockets/f0e8def7b8807216809294cc60790679 +0 -0
  288. data/spec/dummy/tmp/cache/assets/development/sprockets/f0fecf6c6edec41b2960e2ab9a7de198 +0 -0
  289. data/spec/dummy/tmp/cache/assets/development/sprockets/f2a242d8e2c5a276ca3981bbf13e6500 +0 -0
  290. data/spec/dummy/tmp/cache/assets/development/sprockets/f31973ebe29e0504e24078ae0f5c5866 +0 -0
  291. data/spec/dummy/tmp/cache/assets/development/sprockets/f330c15b360fbd7bb821677a561d3089 +0 -0
  292. data/spec/dummy/tmp/cache/assets/development/sprockets/f3e7a200a24b03d2ccaad6edb147de0d +0 -0
  293. data/spec/dummy/tmp/cache/assets/development/sprockets/f3e992e590dc0d55e565bd8fcc120344 +0 -0
  294. data/spec/dummy/tmp/cache/assets/development/sprockets/f663c3e008f816f78c35b5f28c5344ba +0 -0
  295. data/spec/dummy/tmp/cache/assets/development/sprockets/f747921ef001ad47bdea3c2b5ffc9fb8 +0 -0
  296. data/spec/dummy/tmp/cache/assets/development/sprockets/f866a85e2f0f0f8026ae6961b7c1942b +0 -0
  297. data/spec/dummy/tmp/cache/assets/test/sass/1ef9919ed8995f26309a0e469dc72a19d3032768/_alerts.scssc +0 -0
  298. data/spec/dummy/tmp/cache/assets/test/sass/1ef9919ed8995f26309a0e469dc72a19d3032768/_background-variant.scssc +0 -0
  299. data/spec/dummy/tmp/cache/assets/test/sass/1ef9919ed8995f26309a0e469dc72a19d3032768/_border-radius.scssc +0 -0
  300. data/spec/dummy/tmp/cache/assets/test/sass/1ef9919ed8995f26309a0e469dc72a19d3032768/_buttons.scssc +0 -0
  301. data/spec/dummy/tmp/cache/assets/test/sass/1ef9919ed8995f26309a0e469dc72a19d3032768/_center-block.scssc +0 -0
  302. data/spec/dummy/tmp/cache/assets/test/sass/1ef9919ed8995f26309a0e469dc72a19d3032768/_clearfix.scssc +0 -0
  303. data/spec/dummy/tmp/cache/assets/test/sass/1ef9919ed8995f26309a0e469dc72a19d3032768/_forms.scssc +0 -0
  304. data/spec/dummy/tmp/cache/assets/test/sass/1ef9919ed8995f26309a0e469dc72a19d3032768/_gradients.scssc +0 -0
  305. data/spec/dummy/tmp/cache/assets/test/sass/1ef9919ed8995f26309a0e469dc72a19d3032768/_grid-framework.scssc +0 -0
  306. data/spec/dummy/tmp/cache/assets/test/sass/1ef9919ed8995f26309a0e469dc72a19d3032768/_grid.scssc +0 -0
  307. data/spec/dummy/tmp/cache/assets/test/sass/1ef9919ed8995f26309a0e469dc72a19d3032768/_hide-text.scssc +0 -0
  308. data/spec/dummy/tmp/cache/assets/test/sass/1ef9919ed8995f26309a0e469dc72a19d3032768/_image.scssc +0 -0
  309. data/spec/dummy/tmp/cache/assets/test/sass/1ef9919ed8995f26309a0e469dc72a19d3032768/_labels.scssc +0 -0
  310. data/spec/dummy/tmp/cache/assets/test/sass/1ef9919ed8995f26309a0e469dc72a19d3032768/_list-group.scssc +0 -0
  311. data/spec/dummy/tmp/cache/assets/test/sass/1ef9919ed8995f26309a0e469dc72a19d3032768/_nav-divider.scssc +0 -0
  312. data/spec/dummy/tmp/cache/assets/test/sass/1ef9919ed8995f26309a0e469dc72a19d3032768/_nav-vertical-align.scssc +0 -0
  313. data/spec/dummy/tmp/cache/assets/test/sass/1ef9919ed8995f26309a0e469dc72a19d3032768/_opacity.scssc +0 -0
  314. data/spec/dummy/tmp/cache/assets/test/sass/1ef9919ed8995f26309a0e469dc72a19d3032768/_pagination.scssc +0 -0
  315. data/spec/dummy/tmp/cache/assets/test/sass/1ef9919ed8995f26309a0e469dc72a19d3032768/_panels.scssc +0 -0
  316. data/spec/dummy/tmp/cache/assets/test/sass/1ef9919ed8995f26309a0e469dc72a19d3032768/_progress-bar.scssc +0 -0
  317. data/spec/dummy/tmp/cache/assets/test/sass/1ef9919ed8995f26309a0e469dc72a19d3032768/_reset-filter.scssc +0 -0
  318. data/spec/dummy/tmp/cache/assets/test/sass/1ef9919ed8995f26309a0e469dc72a19d3032768/_resize.scssc +0 -0
  319. data/spec/dummy/tmp/cache/assets/test/sass/1ef9919ed8995f26309a0e469dc72a19d3032768/_responsive-visibility.scssc +0 -0
  320. data/spec/dummy/tmp/cache/assets/test/sass/1ef9919ed8995f26309a0e469dc72a19d3032768/_size.scssc +0 -0
  321. data/spec/dummy/tmp/cache/assets/test/sass/1ef9919ed8995f26309a0e469dc72a19d3032768/_tab-focus.scssc +0 -0
  322. data/spec/dummy/tmp/cache/assets/test/sass/1ef9919ed8995f26309a0e469dc72a19d3032768/_table-row.scssc +0 -0
  323. data/spec/dummy/tmp/cache/assets/test/sass/1ef9919ed8995f26309a0e469dc72a19d3032768/_text-emphasis.scssc +0 -0
  324. data/spec/dummy/tmp/cache/assets/test/sass/1ef9919ed8995f26309a0e469dc72a19d3032768/_text-overflow.scssc +0 -0
  325. data/spec/dummy/tmp/cache/assets/test/sass/1ef9919ed8995f26309a0e469dc72a19d3032768/_vendor-prefixes.scssc +0 -0
  326. data/spec/dummy/tmp/cache/assets/test/sass/375769343642c5629998d5ce8507c01392f25bc3/_bootstrap-sprockets.scssc +0 -0
  327. data/spec/dummy/tmp/cache/assets/test/sass/375769343642c5629998d5ce8507c01392f25bc3/_bootstrap.scssc +0 -0
  328. data/spec/dummy/tmp/cache/assets/test/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_alerts.scssc +0 -0
  329. data/spec/dummy/tmp/cache/assets/test/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_badges.scssc +0 -0
  330. data/spec/dummy/tmp/cache/assets/test/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_breadcrumbs.scssc +0 -0
  331. data/spec/dummy/tmp/cache/assets/test/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_button-groups.scssc +0 -0
  332. data/spec/dummy/tmp/cache/assets/test/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_buttons.scssc +0 -0
  333. data/spec/dummy/tmp/cache/assets/test/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_carousel.scssc +0 -0
  334. data/spec/dummy/tmp/cache/assets/test/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_close.scssc +0 -0
  335. data/spec/dummy/tmp/cache/assets/test/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_code.scssc +0 -0
  336. data/spec/dummy/tmp/cache/assets/test/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_component-animations.scssc +0 -0
  337. data/spec/dummy/tmp/cache/assets/test/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_dropdowns.scssc +0 -0
  338. data/spec/dummy/tmp/cache/assets/test/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_forms.scssc +0 -0
  339. data/spec/dummy/tmp/cache/assets/test/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_glyphicons.scssc +0 -0
  340. data/spec/dummy/tmp/cache/assets/test/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_grid.scssc +0 -0
  341. data/spec/dummy/tmp/cache/assets/test/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_input-groups.scssc +0 -0
  342. data/spec/dummy/tmp/cache/assets/test/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_jumbotron.scssc +0 -0
  343. data/spec/dummy/tmp/cache/assets/test/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_labels.scssc +0 -0
  344. data/spec/dummy/tmp/cache/assets/test/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_list-group.scssc +0 -0
  345. data/spec/dummy/tmp/cache/assets/test/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_media.scssc +0 -0
  346. data/spec/dummy/tmp/cache/assets/test/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_mixins.scssc +0 -0
  347. data/spec/dummy/tmp/cache/assets/test/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_modals.scssc +0 -0
  348. data/spec/dummy/tmp/cache/assets/test/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_navbar.scssc +0 -0
  349. data/spec/dummy/tmp/cache/assets/test/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_navs.scssc +0 -0
  350. data/spec/dummy/tmp/cache/assets/test/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_normalize.scssc +0 -0
  351. data/spec/dummy/tmp/cache/assets/test/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_pager.scssc +0 -0
  352. data/spec/dummy/tmp/cache/assets/test/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_pagination.scssc +0 -0
  353. data/spec/dummy/tmp/cache/assets/test/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_panels.scssc +0 -0
  354. data/spec/dummy/tmp/cache/assets/test/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_popovers.scssc +0 -0
  355. data/spec/dummy/tmp/cache/assets/test/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_print.scssc +0 -0
  356. data/spec/dummy/tmp/cache/assets/test/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_progress-bars.scssc +0 -0
  357. data/spec/dummy/tmp/cache/assets/test/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_responsive-embed.scssc +0 -0
  358. data/spec/dummy/tmp/cache/assets/test/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_responsive-utilities.scssc +0 -0
  359. data/spec/dummy/tmp/cache/assets/test/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_scaffolding.scssc +0 -0
  360. data/spec/dummy/tmp/cache/assets/test/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_tables.scssc +0 -0
  361. data/spec/dummy/tmp/cache/assets/test/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_thumbnails.scssc +0 -0
  362. data/spec/dummy/tmp/cache/assets/test/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_tooltip.scssc +0 -0
  363. data/spec/dummy/tmp/cache/assets/test/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_type.scssc +0 -0
  364. data/spec/dummy/tmp/cache/assets/test/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_utilities.scssc +0 -0
  365. data/spec/dummy/tmp/cache/assets/test/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_variables.scssc +0 -0
  366. data/spec/dummy/tmp/cache/assets/test/sass/eb8bb61ee10509d967994055be5499dfc8ddd36c/_wells.scssc +0 -0
  367. data/spec/dummy/tmp/cache/assets/test/sass/f9b4d86027cb00ff41d268c37aa3bf7d0570bbec/banner.css.scssc +0 -0
  368. data/spec/dummy/tmp/cache/assets/test/sass/f9b4d86027cb00ff41d268c37aa3bf7d0570bbec/fonts.css.scssc +0 -0
  369. data/spec/dummy/tmp/cache/assets/test/sass/f9b4d86027cb00ff41d268c37aa3bf7d0570bbec/login.css.scssc +0 -0
  370. data/spec/dummy/tmp/cache/assets/test/sass/f9b4d86027cb00ff41d268c37aa3bf7d0570bbec/main.css.scssc +0 -0
  371. data/spec/dummy/tmp/cache/assets/test/sass/f9b4d86027cb00ff41d268c37aa3bf7d0570bbec/typography.css.scssc +0 -0
  372. data/spec/dummy/tmp/cache/assets/test/sprockets/0c5ace043cd955c6df2a7cb739a2f0dd +0 -0
  373. data/spec/dummy/tmp/cache/assets/test/sprockets/0dd3d17b532799022fdabf04e9b2ce04 +0 -0
  374. data/spec/dummy/tmp/cache/assets/test/sprockets/0f1b7dae5a45908f12d8a85ec2dea265 +0 -0
  375. data/spec/dummy/tmp/cache/assets/test/sprockets/106595e9b0ab07ac7c1f2002522503f6 +0 -0
  376. data/spec/dummy/tmp/cache/assets/test/sprockets/115680d85f34a4753ed562ce935b1fba +0 -0
  377. data/spec/dummy/tmp/cache/assets/test/sprockets/13affddc6e981c1c1964efeed163a449 +0 -0
  378. data/spec/dummy/tmp/cache/assets/test/sprockets/15eff3ff2bb8f801c9c91338cb9a428f +0 -0
  379. data/spec/dummy/tmp/cache/assets/test/sprockets/1616ac6c004e1ff22186f3d647350b2a +0 -0
  380. data/spec/dummy/tmp/cache/assets/test/sprockets/19a970cd6841f85c34d1f510003ad08a +0 -0
  381. data/spec/dummy/tmp/cache/assets/test/sprockets/20bdf4519972911d3ea16d21d6549f31 +0 -0
  382. data/spec/dummy/tmp/cache/assets/test/sprockets/214c0a20b37be6bbe39a0547a285c035 +0 -0
  383. data/spec/dummy/tmp/cache/assets/test/sprockets/24ca5d9398aeef0107c9f857248a3c04 +0 -0
  384. data/spec/dummy/tmp/cache/assets/test/sprockets/2b6d91ec885c8eddb572621112804fd2 +0 -0
  385. data/spec/dummy/tmp/cache/assets/test/sprockets/2b7d8827abf4fc03b58b6ad6cab24770 +0 -0
  386. data/spec/dummy/tmp/cache/assets/test/sprockets/2c929284c39eed91cdcf95cf316651b1 +0 -0
  387. data/spec/dummy/tmp/cache/assets/test/sprockets/2e84c95edbdced032f17e94bee51fa4a +0 -0
  388. data/spec/dummy/tmp/cache/assets/test/sprockets/2eef4e7443c925c255a2d8dc58331a06 +0 -0
  389. data/spec/dummy/tmp/cache/assets/test/sprockets/30318a96e5f39185cddcd5183a755e30 +0 -0
  390. data/spec/dummy/tmp/cache/assets/test/sprockets/3b8ebb65b3e6dd540c5c1cb57a328e4d +0 -0
  391. data/spec/dummy/tmp/cache/assets/test/sprockets/3c47e30e5f39a47d248ba9c818cbbca7 +0 -0
  392. data/spec/dummy/tmp/cache/assets/test/sprockets/3ed3b32bff297382862ca2d7d7c39e28 +0 -0
  393. data/spec/dummy/tmp/cache/assets/test/sprockets/3fa91463212761316b29234cff270af9 +0 -0
  394. data/spec/dummy/tmp/cache/assets/test/sprockets/43ea2d777fa2d04c53793dd34aab235a +0 -0
  395. data/spec/dummy/tmp/cache/assets/test/sprockets/4896a189db347d12a025edd8f4ac61d4 +0 -0
  396. data/spec/dummy/tmp/cache/assets/test/sprockets/4971f0cb2680ebdc4a8e2b54e79eb9f5 +0 -0
  397. data/spec/dummy/tmp/cache/assets/test/sprockets/4f4422da760aca46565528a4cda50dce +0 -0
  398. data/spec/dummy/tmp/cache/assets/test/sprockets/516cc1b1a1f106e6ce1d04890ef919ad +0 -0
  399. data/spec/dummy/tmp/cache/assets/test/sprockets/5184cf03fb5346d99935831fba273cc5 +0 -0
  400. data/spec/dummy/tmp/cache/assets/test/sprockets/52475e557ce8d9b6a8278d7bbbb21cfb +0 -0
  401. data/spec/dummy/tmp/cache/assets/test/sprockets/5347b7df77feff7354ffa8ac17aad0b6 +0 -0
  402. data/spec/dummy/tmp/cache/assets/test/sprockets/535107365db357814f85c54dd20aed39 +0 -0
  403. data/spec/dummy/tmp/cache/assets/test/sprockets/535fa9a7ffee4f5852a6d4ef3f61deae +0 -0
  404. data/spec/dummy/tmp/cache/assets/test/sprockets/53b13327df4c65a6c3f237a2f8bf6cda +0 -0
  405. data/spec/dummy/tmp/cache/assets/test/sprockets/5599c99b1edf0ca10252cfb2eb8d32bc +0 -0
  406. data/spec/dummy/tmp/cache/assets/test/sprockets/578c2959b0b96542c3e11db87fd3485c +0 -0
  407. data/spec/dummy/tmp/cache/assets/test/sprockets/5b458db07584cb0f296292e5f4cb3050 +0 -0
  408. data/spec/dummy/tmp/cache/assets/test/sprockets/5bd0dddf36654192129a7b0c201ae913 +0 -0
  409. data/spec/dummy/tmp/cache/assets/test/sprockets/6264f3e6bae3a7199fa228c08a6def6c +0 -0
  410. data/spec/dummy/tmp/cache/assets/test/sprockets/634091512bce05d06e0330f3ab3b22d0 +0 -0
  411. data/spec/dummy/tmp/cache/assets/test/sprockets/67cf0c6b9e91cb71882af4f112b56952 +0 -0
  412. data/spec/dummy/tmp/cache/assets/test/sprockets/6dcc4aa98a399cd8f33bd9c60dc71b51 +0 -0
  413. data/spec/dummy/tmp/cache/assets/test/sprockets/7113eeea88a784b61191e7c7c0765207 +0 -0
  414. data/spec/dummy/tmp/cache/assets/test/sprockets/711956e81757b1ea04a5a11860219cf7 +0 -0
  415. data/spec/dummy/tmp/cache/assets/test/sprockets/71fe0e8b6466b8fdc100b418e3bf1b38 +0 -0
  416. data/spec/dummy/tmp/cache/assets/test/sprockets/74bab0787f1e7e1abd2235525e22fec8 +0 -0
  417. data/spec/dummy/tmp/cache/assets/test/sprockets/771fc4d2b579ceb3ce9241275f41f6bc +0 -0
  418. data/spec/dummy/tmp/cache/assets/test/sprockets/798960dea88355dbbd7efd2c566642ab +0 -0
  419. data/spec/dummy/tmp/cache/assets/test/sprockets/79f281feb66a4b468a87a71670ef1d68 +0 -0
  420. data/spec/dummy/tmp/cache/assets/test/sprockets/7fb00530f46aa645869aef152fe95466 +0 -0
  421. data/spec/dummy/tmp/cache/assets/test/sprockets/8299f21947dc93a7390372b251006319 +0 -0
  422. data/spec/dummy/tmp/cache/assets/test/sprockets/84b411d66bc29292e9370f0bb54b6db0 +0 -0
  423. data/spec/dummy/tmp/cache/assets/test/sprockets/8ce44c6051a2952bb4260f8068c04abb +0 -0
  424. data/spec/dummy/tmp/cache/assets/test/sprockets/8f424e5d7823875194c4649e5824d590 +0 -0
  425. data/spec/dummy/tmp/cache/assets/test/sprockets/92afaa8fdc31f22436c9749d0b41f000 +0 -0
  426. data/spec/dummy/tmp/cache/assets/test/sprockets/932c8021fabbcf9d044a75bdd8ac33c5 +0 -0
  427. data/spec/dummy/tmp/cache/assets/test/sprockets/95bdc1f939f0d1604c8330ec9a8688e2 +0 -0
  428. data/spec/dummy/tmp/cache/assets/test/sprockets/95e5e7d5121b19bf96075f9ad5724fc0 +0 -0
  429. data/spec/dummy/tmp/cache/assets/test/sprockets/9caafcbf7e9a68e1253062e7bb846f0b +0 -0
  430. data/spec/dummy/tmp/cache/assets/test/sprockets/9ec94bcad534148a44164e77dba8cefe +0 -0
  431. data/spec/dummy/tmp/cache/assets/test/sprockets/9ed8c526d8e791ddaa87330cf5321a07 +0 -0
  432. data/spec/dummy/tmp/cache/assets/test/sprockets/9f9167576d4ea17fe7205a07e2a613b3 +0 -0
  433. data/spec/dummy/tmp/cache/assets/test/sprockets/a3c9e6fe4586da2f1db1e590f6ccd401 +0 -0
  434. data/spec/dummy/tmp/cache/assets/test/sprockets/a7ae6a0891684fd3758526ea2c81a257 +0 -0
  435. data/spec/dummy/tmp/cache/assets/test/sprockets/a7d9b7f10d7c7c7d2cd52c5696bf8503 +0 -0
  436. data/spec/dummy/tmp/cache/assets/test/sprockets/aaac060b29b088c0078aaead55a1909c +0 -0
  437. data/spec/dummy/tmp/cache/assets/test/sprockets/ac79df0caf0821c2e9c779040414a8a1 +0 -0
  438. data/spec/dummy/tmp/cache/assets/test/sprockets/b442d305a8c3c39dbccab659c223de1d +0 -0
  439. data/spec/dummy/tmp/cache/assets/test/sprockets/ba88f3231e76a04a4cb8d791b4e03409 +0 -0
  440. data/spec/dummy/tmp/cache/assets/test/sprockets/be60ec59ebf8a4dff6fcceb481bfe6b0 +0 -0
  441. data/spec/dummy/tmp/cache/assets/test/sprockets/c29f33e5cfebdf90384f88e463f5004b +0 -0
  442. data/spec/dummy/tmp/cache/assets/test/sprockets/c57181800c49152b98146bcc712bb9cb +0 -0
  443. data/spec/dummy/tmp/cache/assets/test/sprockets/c63d712d76a93f6ce39982306770d356 +0 -0
  444. data/spec/dummy/tmp/cache/assets/test/sprockets/c89bb19c005adc7b572d50d132a5622d +0 -0
  445. data/spec/dummy/tmp/cache/assets/test/sprockets/cb386a593ec8579cd8d64e2607fe9428 +0 -0
  446. data/spec/dummy/tmp/cache/assets/test/sprockets/cb787b099238d91e432df432c99ad46e +0 -0
  447. data/spec/dummy/tmp/cache/assets/test/sprockets/cfc699da90b137ea51a4997ee27c6f7d +0 -0
  448. data/spec/dummy/tmp/cache/assets/test/sprockets/cffa59ac01b389e4255c64638fc2885b +0 -0
  449. data/spec/dummy/tmp/cache/assets/test/sprockets/d08dc8a487a16bdf226e1eee4a981a46 +0 -0
  450. data/spec/dummy/tmp/cache/assets/test/sprockets/d1e62c0906dcc91b79d3dfbd445c3215 +0 -0
  451. data/spec/dummy/tmp/cache/assets/test/sprockets/d1e8420605e727ee3f29a20640a99e0e +0 -0
  452. data/spec/dummy/tmp/cache/assets/test/sprockets/dbc8f597dbe58aa313710af6dcd1cd3a +0 -0
  453. data/spec/dummy/tmp/cache/assets/test/sprockets/dc9fac67e5d47c3482e86357c272affe +0 -0
  454. data/spec/dummy/tmp/cache/assets/test/sprockets/de59639fad4eb2a424bb596d0b14f702 +0 -0
  455. data/spec/dummy/tmp/cache/assets/test/sprockets/e283ab46948e2e24734a3515f684d022 +0 -0
  456. data/spec/dummy/tmp/cache/assets/test/sprockets/e59d80856e036f9f4ce04efd9d108480 +0 -0
  457. data/spec/dummy/tmp/cache/assets/test/sprockets/e88537714d7ae1b8b1c2e4466ea3307c +0 -0
  458. data/spec/dummy/tmp/cache/assets/test/sprockets/e8ea13a31cd9e00a1aabc7cc60527cc9 +0 -0
  459. data/spec/dummy/tmp/cache/assets/test/sprockets/ea1fd0d2c947d14d77f7c59d12d73cb8 +0 -0
  460. data/spec/dummy/tmp/cache/assets/test/sprockets/ee99a9b373bb8f3a5d725312a8a3d47c +0 -0
  461. data/spec/dummy/tmp/cache/assets/test/sprockets/ef1d9c82f2305adc65883a5e3d470c3b +0 -0
  462. data/spec/dummy/tmp/cache/assets/test/sprockets/f0e8def7b8807216809294cc60790679 +0 -0
  463. data/spec/dummy/tmp/cache/assets/test/sprockets/f2a242d8e2c5a276ca3981bbf13e6500 +0 -0
  464. data/spec/dummy/tmp/cache/assets/test/sprockets/f31973ebe29e0504e24078ae0f5c5866 +0 -0
  465. data/spec/dummy/tmp/cache/assets/test/sprockets/f3e7a200a24b03d2ccaad6edb147de0d +0 -0
  466. data/spec/dummy/tmp/cache/assets/test/sprockets/f3e992e590dc0d55e565bd8fcc120344 +0 -0
  467. data/spec/dummy/tmp/cache/assets/test/sprockets/f663c3e008f816f78c35b5f28c5344ba +0 -0
  468. data/spec/dummy/tmp/cache/assets/test/sprockets/f866a85e2f0f0f8026ae6961b7c1942b +0 -0
  469. data/spec/factories/acts_as_talented_employers.rb +12 -0
  470. data/spec/features/sign_in_spec.rb +18 -0
  471. data/spec/models/acts_as_talented/employer_spec.rb +6 -0
  472. data/spec/spec_helper.rb +29 -0
  473. data/spec/support/acceptance_helpers.rb +62 -0
  474. metadata +1020 -2
@@ -1,3 +1,1490 @@
1
1
   (3.8ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
2
2
   (2.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3
3
  ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
4
+  (4.8ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL
5
+  (27.4ms) select table_name from information_schema.views where table_schema = 'acts_as_talented_test'
6
+  (0.3ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL
7
+  (6.3ms) BEGIN
8
+  (6.6ms) SAVEPOINT active_record_1
9
+  (0.3ms) RELEASE SAVEPOINT active_record_1
10
+  (0.2ms) SAVEPOINT active_record_1
11
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
12
+  (6.4ms) ROLLBACK
13
+  (0.1ms) BEGIN
14
+  (0.1ms) SAVEPOINT active_record_1
15
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16
+  (0.1ms) SAVEPOINT active_record_1
17
+ Started GET "/home" for 127.0.0.1 at 2014-10-13 11:26:23 +0530
18
+  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1
19
+  (0.2ms) ROLLBACK
20
+  (0.7ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL
21
+  (3.7ms) select table_name from information_schema.views where table_schema = 'acts_as_talented_test'
22
+  (0.2ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL
23
+  (0.2ms) BEGIN
24
+  (0.2ms) SAVEPOINT active_record_1
25
+  (0.2ms) RELEASE SAVEPOINT active_record_1
26
+  (0.1ms) SAVEPOINT active_record_1
27
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
28
+  (0.2ms) ROLLBACK
29
+  (0.2ms) BEGIN
30
+  (0.4ms) SAVEPOINT active_record_1
31
+  (0.2ms) RELEASE SAVEPOINT active_record_1
32
+  (0.2ms) SAVEPOINT active_record_1
33
+ Started GET "/home" for 127.0.0.1 at 2014-10-13 11:31:47 +0530
34
+  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1
35
+  (0.2ms) ROLLBACK
36
+  (0.4ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL
37
+  (3.4ms) select table_name from information_schema.views where table_schema = 'acts_as_talented_test'
38
+  (0.3ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL
39
+  (0.2ms) BEGIN
40
+  (0.2ms) SAVEPOINT active_record_1
41
+  (0.1ms) RELEASE SAVEPOINT active_record_1
42
+  (0.1ms) SAVEPOINT active_record_1
43
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
44
+  (0.2ms) ROLLBACK
45
+  (0.1ms) BEGIN
46
+  (0.1ms) SAVEPOINT active_record_1
47
+  (0.1ms) RELEASE SAVEPOINT active_record_1
48
+  (0.1ms) SAVEPOINT active_record_1
49
+ Started GET "/home" for 127.0.0.1 at 2014-10-13 11:32:20 +0530
50
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
51
+  (0.2ms) ROLLBACK
52
+  (0.5ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL
53
+  (3.2ms) select table_name from information_schema.views where table_schema = 'acts_as_talented_test'
54
+  (0.3ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL
55
+  (0.2ms) BEGIN
56
+  (0.2ms) SAVEPOINT active_record_1
57
+  (0.2ms) RELEASE SAVEPOINT active_record_1
58
+  (0.1ms) SAVEPOINT active_record_1
59
+  (0.8ms) ROLLBACK TO SAVEPOINT active_record_1
60
+  (0.4ms) ROLLBACK
61
+  (0.5ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL
62
+  (3.5ms) select table_name from information_schema.views where table_schema = 'acts_as_talented_test'
63
+  (0.2ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL
64
+  (0.2ms) BEGIN
65
+  (0.2ms) SAVEPOINT active_record_1
66
+  (0.2ms) RELEASE SAVEPOINT active_record_1
67
+  (0.2ms) SAVEPOINT active_record_1
68
+ PG::UndefinedTable: ERROR: relation "acts_as_talented_employers" does not exist
69
+ LINE 5: WHERE a.attrelid = '"acts_as_talented_employe...
70
+ ^
71
+ : SELECT a.attname, format_type(a.atttypid, a.atttypmod),
72
+ pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod
73
+ FROM pg_attribute a LEFT JOIN pg_attrdef d
74
+ ON a.attrelid = d.adrelid AND a.attnum = d.adnum
75
+ WHERE a.attrelid = '"acts_as_talented_employers"'::regclass
76
+ AND a.attnum > 0 AND NOT a.attisdropped
77
+ ORDER BY a.attnum
78
+
79
+ PG::InFailedSqlTransaction: ERROR: current transaction is aborted, commands ignored until end of transaction block
80
+ : SELECT a.attname, format_type(a.atttypid, a.atttypmod),
81
+ pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod
82
+ FROM pg_attribute a LEFT JOIN pg_attrdef d
83
+ ON a.attrelid = d.adrelid AND a.attnum = d.adnum
84
+ WHERE a.attrelid = '"acts_as_talented_employers"'::regclass
85
+ AND a.attnum > 0 AND NOT a.attisdropped
86
+ ORDER BY a.attnum
87
+
88
+  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1
89
+  (0.3ms) ROLLBACK
90
+ ActiveRecord::SchemaMigration Load (0.8ms) SELECT "schema_migrations".* FROM "schema_migrations"
91
+ Migrating to DeviseCreateActsAsTalentedEmployers (20141010082808)
92
+  (0.3ms) BEGIN
93
+  (60.5ms) CREATE TABLE "acts_as_talented_employers" ("id" serial primary key, "email" character varying(255) DEFAULT '' NOT NULL, "encrypted_password" character varying(255) DEFAULT '' NOT NULL, "reset_password_token" character varying(255), "reset_password_sent_at" timestamp, "remember_created_at" timestamp, "sign_in_count" integer DEFAULT 0 NOT NULL, "current_sign_in_at" timestamp, "last_sign_in_at" timestamp, "current_sign_in_ip" character varying(255), "last_sign_in_ip" character varying(255), "name" character varying(255), "contact_number" character varying(255), "created_at" timestamp, "updated_at" timestamp) 
94
+  (1.6ms) CREATE UNIQUE INDEX "index_acts_as_talented_employers_on_email" ON "acts_as_talented_employers" ("email")
95
+  (1.2ms) CREATE UNIQUE INDEX "index_acts_as_talented_employers_on_reset_password_token" ON "acts_as_talented_employers" ("reset_password_token")
96
+ SQL (5.7ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141010082808"]]
97
+  (19.2ms) COMMIT
98
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
99
+  (0.7ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "acts_as_talented_employers" DISABLE TRIGGER ALL
100
+  (3.1ms) select table_name from information_schema.views where table_schema = 'acts_as_talented_test'
101
+  (11.8ms) TRUNCATE TABLE "acts_as_talented_employers" RESTART IDENTITY CASCADE;
102
+  (0.5ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "acts_as_talented_employers" ENABLE TRIGGER ALL
103
+  (0.2ms) BEGIN
104
+  (0.2ms) SAVEPOINT active_record_1
105
+  (0.1ms) RELEASE SAVEPOINT active_record_1
106
+  (0.1ms) SAVEPOINT active_record_1
107
+  (0.2ms) SAVEPOINT active_record_2
108
+  (0.4ms) ROLLBACK TO SAVEPOINT active_record_2
109
+  (0.3ms) SAVEPOINT active_record_2
110
+  (0.3ms) ROLLBACK TO SAVEPOINT active_record_2
111
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
112
+  (0.2ms) ROLLBACK
113
+  (0.7ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "acts_as_talented_employers" DISABLE TRIGGER ALL
114
+  (3.2ms) select table_name from information_schema.views where table_schema = 'acts_as_talented_test'
115
+  (8.9ms) TRUNCATE TABLE "acts_as_talented_employers" RESTART IDENTITY CASCADE;
116
+  (0.3ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "acts_as_talented_employers" ENABLE TRIGGER ALL
117
+  (0.2ms) BEGIN
118
+  (0.2ms) SAVEPOINT active_record_1
119
+  (0.1ms) RELEASE SAVEPOINT active_record_1
120
+  (0.1ms) SAVEPOINT active_record_1
121
+  (0.3ms) SAVEPOINT active_record_2
122
+ ActsAsTalented::Employer Exists (1.4ms) SELECT 1 AS one FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."email" = 'user-mail-1@example.com' LIMIT 1
123
+ SQL (17.9ms) INSERT INTO "acts_as_talented_employers" ("created_at", "email", "encrypted_password", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-10-13 06:05:36.889924"], ["email", "user-mail-1@example.com"], ["encrypted_password", "$2a$04$LJUVOyzMnyfjD9Hbc0CcP.C1DNhOmUNoEb9MdQ4mNri.0Aw0sZWTO"], ["updated_at", "2014-10-13 06:05:36.889924"]]
124
+  (0.3ms) RELEASE SAVEPOINT active_record_2
125
+ Started GET "/employers/sign_in" for 127.0.0.1 at 2014-10-13 11:35:39 +0530
126
+  (6.4ms) ROLLBACK TO SAVEPOINT active_record_1
127
+  (0.4ms) ROLLBACK
128
+  (0.7ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "acts_as_talented_employers" DISABLE TRIGGER ALL
129
+  (3.4ms) select table_name from information_schema.views where table_schema = 'acts_as_talented_test'
130
+  (29.0ms) TRUNCATE TABLE "acts_as_talented_employers" RESTART IDENTITY CASCADE;
131
+  (0.4ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "acts_as_talented_employers" ENABLE TRIGGER ALL
132
+  (0.2ms) BEGIN
133
+  (0.2ms) SAVEPOINT active_record_1
134
+  (0.2ms) RELEASE SAVEPOINT active_record_1
135
+  (0.2ms) SAVEPOINT active_record_1
136
+  (0.3ms) SAVEPOINT active_record_2
137
+ ActsAsTalented::Employer Exists (1.2ms) SELECT 1 AS one FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."email" = 'user-mail-1@example.com' LIMIT 1
138
+ SQL (18.7ms) INSERT INTO "acts_as_talented_employers" ("created_at", "email", "encrypted_password", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-10-13 06:39:19.595142"], ["email", "user-mail-1@example.com"], ["encrypted_password", "$2a$04$EscbrCM1ZAWY/BCavlNrkOAd9vIFwoXX9aBXkBmyxE9FMgDZjhf/O"], ["updated_at", "2014-10-13 06:39:19.595142"]]
139
+  (0.3ms) RELEASE SAVEPOINT active_record_2
140
+ Started GET "/employers/sign_in" for 127.0.0.1 at 2014-10-13 12:09:19 +0530
141
+  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1
142
+  (0.3ms) ROLLBACK
143
+  (0.7ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "acts_as_talented_employers" DISABLE TRIGGER ALL
144
+  (3.5ms) select table_name from information_schema.views where table_schema = 'acts_as_talented_test'
145
+  (7.3ms) TRUNCATE TABLE "acts_as_talented_employers" RESTART IDENTITY CASCADE;
146
+  (0.4ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "acts_as_talented_employers" ENABLE TRIGGER ALL
147
+  (0.1ms) BEGIN
148
+  (0.1ms) SAVEPOINT active_record_1
149
+  (0.1ms) RELEASE SAVEPOINT active_record_1
150
+  (0.1ms) SAVEPOINT active_record_1
151
+  (0.3ms) SAVEPOINT active_record_2
152
+ ActsAsTalented::Employer Exists (1.2ms) SELECT 1 AS one FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."email" = 'user-mail-1@example.com' LIMIT 1
153
+ SQL (1.0ms) INSERT INTO "acts_as_talented_employers" ("created_at", "email", "encrypted_password", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-10-13 06:39:41.858903"], ["email", "user-mail-1@example.com"], ["encrypted_password", "$2a$04$b/vdOh.kAQemRrrLL9eLduSofqZVqax.P10yHoJ.ZY.BmrLsqP.6S"], ["updated_at", "2014-10-13 06:39:41.858903"]]
154
+  (0.2ms) RELEASE SAVEPOINT active_record_2
155
+ Started GET "/employers/sign_in" for 127.0.0.1 at 2014-10-13 12:09:41 +0530
156
+  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1
157
+  (0.3ms) ROLLBACK
158
+  (0.7ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "acts_as_talented_employers" DISABLE TRIGGER ALL
159
+  (4.1ms) select table_name from information_schema.views where table_schema = 'acts_as_talented_test'
160
+  (29.5ms) TRUNCATE TABLE "acts_as_talented_employers" RESTART IDENTITY CASCADE;
161
+  (0.4ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "acts_as_talented_employers" ENABLE TRIGGER ALL
162
+  (0.2ms) BEGIN
163
+  (0.2ms) SAVEPOINT active_record_1
164
+  (0.2ms) RELEASE SAVEPOINT active_record_1
165
+  (0.2ms) SAVEPOINT active_record_1
166
+  (0.3ms) SAVEPOINT active_record_2
167
+ ActsAsTalented::Employer Exists (1.2ms) SELECT 1 AS one FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."email" = 'user-mail-1@example.com' LIMIT 1
168
+ SQL (18.5ms) INSERT INTO "acts_as_talented_employers" ("created_at", "email", "encrypted_password", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-10-13 07:07:48.834765"], ["email", "user-mail-1@example.com"], ["encrypted_password", "$2a$04$.a1T7m0kyErMci./89xneemWXR/Rmeu4lcqdIKAqdYhrHsctGdAsy"], ["updated_at", "2014-10-13 07:07:48.834765"]]
169
+  (0.3ms) RELEASE SAVEPOINT active_record_2
170
+ Started GET "/acts_as_talented/employers/sign_in" for 127.0.0.1 at 2014-10-13 12:37:48 +0530
171
+ Processing by Devise::SessionsController#new as HTML
172
+ Rendered /Users/chandradhar/WebProjects/Rails/acts_as_talented/app/views/devise/shared/_links.erb (1.5ms)
173
+ Rendered /Users/chandradhar/WebProjects/Rails/acts_as_talented/app/views/devise/sessions/new.html.erb (38.0ms)
174
+ Completed 200 OK in 69ms (Views: 50.1ms | ActiveRecord: 0.0ms)
175
+  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1
176
+  (0.3ms) ROLLBACK
177
+  (0.8ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "acts_as_talented_employers" DISABLE TRIGGER ALL
178
+  (3.6ms) select table_name from information_schema.views where table_schema = 'acts_as_talented_test'
179
+  (8.5ms) TRUNCATE TABLE "acts_as_talented_employers" RESTART IDENTITY CASCADE;
180
+  (0.6ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "acts_as_talented_employers" ENABLE TRIGGER ALL
181
+  (0.3ms) BEGIN
182
+  (0.2ms) SAVEPOINT active_record_1
183
+  (0.2ms) RELEASE SAVEPOINT active_record_1
184
+  (0.1ms) SAVEPOINT active_record_1
185
+  (0.3ms) SAVEPOINT active_record_2
186
+ ActsAsTalented::Employer Exists (1.1ms) SELECT 1 AS one FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."email" = 'user-mail-1@example.com' LIMIT 1
187
+ SQL (2.8ms) INSERT INTO "acts_as_talented_employers" ("created_at", "email", "encrypted_password", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-10-13 07:09:01.212765"], ["email", "user-mail-1@example.com"], ["encrypted_password", "$2a$04$nhzUA5h/FhCCOx/x9ILUNekIzyDrSg3FhgrR2Pf.Rh03yFJmXS7N."], ["updated_at", "2014-10-13 07:09:01.212765"]]
188
+  (0.2ms) RELEASE SAVEPOINT active_record_2
189
+ Started GET "/acts_as_talented/employers/sign_in" for 127.0.0.1 at 2014-10-13 12:39:01 +0530
190
+ Processing by Devise::SessionsController#new as HTML
191
+ Rendered /Users/chandradhar/WebProjects/Rails/acts_as_talented/app/views/devise/shared/_links.erb (1.9ms)
192
+ Rendered /Users/chandradhar/WebProjects/Rails/acts_as_talented/app/views/devise/sessions/new.html.erb (27.4ms)
193
+ Completed 200 OK in 54ms (Views: 38.7ms | ActiveRecord: 0.0ms)
194
+ Started POST "/acts_as_talented/employers/sign_in" for 127.0.0.1 at 2014-10-13 12:39:01 +0530
195
+ Processing by Devise::SessionsController#create as HTML
196
+ Parameters: {"utf8"=>"✓", "employer"=>{"email"=>"user-mail-1@example.com", "password"=>"[FILTERED]", "remember_me"=>"0"}}
197
+ ActsAsTalented::Employer Load (7.1ms) SELECT "acts_as_talented_employers".* FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."email" = 'user-mail-1@example.com' ORDER BY "acts_as_talented_employers"."id" ASC LIMIT 1
198
+ Completed 401 Unauthorized in 18ms
199
+ Processing by Devise::SessionsController#new as HTML
200
+ Parameters: {"utf8"=>"✓", "employer"=>{"email"=>"user-mail-1@example.com", "password"=>"[FILTERED]", "remember_me"=>"0"}}
201
+ Rendered /Users/chandradhar/WebProjects/Rails/acts_as_talented/app/views/devise/shared/_links.erb (0.3ms)
202
+ Rendered /Users/chandradhar/WebProjects/Rails/acts_as_talented/app/views/devise/sessions/new.html.erb (2.4ms)
203
+ Completed 200 OK in 5ms (Views: 2.9ms | ActiveRecord: 0.0ms)
204
+  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1
205
+  (0.2ms) ROLLBACK
206
+  (0.7ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "acts_as_talented_employers" DISABLE TRIGGER ALL
207
+  (3.3ms) select table_name from information_schema.views where table_schema = 'acts_as_talented_test'
208
+  (7.8ms) TRUNCATE TABLE "acts_as_talented_employers" RESTART IDENTITY CASCADE;
209
+  (0.3ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "acts_as_talented_employers" ENABLE TRIGGER ALL
210
+  (0.2ms) BEGIN
211
+  (0.2ms) SAVEPOINT active_record_1
212
+  (0.1ms) RELEASE SAVEPOINT active_record_1
213
+  (0.1ms) SAVEPOINT active_record_1
214
+  (0.4ms) SAVEPOINT active_record_2
215
+ ActsAsTalented::Employer Exists (1.1ms) SELECT 1 AS one FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."email" = 'user-mail-1@example.com' LIMIT 1
216
+ SQL (1.1ms) INSERT INTO "acts_as_talented_employers" ("created_at", "email", "encrypted_password", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-10-13 07:10:06.019838"], ["email", "user-mail-1@example.com"], ["encrypted_password", "$2a$04$d6JJ7Btyi7HyJisuZeU06eqftDSN.2HH1EnGF5lNjnB.oNXpwUl1G"], ["updated_at", "2014-10-13 07:10:06.019838"]]
217
+  (0.2ms) RELEASE SAVEPOINT active_record_2
218
+ Started GET "/acts_as_talented/employers/sign_in" for 127.0.0.1 at 2014-10-13 12:40:06 +0530
219
+ Processing by Devise::SessionsController#new as HTML
220
+ Rendered /Users/chandradhar/WebProjects/Rails/acts_as_talented/app/views/devise/shared/_links.erb (1.4ms)
221
+ Rendered /Users/chandradhar/WebProjects/Rails/acts_as_talented/app/views/devise/sessions/new.html.erb (28.6ms)
222
+ Completed 200 OK in 52ms (Views: 37.6ms | ActiveRecord: 0.0ms)
223
+ Started POST "/acts_as_talented/employers/sign_in" for 127.0.0.1 at 2014-10-13 12:40:06 +0530
224
+ Processing by Devise::SessionsController#create as HTML
225
+ Parameters: {"utf8"=>"✓", "employer"=>{"email"=>"user-mail-1@example.com", "password"=>"[FILTERED]", "remember_me"=>"0"}}
226
+ ActsAsTalented::Employer Load (2.7ms) SELECT "acts_as_talented_employers".* FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."email" = 'user-mail-1@example.com' ORDER BY "acts_as_talented_employers"."id" ASC LIMIT 1
227
+ Completed 401 Unauthorized in 11ms
228
+ Processing by Devise::SessionsController#new as HTML
229
+ Parameters: {"utf8"=>"✓", "employer"=>{"email"=>"user-mail-1@example.com", "password"=>"[FILTERED]", "remember_me"=>"0"}}
230
+ Rendered /Users/chandradhar/WebProjects/Rails/acts_as_talented/app/views/devise/shared/_links.erb (0.6ms)
231
+ Rendered /Users/chandradhar/WebProjects/Rails/acts_as_talented/app/views/devise/sessions/new.html.erb (3.3ms)
232
+ Completed 200 OK in 6ms (Views: 3.8ms | ActiveRecord: 0.0ms)
233
+  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1
234
+  (0.3ms) ROLLBACK
235
+  (5.0ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "acts_as_talented_employers" DISABLE TRIGGER ALL
236
+  (19.4ms) select table_name from information_schema.views where table_schema = 'acts_as_talented_test'
237
+  (48.9ms) TRUNCATE TABLE "acts_as_talented_employers" RESTART IDENTITY CASCADE;
238
+  (0.4ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "acts_as_talented_employers" ENABLE TRIGGER ALL
239
+  (0.7ms) BEGIN
240
+  (1.2ms) SAVEPOINT active_record_1
241
+  (0.3ms) RELEASE SAVEPOINT active_record_1
242
+  (0.3ms) SAVEPOINT active_record_1
243
+  (1.6ms) ROLLBACK TO SAVEPOINT active_record_1
244
+  (6.8ms) ROLLBACK
245
+  (0.7ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "acts_as_talented_employers" DISABLE TRIGGER ALL
246
+  (3.1ms) select table_name from information_schema.views where table_schema = 'acts_as_talented_test'
247
+  (29.3ms) TRUNCATE TABLE "acts_as_talented_employers" RESTART IDENTITY CASCADE;
248
+  (0.4ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "acts_as_talented_employers" ENABLE TRIGGER ALL
249
+  (0.2ms) BEGIN
250
+  (0.2ms) SAVEPOINT active_record_1
251
+  (0.2ms) RELEASE SAVEPOINT active_record_1
252
+  (0.1ms) SAVEPOINT active_record_1
253
+  (0.3ms) SAVEPOINT active_record_2
254
+ ActsAsTalented::Employer Exists (20.2ms) SELECT 1 AS one FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."email" = 'user-mail-1@example.com' LIMIT 1
255
+ SQL (31.5ms) INSERT INTO "acts_as_talented_employers" ("created_at", "email", "encrypted_password", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-10-14 09:53:50.951781"], ["email", "user-mail-1@example.com"], ["encrypted_password", "$2a$04$W5pM/CO8CtsbasucKiaA7eWTERgbFf5AhWwdiyS7Un8QRsqtJkqnO"], ["updated_at", "2014-10-14 09:53:50.951781"]]
256
+  (0.3ms) RELEASE SAVEPOINT active_record_2
257
+ Processing by ActsAsTalented::DashboardController#index as HTML
258
+ ActsAsTalented::Employer Load (6.8ms) SELECT "acts_as_talented_employers".* FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."id" = 1 ORDER BY "acts_as_talented_employers"."id" ASC LIMIT 1
259
+ Rendered /Users/chandradhar/WebProjects/Rails/acts_as_talented/app/views/acts_as_talented/dashboard/index.html.erb within layouts/acts_as_talented/application (0.4ms)
260
+ Completed 200 OK in 33ms (Views: 11.9ms | ActiveRecord: 6.8ms)
261
+  (6.7ms) ROLLBACK TO SAVEPOINT active_record_1
262
+  (0.3ms) ROLLBACK
263
+  (0.7ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "acts_as_talented_employers" DISABLE TRIGGER ALL
264
+  (3.1ms) select table_name from information_schema.views where table_schema = 'acts_as_talented_test'
265
+  (5.7ms) TRUNCATE TABLE "acts_as_talented_employers" RESTART IDENTITY CASCADE;
266
+  (0.4ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "acts_as_talented_employers" ENABLE TRIGGER ALL
267
+  (0.2ms) BEGIN
268
+  (0.2ms) SAVEPOINT active_record_1
269
+  (0.2ms) RELEASE SAVEPOINT active_record_1
270
+  (0.1ms) SAVEPOINT active_record_1
271
+  (0.4ms) SAVEPOINT active_record_2
272
+ ActsAsTalented::Employer Exists (1.1ms) SELECT 1 AS one FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."email" = 'user-mail-1@example.com' LIMIT 1
273
+ SQL (1.0ms) INSERT INTO "acts_as_talented_employers" ("created_at", "email", "encrypted_password", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-10-14 09:54:19.439096"], ["email", "user-mail-1@example.com"], ["encrypted_password", "$2a$04$fK/Mae6Zm5YQuV2ZucaBGuj9JMOdKNrxXyGVbl3SvRELNJbOorRLa"], ["updated_at", "2014-10-14 09:54:19.439096"]]
274
+  (0.2ms) RELEASE SAVEPOINT active_record_2
275
+ Processing by ActsAsTalented::DashboardController#index as HTML
276
+ ActsAsTalented::Employer Load (2.1ms) SELECT "acts_as_talented_employers".* FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."id" = 1 ORDER BY "acts_as_talented_employers"."id" ASC LIMIT 1
277
+ Rendered /Users/chandradhar/WebProjects/Rails/acts_as_talented/app/views/acts_as_talented/dashboard/index.html.erb within layouts/acts_as_talented/application (0.4ms)
278
+ Completed 200 OK in 9428ms (Views: 10.5ms | ActiveRecord: 2.1ms)
279
+  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1
280
+  (0.3ms) ROLLBACK
281
+  (0.7ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "acts_as_talented_employers" DISABLE TRIGGER ALL
282
+  (3.0ms) select table_name from information_schema.views where table_schema = 'acts_as_talented_test'
283
+  (31.2ms) TRUNCATE TABLE "acts_as_talented_employers" RESTART IDENTITY CASCADE;
284
+  (0.4ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "acts_as_talented_employers" ENABLE TRIGGER ALL
285
+  (0.2ms) BEGIN
286
+  (0.1ms) SAVEPOINT active_record_1
287
+  (0.1ms) RELEASE SAVEPOINT active_record_1
288
+  (0.1ms) SAVEPOINT active_record_1
289
+  (0.3ms) SAVEPOINT active_record_2
290
+ ActsAsTalented::Employer Exists (1.1ms) SELECT 1 AS one FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."email" = 'user-mail-1@example.com' LIMIT 1
291
+ SQL (18.4ms) INSERT INTO "acts_as_talented_employers" ("created_at", "email", "encrypted_password", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-10-14 10:07:48.177749"], ["email", "user-mail-1@example.com"], ["encrypted_password", "$2a$04$VGLLKL9c8oToknirre2xhuYU9AaOzvhj0LcbXWWHy.YvT6QIpeXRe"], ["updated_at", "2014-10-14 10:07:48.177749"]]
292
+  (0.4ms) RELEASE SAVEPOINT active_record_2
293
+  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1
294
+  (0.3ms) ROLLBACK
295
+  (0.7ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "acts_as_talented_employers" DISABLE TRIGGER ALL
296
+  (5.1ms) select table_name from information_schema.views where table_schema = 'acts_as_talented_test'
297
+  (40.6ms) TRUNCATE TABLE "acts_as_talented_employers" RESTART IDENTITY CASCADE;
298
+  (0.5ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "acts_as_talented_employers" ENABLE TRIGGER ALL
299
+  (0.2ms) BEGIN
300
+  (0.2ms) SAVEPOINT active_record_1
301
+  (0.2ms) RELEASE SAVEPOINT active_record_1
302
+  (0.1ms) SAVEPOINT active_record_1
303
+  (0.4ms) SAVEPOINT active_record_2
304
+ ActsAsTalented::Employer Exists (1.1ms) SELECT 1 AS one FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."email" = 'user-mail-1@example.com' LIMIT 1
305
+ SQL (1.4ms) INSERT INTO "acts_as_talented_employers" ("created_at", "email", "encrypted_password", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-10-14 10:10:43.981015"], ["email", "user-mail-1@example.com"], ["encrypted_password", "$2a$04$IAcLG3hY7RrEBPTD12iX.eYc8qzOFtH6lJlYLleVuzzt2CAolvLbi"], ["updated_at", "2014-10-14 10:10:43.981015"]]
306
+  (0.2ms) RELEASE SAVEPOINT active_record_2
307
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
308
+  (0.2ms) ROLLBACK
309
+  (0.7ms) ALTER TABLE "acts_as_talented_employers" DISABLE TRIGGER ALL;ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL
310
+  (3.7ms) select table_name from information_schema.views where table_schema = 'acts_as_talented_test'
311
+  (30.6ms) TRUNCATE TABLE "acts_as_talented_employers" RESTART IDENTITY CASCADE;
312
+  (0.4ms) ALTER TABLE "acts_as_talented_employers" ENABLE TRIGGER ALL;ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL
313
+  (0.2ms) BEGIN
314
+  (0.2ms) SAVEPOINT active_record_1
315
+  (0.2ms) RELEASE SAVEPOINT active_record_1
316
+  (0.2ms) SAVEPOINT active_record_1
317
+  (0.4ms) SAVEPOINT active_record_2
318
+ ActsAsTalented::Employer Exists (1.2ms) SELECT 1 AS one FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."email" = 'user-mail-1@example.com' LIMIT 1
319
+ SQL (18.7ms) INSERT INTO "acts_as_talented_employers" ("created_at", "email", "encrypted_password", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-10-14 10:11:06.680425"], ["email", "user-mail-1@example.com"], ["encrypted_password", "$2a$04$CkaGfvHx1he4uNjefsMxC.H2ogoKUCpgEyExkX2oG2QSbdIZU0j72"], ["updated_at", "2014-10-14 10:11:06.680425"]]
320
+  (0.5ms) RELEASE SAVEPOINT active_record_2
321
+ Processing by ActsAsTalented::DashboardController#index as HTML
322
+ ActsAsTalented::Employer Load (1.3ms) SELECT "acts_as_talented_employers".* FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."id" = 1 ORDER BY "acts_as_talented_employers"."id" ASC LIMIT 1
323
+ Rendered /Users/chandradhar/WebProjects/Rails/acts_as_talented/app/views/acts_as_talented/dashboard/index.html.erb within layouts/acts_as_talented/application (0.4ms)
324
+ Completed 200 OK in 2113ms (Views: 11.6ms | ActiveRecord: 1.3ms)
325
+  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1
326
+  (0.3ms) ROLLBACK
327
+  (0.2ms) BEGIN
328
+  (0.2ms) SAVEPOINT active_record_1
329
+  (0.2ms) RELEASE SAVEPOINT active_record_1
330
+  (0.1ms) SAVEPOINT active_record_1
331
+  (0.3ms) SAVEPOINT active_record_2
332
+ ActsAsTalented::Employer Exists (12.1ms) SELECT 1 AS one FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."email" = 'user-mail-2@example.com' LIMIT 1
333
+ SQL (0.5ms) INSERT INTO "acts_as_talented_employers" ("created_at", "email", "encrypted_password", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-10-14 10:11:08.846410"], ["email", "user-mail-2@example.com"], ["encrypted_password", "$2a$04$eZviSIHg2M/WqYAo3rwxOe0vrAvp3CQAFZAOIxfwIpx9NZhJAFbYO"], ["updated_at", "2014-10-14 10:11:08.846410"]]
334
+  (0.2ms) RELEASE SAVEPOINT active_record_2
335
+  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1
336
+  (0.2ms) ROLLBACK
337
+  (0.1ms) BEGIN
338
+  (0.1ms) SAVEPOINT active_record_1
339
+  (0.1ms) RELEASE SAVEPOINT active_record_1
340
+  (0.1ms) SAVEPOINT active_record_1
341
+  (0.2ms) SAVEPOINT active_record_2
342
+ ActsAsTalented::Employer Exists (0.5ms) SELECT 1 AS one FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."email" = 'user-mail-3@example.com' LIMIT 1
343
+ SQL (0.4ms) INSERT INTO "acts_as_talented_employers" ("created_at", "email", "encrypted_password", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-10-14 10:11:08.855322"], ["email", "user-mail-3@example.com"], ["encrypted_password", "$2a$04$jL5liCFneXMVGTToiJPjc.gUH8pOmD0UEotM0Ect4QihJ7Q7Cuaqm"], ["updated_at", "2014-10-14 10:11:08.855322"]]
344
+  (0.2ms) RELEASE SAVEPOINT active_record_2
345
+ Started GET "/acts_as_talented/employers/sign_in" for 127.0.0.1 at 2014-10-14 15:41:08 +0530
346
+ Processing by Devise::SessionsController#new as HTML
347
+ Rendered /Users/chandradhar/WebProjects/Rails/acts_as_talented/app/views/devise/shared/_links.erb (1.4ms)
348
+ Rendered /Users/chandradhar/WebProjects/Rails/acts_as_talented/app/views/partials/_navbar_admin.html.erb (0.7ms)
349
+ Completed 200 OK in 7623ms (Views: 7605.6ms | ActiveRecord: 0.0ms)
350
+ Started POST "/acts_as_talented/employers/sign_in" for 127.0.0.1 at 2014-10-14 15:41:16 +0530
351
+ Processing by Devise::SessionsController#create as HTML
352
+ Parameters: {"utf8"=>"✓", "employer"=>{"email"=>"user-mail-3@example.com", "password"=>"[FILTERED]", "remember_me"=>"0"}}
353
+ ActsAsTalented::Employer Load (18.9ms) SELECT "acts_as_talented_employers".* FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."email" = 'user-mail-3@example.com' ORDER BY "acts_as_talented_employers"."id" ASC LIMIT 1
354
+ Completed 401 Unauthorized in 24ms
355
+ Processing by Devise::SessionsController#new as HTML
356
+ Parameters: {"utf8"=>"✓", "employer"=>{"email"=>"user-mail-3@example.com", "password"=>"[FILTERED]", "remember_me"=>"0"}}
357
+ Rendered /Users/chandradhar/WebProjects/Rails/acts_as_talented/app/views/devise/shared/_links.erb (0.2ms)
358
+ Rendered /Users/chandradhar/WebProjects/Rails/acts_as_talented/app/views/partials/_navbar_admin.html.erb (0.0ms)
359
+ Completed 200 OK in 6ms (Views: 4.1ms | ActiveRecord: 0.0ms)
360
+  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1
361
+  (0.3ms) ROLLBACK
362
+  (2.2ms) ALTER TABLE "acts_as_talented_employers" DISABLE TRIGGER ALL;ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL
363
+  (11.6ms) select table_name from information_schema.views where table_schema = 'acts_as_talented_test'
364
+  (9.8ms) TRUNCATE TABLE "acts_as_talented_employers" RESTART IDENTITY CASCADE;
365
+  (0.4ms) ALTER TABLE "acts_as_talented_employers" ENABLE TRIGGER ALL;ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL
366
+  (0.5ms) BEGIN
367
+  (0.7ms) SAVEPOINT active_record_1
368
+  (0.2ms) RELEASE SAVEPOINT active_record_1
369
+  (0.2ms) SAVEPOINT active_record_1
370
+  (0.5ms) SAVEPOINT active_record_2
371
+ ActsAsTalented::Employer Exists (1.2ms) SELECT 1 AS one FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."email" = 'user-mail-1@example.com' LIMIT 1
372
+ SQL (11.1ms) INSERT INTO "acts_as_talented_employers" ("created_at", "email", "encrypted_password", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-10-14 18:52:07.743285"], ["email", "user-mail-1@example.com"], ["encrypted_password", "$2a$04$8JdlrjdKvsp76n4Hoj6ZA.eNn8DGtt.bD1Is/y450My7JADU0tAc."], ["updated_at", "2014-10-14 18:52:07.743285"]]
373
+  (0.3ms) RELEASE SAVEPOINT active_record_2
374
+ Processing by ActsAsTalented::DashboardController#index as HTML
375
+ ActsAsTalented::Employer Load (1.2ms) SELECT "acts_as_talented_employers".* FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."id" = 1 ORDER BY "acts_as_talented_employers"."id" ASC LIMIT 1
376
+ Rendered /Users/chandradhar/WebProjects/Rails/acts_as_talented/app/views/acts_as_talented/dashboard/index.html.erb within layouts/acts_as_talented/application (0.4ms)
377
+ Completed 200 OK in 54ms (Views: 16.7ms | ActiveRecord: 1.2ms)
378
+  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1
379
+  (0.2ms) ROLLBACK
380
+  (0.2ms) BEGIN
381
+  (0.1ms) SAVEPOINT active_record_1
382
+  (0.1ms) RELEASE SAVEPOINT active_record_1
383
+  (0.1ms) SAVEPOINT active_record_1
384
+  (0.3ms) SAVEPOINT active_record_2
385
+ ActsAsTalented::Employer Exists (6.0ms) SELECT 1 AS one FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."email" = 'user-mail-2@example.com' LIMIT 1
386
+ SQL (0.5ms) INSERT INTO "acts_as_talented_employers" ("created_at", "email", "encrypted_password", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-10-14 18:52:07.841978"], ["email", "user-mail-2@example.com"], ["encrypted_password", "$2a$04$H6LrwLnsMTYqNpW6XHHHSeIdlfMxwH1dviooWSpeNV8TMwgaOKcRS"], ["updated_at", "2014-10-14 18:52:07.841978"]]
387
+  (0.2ms) RELEASE SAVEPOINT active_record_2
388
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
389
+  (0.2ms) ROLLBACK
390
+  (0.1ms) BEGIN
391
+  (0.1ms) SAVEPOINT active_record_1
392
+  (0.1ms) RELEASE SAVEPOINT active_record_1
393
+  (0.1ms) SAVEPOINT active_record_1
394
+  (0.2ms) SAVEPOINT active_record_2
395
+ ActsAsTalented::Employer Exists (0.5ms) SELECT 1 AS one FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."email" = 'user-mail-3@example.com' LIMIT 1
396
+ SQL (0.5ms) INSERT INTO "acts_as_talented_employers" ("created_at", "email", "encrypted_password", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-10-14 18:52:07.850171"], ["email", "user-mail-3@example.com"], ["encrypted_password", "$2a$04$ofra4fngQ9BENRtrA/TMJeF1eJ83ZsJDTj64g2L1PTJxkEQ3xlIl6"], ["updated_at", "2014-10-14 18:52:07.850171"]]
397
+  (0.2ms) RELEASE SAVEPOINT active_record_2
398
+ Started GET "/acts_as_talented/employers/sign_in" for 127.0.0.1 at 2014-10-15 00:22:07 +0530
399
+ Processing by Devise::SessionsController#new as HTML
400
+ Rendered /Users/chandradhar/WebProjects/Rails/acts_as_talented/app/views/devise/shared/_links.erb (1.3ms)
401
+ Rendered /Users/chandradhar/WebProjects/Rails/acts_as_talented/app/views/partials/_navbar_admin.html.erb (0.6ms)
402
+ Completed 200 OK in 10783ms (Views: 10764.1ms | ActiveRecord: 0.0ms)
403
+ Started POST "/acts_as_talented/employers/sign_in" for 127.0.0.1 at 2014-10-15 00:22:18 +0530
404
+ Processing by Devise::SessionsController#create as HTML
405
+ Parameters: {"utf8"=>"✓", "employer"=>{"email"=>"user-mail-3@example.com", "password"=>"[FILTERED]", "remember_me"=>"0"}}
406
+ ActsAsTalented::Employer Load (6.6ms) SELECT "acts_as_talented_employers".* FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."email" = 'user-mail-3@example.com' ORDER BY "acts_as_talented_employers"."id" ASC LIMIT 1
407
+ Completed 401 Unauthorized in 14ms
408
+ Processing by Devise::SessionsController#new as HTML
409
+ Parameters: {"utf8"=>"✓", "employer"=>{"email"=>"user-mail-3@example.com", "password"=>"[FILTERED]", "remember_me"=>"0"}}
410
+ Rendered /Users/chandradhar/WebProjects/Rails/acts_as_talented/app/views/devise/shared/_links.erb (0.3ms)
411
+ Rendered /Users/chandradhar/WebProjects/Rails/acts_as_talented/app/views/partials/_navbar_admin.html.erb (0.0ms)
412
+ Completed 200 OK in 8ms (Views: 5.1ms | ActiveRecord: 0.0ms)
413
+  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1
414
+  (0.3ms) ROLLBACK
415
+  (1.0ms) ALTER TABLE "acts_as_talented_employers" DISABLE TRIGGER ALL;ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL
416
+  (3.4ms) select table_name from information_schema.views where table_schema = 'acts_as_talented_test'
417
+  (36.1ms) TRUNCATE TABLE "acts_as_talented_employers" RESTART IDENTITY CASCADE;
418
+  (0.4ms) ALTER TABLE "acts_as_talented_employers" ENABLE TRIGGER ALL;ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL
419
+  (0.2ms) BEGIN
420
+  (0.2ms) SAVEPOINT active_record_1
421
+  (0.1ms) RELEASE SAVEPOINT active_record_1
422
+  (0.1ms) SAVEPOINT active_record_1
423
+  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1
424
+  (0.2ms) ROLLBACK
425
+  (0.1ms) BEGIN
426
+  (0.1ms) SAVEPOINT active_record_1
427
+  (0.2ms) RELEASE SAVEPOINT active_record_1
428
+  (0.1ms) SAVEPOINT active_record_1
429
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
430
+  (0.2ms) ROLLBACK
431
+  (0.1ms) BEGIN
432
+  (0.1ms) SAVEPOINT active_record_1
433
+  (0.1ms) RELEASE SAVEPOINT active_record_1
434
+  (0.1ms) SAVEPOINT active_record_1
435
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
436
+  (0.2ms) ROLLBACK
437
+  (0.2ms) BEGIN
438
+  (0.2ms) SAVEPOINT active_record_1
439
+  (0.2ms) RELEASE SAVEPOINT active_record_1
440
+  (0.1ms) SAVEPOINT active_record_1
441
+  (0.4ms) SAVEPOINT active_record_2
442
+ ActsAsTalented::Employer Exists (1.1ms) SELECT 1 AS one FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."email" = 'user-mail-1@example.com' LIMIT 1
443
+ SQL (15.8ms) INSERT INTO "acts_as_talented_employers" ("created_at", "email", "encrypted_password", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-10-15 07:19:37.466183"], ["email", "user-mail-1@example.com"], ["encrypted_password", "$2a$04$g//AGzxdm/rvzWrWyeqzL.N43NXwdH754T4StdRrc0vXo5MJmlW4i"], ["updated_at", "2014-10-15 07:19:37.466183"]]
444
+  (0.3ms) RELEASE SAVEPOINT active_record_2
445
+  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1
446
+  (0.2ms) ROLLBACK
447
+  (0.7ms) ALTER TABLE "acts_as_talented_employers" DISABLE TRIGGER ALL;ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL
448
+  (3.1ms) select table_name from information_schema.views where table_schema = 'acts_as_talented_test'
449
+  (12.1ms) TRUNCATE TABLE "acts_as_talented_employers" RESTART IDENTITY CASCADE;
450
+  (0.4ms) ALTER TABLE "acts_as_talented_employers" ENABLE TRIGGER ALL;ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL
451
+  (0.2ms) BEGIN
452
+  (0.2ms) SAVEPOINT active_record_1
453
+  (0.1ms) RELEASE SAVEPOINT active_record_1
454
+  (0.1ms) SAVEPOINT active_record_1
455
+ Processing by ActsAsTalented::Api::V1::EmployersController#index as HTML
456
+ Filter chain halted as :allow_cors rendered or redirected
457
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
458
+  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1
459
+  (0.1ms) ROLLBACK
460
+  (0.1ms) BEGIN
461
+  (0.2ms) SAVEPOINT active_record_1
462
+  (0.2ms) RELEASE SAVEPOINT active_record_1
463
+  (0.1ms) SAVEPOINT active_record_1
464
+ Processing by ActsAsTalented::Api::V1::EmployersController#index as HTML
465
+ Filter chain halted as :allow_cors rendered or redirected
466
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
467
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
468
+  (0.2ms) ROLLBACK
469
+  (0.1ms) BEGIN
470
+  (0.1ms) SAVEPOINT active_record_1
471
+  (0.1ms) RELEASE SAVEPOINT active_record_1
472
+  (0.1ms) SAVEPOINT active_record_1
473
+ Processing by ActsAsTalented::Api::V1::EmployersController#index as HTML
474
+ Filter chain halted as :allow_cors rendered or redirected
475
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
476
+  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1
477
+  (0.2ms) ROLLBACK
478
+  (0.2ms) BEGIN
479
+  (0.2ms) SAVEPOINT active_record_1
480
+  (0.1ms) RELEASE SAVEPOINT active_record_1
481
+  (0.1ms) SAVEPOINT active_record_1
482
+  (0.4ms) SAVEPOINT active_record_2
483
+ ActsAsTalented::Employer Exists (1.5ms) SELECT 1 AS one FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."email" = 'user-mail-1@example.com' LIMIT 1
484
+ SQL (2.7ms) INSERT INTO "acts_as_talented_employers" ("created_at", "email", "encrypted_password", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-10-15 07:22:15.426483"], ["email", "user-mail-1@example.com"], ["encrypted_password", "$2a$04$eA5gQqOI2ixdORfMLUvVX.o7a5.CNzPlfqt3vZOodZ8r7EdUw7ZDe"], ["updated_at", "2014-10-15 07:22:15.426483"]]
485
+  (0.2ms) RELEASE SAVEPOINT active_record_2
486
+ Processing by ActsAsTalented::Api::V1::EmployersController#index as JSON
487
+ ActsAsTalented::Employer Load (1.2ms) SELECT "acts_as_talented_employers".* FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."id" = 1 ORDER BY "acts_as_talented_employers"."id" ASC LIMIT 1
488
+ ActsAsTalented::Employer Load (0.7ms) SELECT "acts_as_talented_employers".* FROM "acts_as_talented_employers"
489
+ Completed 200 OK in 51ms (Views: 0.1ms | ActiveRecord: 1.9ms)
490
+  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1
491
+  (0.2ms) ROLLBACK
492
+  (0.7ms) ALTER TABLE "acts_as_talented_employers" DISABLE TRIGGER ALL;ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL
493
+  (3.0ms) select table_name from information_schema.views where table_schema = 'acts_as_talented_test'
494
+  (9.7ms) TRUNCATE TABLE "acts_as_talented_employers" RESTART IDENTITY CASCADE;
495
+  (0.4ms) ALTER TABLE "acts_as_talented_employers" ENABLE TRIGGER ALL;ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL
496
+  (0.2ms) BEGIN
497
+  (0.2ms) SAVEPOINT active_record_1
498
+  (0.2ms) RELEASE SAVEPOINT active_record_1
499
+  (0.1ms) SAVEPOINT active_record_1
500
+ Processing by ActsAsTalented::Api::V1::EmployersController#index as HTML
501
+ Filter chain halted as :allow_cors rendered or redirected
502
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
503
+  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1
504
+  (0.2ms) ROLLBACK
505
+  (0.1ms) BEGIN
506
+  (0.2ms) SAVEPOINT active_record_1
507
+  (0.2ms) RELEASE SAVEPOINT active_record_1
508
+  (0.1ms) SAVEPOINT active_record_1
509
+ Processing by ActsAsTalented::Api::V1::EmployersController#index as HTML
510
+ Filter chain halted as :allow_cors rendered or redirected
511
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
512
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
513
+  (0.2ms) ROLLBACK
514
+  (0.1ms) BEGIN
515
+  (0.1ms) SAVEPOINT active_record_1
516
+  (0.2ms) RELEASE SAVEPOINT active_record_1
517
+  (0.1ms) SAVEPOINT active_record_1
518
+ Processing by ActsAsTalented::Api::V1::EmployersController#index as HTML
519
+ Filter chain halted as :allow_cors rendered or redirected
520
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
521
+  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1
522
+  (0.2ms) ROLLBACK
523
+  (0.1ms) BEGIN
524
+  (0.1ms) SAVEPOINT active_record_1
525
+  (0.1ms) RELEASE SAVEPOINT active_record_1
526
+  (0.2ms) SAVEPOINT active_record_1
527
+  (0.4ms) SAVEPOINT active_record_2
528
+ ActsAsTalented::Employer Exists (1.3ms) SELECT 1 AS one FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."email" = 'user-mail-1@example.com' LIMIT 1
529
+ SQL (2.7ms) INSERT INTO "acts_as_talented_employers" ("created_at", "email", "encrypted_password", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-10-15 07:22:50.098075"], ["email", "user-mail-1@example.com"], ["encrypted_password", "$2a$04$7jq.Qyhg5kGBKRdHZlGR7.ijZ.RAEgoBnClKBpnqPgJDphSEbuA56"], ["updated_at", "2014-10-15 07:22:50.098075"]]
530
+  (0.2ms) RELEASE SAVEPOINT active_record_2
531
+ Processing by ActsAsTalented::Api::V1::EmployersController#index as JSON
532
+ ActsAsTalented::Employer Load (1.2ms) SELECT "acts_as_talented_employers".* FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."id" = 1 ORDER BY "acts_as_talented_employers"."id" ASC LIMIT 1
533
+ ActsAsTalented::Employer Load (0.6ms) SELECT "acts_as_talented_employers".* FROM "acts_as_talented_employers"
534
+ Completed 200 OK in 34ms (Views: 0.1ms | ActiveRecord: 1.8ms)
535
+  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1
536
+  (0.2ms) ROLLBACK
537
+  (0.8ms) ALTER TABLE "acts_as_talented_employers" DISABLE TRIGGER ALL;ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL
538
+  (3.5ms) select table_name from information_schema.views where table_schema = 'acts_as_talented_test'
539
+  (8.4ms) TRUNCATE TABLE "acts_as_talented_employers" RESTART IDENTITY CASCADE;
540
+  (0.3ms) ALTER TABLE "acts_as_talented_employers" ENABLE TRIGGER ALL;ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL
541
+  (0.2ms) BEGIN
542
+  (0.2ms) SAVEPOINT active_record_1
543
+  (0.1ms) RELEASE SAVEPOINT active_record_1
544
+  (0.1ms) SAVEPOINT active_record_1
545
+  (0.4ms) SAVEPOINT active_record_2
546
+ ActsAsTalented::Employer Exists (1.1ms) SELECT 1 AS one FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."email" = 'user-mail-1@example.com' LIMIT 1
547
+ SQL (2.6ms) INSERT INTO "acts_as_talented_employers" ("created_at", "email", "encrypted_password", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-10-15 07:23:21.760512"], ["email", "user-mail-1@example.com"], ["encrypted_password", "$2a$04$b7YLSqA8D.hILljP/rzmcOsio7u4rAYDhI2KM1JUufjZvTAMt0x3C"], ["updated_at", "2014-10-15 07:23:21.760512"]]
548
+  (0.2ms) RELEASE SAVEPOINT active_record_2
549
+ Processing by ActsAsTalented::DashboardController#index as HTML
550
+ ActsAsTalented::Employer Load (1.3ms) SELECT "acts_as_talented_employers".* FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."id" = 1 ORDER BY "acts_as_talented_employers"."id" ASC LIMIT 1
551
+ Rendered /Users/chandradhar/WebProjects/Rails/acts_as_talented/app/views/acts_as_talented/dashboard/index.html.erb within layouts/acts_as_talented/application (0.4ms)
552
+ Completed 200 OK in 34ms (Views: 15.7ms | ActiveRecord: 1.3ms)
553
+  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1
554
+  (0.2ms) ROLLBACK
555
+  (0.2ms) BEGIN
556
+  (0.2ms) SAVEPOINT active_record_1
557
+  (0.1ms) RELEASE SAVEPOINT active_record_1
558
+  (0.1ms) SAVEPOINT active_record_1
559
+ Processing by ActsAsTalented::Api::V1::EmployersController#index as HTML
560
+ Filter chain halted as :allow_cors rendered or redirected
561
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
562
+  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1
563
+  (0.2ms) ROLLBACK
564
+  (0.2ms) BEGIN
565
+  (0.2ms) SAVEPOINT active_record_1
566
+  (0.1ms) RELEASE SAVEPOINT active_record_1
567
+  (0.1ms) SAVEPOINT active_record_1
568
+ Processing by ActsAsTalented::Api::V1::EmployersController#index as HTML
569
+ Filter chain halted as :allow_cors rendered or redirected
570
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
571
+  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1
572
+  (0.2ms) ROLLBACK
573
+  (0.1ms) BEGIN
574
+  (0.1ms) SAVEPOINT active_record_1
575
+  (0.1ms) RELEASE SAVEPOINT active_record_1
576
+  (0.1ms) SAVEPOINT active_record_1
577
+ Processing by ActsAsTalented::Api::V1::EmployersController#index as HTML
578
+ Filter chain halted as :allow_cors rendered or redirected
579
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
580
+  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1
581
+  (0.2ms) ROLLBACK
582
+  (0.1ms) BEGIN
583
+  (0.2ms) SAVEPOINT active_record_1
584
+  (0.2ms) RELEASE SAVEPOINT active_record_1
585
+  (0.1ms) SAVEPOINT active_record_1
586
+  (0.2ms) SAVEPOINT active_record_2
587
+ ActsAsTalented::Employer Exists (0.7ms) SELECT 1 AS one FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."email" = 'user-mail-2@example.com' LIMIT 1
588
+ SQL (0.5ms) INSERT INTO "acts_as_talented_employers" ("created_at", "email", "encrypted_password", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-10-15 07:23:21.833836"], ["email", "user-mail-2@example.com"], ["encrypted_password", "$2a$04$BHVi3h.5SLt3r8Sv1wocR.autHvAw4Nfql9upSqQsiGX.ot5fctMq"], ["updated_at", "2014-10-15 07:23:21.833836"]]
589
+  (0.2ms) RELEASE SAVEPOINT active_record_2
590
+ Processing by ActsAsTalented::Api::V1::EmployersController#index as JSON
591
+ ActsAsTalented::Employer Load (0.6ms) SELECT "acts_as_talented_employers".* FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."id" = 2 ORDER BY "acts_as_talented_employers"."id" ASC LIMIT 1
592
+ ActsAsTalented::Employer Load (0.7ms) SELECT "acts_as_talented_employers".* FROM "acts_as_talented_employers"
593
+ Completed 200 OK in 9ms (Views: 0.1ms | ActiveRecord: 1.3ms)
594
+  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1
595
+  (0.2ms) ROLLBACK
596
+  (0.1ms) BEGIN
597
+  (0.1ms) SAVEPOINT active_record_1
598
+  (0.1ms) RELEASE SAVEPOINT active_record_1
599
+  (0.1ms) SAVEPOINT active_record_1
600
+  (0.2ms) SAVEPOINT active_record_2
601
+ ActsAsTalented::Employer Exists (0.5ms) SELECT 1 AS one FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."email" = 'user-mail-3@example.com' LIMIT 1
602
+ SQL (0.4ms) INSERT INTO "acts_as_talented_employers" ("created_at", "email", "encrypted_password", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-10-15 07:23:21.853653"], ["email", "user-mail-3@example.com"], ["encrypted_password", "$2a$04$sNY.l2x.Hi1pV1XLldj52OShOr29k.VCG50se5btCouD8KslkltIm"], ["updated_at", "2014-10-15 07:23:21.853653"]]
603
+  (0.2ms) RELEASE SAVEPOINT active_record_2
604
+ Started GET "/acts_as_talented/employers/sign_in" for 127.0.0.1 at 2014-10-15 12:53:21 +0530
605
+ Processing by Devise::SessionsController#new as HTML
606
+ Rendered /Users/chandradhar/WebProjects/Rails/acts_as_talented/app/views/devise/shared/_links.erb (1.3ms)
607
+ Rendered /Users/chandradhar/WebProjects/Rails/acts_as_talented/app/views/partials/_navbar_admin.html.erb (0.5ms)
608
+ Completed 200 OK in 1447ms (Views: 1428.0ms | ActiveRecord: 0.0ms)
609
+ Started POST "/acts_as_talented/employers/sign_in" for 127.0.0.1 at 2014-10-15 12:53:23 +0530
610
+ Processing by Devise::SessionsController#create as HTML
611
+ Parameters: {"utf8"=>"✓", "employer"=>{"email"=>"user-mail-3@example.com", "password"=>"[FILTERED]", "remember_me"=>"0"}}
612
+ ActsAsTalented::Employer Load (0.9ms) SELECT "acts_as_talented_employers".* FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."email" = 'user-mail-3@example.com' ORDER BY "acts_as_talented_employers"."id" ASC LIMIT 1
613
+ Completed 401 Unauthorized in 6ms
614
+ Processing by Devise::SessionsController#new as HTML
615
+ Parameters: {"utf8"=>"✓", "employer"=>{"email"=>"user-mail-3@example.com", "password"=>"[FILTERED]", "remember_me"=>"0"}}
616
+ Rendered /Users/chandradhar/WebProjects/Rails/acts_as_talented/app/views/devise/shared/_links.erb (0.2ms)
617
+ Rendered /Users/chandradhar/WebProjects/Rails/acts_as_talented/app/views/partials/_navbar_admin.html.erb (0.0ms)
618
+ Completed 200 OK in 7ms (Views: 4.2ms | ActiveRecord: 0.0ms)
619
+  (0.5ms) ROLLBACK TO SAVEPOINT active_record_1
620
+  (0.4ms) ROLLBACK
621
+  (0.3ms) BEGIN
622
+  (0.3ms) SAVEPOINT active_record_1
623
+  (0.1ms) RELEASE SAVEPOINT active_record_1
624
+  (0.1ms) SAVEPOINT active_record_1
625
+  (0.3ms) SAVEPOINT active_record_2
626
+ ActsAsTalented::Employer Exists (0.5ms) SELECT 1 AS one FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."email" = 'user-mail-4@example.com' LIMIT 1
627
+ SQL (0.5ms) INSERT INTO "acts_as_talented_employers" ("created_at", "email", "encrypted_password", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-10-15 07:23:23.361230"], ["email", "user-mail-4@example.com"], ["encrypted_password", "$2a$04$bu3BMd7t6fVGJRza0a//Ue/363F6Jqt7YrCNXvq6PP3VTesZPgc1W"], ["updated_at", "2014-10-15 07:23:23.361230"]]
628
+  (0.4ms) RELEASE SAVEPOINT active_record_2
629
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
630
+  (0.1ms) ROLLBACK
631
+  (0.7ms) ALTER TABLE "acts_as_talented_employers" DISABLE TRIGGER ALL;ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL
632
+  (3.4ms) select table_name from information_schema.views where table_schema = 'acts_as_talented_test'
633
+  (13.5ms) TRUNCATE TABLE "acts_as_talented_employers" RESTART IDENTITY CASCADE;
634
+  (0.4ms) ALTER TABLE "acts_as_talented_employers" ENABLE TRIGGER ALL;ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL
635
+  (0.2ms) BEGIN
636
+  (0.1ms) SAVEPOINT active_record_1
637
+  (0.1ms) RELEASE SAVEPOINT active_record_1
638
+  (0.1ms) SAVEPOINT active_record_1
639
+  (0.4ms) SAVEPOINT active_record_2
640
+ ActsAsTalented::Employer Exists (1.1ms) SELECT 1 AS one FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."email" = 'user-mail-1@example.com' LIMIT 1
641
+ SQL (2.6ms) INSERT INTO "acts_as_talented_employers" ("created_at", "email", "encrypted_password", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-10-15 07:24:18.537440"], ["email", "user-mail-1@example.com"], ["encrypted_password", "$2a$04$97CuT1X9zBhUXCe0tz.FV.bar6fTgfOQZFWjxbbsz3pK47zqqLFki"], ["updated_at", "2014-10-15 07:24:18.537440"]]
642
+  (0.2ms) RELEASE SAVEPOINT active_record_2
643
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
644
+  (0.2ms) ROLLBACK
645
+  (0.2ms) BEGIN
646
+  (0.2ms) SAVEPOINT active_record_1
647
+  (0.1ms) RELEASE SAVEPOINT active_record_1
648
+  (0.1ms) SAVEPOINT active_record_1
649
+  (0.2ms) SAVEPOINT active_record_2
650
+ ActsAsTalented::Employer Exists (0.7ms) SELECT 1 AS one FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."email" = 'user-mail-2@example.com' LIMIT 1
651
+ SQL (0.7ms) INSERT INTO "acts_as_talented_employers" ("created_at", "email", "encrypted_password", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-10-15 07:24:18.555705"], ["email", "user-mail-2@example.com"], ["encrypted_password", "$2a$04$YqdhWFUw8oH2omvRcel0oeHx7MMncYMQknedrcJV3ss2AmM.dxrgO"], ["updated_at", "2014-10-15 07:24:18.555705"]]
652
+  (0.2ms) RELEASE SAVEPOINT active_record_2
653
+ Processing by ActsAsTalented::Api::V1::EmployersController#index as JSON
654
+ ActsAsTalented::Employer Load (1.0ms) SELECT "acts_as_talented_employers".* FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."id" = 2 ORDER BY "acts_as_talented_employers"."id" ASC LIMIT 1
655
+ ActsAsTalented::Employer Load (0.6ms) SELECT "acts_as_talented_employers".* FROM "acts_as_talented_employers"
656
+ Completed 200 OK in 34ms (Views: 0.1ms | ActiveRecord: 1.6ms)
657
+  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1
658
+  (0.2ms) ROLLBACK
659
+  (0.2ms) BEGIN
660
+  (0.2ms) SAVEPOINT active_record_1
661
+  (0.1ms) RELEASE SAVEPOINT active_record_1
662
+  (0.1ms) SAVEPOINT active_record_1
663
+ Processing by ActsAsTalented::Api::V1::EmployersController#index as HTML
664
+ Filter chain halted as :allow_cors rendered or redirected
665
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
666
+  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1
667
+  (0.2ms) ROLLBACK
668
+  (0.2ms) BEGIN
669
+  (0.2ms) SAVEPOINT active_record_1
670
+  (0.2ms) RELEASE SAVEPOINT active_record_1
671
+  (0.1ms) SAVEPOINT active_record_1
672
+ Processing by ActsAsTalented::Api::V1::EmployersController#index as HTML
673
+ Filter chain halted as :allow_cors rendered or redirected
674
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
675
+  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1
676
+  (0.2ms) ROLLBACK
677
+  (0.1ms) BEGIN
678
+  (0.1ms) SAVEPOINT active_record_1
679
+  (0.1ms) RELEASE SAVEPOINT active_record_1
680
+  (0.1ms) SAVEPOINT active_record_1
681
+ Processing by ActsAsTalented::Api::V1::EmployersController#index as HTML
682
+ Filter chain halted as :allow_cors rendered or redirected
683
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
684
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
685
+  (0.2ms) ROLLBACK
686
+  (0.1ms) BEGIN
687
+  (0.1ms) SAVEPOINT active_record_1
688
+  (0.1ms) RELEASE SAVEPOINT active_record_1
689
+  (0.1ms) SAVEPOINT active_record_1
690
+  (0.2ms) SAVEPOINT active_record_2
691
+ ActsAsTalented::Employer Exists (0.5ms) SELECT 1 AS one FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."email" = 'user-mail-3@example.com' LIMIT 1
692
+ SQL (0.4ms) INSERT INTO "acts_as_talented_employers" ("created_at", "email", "encrypted_password", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-10-15 07:24:18.621645"], ["email", "user-mail-3@example.com"], ["encrypted_password", "$2a$04$uea9EcuILCKjxMpadU1Em.ndB3wJWmndufCiJbMWGsRQ/kA4Wqsxa"], ["updated_at", "2014-10-15 07:24:18.621645"]]
693
+  (0.2ms) RELEASE SAVEPOINT active_record_2
694
+ Started GET "/acts_as_talented/employers/sign_in" for 127.0.0.1 at 2014-10-15 12:54:18 +0530
695
+ Processing by Devise::SessionsController#new as HTML
696
+ Rendered /Users/chandradhar/WebProjects/Rails/acts_as_talented/app/views/devise/shared/_links.erb (1.3ms)
697
+ Rendered /Users/chandradhar/WebProjects/Rails/acts_as_talented/app/views/partials/_navbar_admin.html.erb (0.5ms)
698
+ Completed 200 OK in 677ms (Views: 654.9ms | ActiveRecord: 0.0ms)
699
+ Started POST "/acts_as_talented/employers/sign_in" for 127.0.0.1 at 2014-10-15 12:54:19 +0530
700
+ Processing by Devise::SessionsController#create as HTML
701
+ Parameters: {"utf8"=>"✓", "employer"=>{"email"=>"user-mail-3@example.com", "password"=>"[FILTERED]", "remember_me"=>"0"}}
702
+ ActsAsTalented::Employer Load (0.8ms) SELECT "acts_as_talented_employers".* FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."email" = 'user-mail-3@example.com' ORDER BY "acts_as_talented_employers"."id" ASC LIMIT 1
703
+ Completed 401 Unauthorized in 6ms
704
+ Processing by Devise::SessionsController#new as HTML
705
+ Parameters: {"utf8"=>"✓", "employer"=>{"email"=>"user-mail-3@example.com", "password"=>"[FILTERED]", "remember_me"=>"0"}}
706
+ Rendered /Users/chandradhar/WebProjects/Rails/acts_as_talented/app/views/devise/shared/_links.erb (0.2ms)
707
+ Rendered /Users/chandradhar/WebProjects/Rails/acts_as_talented/app/views/partials/_navbar_admin.html.erb (0.0ms)
708
+ Completed 200 OK in 7ms (Views: 4.2ms | ActiveRecord: 0.0ms)
709
+  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1
710
+  (0.4ms) ROLLBACK
711
+  (0.2ms) BEGIN
712
+  (0.2ms) SAVEPOINT active_record_1
713
+  (0.1ms) RELEASE SAVEPOINT active_record_1
714
+  (0.1ms) SAVEPOINT active_record_1
715
+  (0.2ms) SAVEPOINT active_record_2
716
+ ActsAsTalented::Employer Exists (0.5ms) SELECT 1 AS one FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."email" = 'user-mail-4@example.com' LIMIT 1
717
+ SQL (0.4ms) INSERT INTO "acts_as_talented_employers" ("created_at", "email", "encrypted_password", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-10-15 07:24:19.347020"], ["email", "user-mail-4@example.com"], ["encrypted_password", "$2a$04$o6AXk2wqHBhfrJymuKCEL.QNN5kQ6phxPaAED.e8MQYyzc6ZXIWlK"], ["updated_at", "2014-10-15 07:24:19.347020"]]
718
+  (0.2ms) RELEASE SAVEPOINT active_record_2
719
+ Processing by ActsAsTalented::DashboardController#index as HTML
720
+ ActsAsTalented::Employer Load (0.6ms) SELECT "acts_as_talented_employers".* FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."id" = 4 ORDER BY "acts_as_talented_employers"."id" ASC LIMIT 1
721
+ Completed 200 OK in 5ms (Views: 3.2ms | ActiveRecord: 0.6ms)
722
+  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1
723
+  (0.3ms) ROLLBACK
724
+  (2.3ms) ALTER TABLE "acts_as_talented_employers" DISABLE TRIGGER ALL;ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL
725
+  (14.6ms) select table_name from information_schema.views where table_schema = 'acts_as_talented_test'
726
+  (8.8ms) TRUNCATE TABLE "acts_as_talented_employers" RESTART IDENTITY CASCADE;
727
+  (0.4ms) ALTER TABLE "acts_as_talented_employers" ENABLE TRIGGER ALL;ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL
728
+  (0.7ms) BEGIN
729
+  (1.0ms) SAVEPOINT active_record_1
730
+  (0.3ms) RELEASE SAVEPOINT active_record_1
731
+  (0.2ms) SAVEPOINT active_record_1
732
+  (0.5ms) SAVEPOINT active_record_2
733
+ ActsAsTalented::Employer Exists (1.2ms) SELECT 1 AS one FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."email" = 'user-mail-1@example.com' LIMIT 1
734
+ SQL (10.4ms) INSERT INTO "acts_as_talented_employers" ("created_at", "email", "encrypted_password", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-10-17 10:02:31.448472"], ["email", "user-mail-1@example.com"], ["encrypted_password", "$2a$04$9sKAPPWTFgUTF75sjMWmQealTjPMg7N.6EUtkPbT8obciDK8DzRGS"], ["updated_at", "2014-10-17 10:02:31.448472"]]
735
+  (0.3ms) RELEASE SAVEPOINT active_record_2
736
+ Processing by ActsAsTalented::DashboardController#index as HTML
737
+ ActsAsTalented::Employer Load (1.8ms) SELECT "acts_as_talented_employers".* FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."id" = 1 ORDER BY "acts_as_talented_employers"."id" ASC LIMIT 1
738
+ Rendered /Users/chandradhar/WebProjects/Rails/acts_as_talented/app/views/acts_as_talented/dashboard/index.html.erb within layouts/acts_as_talented/application (0.6ms)
739
+ Completed 200 OK in 69ms (Views: 26.4ms | ActiveRecord: 1.8ms)
740
+  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1
741
+  (0.3ms) ROLLBACK
742
+  (0.2ms) BEGIN
743
+  (0.2ms) SAVEPOINT active_record_1
744
+  (0.2ms) RELEASE SAVEPOINT active_record_1
745
+  (0.2ms) SAVEPOINT active_record_1
746
+  (0.3ms) SAVEPOINT active_record_2
747
+ ActsAsTalented::Employer Exists (6.1ms) SELECT 1 AS one FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."email" = 'user-mail-2@example.com' LIMIT 1
748
+ SQL (0.7ms) INSERT INTO "acts_as_talented_employers" ("created_at", "email", "encrypted_password", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-10-17 10:02:31.565394"], ["email", "user-mail-2@example.com"], ["encrypted_password", "$2a$04$W5k9gCzerGZfKBm.vlplY.n9BlUVY12JVjynmg6oBBbhxRuIKN5gS"], ["updated_at", "2014-10-17 10:02:31.565394"]]
749
+  (0.3ms) RELEASE SAVEPOINT active_record_2
750
+ Started GET "/acts_as_talented/employers/sign_in" for 127.0.0.1 at 2014-10-17 15:32:31 +0530
751
+ Processing by Devise::SessionsController#new as HTML
752
+ Rendered /Users/chandradhar/WebProjects/Rails/acts_as_talented/app/views/devise/shared/_links.erb (1.4ms)
753
+ Rendered /Users/chandradhar/WebProjects/Rails/acts_as_talented/app/views/partials/_navbar_admin.html.erb (0.8ms)
754
+ Completed 200 OK in 4893ms (Views: 4859.1ms | ActiveRecord: 0.0ms)
755
+ Started POST "/acts_as_talented/employers/sign_in" for 127.0.0.1 at 2014-10-17 15:32:36 +0530
756
+ Processing by Devise::SessionsController#create as HTML
757
+ Parameters: {"utf8"=>"✓", "employer"=>{"email"=>"user-mail-2@example.com", "password"=>"[FILTERED]", "remember_me"=>"0"}}
758
+ ActsAsTalented::Employer Load (7.0ms) SELECT "acts_as_talented_employers".* FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."email" = 'user-mail-2@example.com' ORDER BY "acts_as_talented_employers"."id" ASC LIMIT 1
759
+ Completed 401 Unauthorized in 15ms
760
+ Processing by Devise::SessionsController#new as HTML
761
+ Parameters: {"utf8"=>"✓", "employer"=>{"email"=>"user-mail-2@example.com", "password"=>"[FILTERED]", "remember_me"=>"0"}}
762
+ Rendered /Users/chandradhar/WebProjects/Rails/acts_as_talented/app/views/devise/shared/_links.erb (0.5ms)
763
+ Rendered /Users/chandradhar/WebProjects/Rails/acts_as_talented/app/views/partials/_navbar_admin.html.erb (0.1ms)
764
+ Completed 200 OK in 14ms (Views: 10.2ms | ActiveRecord: 0.0ms)
765
+  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1
766
+  (0.4ms) ROLLBACK
767
+  (0.2ms) BEGIN
768
+  (0.3ms) SAVEPOINT active_record_1
769
+  (0.2ms) RELEASE SAVEPOINT active_record_1
770
+  (0.3ms) SAVEPOINT active_record_1
771
+ Processing by ActsAsTalented::Api::V1::EmployersController#index as HTML
772
+ Filter chain halted as :allow_cors rendered or redirected
773
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
774
+  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1
775
+  (0.4ms) ROLLBACK
776
+  (0.1ms) BEGIN
777
+  (0.1ms) SAVEPOINT active_record_1
778
+  (0.2ms) RELEASE SAVEPOINT active_record_1
779
+  (0.2ms) SAVEPOINT active_record_1
780
+ Processing by ActsAsTalented::Api::V1::EmployersController#index as HTML
781
+ Filter chain halted as :allow_cors rendered or redirected
782
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
783
+  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1
784
+  (0.3ms) ROLLBACK
785
+  (0.1ms) BEGIN
786
+  (0.1ms) SAVEPOINT active_record_1
787
+  (0.1ms) RELEASE SAVEPOINT active_record_1
788
+  (0.1ms) SAVEPOINT active_record_1
789
+ Processing by ActsAsTalented::Api::V1::EmployersController#index as HTML
790
+ Filter chain halted as :allow_cors rendered or redirected
791
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
792
+  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1
793
+  (0.2ms) ROLLBACK
794
+  (0.1ms) BEGIN
795
+  (0.1ms) SAVEPOINT active_record_1
796
+  (0.2ms) RELEASE SAVEPOINT active_record_1
797
+  (0.1ms) SAVEPOINT active_record_1
798
+  (0.2ms) SAVEPOINT active_record_2
799
+ ActsAsTalented::Employer Exists (0.5ms) SELECT 1 AS one FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."email" = 'user-mail-3@example.com' LIMIT 1
800
+ SQL (0.5ms) INSERT INTO "acts_as_talented_employers" ("created_at", "email", "encrypted_password", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-10-17 10:02:36.580039"], ["email", "user-mail-3@example.com"], ["encrypted_password", "$2a$04$iHs4P39V0uSLjQdmTXwIC.cYRFor1Y9iz7ak/XGmT6us0hRth/hY6"], ["updated_at", "2014-10-17 10:02:36.580039"]]
801
+  (0.2ms) RELEASE SAVEPOINT active_record_2
802
+ Processing by ActsAsTalented::Api::V1::EmployersController#index as JSON
803
+ ActsAsTalented::Employer Load (0.8ms) SELECT "acts_as_talented_employers".* FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."id" = 3 ORDER BY "acts_as_talented_employers"."id" ASC LIMIT 1
804
+ ActsAsTalented::Employer Load (0.8ms) SELECT "acts_as_talented_employers".* FROM "acts_as_talented_employers"
805
+ Completed 200 OK in 22ms (Views: 0.1ms | ActiveRecord: 1.6ms)
806
+  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1
807
+  (0.2ms) ROLLBACK
808
+  (0.2ms) BEGIN
809
+  (0.1ms) SAVEPOINT active_record_1
810
+  (0.1ms) RELEASE SAVEPOINT active_record_1
811
+  (0.1ms) SAVEPOINT active_record_1
812
+  (0.2ms) SAVEPOINT active_record_2
813
+ ActsAsTalented::Employer Exists (0.5ms) SELECT 1 AS one FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."email" = 'user-mail-4@example.com' LIMIT 1
814
+ SQL (0.4ms) INSERT INTO "acts_as_talented_employers" ("created_at", "email", "encrypted_password", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-10-17 10:02:36.660934"], ["email", "user-mail-4@example.com"], ["encrypted_password", "$2a$04$hpLXgJMpu98ra9mByD.Xy.IY5G3ybGgIaNI6b/4OX05pwY6dVpFs."], ["updated_at", "2014-10-17 10:02:36.660934"]]
815
+  (0.2ms) RELEASE SAVEPOINT active_record_2
816
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
817
+  (0.1ms) ROLLBACK
818
+  (4.8ms) ALTER TABLE "acts_as_talented_employers" DISABLE TRIGGER ALL;ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL
819
+  (25.3ms) select table_name from information_schema.views where table_schema = 'acts_as_talented_test'
820
+  (32.5ms) TRUNCATE TABLE "acts_as_talented_employers" RESTART IDENTITY CASCADE;
821
+  (0.4ms) ALTER TABLE "acts_as_talented_employers" ENABLE TRIGGER ALL;ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL
822
+  (1.0ms) BEGIN
823
+  (0.7ms) SAVEPOINT active_record_1
824
+  (0.1ms) RELEASE SAVEPOINT active_record_1
825
+  (0.1ms) SAVEPOINT active_record_1
826
+  (0.2ms) SAVEPOINT active_record_2
827
+ ActsAsTalented::Employer Exists (12.8ms) SELECT 1 AS one FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."email" = 'user-mail-1@example.com' LIMIT 1
828
+ SQL (16.1ms) INSERT INTO "acts_as_talented_employers" ("created_at", "email", "encrypted_password", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-10-28 07:00:33.438069"], ["email", "user-mail-1@example.com"], ["encrypted_password", "$2a$04$wMdI0fRdUSPZWuoeN63qEe0uST7vPfFkZYMkD4D32Y.He/kMOq4FS"], ["updated_at", "2014-10-28 07:00:33.438069"]]
829
+  (0.3ms) RELEASE SAVEPOINT active_record_2
830
+  (1.6ms) ROLLBACK TO SAVEPOINT active_record_1
831
+  (1.2ms) ROLLBACK
832
+  (0.1ms) BEGIN
833
+  (0.2ms) SAVEPOINT active_record_1
834
+  (0.2ms) RELEASE SAVEPOINT active_record_1
835
+  (0.2ms) SAVEPOINT active_record_1
836
+ Processing by ActsAsTalented::Api::V1::EmployersController#index as HTML
837
+ Filter chain halted as :allow_cors rendered or redirected
838
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
839
+  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1
840
+  (0.2ms) ROLLBACK
841
+  (0.1ms) BEGIN
842
+  (0.2ms) SAVEPOINT active_record_1
843
+  (0.1ms) RELEASE SAVEPOINT active_record_1
844
+  (0.1ms) SAVEPOINT active_record_1
845
+ Processing by ActsAsTalented::Api::V1::EmployersController#index as HTML
846
+ Filter chain halted as :allow_cors rendered or redirected
847
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
848
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
849
+  (0.1ms) ROLLBACK
850
+  (0.1ms) BEGIN
851
+  (0.2ms) SAVEPOINT active_record_1
852
+  (0.1ms) RELEASE SAVEPOINT active_record_1
853
+  (0.1ms) SAVEPOINT active_record_1
854
+ Processing by ActsAsTalented::Api::V1::EmployersController#index as HTML
855
+ Filter chain halted as :allow_cors rendered or redirected
856
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
857
+  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1
858
+  (0.2ms) ROLLBACK
859
+  (0.1ms) BEGIN
860
+  (0.2ms) SAVEPOINT active_record_1
861
+  (0.1ms) RELEASE SAVEPOINT active_record_1
862
+  (0.1ms) SAVEPOINT active_record_1
863
+  (0.2ms) SAVEPOINT active_record_2
864
+ ActsAsTalented::Employer Exists (6.2ms) SELECT 1 AS one FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."email" = 'user-mail-2@example.com' LIMIT 1
865
+ SQL (1.0ms) INSERT INTO "acts_as_talented_employers" ("created_at", "email", "encrypted_password", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-10-28 07:00:33.515646"], ["email", "user-mail-2@example.com"], ["encrypted_password", "$2a$04$f8/fe6.x6u84aqyOkIUN..mfUzWI6GIU22/iqQzsOZKJ6xz3aREsy"], ["updated_at", "2014-10-28 07:00:33.515646"]]
866
+  (0.3ms) RELEASE SAVEPOINT active_record_2
867
+ Processing by ActsAsTalented::Api::V1::EmployersController#index as JSON
868
+ ActsAsTalented::Employer Load (6.3ms) SELECT "acts_as_talented_employers".* FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."id" = 2 ORDER BY "acts_as_talented_employers"."id" ASC LIMIT 1
869
+ ActsAsTalented::Employer Load (0.7ms) SELECT "acts_as_talented_employers".* FROM "acts_as_talented_employers"
870
+ Completed 200 OK in 71ms (Views: 0.1ms | ActiveRecord: 6.9ms)
871
+  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1
872
+  (0.2ms) ROLLBACK
873
+  (0.1ms) BEGIN
874
+  (0.2ms) SAVEPOINT active_record_1
875
+  (0.1ms) RELEASE SAVEPOINT active_record_1
876
+  (0.2ms) SAVEPOINT active_record_1
877
+  (0.2ms) SAVEPOINT active_record_2
878
+ ActsAsTalented::Employer Exists (0.5ms) SELECT 1 AS one FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."email" = 'user-mail-3@example.com' LIMIT 1
879
+ SQL (0.4ms) INSERT INTO "acts_as_talented_employers" ("created_at", "email", "encrypted_password", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-10-28 07:00:33.600578"], ["email", "user-mail-3@example.com"], ["encrypted_password", "$2a$04$ADK.qk1ubkAKfSWW9X5axuySKs83qrEjexpVJrPrbyh1SQlPRr2Qq"], ["updated_at", "2014-10-28 07:00:33.600578"]]
880
+  (0.2ms) RELEASE SAVEPOINT active_record_2
881
+  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1
882
+  (0.3ms) ROLLBACK
883
+  (0.1ms) BEGIN
884
+  (0.1ms) SAVEPOINT active_record_1
885
+  (0.1ms) RELEASE SAVEPOINT active_record_1
886
+  (0.1ms) SAVEPOINT active_record_1
887
+  (0.2ms) SAVEPOINT active_record_2
888
+ ActsAsTalented::Employer Exists (0.8ms) SELECT 1 AS one FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."email" = 'user-mail-4@example.com' LIMIT 1
889
+ SQL (0.5ms) INSERT INTO "acts_as_talented_employers" ("created_at", "email", "encrypted_password", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-10-28 07:00:33.623888"], ["email", "user-mail-4@example.com"], ["encrypted_password", "$2a$04$xF./hBBHWfvQzLWvu.jH4.60VsjGzqIMcr/SeitZW48x1/GILSaR6"], ["updated_at", "2014-10-28 07:00:33.623888"]]
890
+  (0.3ms) RELEASE SAVEPOINT active_record_2
891
+ Started GET "/acts_as_talented/employers/sign_in" for 127.0.0.1 at 2014-10-28 12:30:33 +0530
892
+ Processing by Devise::SessionsController#new as HTML
893
+ Rendered /Users/chandradhar/WebProjects/Rails/acts_as_talented/app/views/devise/shared/_links.erb (1.6ms)
894
+ Rendered /Users/chandradhar/WebProjects/Rails/acts_as_talented/app/views/partials/_navbar_admin.html.erb (0.6ms)
895
+ Completed 200 OK in 1691ms (Views: 1670.9ms | ActiveRecord: 0.0ms)
896
+ Started POST "/acts_as_talented/employers/sign_in" for 127.0.0.1 at 2014-10-28 12:30:35 +0530
897
+ Processing by Devise::SessionsController#create as HTML
898
+ Parameters: {"utf8"=>"✓", "employer"=>{"email"=>"user-mail-4@example.com", "password"=>"[FILTERED]", "remember_me"=>"0"}}
899
+ ActsAsTalented::Employer Load (17.4ms) SELECT "acts_as_talented_employers".* FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."email" = 'user-mail-4@example.com' ORDER BY "acts_as_talented_employers"."id" ASC LIMIT 1
900
+ Completed 401 Unauthorized in 25ms
901
+ Processing by Devise::SessionsController#new as HTML
902
+ Parameters: {"utf8"=>"✓", "employer"=>{"email"=>"user-mail-4@example.com", "password"=>"[FILTERED]", "remember_me"=>"0"}}
903
+ WARNING: Can't mass-assign protected attributes for ActsAsTalented::Employer: email, password, remember_me
904
+ protected_attributes (1.0.7) lib/active_model/mass_assignment_security/sanitizer.rb:47:in `block in process_removed_attributes'
905
+ /usr/local/rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/logger.rb:372:in `add'
906
+ /usr/local/rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/logger.rb:443:in `warn'
907
+ protected_attributes (1.0.7) lib/active_model/mass_assignment_security/sanitizer.rb:45:in `process_removed_attributes'
908
+ protected_attributes (1.0.7) lib/active_model/mass_assignment_security/sanitizer.rb:10:in `sanitize'
909
+ protected_attributes (1.0.7) lib/active_model/mass_assignment_security.rb:346:in `sanitize_for_mass_assignment'
910
+ protected_attributes (1.0.7) lib/active_record/mass_assignment_security/attribute_assignment.rb:58:in `assign_attributes'
911
+ protected_attributes (1.0.7) lib/active_record/mass_assignment_security/core.rb:8:in `init_attributes'
912
+ activerecord (4.1.6) lib/active_record/core.rb:198:in `initialize'
913
+ activerecord (4.1.6) lib/active_record/inheritance.rb:30:in `new'
914
+ activerecord (4.1.6) lib/active_record/inheritance.rb:30:in `new'
915
+ devise (3.4.0) app/controllers/devise/sessions_controller.rb:9:in `new'
916
+ actionpack (4.1.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
917
+ actionpack (4.1.6) lib/abstract_controller/base.rb:189:in `process_action'
918
+ actionpack (4.1.6) lib/action_controller/metal/rendering.rb:10:in `process_action'
919
+ actionpack (4.1.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
920
+ activesupport (4.1.6) lib/active_support/callbacks.rb:113:in `call'
921
+ activesupport (4.1.6) lib/active_support/callbacks.rb:113:in `call'
922
+ activesupport (4.1.6) lib/active_support/callbacks.rb:166:in `block in halting'
923
+ activesupport (4.1.6) lib/active_support/callbacks.rb:149:in `call'
924
+ activesupport (4.1.6) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
925
+ activesupport (4.1.6) lib/active_support/callbacks.rb:149:in `call'
926
+ activesupport (4.1.6) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
927
+ activesupport (4.1.6) lib/active_support/callbacks.rb:149:in `call'
928
+ activesupport (4.1.6) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
929
+ activesupport (4.1.6) lib/active_support/callbacks.rb:149:in `call'
930
+ activesupport (4.1.6) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
931
+ activesupport (4.1.6) lib/active_support/callbacks.rb:86:in `call'
932
+ activesupport (4.1.6) lib/active_support/callbacks.rb:86:in `run_callbacks'
933
+ actionpack (4.1.6) lib/abstract_controller/callbacks.rb:19:in `process_action'
934
+ actionpack (4.1.6) lib/action_controller/metal/rescue.rb:29:in `process_action'
935
+ actionpack (4.1.6) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
936
+ activesupport (4.1.6) lib/active_support/notifications.rb:159:in `block in instrument'
937
+ activesupport (4.1.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
938
+ activesupport (4.1.6) lib/active_support/notifications.rb:159:in `instrument'
939
+ actionpack (4.1.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
940
+ actionpack (4.1.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
941
+ activerecord (4.1.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
942
+ actionpack (4.1.6) lib/abstract_controller/base.rb:136:in `process'
943
+ actionview (4.1.6) lib/action_view/rendering.rb:30:in `process'
944
+ actionpack (4.1.6) lib/action_controller/metal.rb:196:in `dispatch'
945
+ actionpack (4.1.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
946
+ actionpack (4.1.6) lib/action_controller/metal.rb:232:in `block in action'
947
+ devise (3.4.0) lib/devise/failure_app.rb:53:in `call'
948
+ devise (3.4.0) lib/devise/failure_app.rb:53:in `recall'
949
+ devise (3.4.0) lib/devise/failure_app.rb:37:in `respond'
950
+ actionpack (4.1.6) lib/abstract_controller/base.rb:189:in `process_action'
951
+ actionpack (4.1.6) lib/abstract_controller/base.rb:136:in `process'
952
+ actionpack (4.1.6) lib/action_controller/metal.rb:196:in `dispatch'
953
+ actionpack (4.1.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
954
+ actionpack (4.1.6) lib/action_controller/metal.rb:232:in `block in action'
955
+ devise (3.4.0) lib/devise/failure_app.rb:22:in `call'
956
+ devise (3.4.0) lib/devise/failure_app.rb:22:in `call'
957
+ devise (3.4.0) lib/devise/delegator.rb:5:in `call'
958
+ warden (1.2.3) lib/warden/manager.rb:130:in `call_failure_app'
959
+ warden (1.2.3) lib/warden/manager.rb:116:in `process_unauthenticated'
960
+ warden (1.2.3) lib/warden/manager.rb:47:in `call'
961
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
962
+ rack (1.5.2) lib/rack/conditionalget.rb:35:in `call'
963
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
964
+ actionpack (4.1.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
965
+ actionpack (4.1.6) lib/action_dispatch/middleware/flash.rb:254:in `call'
966
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
967
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
968
+ actionpack (4.1.6) lib/action_dispatch/middleware/cookies.rb:560:in `call'
969
+ activerecord (4.1.6) lib/active_record/query_cache.rb:36:in `call'
970
+ activerecord (4.1.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
971
+ actionpack (4.1.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
972
+ activesupport (4.1.6) lib/active_support/callbacks.rb:82:in `run_callbacks'
973
+ actionpack (4.1.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
974
+ actionpack (4.1.6) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
975
+ actionpack (4.1.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
976
+ actionpack (4.1.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
977
+ railties (4.1.6) lib/rails/rack/logger.rb:38:in `call_app'
978
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `block in call'
979
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `block in tagged'
980
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:26:in `tagged'
981
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `tagged'
982
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `call'
983
+ actionpack (4.1.6) lib/action_dispatch/middleware/request_id.rb:21:in `call'
984
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
985
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
986
+ activesupport (4.1.6) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
987
+ actionpack (4.1.6) lib/action_dispatch/middleware/static.rb:64:in `call'
988
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
989
+ railties (4.1.6) lib/rails/engine.rb:514:in `call'
990
+ railties (4.1.6) lib/rails/application.rb:144:in `call'
991
+ rack (1.5.2) lib/rack/builder.rb:138:in `call'
992
+ rack (1.5.2) lib/rack/urlmap.rb:65:in `block in call'
993
+ rack (1.5.2) lib/rack/urlmap.rb:50:in `each'
994
+ rack (1.5.2) lib/rack/urlmap.rb:50:in `call'
995
+ rack-test (0.6.2) lib/rack/mock_session.rb:30:in `request'
996
+ rack-test (0.6.2) lib/rack/test.rb:230:in `process_request'
997
+ rack-test (0.6.2) lib/rack/test.rb:66:in `post'
998
+ /usr/local/rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/forwardable.rb:183:in `post'
999
+ capybara (2.2.1) lib/capybara/rack_test/browser.rb:60:in `process'
1000
+ capybara (2.2.1) lib/capybara/rack_test/browser.rb:35:in `process_and_follow_redirects'
1001
+ capybara (2.2.1) lib/capybara/rack_test/browser.rb:26:in `submit'
1002
+ capybara (2.2.1) lib/capybara/rack_test/driver.rb:46:in `submit'
1003
+ capybara (2.2.1) lib/capybara/rack_test/form.rb:74:in `submit'
1004
+ /Users/chandradhar/WebProjects/Rails/acts_as_talented/spec/support/acceptance_helpers.rb:30:in `submit!'
1005
+ /Users/chandradhar/WebProjects/Rails/acts_as_talented/spec/support/acceptance_helpers.rb:33:in `submit_form'
1006
+ /Users/chandradhar/WebProjects/Rails/acts_as_talented/spec/support/acceptance_helpers.rb:52:in `web_sign_in_with_email_and_password'
1007
+ /Users/chandradhar/WebProjects/Rails/acts_as_talented/spec/support/acceptance_helpers.rb:11:in `web_sign_in'
1008
+ /Users/chandradhar/WebProjects/Rails/acts_as_talented/spec/features/sign_in_spec.rb:8:in `block (2 levels) in <top (required)>'
1009
+ rspec-core (2.99.0) lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_exec'
1010
+ rspec-core (2.99.0) lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_eval_with_args'
1011
+ rspec-core (2.99.0) lib/rspec/core/example.rb:116:in `block in run'
1012
+ rspec-core (2.99.0) lib/rspec/core/example.rb:183:in `call'
1013
+ rspec-core (2.99.0) lib/rspec/core/example.rb:183:in `run'
1014
+ rspec-rails (2.99.0) lib/rspec/rails/adapters.rb:69:in `block (2 levels) in <module:MinitestLifecycleAdapter>'
1015
+ rspec-core (2.99.0) lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_exec'
1016
+ rspec-core (2.99.0) lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_eval_with_args'
1017
+ rspec-core (2.99.0) lib/rspec/core/example.rb:246:in `instance_eval_with_args'
1018
+ rspec-core (2.99.0) lib/rspec/core/hooks.rb:106:in `block (2 levels) in run'
1019
+ rspec-core (2.99.0) lib/rspec/core/hooks.rb:108:in `call'
1020
+ rspec-core (2.99.0) lib/rspec/core/hooks.rb:108:in `run'
1021
+ rspec-core (2.99.0) lib/rspec/core/hooks.rb:446:in `run_hook'
1022
+ rspec-core (2.99.0) lib/rspec/core/example_group.rb:462:in `run_around_each_hooks'
1023
+ rspec-core (2.99.0) lib/rspec/core/example.rb:255:in `with_around_each_hooks'
1024
+ rspec-core (2.99.0) lib/rspec/core/example.rb:113:in `run'
1025
+ rspec-core (2.99.0) lib/rspec/core/example_group.rb:514:in `block in run_examples'
1026
+ rspec-core (2.99.0) lib/rspec/core/example_group.rb:510:in `map'
1027
+ rspec-core (2.99.0) lib/rspec/core/example_group.rb:510:in `run_examples'
1028
+ rspec-core (2.99.0) lib/rspec/core/example_group.rb:495:in `run'
1029
+ rspec-core (2.99.0) lib/rspec/core/command_line.rb:24:in `block (2 levels) in run'
1030
+ rspec-core (2.99.0) lib/rspec/core/command_line.rb:24:in `map'
1031
+ rspec-core (2.99.0) lib/rspec/core/command_line.rb:24:in `block in run'
1032
+ rspec-core (2.99.0) lib/rspec/core/reporter.rb:58:in `report'
1033
+ rspec-core (2.99.0) lib/rspec/core/command_line.rb:21:in `run'
1034
+ rspec-core (2.99.0) lib/rspec/core/runner.rb:89:in `run'
1035
+ rspec-core (2.99.0) lib/rspec/core/runner.rb:17:in `block in autorun'
1036
+ Rendered /Users/chandradhar/WebProjects/Rails/acts_as_talented/app/views/devise/shared/_links.erb (0.2ms)
1037
+ Rendered /Users/chandradhar/WebProjects/Rails/acts_as_talented/app/views/partials/_navbar_admin.html.erb (0.0ms)
1038
+ Completed 200 OK in 7ms (Views: 4.5ms | ActiveRecord: 0.0ms)
1039
+  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1
1040
+  (0.3ms) ROLLBACK
1041
+  (0.1ms) BEGIN
1042
+  (0.2ms) SAVEPOINT active_record_1
1043
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1044
+  (0.1ms) SAVEPOINT active_record_1
1045
+  (0.2ms) SAVEPOINT active_record_2
1046
+ ActsAsTalented::Employer Exists (0.5ms) SELECT 1 AS one FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."email" = 'user-mail-5@example.com' LIMIT 1
1047
+ SQL (0.4ms) INSERT INTO "acts_as_talented_employers" ("created_at", "email", "encrypted_password", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-10-28 07:00:35.394471"], ["email", "user-mail-5@example.com"], ["encrypted_password", "$2a$04$UMX4Za8KkjWUf9IO/caPAOrC1T8G6SsDgQO53nsCbAOoVgPuht.j2"], ["updated_at", "2014-10-28 07:00:35.394471"]]
1048
+  (0.2ms) RELEASE SAVEPOINT active_record_2
1049
+ Processing by ActsAsTalented::DashboardController#index as HTML
1050
+ ActsAsTalented::Employer Load (0.8ms) SELECT "acts_as_talented_employers".* FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."id" = 5 ORDER BY "acts_as_talented_employers"."id" ASC LIMIT 1
1051
+ Completed 200 OK in 6ms (Views: 4.5ms | ActiveRecord: 0.8ms)
1052
+  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1
1053
+  (0.2ms) ROLLBACK
1054
+  (0.8ms) ALTER TABLE "acts_as_talented_employers" DISABLE TRIGGER ALL;ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL
1055
+  (2.9ms) select table_name from information_schema.views where table_schema = 'acts_as_talented_test'
1056
+  (10.5ms) TRUNCATE TABLE "acts_as_talented_employers" RESTART IDENTITY CASCADE;
1057
+  (0.4ms) ALTER TABLE "acts_as_talented_employers" ENABLE TRIGGER ALL;ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL
1058
+  (0.2ms) BEGIN
1059
+  (0.2ms) SAVEPOINT active_record_1
1060
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1061
+  (0.2ms) SAVEPOINT active_record_1
1062
+  (0.4ms) SAVEPOINT active_record_2
1063
+ ActsAsTalented::Employer Exists (1.1ms) SELECT 1 AS one FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."email" = 'user-mail-1@example.com' LIMIT 1
1064
+ SQL (2.9ms) INSERT INTO "acts_as_talented_employers" ("created_at", "email", "encrypted_password", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-10-28 07:05:41.971082"], ["email", "user-mail-1@example.com"], ["encrypted_password", "$2a$04$YFSaCbzdgpbcviT2Fe06f.Ei6neDBSVrlXBcnoHLM5GioMGC5CW3i"], ["updated_at", "2014-10-28 07:05:41.971082"]]
1065
+  (0.2ms) RELEASE SAVEPOINT active_record_2
1066
+ Processing by ActsAsTalented::Api::V1::EmployersController#update as HTML
1067
+ Parameters: {"employer"=>{"name"=>"Test Man"}, "id"=>"1"}
1068
+ ActsAsTalented::Employer Load (1.2ms) SELECT "acts_as_talented_employers".* FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."id" = 1 ORDER BY "acts_as_talented_employers"."id" ASC LIMIT 1
1069
+ ActsAsTalented::Employer Load (0.5ms) SELECT "acts_as_talented_employers".* FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."id" = $1 LIMIT 1 [["id", 1]]
1070
+  (0.2ms) SAVEPOINT active_record_2
1071
+ SQL (0.5ms) UPDATE "acts_as_talented_employers" SET "name" = $1, "updated_at" = $2 WHERE "acts_as_talented_employers"."id" = 1 [["name", "Test Man"], ["updated_at", "2014-10-28 07:05:42.007576"]]
1072
+  (0.2ms) RELEASE SAVEPOINT active_record_2
1073
+ Completed 200 OK in 25ms (Views: 0.3ms | ActiveRecord: 2.6ms)
1074
+  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1
1075
+  (0.2ms) ROLLBACK
1076
+  (0.1ms) BEGIN
1077
+  (0.2ms) SAVEPOINT active_record_1
1078
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1079
+  (0.1ms) SAVEPOINT active_record_1
1080
+  (0.3ms) SAVEPOINT active_record_2
1081
+ ActsAsTalented::Employer Exists (0.7ms) SELECT 1 AS one FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."email" = 'user-mail-2@example.com' LIMIT 1
1082
+ SQL (0.4ms) INSERT INTO "acts_as_talented_employers" ("created_at", "email", "encrypted_password", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-10-28 07:05:42.019171"], ["email", "user-mail-2@example.com"], ["encrypted_password", "$2a$04$mnnnF7LLdUZoqg3ojkPxvueb.MYaExOgeuiZ.xprjF0YWLnf/1J/m"], ["updated_at", "2014-10-28 07:05:42.019171"]]
1083
+  (0.2ms) RELEASE SAVEPOINT active_record_2
1084
+ Processing by ActsAsTalented::Api::V1::EmployersController#index as JSON
1085
+ ActsAsTalented::Employer Load (0.6ms) SELECT "acts_as_talented_employers".* FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."id" = 2 ORDER BY "acts_as_talented_employers"."id" ASC LIMIT 1
1086
+ ActsAsTalented::Employer Load (0.4ms) SELECT "acts_as_talented_employers".* FROM "acts_as_talented_employers"
1087
+ Completed 200 OK in 17ms (Views: 0.1ms | ActiveRecord: 1.0ms)
1088
+  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1
1089
+  (0.2ms) ROLLBACK
1090
+  (0.1ms) BEGIN
1091
+  (0.2ms) SAVEPOINT active_record_1
1092
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1093
+  (0.1ms) SAVEPOINT active_record_1
1094
+ Processing by ActsAsTalented::Api::V1::EmployersController#index as HTML
1095
+ Filter chain halted as :allow_cors rendered or redirected
1096
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
1097
+  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1
1098
+  (0.3ms) ROLLBACK
1099
+  (0.2ms) BEGIN
1100
+  (1.8ms) SAVEPOINT active_record_1
1101
+  (0.3ms) RELEASE SAVEPOINT active_record_1
1102
+  (0.2ms) SAVEPOINT active_record_1
1103
+ Processing by ActsAsTalented::Api::V1::EmployersController#index as HTML
1104
+ Filter chain halted as :allow_cors rendered or redirected
1105
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
1106
+  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1
1107
+  (0.2ms) ROLLBACK
1108
+  (0.1ms) BEGIN
1109
+  (0.2ms) SAVEPOINT active_record_1
1110
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1111
+  (0.1ms) SAVEPOINT active_record_1
1112
+ Processing by ActsAsTalented::Api::V1::EmployersController#index as HTML
1113
+ Filter chain halted as :allow_cors rendered or redirected
1114
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
1115
+  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1
1116
+  (0.3ms) ROLLBACK
1117
+  (0.7ms) ALTER TABLE "acts_as_talented_employers" DISABLE TRIGGER ALL;ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL
1118
+  (2.9ms) select table_name from information_schema.views where table_schema = 'acts_as_talented_test'
1119
+  (8.8ms) TRUNCATE TABLE "acts_as_talented_employers" RESTART IDENTITY CASCADE;
1120
+  (0.4ms) ALTER TABLE "acts_as_talented_employers" ENABLE TRIGGER ALL;ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL
1121
+  (0.2ms) BEGIN
1122
+  (0.2ms) SAVEPOINT active_record_1
1123
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1124
+  (0.1ms) SAVEPOINT active_record_1
1125
+ Processing by ActsAsTalented::Api::V1::EmployersController#index as HTML
1126
+ Filter chain halted as :allow_cors rendered or redirected
1127
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
1128
+  (0.5ms) ROLLBACK TO SAVEPOINT active_record_1
1129
+  (0.3ms) ROLLBACK
1130
+  (0.2ms) BEGIN
1131
+  (0.2ms) SAVEPOINT active_record_1
1132
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1133
+  (0.1ms) SAVEPOINT active_record_1
1134
+ Processing by ActsAsTalented::Api::V1::EmployersController#index as HTML
1135
+ Filter chain halted as :allow_cors rendered or redirected
1136
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
1137
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
1138
+  (0.1ms) ROLLBACK
1139
+  (0.1ms) BEGIN
1140
+  (0.1ms) SAVEPOINT active_record_1
1141
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1142
+  (0.1ms) SAVEPOINT active_record_1
1143
+ Processing by ActsAsTalented::Api::V1::EmployersController#index as HTML
1144
+ Filter chain halted as :allow_cors rendered or redirected
1145
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
1146
+  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1
1147
+  (0.2ms) ROLLBACK
1148
+  (0.1ms) BEGIN
1149
+  (0.2ms) SAVEPOINT active_record_1
1150
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1151
+  (0.1ms) SAVEPOINT active_record_1
1152
+  (0.5ms) SAVEPOINT active_record_2
1153
+ ActsAsTalented::Employer Exists (2.0ms) SELECT 1 AS one FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."email" = 'user-mail-1@example.com' LIMIT 1
1154
+ SQL (2.7ms) INSERT INTO "acts_as_talented_employers" ("created_at", "email", "encrypted_password", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-10-28 07:06:00.994420"], ["email", "user-mail-1@example.com"], ["encrypted_password", "$2a$04$Wn1o0Uhd6lgdNoVdOdImwOCfXyBMAu5w9QBRa.ClvBPwqrKVH.5ti"], ["updated_at", "2014-10-28 07:06:00.994420"]]
1155
+  (0.2ms) RELEASE SAVEPOINT active_record_2
1156
+ Processing by ActsAsTalented::Api::V1::EmployersController#index as JSON
1157
+ ActsAsTalented::Employer Load (1.3ms) SELECT "acts_as_talented_employers".* FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."id" = 1 ORDER BY "acts_as_talented_employers"."id" ASC LIMIT 1
1158
+ ActsAsTalented::Employer Load (0.6ms) SELECT "acts_as_talented_employers".* FROM "acts_as_talented_employers"
1159
+ Completed 200 OK in 43ms (Views: 0.2ms | ActiveRecord: 1.9ms)
1160
+  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1
1161
+  (0.2ms) ROLLBACK
1162
+  (0.1ms) BEGIN
1163
+  (0.1ms) SAVEPOINT active_record_1
1164
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1165
+  (0.1ms) SAVEPOINT active_record_1
1166
+  (0.2ms) SAVEPOINT active_record_2
1167
+ ActsAsTalented::Employer Exists (0.7ms) SELECT 1 AS one FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."email" = 'user-mail-2@example.com' LIMIT 1
1168
+ SQL (0.4ms) INSERT INTO "acts_as_talented_employers" ("created_at", "email", "encrypted_password", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-10-28 07:06:01.060452"], ["email", "user-mail-2@example.com"], ["encrypted_password", "$2a$04$OD0efjWkpH/0c9UOjm9yB.8hLkKy5npVV.TWFk4B0ViHnAyQsLske"], ["updated_at", "2014-10-28 07:06:01.060452"]]
1169
+  (0.2ms) RELEASE SAVEPOINT active_record_2
1170
+ Processing by ActsAsTalented::Api::V1::EmployersController#update as HTML
1171
+ Parameters: {"employer"=>{"name"=>"Test Man"}, "id"=>"2"}
1172
+ ActsAsTalented::Employer Load (0.7ms) SELECT "acts_as_talented_employers".* FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."id" = 2 ORDER BY "acts_as_talented_employers"."id" ASC LIMIT 1
1173
+ ActsAsTalented::Employer Load (0.5ms) SELECT "acts_as_talented_employers".* FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."id" = $1 LIMIT 1 [["id", 2]]
1174
+  (0.2ms) SAVEPOINT active_record_2
1175
+ SQL (0.6ms) UPDATE "acts_as_talented_employers" SET "name" = $1, "updated_at" = $2 WHERE "acts_as_talented_employers"."id" = 2 [["name", "Test Man"], ["updated_at", "2014-10-28 07:06:01.067618"]]
1176
+  (0.2ms) RELEASE SAVEPOINT active_record_2
1177
+ Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 2.1ms)
1178
+ ActsAsTalented::Employer Load (0.6ms) SELECT "acts_as_talented_employers".* FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."id" = $1 LIMIT 1 [["id", 2]]
1179
+  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1
1180
+  (0.3ms) ROLLBACK
1181
+  (0.7ms) ALTER TABLE "acts_as_talented_employers" DISABLE TRIGGER ALL;ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL
1182
+  (3.0ms) select table_name from information_schema.views where table_schema = 'acts_as_talented_test'
1183
+  (7.7ms) TRUNCATE TABLE "acts_as_talented_employers" RESTART IDENTITY CASCADE;
1184
+  (0.4ms) ALTER TABLE "acts_as_talented_employers" ENABLE TRIGGER ALL;ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL
1185
+  (0.3ms) BEGIN
1186
+  (0.2ms) SAVEPOINT active_record_1
1187
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1188
+  (0.1ms) SAVEPOINT active_record_1
1189
+ Processing by ActsAsTalented::Api::V1::EmployersController#index as HTML
1190
+ Filter chain halted as :allow_cors rendered or redirected
1191
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
1192
+  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1
1193
+  (0.2ms) ROLLBACK
1194
+  (0.1ms) BEGIN
1195
+  (0.2ms) SAVEPOINT active_record_1
1196
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1197
+  (0.1ms) SAVEPOINT active_record_1
1198
+ Processing by ActsAsTalented::Api::V1::EmployersController#index as HTML
1199
+ Filter chain halted as :allow_cors rendered or redirected
1200
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
1201
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
1202
+  (0.1ms) ROLLBACK
1203
+  (0.1ms) BEGIN
1204
+  (0.1ms) SAVEPOINT active_record_1
1205
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1206
+  (0.1ms) SAVEPOINT active_record_1
1207
+ Processing by ActsAsTalented::Api::V1::EmployersController#index as HTML
1208
+ Filter chain halted as :allow_cors rendered or redirected
1209
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
1210
+  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1
1211
+  (0.2ms) ROLLBACK
1212
+  (0.1ms) BEGIN
1213
+  (0.2ms) SAVEPOINT active_record_1
1214
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1215
+  (0.1ms) SAVEPOINT active_record_1
1216
+  (0.4ms) SAVEPOINT active_record_2
1217
+ ActsAsTalented::Employer Exists (2.0ms) SELECT 1 AS one FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."email" = 'user-mail-1@example.com' LIMIT 1
1218
+ SQL (3.0ms) INSERT INTO "acts_as_talented_employers" ("created_at", "email", "encrypted_password", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-10-28 07:06:31.264552"], ["email", "user-mail-1@example.com"], ["encrypted_password", "$2a$04$yOhr8t3V/Dh42of.2VUCj.tmNh8DSLyoPpJpLxE7Mb07vA3Whn8I2"], ["updated_at", "2014-10-28 07:06:31.264552"]]
1219
+  (0.2ms) RELEASE SAVEPOINT active_record_2
1220
+ Processing by ActsAsTalented::Api::V1::EmployersController#index as JSON
1221
+ ActsAsTalented::Employer Load (1.2ms) SELECT "acts_as_talented_employers".* FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."id" = 1 ORDER BY "acts_as_talented_employers"."id" ASC LIMIT 1
1222
+ ActsAsTalented::Employer Load (0.6ms) SELECT "acts_as_talented_employers".* FROM "acts_as_talented_employers"
1223
+ Completed 200 OK in 34ms (Views: 0.1ms | ActiveRecord: 1.8ms)
1224
+  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1
1225
+  (0.2ms) ROLLBACK
1226
+  (0.1ms) BEGIN
1227
+  (0.1ms) SAVEPOINT active_record_1
1228
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1229
+  (0.1ms) SAVEPOINT active_record_1
1230
+  (0.2ms) SAVEPOINT active_record_2
1231
+ ActsAsTalented::Employer Exists (0.7ms) SELECT 1 AS one FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."email" = 'user-mail-2@example.com' LIMIT 1
1232
+ SQL (0.4ms) INSERT INTO "acts_as_talented_employers" ("created_at", "email", "encrypted_password", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-10-28 07:06:31.320674"], ["email", "user-mail-2@example.com"], ["encrypted_password", "$2a$04$1YqGYFbFpCFTJBCYUICiCehGyTVo0d9GsxSSGaXMOb7LfbtIMHN2a"], ["updated_at", "2014-10-28 07:06:31.320674"]]
1233
+  (0.2ms) RELEASE SAVEPOINT active_record_2
1234
+ Processing by ActsAsTalented::Api::V1::EmployersController#update as HTML
1235
+ Parameters: {"employer"=>{"name"=>"Test Man"}, "id"=>"2"}
1236
+ ActsAsTalented::Employer Load (0.6ms) SELECT "acts_as_talented_employers".* FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."id" = 2 ORDER BY "acts_as_talented_employers"."id" ASC LIMIT 1
1237
+ ActsAsTalented::Employer Load (0.4ms) SELECT "acts_as_talented_employers".* FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."id" = $1 LIMIT 1 [["id", 2]]
1238
+  (0.2ms) SAVEPOINT active_record_2
1239
+ SQL (0.5ms) UPDATE "acts_as_talented_employers" SET "name" = $1, "updated_at" = $2 WHERE "acts_as_talented_employers"."id" = 2 [["name", "Test Man"], ["updated_at", "2014-10-28 07:06:31.327176"]]
1240
+  (0.2ms) RELEASE SAVEPOINT active_record_2
1241
+ Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 2.0ms)
1242
+ ActsAsTalented::Employer Load (0.5ms) SELECT "acts_as_talented_employers".* FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."id" = $1 LIMIT 1 [["id", 2]]
1243
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
1244
+  (0.2ms) ROLLBACK
1245
+  (1.3ms) ALTER TABLE "acts_as_talented_employers" DISABLE TRIGGER ALL;ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL
1246
+  (36.2ms) select table_name from information_schema.views where table_schema = 'acts_as_talented_test'
1247
+  (8.5ms) TRUNCATE TABLE "acts_as_talented_employers" RESTART IDENTITY CASCADE;
1248
+  (0.4ms) ALTER TABLE "acts_as_talented_employers" ENABLE TRIGGER ALL;ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL
1249
+  (0.2ms) BEGIN
1250
+  (0.2ms) SAVEPOINT active_record_1
1251
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1252
+  (0.2ms) SAVEPOINT active_record_1
1253
+  (0.4ms) SAVEPOINT active_record_2
1254
+ ActsAsTalented::Employer Exists (1.1ms) SELECT 1 AS one FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."email" = 'user-mail-1@example.com' LIMIT 1
1255
+ SQL (14.7ms) INSERT INTO "acts_as_talented_employers" ("created_at", "email", "encrypted_password", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-10-28 07:07:05.934770"], ["email", "user-mail-1@example.com"], ["encrypted_password", "$2a$04$3U1usIftVZdAxyQhuOEe2uXo8VlrmVeWTOkZXzSNJN9xzxhqx/oB."], ["updated_at", "2014-10-28 07:07:05.934770"]]
1256
+  (0.4ms) RELEASE SAVEPOINT active_record_2
1257
+  (0.5ms) ROLLBACK TO SAVEPOINT active_record_1
1258
+  (0.3ms) ROLLBACK
1259
+  (0.2ms) BEGIN
1260
+  (0.2ms) SAVEPOINT active_record_1
1261
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1262
+  (0.1ms) SAVEPOINT active_record_1
1263
+  (0.2ms) SAVEPOINT active_record_2
1264
+ ActsAsTalented::Employer Exists (0.7ms) SELECT 1 AS one FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."email" = 'user-mail-2@example.com' LIMIT 1
1265
+ SQL (0.5ms) INSERT INTO "acts_as_talented_employers" ("created_at", "email", "encrypted_password", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-10-28 07:07:05.966552"], ["email", "user-mail-2@example.com"], ["encrypted_password", "$2a$04$oqp3Xm2IHcp5.63ON1ICOeianab97zFPiCpsQZioHzLMtz1aB3Ptm"], ["updated_at", "2014-10-28 07:07:05.966552"]]
1266
+  (0.2ms) RELEASE SAVEPOINT active_record_2
1267
+ Processing by ActsAsTalented::DashboardController#index as HTML
1268
+ ActsAsTalented::Employer Load (1.0ms) SELECT "acts_as_talented_employers".* FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."id" = 2 ORDER BY "acts_as_talented_employers"."id" ASC LIMIT 1
1269
+ Rendered /Users/chandradhar/WebProjects/Rails/acts_as_talented/app/views/acts_as_talented/dashboard/index.html.erb within layouts/acts_as_talented/application (0.4ms)
1270
+ Completed 200 OK in 60ms (Views: 20.2ms | ActiveRecord: 1.0ms)
1271
+  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1
1272
+  (0.2ms) ROLLBACK
1273
+  (0.1ms) BEGIN
1274
+  (0.2ms) SAVEPOINT active_record_1
1275
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1276
+  (0.1ms) SAVEPOINT active_record_1
1277
+ Processing by ActsAsTalented::Api::V1::EmployersController#index as HTML
1278
+ Filter chain halted as :allow_cors rendered or redirected
1279
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
1280
+  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1
1281
+  (0.2ms) ROLLBACK
1282
+  (0.1ms) BEGIN
1283
+  (0.2ms) SAVEPOINT active_record_1
1284
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1285
+  (0.1ms) SAVEPOINT active_record_1
1286
+ Processing by ActsAsTalented::Api::V1::EmployersController#index as HTML
1287
+ Filter chain halted as :allow_cors rendered or redirected
1288
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
1289
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
1290
+  (0.2ms) ROLLBACK
1291
+  (0.1ms) BEGIN
1292
+  (0.1ms) SAVEPOINT active_record_1
1293
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1294
+  (0.1ms) SAVEPOINT active_record_1
1295
+ Processing by ActsAsTalented::Api::V1::EmployersController#index as HTML
1296
+ Filter chain halted as :allow_cors rendered or redirected
1297
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
1298
+  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1
1299
+  (0.2ms) ROLLBACK
1300
+  (0.1ms) BEGIN
1301
+  (0.2ms) SAVEPOINT active_record_1
1302
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1303
+  (0.2ms) SAVEPOINT active_record_1
1304
+  (0.2ms) SAVEPOINT active_record_2
1305
+ ActsAsTalented::Employer Exists (0.5ms) SELECT 1 AS one FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."email" = 'user-mail-3@example.com' LIMIT 1
1306
+ SQL (0.4ms) INSERT INTO "acts_as_talented_employers" ("created_at", "email", "encrypted_password", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-10-28 07:07:06.057455"], ["email", "user-mail-3@example.com"], ["encrypted_password", "$2a$04$XFw8udhYodSzRsLjgV/UYuW0LP9f1x.ob4bwllRHASno7yvKpAhZi"], ["updated_at", "2014-10-28 07:07:06.057455"]]
1307
+  (0.2ms) RELEASE SAVEPOINT active_record_2
1308
+ Processing by ActsAsTalented::Api::V1::EmployersController#index as JSON
1309
+ ActsAsTalented::Employer Load (0.6ms) SELECT "acts_as_talented_employers".* FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."id" = 3 ORDER BY "acts_as_talented_employers"."id" ASC LIMIT 1
1310
+ ActsAsTalented::Employer Load (0.4ms) SELECT "acts_as_talented_employers".* FROM "acts_as_talented_employers"
1311
+ Completed 200 OK in 15ms (Views: 0.1ms | ActiveRecord: 1.0ms)
1312
+  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1
1313
+  (0.2ms) ROLLBACK
1314
+  (0.1ms) BEGIN
1315
+  (0.2ms) SAVEPOINT active_record_1
1316
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1317
+  (0.1ms) SAVEPOINT active_record_1
1318
+  (0.2ms) SAVEPOINT active_record_2
1319
+ ActsAsTalented::Employer Exists (0.5ms) SELECT 1 AS one FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."email" = 'user-mail-4@example.com' LIMIT 1
1320
+ SQL (0.5ms) INSERT INTO "acts_as_talented_employers" ("created_at", "email", "encrypted_password", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-10-28 07:07:06.084196"], ["email", "user-mail-4@example.com"], ["encrypted_password", "$2a$04$dvArbDZ6qZztDqOaPu/fteLdEJBECJnSNqiJ/ZU3aTupWtOsUB/Xe"], ["updated_at", "2014-10-28 07:07:06.084196"]]
1321
+  (0.2ms) RELEASE SAVEPOINT active_record_2
1322
+ Processing by ActsAsTalented::Api::V1::EmployersController#update as HTML
1323
+ Parameters: {"employer"=>{"name"=>"Test Man"}, "id"=>"4"}
1324
+ ActsAsTalented::Employer Load (0.6ms) SELECT "acts_as_talented_employers".* FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."id" = 4 ORDER BY "acts_as_talented_employers"."id" ASC LIMIT 1
1325
+ ActsAsTalented::Employer Load (0.4ms) SELECT "acts_as_talented_employers".* FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."id" = $1 LIMIT 1 [["id", 4]]
1326
+  (0.2ms) SAVEPOINT active_record_2
1327
+ SQL (0.5ms) UPDATE "acts_as_talented_employers" SET "name" = $1, "updated_at" = $2 WHERE "acts_as_talented_employers"."id" = 4 [["name", "Test Man"], ["updated_at", "2014-10-28 07:07:06.091032"]]
1328
+  (0.1ms) RELEASE SAVEPOINT active_record_2
1329
+ Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 1.9ms)
1330
+ ActsAsTalented::Employer Load (0.4ms) SELECT "acts_as_talented_employers".* FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."id" = $1 LIMIT 1 [["id", 4]]
1331
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
1332
+  (0.1ms) ROLLBACK
1333
+  (0.1ms) BEGIN
1334
+  (0.1ms) SAVEPOINT active_record_1
1335
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1336
+  (0.1ms) SAVEPOINT active_record_1
1337
+  (0.2ms) SAVEPOINT active_record_2
1338
+ ActsAsTalented::Employer Exists (0.6ms) SELECT 1 AS one FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."email" = 'user-mail-5@example.com' LIMIT 1
1339
+ SQL (0.5ms) INSERT INTO "acts_as_talented_employers" ("created_at", "email", "encrypted_password", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-10-28 07:07:06.101043"], ["email", "user-mail-5@example.com"], ["encrypted_password", "$2a$04$lKBHhN7Q9DeOtoErDBKXS.ZFD4o5Vo0x7k7ctYKSpFYU4Fajqsbay"], ["updated_at", "2014-10-28 07:07:06.101043"]]
1340
+  (0.2ms) RELEASE SAVEPOINT active_record_2
1341
+ Started GET "/acts_as_talented/employers/sign_in" for 127.0.0.1 at 2014-10-28 12:37:06 +0530
1342
+ Processing by Devise::SessionsController#new as HTML
1343
+ Rendered /Users/chandradhar/WebProjects/Rails/acts_as_talented/app/views/devise/shared/_links.erb (2.1ms)
1344
+ Rendered /Users/chandradhar/WebProjects/Rails/acts_as_talented/app/views/partials/_navbar_admin.html.erb (0.5ms)
1345
+ Completed 200 OK in 1156ms (Views: 1133.8ms | ActiveRecord: 0.0ms)
1346
+ Started POST "/acts_as_talented/employers/sign_in" for 127.0.0.1 at 2014-10-28 12:37:07 +0530
1347
+ Processing by Devise::SessionsController#create as HTML
1348
+ Parameters: {"utf8"=>"✓", "employer"=>{"email"=>"user-mail-5@example.com", "password"=>"[FILTERED]", "remember_me"=>"0"}}
1349
+ ActsAsTalented::Employer Load (1.2ms) SELECT "acts_as_talented_employers".* FROM "acts_as_talented_employers" WHERE "acts_as_talented_employers"."email" = 'user-mail-5@example.com' ORDER BY "acts_as_talented_employers"."id" ASC LIMIT 1
1350
+ Completed 401 Unauthorized in 9ms
1351
+ Processing by Devise::SessionsController#new as HTML
1352
+ Parameters: {"utf8"=>"✓", "employer"=>{"email"=>"user-mail-5@example.com", "password"=>"[FILTERED]", "remember_me"=>"0"}}
1353
+ WARNING: Can't mass-assign protected attributes for ActsAsTalented::Employer: email, password, remember_me
1354
+ protected_attributes (1.0.7) lib/active_model/mass_assignment_security/sanitizer.rb:47:in `block in process_removed_attributes'
1355
+ /usr/local/rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/logger.rb:372:in `add'
1356
+ /usr/local/rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/logger.rb:443:in `warn'
1357
+ protected_attributes (1.0.7) lib/active_model/mass_assignment_security/sanitizer.rb:45:in `process_removed_attributes'
1358
+ protected_attributes (1.0.7) lib/active_model/mass_assignment_security/sanitizer.rb:10:in `sanitize'
1359
+ protected_attributes (1.0.7) lib/active_model/mass_assignment_security.rb:346:in `sanitize_for_mass_assignment'
1360
+ protected_attributes (1.0.7) lib/active_record/mass_assignment_security/attribute_assignment.rb:58:in `assign_attributes'
1361
+ protected_attributes (1.0.7) lib/active_record/mass_assignment_security/core.rb:8:in `init_attributes'
1362
+ activerecord (4.1.6) lib/active_record/core.rb:198:in `initialize'
1363
+ activerecord (4.1.6) lib/active_record/inheritance.rb:30:in `new'
1364
+ activerecord (4.1.6) lib/active_record/inheritance.rb:30:in `new'
1365
+ devise (3.4.0) app/controllers/devise/sessions_controller.rb:9:in `new'
1366
+ actionpack (4.1.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
1367
+ actionpack (4.1.6) lib/abstract_controller/base.rb:189:in `process_action'
1368
+ actionpack (4.1.6) lib/action_controller/metal/rendering.rb:10:in `process_action'
1369
+ actionpack (4.1.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
1370
+ activesupport (4.1.6) lib/active_support/callbacks.rb:113:in `call'
1371
+ activesupport (4.1.6) lib/active_support/callbacks.rb:113:in `call'
1372
+ activesupport (4.1.6) lib/active_support/callbacks.rb:166:in `block in halting'
1373
+ activesupport (4.1.6) lib/active_support/callbacks.rb:149:in `call'
1374
+ activesupport (4.1.6) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
1375
+ activesupport (4.1.6) lib/active_support/callbacks.rb:149:in `call'
1376
+ activesupport (4.1.6) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
1377
+ activesupport (4.1.6) lib/active_support/callbacks.rb:149:in `call'
1378
+ activesupport (4.1.6) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
1379
+ activesupport (4.1.6) lib/active_support/callbacks.rb:149:in `call'
1380
+ activesupport (4.1.6) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
1381
+ activesupport (4.1.6) lib/active_support/callbacks.rb:86:in `call'
1382
+ activesupport (4.1.6) lib/active_support/callbacks.rb:86:in `run_callbacks'
1383
+ actionpack (4.1.6) lib/abstract_controller/callbacks.rb:19:in `process_action'
1384
+ actionpack (4.1.6) lib/action_controller/metal/rescue.rb:29:in `process_action'
1385
+ actionpack (4.1.6) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1386
+ activesupport (4.1.6) lib/active_support/notifications.rb:159:in `block in instrument'
1387
+ activesupport (4.1.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1388
+ activesupport (4.1.6) lib/active_support/notifications.rb:159:in `instrument'
1389
+ actionpack (4.1.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1390
+ actionpack (4.1.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
1391
+ activerecord (4.1.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1392
+ actionpack (4.1.6) lib/abstract_controller/base.rb:136:in `process'
1393
+ actionview (4.1.6) lib/action_view/rendering.rb:30:in `process'
1394
+ actionpack (4.1.6) lib/action_controller/metal.rb:196:in `dispatch'
1395
+ actionpack (4.1.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1396
+ actionpack (4.1.6) lib/action_controller/metal.rb:232:in `block in action'
1397
+ devise (3.4.0) lib/devise/failure_app.rb:53:in `call'
1398
+ devise (3.4.0) lib/devise/failure_app.rb:53:in `recall'
1399
+ devise (3.4.0) lib/devise/failure_app.rb:37:in `respond'
1400
+ actionpack (4.1.6) lib/abstract_controller/base.rb:189:in `process_action'
1401
+ actionpack (4.1.6) lib/abstract_controller/base.rb:136:in `process'
1402
+ actionpack (4.1.6) lib/action_controller/metal.rb:196:in `dispatch'
1403
+ actionpack (4.1.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1404
+ actionpack (4.1.6) lib/action_controller/metal.rb:232:in `block in action'
1405
+ devise (3.4.0) lib/devise/failure_app.rb:22:in `call'
1406
+ devise (3.4.0) lib/devise/failure_app.rb:22:in `call'
1407
+ devise (3.4.0) lib/devise/delegator.rb:5:in `call'
1408
+ warden (1.2.3) lib/warden/manager.rb:130:in `call_failure_app'
1409
+ warden (1.2.3) lib/warden/manager.rb:116:in `process_unauthenticated'
1410
+ warden (1.2.3) lib/warden/manager.rb:47:in `call'
1411
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1412
+ rack (1.5.2) lib/rack/conditionalget.rb:35:in `call'
1413
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1414
+ actionpack (4.1.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1415
+ actionpack (4.1.6) lib/action_dispatch/middleware/flash.rb:254:in `call'
1416
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1417
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1418
+ actionpack (4.1.6) lib/action_dispatch/middleware/cookies.rb:560:in `call'
1419
+ activerecord (4.1.6) lib/active_record/query_cache.rb:36:in `call'
1420
+ activerecord (4.1.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
1421
+ actionpack (4.1.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1422
+ activesupport (4.1.6) lib/active_support/callbacks.rb:82:in `run_callbacks'
1423
+ actionpack (4.1.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1424
+ actionpack (4.1.6) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1425
+ actionpack (4.1.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1426
+ actionpack (4.1.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1427
+ railties (4.1.6) lib/rails/rack/logger.rb:38:in `call_app'
1428
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `block in call'
1429
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1430
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:26:in `tagged'
1431
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `tagged'
1432
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `call'
1433
+ actionpack (4.1.6) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1434
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1435
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1436
+ activesupport (4.1.6) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1437
+ actionpack (4.1.6) lib/action_dispatch/middleware/static.rb:64:in `call'
1438
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1439
+ railties (4.1.6) lib/rails/engine.rb:514:in `call'
1440
+ railties (4.1.6) lib/rails/application.rb:144:in `call'
1441
+ rack (1.5.2) lib/rack/builder.rb:138:in `call'
1442
+ rack (1.5.2) lib/rack/urlmap.rb:65:in `block in call'
1443
+ rack (1.5.2) lib/rack/urlmap.rb:50:in `each'
1444
+ rack (1.5.2) lib/rack/urlmap.rb:50:in `call'
1445
+ rack-test (0.6.2) lib/rack/mock_session.rb:30:in `request'
1446
+ rack-test (0.6.2) lib/rack/test.rb:230:in `process_request'
1447
+ rack-test (0.6.2) lib/rack/test.rb:66:in `post'
1448
+ /usr/local/rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/forwardable.rb:183:in `post'
1449
+ capybara (2.2.1) lib/capybara/rack_test/browser.rb:60:in `process'
1450
+ capybara (2.2.1) lib/capybara/rack_test/browser.rb:35:in `process_and_follow_redirects'
1451
+ capybara (2.2.1) lib/capybara/rack_test/browser.rb:26:in `submit'
1452
+ capybara (2.2.1) lib/capybara/rack_test/driver.rb:46:in `submit'
1453
+ capybara (2.2.1) lib/capybara/rack_test/form.rb:74:in `submit'
1454
+ /Users/chandradhar/WebProjects/Rails/acts_as_talented/spec/support/acceptance_helpers.rb:30:in `submit!'
1455
+ /Users/chandradhar/WebProjects/Rails/acts_as_talented/spec/support/acceptance_helpers.rb:33:in `submit_form'
1456
+ /Users/chandradhar/WebProjects/Rails/acts_as_talented/spec/support/acceptance_helpers.rb:52:in `web_sign_in_with_email_and_password'
1457
+ /Users/chandradhar/WebProjects/Rails/acts_as_talented/spec/support/acceptance_helpers.rb:11:in `web_sign_in'
1458
+ /Users/chandradhar/WebProjects/Rails/acts_as_talented/spec/features/sign_in_spec.rb:8:in `block (2 levels) in <top (required)>'
1459
+ rspec-core (2.99.0) lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_exec'
1460
+ rspec-core (2.99.0) lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_eval_with_args'
1461
+ rspec-core (2.99.0) lib/rspec/core/example.rb:116:in `block in run'
1462
+ rspec-core (2.99.0) lib/rspec/core/example.rb:183:in `call'
1463
+ rspec-core (2.99.0) lib/rspec/core/example.rb:183:in `run'
1464
+ rspec-rails (2.99.0) lib/rspec/rails/adapters.rb:69:in `block (2 levels) in <module:MinitestLifecycleAdapter>'
1465
+ rspec-core (2.99.0) lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_exec'
1466
+ rspec-core (2.99.0) lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_eval_with_args'
1467
+ rspec-core (2.99.0) lib/rspec/core/example.rb:246:in `instance_eval_with_args'
1468
+ rspec-core (2.99.0) lib/rspec/core/hooks.rb:106:in `block (2 levels) in run'
1469
+ rspec-core (2.99.0) lib/rspec/core/hooks.rb:108:in `call'
1470
+ rspec-core (2.99.0) lib/rspec/core/hooks.rb:108:in `run'
1471
+ rspec-core (2.99.0) lib/rspec/core/hooks.rb:446:in `run_hook'
1472
+ rspec-core (2.99.0) lib/rspec/core/example_group.rb:462:in `run_around_each_hooks'
1473
+ rspec-core (2.99.0) lib/rspec/core/example.rb:255:in `with_around_each_hooks'
1474
+ rspec-core (2.99.0) lib/rspec/core/example.rb:113:in `run'
1475
+ rspec-core (2.99.0) lib/rspec/core/example_group.rb:514:in `block in run_examples'
1476
+ rspec-core (2.99.0) lib/rspec/core/example_group.rb:510:in `map'
1477
+ rspec-core (2.99.0) lib/rspec/core/example_group.rb:510:in `run_examples'
1478
+ rspec-core (2.99.0) lib/rspec/core/example_group.rb:495:in `run'
1479
+ rspec-core (2.99.0) lib/rspec/core/command_line.rb:24:in `block (2 levels) in run'
1480
+ rspec-core (2.99.0) lib/rspec/core/command_line.rb:24:in `map'
1481
+ rspec-core (2.99.0) lib/rspec/core/command_line.rb:24:in `block in run'
1482
+ rspec-core (2.99.0) lib/rspec/core/reporter.rb:58:in `report'
1483
+ rspec-core (2.99.0) lib/rspec/core/command_line.rb:21:in `run'
1484
+ rspec-core (2.99.0) lib/rspec/core/runner.rb:89:in `run'
1485
+ rspec-core (2.99.0) lib/rspec/core/runner.rb:17:in `block in autorun'
1486
+ Rendered /Users/chandradhar/WebProjects/Rails/acts_as_talented/app/views/devise/shared/_links.erb (0.2ms)
1487
+ Rendered /Users/chandradhar/WebProjects/Rails/acts_as_talented/app/views/partials/_navbar_admin.html.erb (0.1ms)
1488
+ Completed 200 OK in 7ms (Views: 4.7ms | ActiveRecord: 0.0ms)
1489
+  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1
1490
+  (0.3ms) ROLLBACK